@font-face {
    font-family: "almoni";
    src: url("fonts/almoni-tzar-regular-aaa.otf");
    font-weight: 500;
}
@font-face {
    font-family: "almoni";
    src: url("fonts/almoni-tzar-medium-aaa.otf");
    font-weight: 600;
}
@font-face {
    font-family: "almoni";
    src: url("fonts/almoni-tzar-bold-aaa.otf");
    font-weight: bold;
}
@font-face {
    font-family: "almoni";
    src: url("fonts/almoni-tzar-ultrabold-aaa.otf");
    font-weight: 900;
}

*{
    font-family: almoni;
    font-weight: 500;
    box-sizing: border-box;
    scroll-behavior: smooth;
    letter-spacing: 0;
}

:root {
    --blue: #034470;
    --softblue: #2d8fa1;
    --gray: #f5f5f8;
    --orange: #ec631f;
    --softorange: #f4a41a;
}

body{
    margin: 0;
    padding: 0; 
    background-color: white;
}

h2{
    padding: 0;
    margin: 0;
    font-weight: 900;
    font-size: 17vh;
    color: var(--blue);
    margin-top: -30px;
}

h2 span{
    font-weight: 900;
    color: var(--softblue);
}

h3{
    padding: 0;
    margin: 0;
    font-size: 10vh;
    color: var(--blue);
    font-weight: 500;
    margin-top: -70px;
}

h4{
    padding: 0;
    margin: 0;
    font-size: 8vh;
    color: var(--blue);
    font-weight: 600;
}

section{
    margin: 0;
    padding: 0; 
}

div{
    padding: 0;
    margin: 0;
}

.headerView{
    padding-top: 40px;
}

.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.draw{
    width: 35%;
}

.logo{
    padding-right: 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.logo img{
    width: 400px;
}

.logo .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.start{
    padding: 20px;
    padding-top: 50px;
}

.start .startCards{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.start .startCards .startCard{
    position: relative;
    background-color:var(--gray);
    width: 250px;
    height: 220px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.start .startCards .startCard h4{
    line-height: 50px;
}

.start .startCards .startCard a{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;

    background-image: linear-gradient(to right, var(--blue) 0%, var(--softblue) 100%);
    border-radius: 50px;
    width: 110px;
}

.start .startCards .startCard a:hover{
    background-image: linear-gradient(to right, var(--orange) 0%, var(--softorange) 100%);
}

.start .startCards .startCard a h4{
    text-decoration: none;
    color: white;
    font-size: 4vh;
}

.info{
    text-align: center;
    font-size: 40px;
    line-height: 40px;
    color: var(--blue);
    margin-top: 30px;
}

.info span{
    font-weight: 700;
}

.containerView {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: start;
}

.type{
    position: absolute;
    top: -30;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(to right, var(--orange) 0%, var(--softorange) 100%);
    color: white;
    font-size: 32px;
    width: 90%;
    text-align: center;
    border-radius: 5px;
    font-weight: 700;
}

.container{
    padding-top: 30px;
    width: 80%;
    margin: auto;
}

.container .formView{
    width: 50%;
    position: relative;
    margin-top: 50px;

    align-items: start;
}

.container .formVots{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 40px;
}

.container .formVots label{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50px;
    border: none;
    position: relative;
    margin-top: 30px;
}
  
.container .formVots label .garde{
    background-color: var(--blue);
    position: absolute;
    top: -12px;
    color: white;
    font-size: 20px;
    font-weight: 500;
    width: 60px;
    text-align: center;
    border-radius: 50px;
}

.container .formVots label input[type="checkbox"]{
    display: none;
}
  
.container .formVots label .checkbox-text{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color:#f5f5f8;
    
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 16px;
    cursor: pointer;
    transition: .3s;
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    color: var(--blue);
}

.container .formVots label .checkbox-text:hover{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: .3s;
}
  
.container .formVots label input[type="checkbox"]:checked + .checkbox-text{
    background-image: linear-gradient(to right, var(--orange) 0%, var(--softorange) 100%);
    color: white;
}
  
.container .send{
    text-align: center;    
    margin-bottom: 15px;
}

.container .send .fa-solid{
    font-size: 50px;
}

.container .send button{
    width: 100px;
    height: 100px;
    margin: auto;
    text-align: center;
    background-color: transparent;
    color: #333333;
    border: none;
    border-radius: 16px;
    font-size: 30px;
    padding: 10px;
    
}

.container .send .sec{
    cursor: pointer;
    margin: auto;
    text-align: center;
    background-image: linear-gradient(to right, #4efa3e 0%, #56c70b 100%);
    color: white;
    border: none;
    border-radius: 100px;
    width: 100px;
    height: 100px;
    transition: .3s;

    width: 350px;
    height: 120px;
}

.container .send .sec:hover{
    transition: .3s;
    opacity: .7;
}


.timerBox{
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    background-image: linear-gradient(to right, #4efa3e 0%, #56c70b 100%);
    width: 100%;
    color: white;
    font-size: 35px;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    line-height: 35px;
    padding: 5px 0px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.checkHide{
    display: none !important;
}

.logout{
    position: fixed;
    top: 0;
    right: 0;
    font-size: 20px;
    text-decoration: none;
    color: black;
    background-color: var(--softorange);
    width: 70px;
    text-align: center;
}

.logout:hover{
    opacity: .7;
}


.loginForm{
    margin-top: 40px;
    text-align: center;
}

.loginForm input{
    width: 300px;
    height: 50px;
    font-size: 30px;
    margin-bottom: 15px;
    border-radius: 50px;
    border-color: var(--blue);
    padding: 0px 15px;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    transition: .3s;
}

.loginForm input:hover{
    opacity: .7;
    transition: .3s;
}

.loginForm input[type="submit"]{
    background-color: var(--blue);
    color: white;
    padding: 0;
}

.loginForm .showPass{
    width: 300px;
    height: 50px;
    font-size: 30px;
    margin-bottom: 15px;
    border-radius: 50px;
    border-color: var(--blue);
    padding: 0px 15px;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    transition: .3s;
}

.loginForm .showPass:hover{
    opacity: .7;
    transition: .3s;
}

.loginForm .showPass{
    background-color: var(--blue);
    color: white;
    padding: 0;
    margin: 0;
}
  
.checkTicket{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--gray);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.checkTicket .logoTicket{
    width: 600px;
}

.voteCount{
    position: fixed;
    bottom: 15;
    left: 15;
    z-index: 9999999999;
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.voteCount .voteCountText{
    font-size: 90px;
    font-weight: 900;
    color: var(--blue);
    line-height: 40px;
    margin-top: -5;
}

.voteCount .text{
    position: absolute;
    bottom: 15;
    font-size: 30px;
    color: var(--blue);
}

.rndPass{
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

/* #rndPass, #excellent{
    display: none;
} */

@media screen and (max-width: 1500px){
    h2 {
        font-size: 14vh;
    }

    h3 {
        margin: -60px 0px 0px;
        font-size: 8vh;
    }

    .logo {
        padding-top: 30px;
    }

    .logo img {
        width: 300px;
    }
}

@media screen and (max-width: 850px){
    .info {
        font-size: 32px;
        line-height: 30px;
    }

    .container{
        padding-top: 30px;
        width: 90%;
        margin: auto;
    }

    .container .formVots label {
        width: 120px;
        height: 120px;
        margin-top: 20px;
    }

    .container .formVots label .checkbox-text {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 100%;
        background-color: #f5f5f8;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border-radius: 16px;
        cursor: pointer;
        transition: .3s;
        font-size: 35px;
        line-height: 30px;
        font-weight: 600;
        color: var(--blue);
    }

    
    .voteCount{
        top: 15;
        left: 15;
    }
}

@media screen and (max-width: 650px){
    h2 {
        font-size: 10vh;
        margin-top: 10px;
    }

    h3 {
        margin: -45px 0px 0px;
        font-size: 8vh;
    }

    .header {
        justify-content: center;
    }

    .draw{
        display: none;
    }

    .logo {
        padding: 0;
        padding-top: 30px;
    }

    .logo img {
        width: 300px;
    }

    .start{
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .start .startCards {
        gap: 50px;
        flex-wrap: wrap;
    }

    .info {
        font-size: 26px;
        line-height: 30px;
        padding:0px 30px ;
    }

    .container{
        padding-top: 30px;
        width: 100%;
        margin: auto;
        padding: 30px 5px 10px 5px ;
    }

    .type{
        font-size: 25px;
    }

    .checkTicket .logoTicket{
        width: 300px;
    }

    .voteCount{
        position: fixed;
        top: 15;
        left: 5;
        z-index: 9999999999;
        width: 70px;
        height: 70px;
        background-color: white;
        border-radius: 50%;
        text-align: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .voteCount .voteCountText{
        font-size: 35px;
        margin-top: -10;
    }

    .voteCount .text{
        bottom: 5;
        font-size: 20px;
    }
}