html {
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

* {box-sizing: border-box;}

.wrap {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding-left: 300px;
}

.inner {
  display: table;
  width: 100%;
  height: 100vh;
  margin: 0 0 0;
  border-spacing: 0px;
}

.main {
  display: table-row;
  height: 1px;
}

.main div {
  display: table-cell;
  padding-left: 10px;
  padding-right: 10px;
}

.left {
  position: fixed;
  width: 300px;
  margin-left: -300px;
  padding-left: 10px;
  padding-right: 10px;
  top: 0px; bottom: 0px;
  overflow-y: auto;
}

/* Video double link table */
table.menu {
  border: 0px;
  width: 100%;
}

/* Cell search */
.searchMenu {
  border: 0px;
  padding: 0px 6px 0px 0px;
  width: 100%;
}
                    
/* Cell double resolution video link */
td.menu {
  border: 0px;
  padding: 0px;
  width:100%;
}

/* Main titles */
h3.menu {
  text-align: center;
  font-size : 26px;
  color: #3e4074;
  margin-bottom : 0px;
}

/* Fixed sidenav, full height. Main background color. */
.sidenav {
  height: 100%;
  width: 300px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #85A0DB;
  overflow-x: hidden;
  padding: 0px 0px 0px 3px;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content. */
.dropdown-container-btn {
  display: none;
  background-color: #8DA7DD;
  padding-left: 3px;
  padding-right: 3px;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content. */
.dropdown-container {
  display: none;
  background-color: #94ADDD;
  padding-left: 15px;
  padding-right: 15px;
}

/* Style the sidenav links and the dropdown button 1. level. Menu text color. */
.dropdown-btn-btn {
  padding: 6px 3px 3px 6px;
  text-decoration: none;
  font-size: 15px;
  color: #091534;
  display: block;
  border: none;
  background: none;
  width: 100%;
  height: Auto;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* Style the sidenav links and the dropdown button 2. level. Menu text color. */
.sidenav a, .dropdown-btn {
  padding: 6px 3px 3px 0px;
  text-decoration: none;
  font-size: 15px;
  color: #091534;
  display: block;
  border: none;
  background: none;
  width: 100%;
  height: Auto;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* Barva ikon */
.sidenav i {
  color: #c75284;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover, .dropdown-btn-btn:hover, i:hover {
  color: #E1ED3D;
}

.sidenav a:visited {
  color: #E6E9FF;
}

.sidenav a:active {
background-color: #92A8D1;
}

/* Add an active class to the active dropdown button */
.active {
  background-color: #5B5EA6;
  color: white;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 6px;
  color: #C3447A;
}

/* Optional: Style the external window */
.fa-external-link {
  float: right;
  color: #C3447A;
  padding: 0px;
}

/* Optional: Style the next page */
.fa-angle-double-right {
  font-size:40px;
  float: right;
  color: #C3447A;
  margin-right:48px;
  text-decoration: none;
}

/* Optional: Style the next page */
.fa-angle-double-left {
  font-size:40px;
  float: left;
  color: #C3447A;
  margin-left:48px;
  text-decoration: none;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* Label after moving the cursor */
.najeti {
  position: relative;
}

.popisek {
  position: absolute;
  left: 44%;
  top: 150%;
  display: none;
  margin-left: -125px;
  width: 260px;
  border: 1px solid #666;
  padding: 10px;
  background: #fff;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.298) 0px 3px 8px 0px;
  transition: opacity .5s;
  -webkit-transition: opacity .5s; opacity: 0;
}

.najeti:hover .popisek {
  display: block;
  opacity: 1;
}

.popisek .sipka, .popisek .sipka-obal {
  position: absolute;
  top: -10px;
  left: 25%;
  margin-left: -5px;
  width: 0px;
  height: 0px;
  border: solid transparent;
  border-width: 0 10px 10px 10px;
  border-bottom-color: #000;
}

.popisek .sipka-obal {
  border-bottom-color: #fff;
  margin: 1px 0 0 -4px;
  border-width: 0 9px 9px 9px;
}

@media print {
  .wrap {padding-left: 0px;}
}