@import url('../../components/head.css?2024127');
*{
    margin: 0px;
    padding: 0px;
}
body{
    width: 100%;
    height: 100%;
    background-color: aliceblue;
    background-size: 100rem;
    user-select: none;
}
 .con_main{
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}
.con_test{
    min-width: 380px;
    width: 50%;
    background-color: white;
}
.con_test .head{
    background-color: rgb(12, 137, 193);
    padding:10px 10px ;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head .detalle{
    width: 80%;
    text-align: center;
}
.head .time{
    background-color: rgb(83, 109, 89);
    padding: 5px;
    display: none;
   
}
.head .timeglobal{
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:rgb(255, 68, 0);
    padding: 5px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 600;
    animation: temporiza 0.7s linear 1s infinite;
}
.imgtest{
    margin-top: 1rem;
}

@keyframes temporiza {
    from{
        font-size: 14px;
    }
    to{
        font-size: 17px;
    }
}
.con_test .body{
    padding: 3rem;
}
.body .enunciado{
    width: fit-content;
    padding: 10px 10px;
    border: 1px solid rgb(199, 196, 196);
    border-radius: 10px;
    font-size: 15px;
    margin-left: 1rem;
}
.body .test .pregunta{
    padding: 2rem 1rem;
    border-bottom: 2px solid rgb(205, 200, 200);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.body .test .pregunta img{
    width: fit-content;
    max-width:400px;
}
.body .test .opcion{
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid rgb(205, 200, 200);
}
.body .test .opcion label{
    padding: 1rem;
    width: 100%;
}
.body .test .opcion input{
    margin: 10px;
    background-color: green;
}
.body .test .opcion:hover{
   background-color: rgb(12, 137, 193);
   color: white;
}
.opcion .iconvalidar{
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 5px;
    display: none;
}
.body  .btnnext{
   margin-top: 3rem;
   padding: 0.5rem;
   min-width: 100px;
   width: 20%;
   color: white;
   background-color: rgb(12, 137, 193);
   border: 0px;
   border-radius: 5px;
}
.body .con_starttest{
    display: flex;
    justify-content: center;
   
}
.body .con_starttest .btnstarttest{
    background-color: rgb(255, 68, 0);
    border: 0px;
    border-radius: 5px;
    color: white;
    padding: 1rem;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
}