body{
    background-color: #0e192b;
}
body, input, button{
    font-family: Montserrat, sans-serif;
    color: white;
}
input{
    border: none;
    font-size: 1rem;
    background-color: transparent;
    color: white;
}
a{
    color: white;
}
::placeholder{
    color: #969696;
}
input[type=checkbox]{
    cursor: pointer;
}
/*.header{*/
/*    position: relative;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 2%;*/
/*    height: 30vh;*/
/*}*/
.socialIcon{
    position: relative;
    min-width: 30px;
    min-height: 30px;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    transition: 0.3s;
}
.socialIcon > img{
    width: 100%;
    height: 100%;
}
.socialIcon:hover{
    transform: scale(1.1);
}
.mainContent{
    position: relative;
    display: flex;
    transition: 0.5s;
}
.sidePanel{
    position: relative;
    width: 30vw;
}
.row{
    display: flex;
    align-items: center;
    line-height: 2.5;
    background-color: #565656;
    border-radius: 20px;
    color: white;
    padding: 0 1rem;
    margin-bottom: 1rem;
}
.separatorRow{
    display: flex;
    margin: 3px;
    border-bottom: 2px solid rgb(29,60,71);
}
.row > label{
    font-weight: 600;
    min-width: 120px;
}
.subRow{
    font-size: 14px;
}
.formTitle{
    text-transform: uppercase;
    font-weight: 900;
    margin: 0;
    padding: 2rem 0;
    font-size: calc(10px + 2vw);
}
.patternLeft{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    width: 50px;
    height: 200px;
    top: 100px;
    left: 50%;
}
.patternRight{
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 200px;
    height: 50px;
    top: 500px;
    right: 50px;
}
.patternHeader{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    width: 200px;
    height: 50px;
    bottom: 20px;
    right: 50%;
}
.circle{
    width: 6px;
    height: 6px;
    margin: 8px;
    border: 3px solid rgb(172,179,183);
    border-radius: 50%;
    animation: flashHover 1s infinite;
}
.circleHeader{
    width: 6px;
    height: 6px;
    margin: 8px;
    border: 3px solid white;
    border-radius: 50%;
    animation: flashHover 1s infinite;
}
.btnOK{
    background-color: white;
    color: black;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-transform: none;
    font-weight: 800;
}
.bc-container{
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}
.bc-button{
    font-size: 12px;
    height: 30px;
    border-radius: 15px;
    border: none;
    color: black;
    cursor: pointer;
    transition: 0.3s;
}
.bc-button:hover{
    background-color: rgb(31,61,72);
    color: white;
}
.bc-checked{
    background-color: rgb(31,61,72);
    color: white;
}
.contentPanel{
    display: flex;
    flex-direction: column;align-items: center;
    background-color: rgba(3, 7, 7, 0.5);
    opacity: 1;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 5rem;
}
@media(max-width: 1500px){
    .patternRight{
        width: 50px;
        height: 200px;
        top: 500px;
        right: 50px;
    }
}
@media(max-width: 1000px){
    .sidePanel{
        display: none;
    }
}
@media(max-width: 800px){
    .contentPanel{
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media(max-width: 600px){
    .bc-container{
        gap: 2px;
    }
    .bc-button{
        font-size: 10px;
    }
    .row{
        font-size: 14px;
    }
    .contentPanel{
        margin-top: 4rem;
    }
    .header{
        top: 1rem !important;
    }
}
@media(max-height: 600px){
    .patternHeader{
        display: none;
    }
}
@keyframes flashHover {
    0% {
        border-color: white;
    }
    100% {
        border-color: grey;
    }
}

/* Admin */
.menu{
    position: relative;
    display: flex;
    gap: 2rem;
    height: 100px;
}
.menu .tile{
    height: 100% !important;
}
.tilesContent{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}
.tile{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 23%;
    height: 300px;
    box-shadow: 0 0 3px 3px grey;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
.tile:hover{
    transform: scale(1.1);
}
.tileDark{
    background-color: rgb(29,60,71);
    color: white;
}
.tileLight{
    background-color: rgb(187,195,202);
    color: rgb(29,60,71);
}
.tileDark .tileTitle{
    text-shadow: 2px 2px 2px black;
}
.tileLight .tileTitle{
    text-shadow: 2px 2px 2px white;
}
.tileTitle{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
}
@media(max-width: 1600px){
    .tile{
        width: 30%;
    }
}
@media(max-width: 1200px){
    .tile{
        width: 46%;
    }
}
@media(max-width: 800px){
    .tile{
        width: 90%;
    }
    .cookiesBar{
        padding: 5px 1rem;
    }
    #bgVideo{
        display: none;
    }
    #bgVideoMobile{
        display: block;
    }
    .contentPanel{
        background-color: rgba(3, 7, 7, 0.3);
    }
}

.contentContainer{
    padding: 1rem;
}
.controlsBlock{
    padding: 1rem;
}
.modalButton{
    background-color: white;
    color: black;
    text-transform: none;
    font-weight: 700;
    padding: 5px 10px;
    border: none;
    box-shadow: none;
}
.modalButton:hover{
    background-color: #4d4d4d;
    color: white;
    transform: scaleX(1.1);
}
.table-tableHeader{
    background-color: rgb(31,61,72);
}
.modalGridRow{
    position: relative;
    min-height: 32px;
    align-items: center;
}
.cookiesBar{
    position: fixed;
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 1rem 5rem;
    color: white;
    bottom: 0;
    background-color: rgb(3,7,7, 0.5);
}
.cookiesBarMoving{
    animation: moveCookie 10s infinite;
}
@keyframes moveCookie {
    0% {
        top: 10vh;
    }
    50% {
        top: 80vh
    }
    100% {
        top: 0;
    }
}
td{
    border: 1px solid grey;
    padding: 6px;
}
label[for]{
    cursor: pointer;
}
#bgVideo{
    display: block;
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.7;
}
#bgVideoMobile{
    display: none;
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
}
.header{
    z-index: 2;
    position: absolute;
    display: flex;
    gap: 1rem;
    top: 2rem;
    right: 2rem;
}
.mhLogo{
}