html {
    background: darkgray;
}

* {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.4vw;
}

@media (min-width: 1200px) {
    * {
        font-size: 28.8px;
    }
}

@keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

.tooltip {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    border-style: none;
    background: none;
    margin: 0;
    padding: 0 .5rem;
    box-shadow: none;
}

.tooltip:focus:enabled {
    outline: none;
    box-shadow: none;
}

.tooltip .tooltiptext {
    display: none;
    cursor: default;
    width: 15rem;
    background-color: #5c4434ee;
    color: white;
    text-align: center;
    border-radius: 1rem;
    border-width: .2rem;
    border-style: solid;
    border-color: black;
    padding: .5rem 0;
    position: absolute;
    z-index: 1;
    top: 2.7rem;
    right: -1.6rem;
}
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: -.7rem;
    left: 12.2rem;
    margin-top: -.5rem;
    border-width: .5rem;
    border-style: solid;
    border-color: transparent transparent black transparent;
}
.tooltip:focus .tooltiptext {
    display: block;
}

.tooltip .tooltiptext2 {
    display: none;
    cursor: default;
    font-weight: normal;
    width: 33rem;
    background-color: #5c4434ee;
    color: white;
    text-align: left;
    border-radius: 1rem;
    border-width: .2rem;
    border-style: solid;
    border-color: black;
    padding: 1rem 1rem;
    position: absolute;
    z-index: 1;
    top: -.2rem;
    right: 2.2rem;
}  
.tooltip .tooltiptext2::after {
    content: "";
    position: absolute;
    top: 1.2rem;
    right: -1.2rem;
    margin-top: -.4rem;
    border-width: .5rem;
    border-style: solid;
    border-color: transparent transparent transparent black;
}
.tooltip:focus .tooltiptext2 {
    display: block;
}
.tt-gray {
    color: dimgray;
    font-size: 2rem;
    font-weight: bold;
    margin-top: -1rem;
}

.spin::before {
    animation: 1.5s linear infinite spinner;
    animation-play-state: inherit;
    border: solid 2rem #69696982;
    border-bottom-color: salmon;
    border-radius: 8rem;
    content: "";
    height: 8rem;
    width: 8rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
    z-index: 2;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: darkgray;
    max-width: 1160px;
    margin: 0 auto;
}

input, select {
    padding-right: .5rem;
    padding-left: .5rem;
    margin: .3rem;
    border-radius: .3rem;
    border-style: solid;
    border-width: .15rem;
}

input:focus, select:focus {
    outline: none;
    box-shadow: 0 0 1rem white;
    border-radius: .3rem;
}

input:disabled {
    background: #b0bfa8;
}

input:invalid {
    background: #ffc8be;
}

.sdilena {
    background: #ff9933;
    color: black;
}

.soukroma {
    background: gray;
    color: cornsilk;
}

button {
    border-color: dimgray;
    background: navajowhite;
    border-radius: .3rem;
    border-style: solid;
    border-width: .15rem;
    box-shadow: 0 .2rem .4rem #373737;
}

button:hover:enabled {
    cursor: pointer;
}

button:focus:enabled {
    outline: none;
    box-shadow: none;
}

button:disabled {
    background: darkgray;
    color: dimgray;
    box-shadow: none;
}

.button {
    text-align: center;
    border-color: dimgray;
    background: navajowhite;
    border-radius: .3rem;
    border-style: solid;
    border-width: .15rem;
    box-shadow: 0 .2rem .4rem #373737;
}

.sipka {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    box-shadow: none;
    color: navajowhite;
    text-align: center;
    font-size: 4rem;
}

.sipka:focus:enabled {
    text-shadow: none;
    box-shadow: none;
}

.sipka:disabled {
    background: none;
    color: dimgray;
    text-shadow: none;
}

input[type="checkbox"] {
    width: 1.4rem;
    height: 1.4rem;
    border: 0.2em solid dimgray;
    border-radius: .7rem;
    background-color: gray;
    color: cornsilk;
    -webkit-appearance: none;
}
input[type="checkbox"]:checked {
    background-color: #ff9933;    
    box-shadow: 0 0 1rem #ff9933;
}
input[type="checkbox"]:disabled {
    background-color: darkgray;
}

input[type="radio"] {
    display: none;
}

input[type="radio"] ~ label {
    color: dimgray;
}

input[type="radio"]:checked ~ label {
    color: navajowhite;
    font-size: 1.4rem;
}

input[type="radio"].lang:checked ~ label {
    font-size: 2.4rem;
}

input[type="radio"]:hover ~ label {
    cursor: pointer;
}

th {
    color: black;
    font-size: 1.4rem;
}

td {
    padding: .5rem;
}

.check {
    color: dimgray;
    letter-spacing: .45rem;
    font-weight: 700;
}
.checkOff {
    color: gray;
    letter-spacing: .45rem;
    font-weight: 700;
}
.checkOff:hover {
    cursor: default;
}
.checked {
    color: navajowhite;
    font-size: 1.6rem;
    letter-spacing: .18rem;
    font-weight: 700;
}

#pozice:hover {
    cursor: pointer;
}
#plus:hover {
    cursor: pointer;
}
#minus:hover {
    cursor: pointer;
}

.ram {
    background: white;
    border-style: solid;
    border-color: dimgray;
    border-width: .2rem;
    border-radius: .8rem;
    padding: .4rem;
    margin: .2rem;
}
.ram2 {
    background: white;
    border-style: solid;
    border-color: dimgray;
    border-width: .2rem;
    border-radius: .8rem;
    padding: .25rem;
    margin: .2rem;
}


.zadani {
    background: #99AA8F;
}

.podmapou {
    background: #708D8A;
}

.seznam {
    background: rosybrown;
    height: 1.8rem;
}

.mapa {
    height: 17rem;
    touch-action: none;
    z-index: 1;
}

.kamera {
    width: 64%;
    min-height: 13rem;
}

.data {
    background: antiquewhite;
    width: 36%;
}

.ucet {
    background: lightgray;
    width: 100%;
    font-size: 1.4rem;
    padding: 2rem 0;
}

.poductem {
    background: #708D8A;
}

.popis {
    width: 35%;
    text-align: right;
    margin-top: .5rem;
    margin-right: .5rem;
    font-size: 1.3rem;
}

.odkaz {
    font-size: 0;
    color: black;
    text-decoration-line: none;
}

.zalom {
    flex-wrap: wrap;
    word-wrap: break-word;
}

.obrazek {
    width: 100%;
    height: auto;
}
.obrazek2 {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.icon-4 {
    width: 4rem;
    height: 4rem;
}
.icon-3 {
    width: 3rem;
    height: 3rem;
}
.icon-2 {
    width: 2rem;
    height: 2rem;
}
.icon-1 {
    width: 2rem;
    height: 3rem;
}

.rohy-oble {
    border-radius: .4rem;
}

.vzduch {
    width: 6.6rem;
    padding-top: .2rem;
    padding-bottom: .1rem;
    border-radius: .6rem;
    border-color: lightgray;
    border-width: .3rem;
    border-style: solid;
}

.col {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
}

.container {
    position: sticky;
    left: 0;
    bottom: 0;
}
.over {
    position: absolute;
    top: 4rem;
    width: 100%;
}
.over2 {
    position: absolute;
    top: .4rem;
    width: 100%;
}

.e_e_e {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
._e_e_ {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
._e_ {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
._e {
    display: flex;
    flex-direction: row;
    justify-content: right;
}

.rev {
    flex-direction: row-reverse;
}

.odsaz-l {
    text-align: left;
    margin-left: .5rem;
}

.odsaz-p {
    text-align: right;
    margin-right: .5rem;
}

.centr {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.centr-v {
    display: flex;
    flex-flow: column;
    align-content: center;
    justify-content: center;
}

.vpravo {
    text-align: right;
}

.dolu {
    display: flex;
    flex-flow: column;
    align-content: flex-end;
    justify-content: flex-end;
}

.ucet {
    background: #c5bcad;
    width: 100%;
    font-size: 1.4rem;
    padding: 2rem 0;
}

.poductem {
    background: #aa9a81;
}

.menu-s {
    background: rosybrown;
    color: navajowhite;
}

.menu-m {
    background: #708D8A;
    color: navajowhite;
}

.menu-e {
    background: #99AA8F;
    color: navajowhite;
}

.menu-u {
    background: #aa9a81;
    color: navajowhite;
}

.menu-j {
    background: navajowhite;
    color: dimgray;
    font-size: inherit;
    margin-top: -.3rem;
    margin-bottom: .1rem;
    padding: 0rem .4rem .2rem;
    border-style: solid;
    border-color: dimgray;
    border-width: .2rem;
    border-radius: .7rem;
}

a:hover {
    cursor: pointer;
}

.menu {
    color: dimgray;
    text-decoration-line: none;
    font-size: 1.3rem;
    margin-top: .4rem;
    padding: 0 1rem;
}

.menu:hover {    
    color: black;
}

.menu:focus {
    outline: none;
    color: white;
    text-shadow: 0 0 .5rem orange;
}

.menu-act {
    font-weight: bolder;
    font-size: inherit;
    border-style: solid solid none solid;
    border-color: dimgray;
    border-width: .2rem;
    border-radius: .5rem .5rem 0 0;
    width: max-content;
    margin-bottom: -.38rem;
    padding: .4rem 2rem .2rem 2rem;
}

.menu-poz {
    font-size: 1.6rem;
    text-align: center;
    margin-left: .8rem;
    margin-right: .2rem;
    padding-top: .4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.zoom {
    color: dimgray;
    font-size: 2.5rem;
    text-shadow: 0 0 .3rem white;
}

.w-a {
    width: auto;
}
.w-10 {
    width: 10%;
}
.w-20 {
    width: 20%;
}
.w-25 {
    width: 25%;
}
.w-47 {
    width: 47%;
}
.w-50 {
    width: 50%;
}
.w-53 {
    width: 53%;
}
.w-75 {
    width: 75%;
}
.w-85 {
    width: 85%;
}
.w-95 {
    width: 85%;
}
.w-100 {
    width: 100%;
}

.h-a {
    height: auto;
}
.h-14 {
    height: 14rem;
}

.duch {
    color: burlywood;
    font-weight: lighter;
}

.f {
    font-family:  Times New Roman, Calibri, Cambria, Arial, Microsoft Sans Serif, Bernard MT Condensed;
    vertical-align: middle;
}
.f-sh-1 {
    text-shadow:  0 .2rem .6rem #373737;
}
.f-sh-2 {
    text-shadow: -.1rem -.1rem .2rem #000000, .1rem -.1rem .2rem #000000, -.1rem .1rem .2rem #000000, .1rem .1rem .2rem #000000;
}
.f-sh-3 {
    text-shadow: -.2rem -.2rem .4rem #000000, .2rem -.2rem .4rem #000000, -.2rem .2rem .4rem #000000, .2rem .2rem .4rem #000000;
}
.f-50 {
    font-size: .5rem;
}
.f-75 {
    font-size: .75rem;
}
.f-125 {
    font-size: 1.25rem;
}
.f-150 {
    font-size: 1.5rem;
}
.f-175 {
    font-size: 1.75rem;
}
.f-200 {
    font-size: 2rem;
}
.f-250 {
    font-size: 2.5rem;
}

.orange {
    color: #ff9933;
}
.krem {
    color: navajowhite;
}

.b-orange {
    background-color: #ff9933;
}
.b-gray {
    background-color: darkgray;
}
.b-krem {
    background-color: navajowhite;
}

.f-w-b {
    font-weight: bold;
}
.f-w-n {
    font-weight: normal;
}

.ml-4 {
    margin-left: 2rem;
}

.ml-1 {
    margin-left: .5rem;
}

.ml-0 {
    margin-left: 0;
}

.mr-4 {
    margin-right: 2rem;
}

.mr-2 {
    margin-right: 1rem;
}

.mr-1 {
    margin-right: .5rem;
}

.m-0 {
    margin: 0;
}

.m-05 {
    margin: .25rem;
}
.m-1 {
    margin: .5rem;
}
.m-2 {
    margin: 1rem;
}
.m-25 {
    margin: 1.25rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-06 {
    margin-top: .3rem;
}

.mt-1 {
    margin-top: .5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-05 {
    margin-bottom: .25rem;
}

.mb-1 {
    margin-bottom: .5rem;
}

.mb-25 {
    margin-bottom: 1.25rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.p-0 {
    padding: 0;
}
.p-3 {
    padding: 1.5rem;
}
.pl-1 {
    padding-left: .5rem;
}
.pb-1 {
    padding-bottom: .5rem;
}
.pt-15 {
    padding-top: .75rem;
}

.a-p {
    text-align: right;
}

.a-c {
    text-align: center;
}

.title1 {
    font-weight: bold;
    color: dimgray;
    text-align: center;
    font-size: 2rem;
    padding-bottom: 2rem;
}

.title2 {
    padding-left: 37%;
    font-size: 1.75rem;
    padding-top: 1.5rem;
    padding-bottom: .5rem;
}

.title3 {
    font-weight: 600;
    color: navajowhite;
    text-align: center;
    font-size: 1.4rem;
}

.title3min {
    font-weight: normal;
    color: navajowhite;
    text-align: center;
    font-size: 1rem;
    margin-left: .3rem;
    margin-top: .3rem;
}

.poradi {
    width: 5.4rem;
    height: 4rem;
    font-size: 3rem;
    font-weight: bold;
    color: dimgray;
}

.hide {
    display: none;
}

#modal {
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000066;
    z-index: 5;
}
#mText {
    max-height: calc(100vh - 10rem);
    min-height: 6rem;
    font-size: 1.25rem;
    font-weight: bold;
    overflow: hidden auto;
}
#mCedule {
    z-index: 8;
    width: 26rem;
    overflow: auto;
    margin: auto;
    position: initial;
    align-items: center;
    color: #505050;
    text-align: center;
    box-shadow: 0 4px 8px 0 #00000033,0 6px 20px 0 #00000030;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 1s;
    animation-name: animatetop;
    animation-duration: 1s;
    background: salmon;
    border-style: solid;
    border-color: #505050;
    border-width: .2rem;
    border-radius: .8rem;
    padding: 1.4rem;
}

@-webkit-keyframes animatetop {
    from { opacity:0}
    to { opacity:1}
}

@keyframes animatetop {
    from { opacity:0}
    to { opacity:1}
}