#mainquiztok {
    display: flex;
    max-width: 800px;
    flex-direction: column;
    align-items: flex-start;
    height: calc(100% - 5px);
    margin: 0 auto;
}





#enunciado {
    display: flex;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #000;
    text-align: center;
    /* font-size: 18px; */
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    /* background: red; */
    font-size: 24px;
}

.semImg {
    align-self: stretch;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex: 1 0 0;
    font-size: 36px !important;
    transform: translateY(-80px);
}


#enunciado_img {
    max-width: 100%;
    /* background: #cde374; */
    flex: 1 0 0;
    align-self: stretch;
    justify-content: center;
    align-items: center;
    align-content: start;
    margin: 0 auto;
}

#enunciado_img img {
    max-width: 100%;
    max-height: calc(100vh - 100px);
    margin: 0 auto;
    display: block;
}


#enunciado_img:hover~#opcoes {
    opacity: 0.4;
}



#opcoes {
    width: 100%;
    /* background: #ff00ee33; */
    display: flex;
    width: 760px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: calc(100% - 250px);
    /* transform: translateX(-100px); */
    transition: all 0.5s;
}

#opcoes .opcao {
    width: 100%;
    background: #ffffff;


    display: flex;
    width: 160px;
    height: 160px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;

    border-radius: 16px;
    /* border-bottom: 4px solid rgba(0, 0, 0, 0.05); */
    box-shadow: inset -0px -4px 0 rgba(0, 0, 0, 0.05),
        inset 0px 4px 0 rgba(255, 255, 255, 0.2),
        1px 4px 12px 0px rgba(0, 0, 0, 0.12);
    background: #FFF;
    /* box-shadow: 1px 4px 12px 0px rgba(0, 0, 0, 0.12); */

    color: #000;

    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    cursor: pointer;
    transition: all 0.5s;
    position: relative;
}


#opcoes .opcao:hover {
    transform: scale(1.2)
}


#clock {
    width: 100%;
    max-width: 800px;
    border-radius: 50px;
    background: linear-gradient(180deg, #F5F5F5 0%, #B6B4B1 100%);
    box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.2);
    max-height: 38px;


    padding: 10px 20px;
    position: fixed;
    top: calc(100% - 48px);
    opacity: 0.90;
}


#clock_intern {
    display: grid;
    gap: 10px;
    grid-template-columns: 18px auto;
    align-items: center;
}


#bartime_extern {
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.50);
    height: 5px;
}

#bartime_intern {
    height: 100%;
    min-width: 5px;
    width: 100%;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0px -4px 0px 0px rgba(0, 0, 0, 0.08) inset;
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.8);
    }

    100% {
        transform: scale(1);
    }
}

#clock img {
    animation: pulse 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.red {
    background-color: red !important;
}


.opcaoCerta {
    outline: 30px solid #00b5482e;
    border: 5px solid #00ff66cc;
    color: #00b548 !important;
    transform: scale(1.2);
    transition: all 2.5s;
    pointer-events: none;
}

.opcaoErrada {
    outline: 30px solid #b500002e;
    border: 5px solid #f30000ec;
    color: #b50000 !important;
    transform: scale(1.2);
    transition: all 2.5s;
    pointer-events: none;
}


.outraOpcao {
    opacity: 0.5;
    pointer-events: none;
    transform: scale(0.7);
}

#btn-boltar {
    display: none;
}



.opcaoErrada::after {
    content: url(../img/icon_errado.svg);
    display: inline-block;
}

.opcaoCerta::after {
    content: url(../img/icon_certo.svg);
    display: inline-block;
}


.endTime {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.70);
    color: white;
    border-radius: 16px;
}


@media only screen and (max-width: 980px) {

    #opcoes {
        position: unset;
        width: 100%;
        margin-bottom: 20px;
        z-index: 10000;
    }

    #opcoes .opcao{
        width: 150px;
        height: 150px;
    }

    #clock {
        height: auto;
        max-height: unset;
        position: unset;
        border-radius: 0;
        max-width: unset;
        width: 100%;
        gap: 20px;
        height: 218px;
        align-self: stretch;
    }

    #mainquiztok {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-shrink: 0;
        height: calc(100%);
    }

    #enunciado {
        transform: none;
        align-self: stretch;
        font-size: 20px;
        padding: 10px;
        
    }

    #enunciado_img {
        max-width: 100%;
        max-height: calc(100% - 218px - 160px);
        height: 100%;
        flex: 1 0 0;
        align-self: stretch;
    }

    #enunciado_img img {
        max-width: 100%;
        max-height: calc(100%);
        /* height: 100%; */
        margin: 0 auto;
        display: block;
        
    }


    .semImg {
        font-size:22px !important;
    }


}