body, input, button{
    font-family: Montserrat, sans-serif;
    color: rgb(29,60,71);
}
body{
    background-image: url(/Public/images/hatter.png);
}
:root{
    --yellow: rgba(255, 244, 199, 0.88);
    --gold: rgb(210,168,85);
    --green: rgba(60,100,97, 0.6);
    --greenStart: rgba(82,96,77);
    --greenEnd: rgba(137,153,136);
}
input{
    border: none;
    font-size: 1rem;
    background-color: transparent !important;
    color: #3d3d3d;
}
input:-webkit-autofill{
    background-color: transparent;
}
a{
    text-decoration: none;
    color: white;
}
.header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    width: fit-content;
    border-radius: 1rem;
    background: linear-gradient(var(--greenStart) 60%, var(--greenEnd) 100%);
    margin: 0 auto;
    color: white;
}
.wheel{
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid white;
    border-radius: 50%;
}
.wheel-1{
    border-top: 3px solid grey;
    border-left: 3px solid grey;
    top: 54%;
    left: -1%;
    animation: rotationBack 3s linear infinite;
}
.wheel-2{
    border-top: 3px solid rgb(230,34,36);
    top: 5%;
    left: 16%;
    animation: rotation 4s linear infinite;
}
.wheel-3{
    border-top: 3px solid rgb(172,172,171);
    top: 62%;
    left: 42%;
    animation: rotation 5s linear infinite;
}
.wheel-4{
    border-top: 3px solid rgb(81,163,70);
    border-left: 3px solid rgb(81,163,70);
    top: 12%;
    left: 69%;
    animation: rotationBack 6s linear infinite;
}
.mainButtonContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
}
.mainButton{
    position: relative;
    width: 48%;
    height: 200px;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: white;
    padding: 2rem;
    color: #3d3d3d;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}
.featureFloating {
    opacity: 0;
}
.featureFloatingLeft{
    transition: 1s 1s;
    transform: translateX(100px);
}
.featureFloatingRight{
    transition: 1s 1s;
    transform: translateX(-100px);
}
.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
.headerFirstRow{
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobilLogo{
    display: none;
    background: url(/Public/images/logo.png);
    height: 90px;
    width: 80vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.logoContainer{
    position: relative;
    display: flex;
    align-items: center;
    width: 410px;
    height: 70px;
    background-image: url(/Public/images/logoBg.png);
    background-size: 95% 95%;
    background-position: 20px;
    background-repeat: no-repeat;
    transform: scale(0.5);
}
.logo{
    position: relative;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.logo1{
    background-image: url(/Public/images/logo1.png);
    animation: logoShow 0.5s;
    background-position-y: -5px;
}
.logo2{
    width: 110px;
    height: 110px;
    background-image: url(/Public/images/logo2.png);
    animation: logoShow 0.5s;
    animation-delay: 0.1s;
}
.logo3{
    width: 110px;
    height: 110px;
    background-image: url(/Public/images/logo2.png);
    animation: logoShow 0.5s;
    animation-delay: 0.2s;
}
.logo4{
    width: 110px;
    height: 110px;
    background-image: url(/Public/images/logo2.png);
    animation: logoShow 0.5s;
    animation-delay: 0.3s;
}
@keyframes logoShow {
    0% {
        transform: scale(0);
    }
    30% {
        transform: scale(2);
        filter: blur(10px) ;
    }
    100% {
        transform: scale(1);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.mainTitle{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    /*padding-left: 2rem;*/
}
.tricolor{
    text-align: center;
    width: 100%;
    height: 4px;
    margin-top: 1rem;
    background: linear-gradient(to left, green, white, #9f0000);
    animation: showTricolor 3s;
}
@keyframes showTricolor {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
.ring{
    position: absolute;
    width: 52px;
    height: 52px;
    top: 24px;
    left: 28px;
    border-radius: 40px;
    border: 8px solid transparent;
}
.redRing{
    background: linear-gradient(white, white) padding-box, linear-gradient(red, #6b0101) border-box;
}
.whiteRing{
    background: linear-gradient(white, white) padding-box, linear-gradient(white, #a9a9a9) border-box;
}
.greenRing{
    background: linear-gradient(white, white) padding-box, linear-gradient(#00ff00, green) border-box;
}
.boxTitle{
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    /*text-shadow: 0 0 2px black;*/
    transition: 0.5s;
    padding-bottom: 4rem;
}
.mainButtonDetails{
    font-size: 1.2rem;
    width: 100%;
}
.mainButton:hover{
    transform: translate(-10px, -10px);
}
.body2{
    min-height: 900px;
    background-image: url(/Public/images/bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 1rem 25rem 0 25rem;
}
.logoMH175{
    background-image: url(/Public/images/elsodleges_fekvo_fekvo.png);
    background-size: cover;
    transform: scale(0.7);
    height: 140px;
    width: 320px;
}
.headerSeparator{
    height: 130px;
    width: 1px;
    border-left: 1px solid white;
    margin: 0 4rem;
}
.mainContent{
    position: relative;
    padding: 2rem;
}
.raceTitle{
    display: flex;
    justify-content: center;align-items: center;
    text-transform: uppercase;
    font-size: 1vw;
    color: var(--gold);
    padding: 3px 0;
}
.footer{
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background-color: rgb(139,153,106);
    color: white;
}
.menuIcon{
    position: relative;
    display: none;
    width: 35px;
    height: 35px;
    background-color: var(--gold);
    background-size: contain;
    color: white;
    border: 2px solid var(--gold);
}
th{
    text-align: left;
}
h2{
    color: black;
}
.greenButton{
    background: linear-gradient(var(--greenStart) 60%, var(--greenEnd) 100%);
    color: white;
}
.qualifiedTable{
    border-collapse: collapse;
}
.qualifiedTable > tr:nth-child(odd){
    background-color: green;
}


.theuton{
    background-image: url(/Public/images/huszar.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width:  50%;
    height: 60%;
    position: fixed;
    bottom: 0;
}
.row{
    display: flex;
    line-height: 2.5;
}
.separatorRow{
    display: flex;
    margin: 3px;
    border-bottom: 2px solid #cbcbcb;
}
.row > label{
    font-weight: 400;
    min-width: 200px;
}
.subRow{
    font-size: 14px;
}
.formTitle{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    padding: 2rem 0;
    font-size: calc(15px + 45%);
}
.btnOK{
    position: relative;
    background-color: var(--gold);
    padding: 1rem 2rem;
    /*box-shadow: -12px 12px 20px 2px #4b4b4b;*/
    cursor: pointer;
    z-index: 2;
}
.bc-container{
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}
.bc-button{
    font-size: 1rem;
    padding: 4px 0;
    border: none;
    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;
}
.mainTitleMobil{
    position: absolute;
    bottom: -10px;
    right: 0;
    display: none;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 10px;
}
.theutonMobil{
    display: none;
    right: 0;
}
.col{
    padding: 0 10rem;
}
@media(max-width: 1700px){
    .body2{
        padding: 1rem 15rem;
    }
}
@media(max-width: 1600px){
    .tile{
        width: 30%;
    }
    .book{
        width: 50%;
    }
}
@media(max-width: 1500px){
    .body2{
        padding: 1rem 10rem;
    }
}
@media(max-width: 1400px){
    .body2{
        padding: 1rem 5rem;
    }
}
@media(max-width: 1200px){
    .body2{
        padding: 1rem 1rem;
    }
    .mainTitle{
        display: none;
    }
    .mainContent > div{
        width: 100%;
    }
    .mainTitleMobil{
        display: flex;
        right: -30px;
    }
    .theuton{
        position: absolute;
        bottom: 0px;
        right: 0;
        height: 300px;
    }
    .contentPanel{
        padding-top: 0;
    }
    .formTitle{
        padding-top: 3rem;
        color: var(--gold);
    }
    .row > label{
        color: var(--gold);
    }
    .theutonMobil{
        display: block;
    }
}
@media(max-width: 1000px){
    .mainButton{
        width: 100%;
    }
    .boxTitle{
        font-size: 25px;
    }
}
@media(max-width: 800px){

}
@media(max-width: 600px){
    .contentPanel{
        margin: 0;
        padding: 1rem;
    }
    .mainTitleMobil{
        right: 0;
        font-size: 30px;
    }
    .logo{
        width: 90%;
    }
    .book{
        width: 100% !important;
    }
    .header{
        height: unset;
    }
    .headerSeparator{
        display: none;
    }
    .headerFirstRow{
        flex-direction: column;
    }
    .logoMH175{
        background-size: contain;
        transform: scale(0.5);
    }
    .header{
        padding: 5px;
    }
    .mobilLogo{
        transform: scale(0.7);
    }
    .raceTitle{
        font-size: 10px;
    }
    #modalRegister{
        min-width: 100% !important;
    }
    .row{
        flex-direction: column;
    }
    .newspaper{
        flex-direction: column;
    }
    .textColumn{
        width: 100% !important;
    }
    .bookCover{
        display: none;
    }
    .menu{
        flex-wrap: wrap;
    }
    .mainContent{
        padding: 0;
    }
    .menuItem{
        display: none;
    }
    .menuIcon{
        display: block;
    }
    .modalGridRow{
        display: flex;
        flex-direction: column;
    }
    .modalGridRow > label{
        font-weight: 600;
    }
    .modalControls{
        gap: 1rem;
    }
    .answer{
        width: 95%;
    }
    .c-section > span{
        font-size: 8px;
    }
    .col{
        padding: 0 5px;
    }
    .cookiesBar{
        left: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        z-index: 2;
    }
}
/*
@media(max-height: 600px){
    .footer{
        position: absolute; left: 0;bottom: 0;width: 100%;
    }
}
*/

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* Admin */
.menu{
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-height: 100px;
}
.menu .tile{
    height: 100% !important;
}
.titleAdmin{
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
    color: #3d3d3d;
    padding-bottom: 2rem;
    text-align: center;
}
.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: 4px 4px 4px black;
}
.tileLight .tileTitle{
    text-shadow: 4px 4px 4px white;
}
.tileTitle{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
}

@media(max-width: 1200px){
    .tile{
        width: 46%;
    }
    .tileTitle{
        display: none;
    }
}
@media(max-width: 800px){
    .tile{
        width: 90%;
    }
    .cookiesBar{
        padding: 5px 1rem;
    }
    .teamContent{
        padding: 3rem 1rem !important;
    }
    .table-tableHeader span{
        font-size: 10px;
    }
    .logoContainer{
        display: none;
    }
    .mobilLogo{
        display: block;
    }
    .newspaper{
        flex-direction: column;
    }
    .textColumn{
        width: 100%;
    }

}

.contentContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}
.teamContent{
    color: black;
    padding: 3rem 3rem;
    width: 100%;
}
.controlsBlock{
    padding: 1rem;
}
.modalButton{
    background-color: rgb(31,61,72);
    color: white;
    padding: 5px 10px;
    box-shadow: none;
    border: unset;
}
.modalFooter{
    background-color: rgb(31,61,72);
}
.modalTitle{
    background-color: rgb(31,61,72);
}
.modalButton:hover{
    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;
    justify-content: space-around;
    width: 90%;
    padding: 1rem 5rem;
    color: white;
    bottom: 10%;
    left: 5%;
    margin: 0 2rem;
    border-radius: 1rem;
    background-color: rgba(117, 117, 117, 0.7);
}
td{
    border: 1px solid grey;
    padding: 6px;
}
label[for]{
    cursor: pointer;
}
#modalRegister{
    min-width: 600px;
}
.textColumn{
    width: 50%;
    background-color: white;
    color: #464646;
    padding: 1rem;
    border-radius: 8px;
}
.subTitle{
    display: block;
    font-weight: 600;
    line-height: 1.4;
}
.textSection{
    display: block;
    margin-bottom: 1rem;
}
.newspaper{
    display: flex;
    gap: 1rem;
}
.gdpr{

}
.gdpr > .textColumn{
    width: 100%;
}
.gdpr .title1{
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.8;
}
.gdpr .title2{
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.6;
}
.welcomeText{
    padding-top: 5rem;
    text-align: center;
    font-weight: 700;
}
.menuItem{
    position: relative;
    background-color: var(--gold);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    cursor: pointer;
    z-index: 2;
    transition: 0.2s;
}
.menuItem[href]:hover{
    animation: rotate 1.5s infinite;
}
.menuItem:hover > .subMenu{
    display:flex;
}
@keyframes rotate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.teamLabel{
    background-color: rgba(201, 157, 60, 0.63);
    font-weight: 600;
}
.menuItem > .subMenu{
    position: absolute;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
    width: 100%;
    left: 0;
    transition: display 0.3s;
}
.menuIcon > .subMenu{
    position: absolute;
    display: none;
    flex-direction: column;
    padding-top: 35px;
    margin-left: -2px;
    width: 100%;
    left: 0;
    transition: display 0.3s;
    z-index: 2;
}
.menuIcon .menuIcon{
    margin-top: 8px;
}
.textSection2{
    border-radius: 10px;
    background-color: white;
    color: black;
    padding: 2rem;
    margin: 0 5%;
}
.textSection2 > h5{
    font-size: 1rem;
}
.questionBox{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 800px;
}
.question{
    position: relative;
    display: flex;
    flex-direction: column;
}
.quizBtn{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #d7d7d7;
    background-color: white;
    transition: 0.3s;
    cursor: pointer;
}
.quizBtn:hover{
    background-color: #e1e1e1;
}
.toPrev{
    left: -12px;
    top: calc(50% - 12px);
}
.toNext{
    right: -12px;
    top: calc(50% - 12px);
}
.questionBar{
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding: 3px 0;
}
.numberBtn{
    min-width: 25px;
    background-color: #dedede;
    border-radius: 4px;
    border: 2px solid transparent;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}
.imHere{
    border: 2px solid black;
}
.quizAnswered{
    background-color: #d2a855;
    color: white;
}
@media(max-width: 800px){
   .textSection2{
       margin: 0 !important;
   }
    .body2{
        padding: 0;
    }
}
.sortableElem{
    padding: 5px 10px;
    border: 2px solid grey;
    border-radius: 4px;
}
.droppableBox{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    width: 100%;
    height:40px;
    background-color: #d5d5d5;
}
.bookContainer{
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem;
}
.book{
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    display: flex;
    gap: 1rem;
    width: 47%;
    background-color: white;
    color: black;
    font-size: 13px;
    transition: 0.3s;
    cursor: pointer;
}
.book:hover{
    transform: translate(-10px, -10px);
}
.bookCover{
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    min-width: 200px;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.book table{
    padding: 10px;
    border-collapse: collapse;
    border: none;
}
.book td{
    border: none;
}
.bc-container1{
    display: flex;
    /*justify-content: space-around;*/
    gap: 1rem;
}
.bc-button1{
    font-size: 1rem;
    padding: 6px 10px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    background-color: transparent;
    color: black;
    cursor: pointer;
    transition: 0.3s;
}
.bc-button1:hover{
    background-color: var(--gold);
    color: white;
}
.bc-checked1{
    background-color: var(--gold);
    color: white;
}
.quiz img{
    max-height: 300px;
    object-fit: contain;
}
.subContent{
    background-color: white;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 2rem;
    width: 730px;
    margin: 0 auto;
}

/*NumberInput*/
.ni-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 3px grey;
}
.numberInputSuffix{
    display: flex;
    align-items: center;
    background-color: #a3a3a3;
    color: white;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
    min-height: 24px;
}
.ni-inputBox{
    position: relative;
    width: 100%;
    background-color: white;

}
.ni-controlBox{
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 0;
    top: 0;
}
.ni-button{
    border: none;
    background-color: transparent;
    font-size: 13px;
    color: black;
    padding: 0;
    width: 18px;
    line-height: 12px;
    outline: none;
    cursor: pointer;
    transition: 0.2s;
}
.ni-button:hover{
    background-color: #e0e0e0;
}
.ni-sliderLine{
    position: relative;
    height: 0;
    width: 65%;
    border: 1px solid grey;
    margin-right: 10px;
}
.ni-sliderCircle{
    position: absolute;
    left: 0;
    top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bebebe;
    cursor: pointer;
}
.ni-sliderCircle:hover{
    background-color: grey;
}
.ni-unitListContainer{
    background-color: #a3a3a3;
    cursor: pointer;
}
.ni-unitListWrapper{
    position: absolute;
    display: none;
    background-color: inherit;
    width: 100%;
    top: 0;
    left: 0;
}
.ni-unitList{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ni-unitItem{
    padding: 2px;
}
.ni-unitItem:hover{
    background-color: #0e192b;
}
.ni-disabled{
    opacity: 0.5;
    pointer-events: none;
}

.quizScoreResult {
    color: red;
    font-size: 25px;
    padding: 10px;
}

.score-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.score-container .score-number {
    font-size: 40px;
    color:#8b835b;
    font-weight: bold;
}