@-webkit-keyframes califica-respuesta {
    1% {
        opacity: 0.1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes califica-respuesta {
    1% {
        opacity: 0.1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.Respuesta-correcta:before {
    -webkit-animation: califica-respuesta 1s linear;
    animation: califica-respuesta 1s linear;
    content: ' ';
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-image: url('../img/bien.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.Respuesta-incorrecta:before {
    -webkit-animation: califica-respuesta 1s linear;
    animation: califica-respuesta 1s linear;
    content: ' ';
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-image: url('../img/mal.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

#pregunta {
    width: 100%;
    height: 100%;
    color: #000;
    border-radius: 10px;
    padding: 1vw;
    background: rgba(238, 238, 238, 0.6);
    ;
}

#respuestas-actividad2 {
    width: 100%;
    height: 100%;
    color: #555;
    padding: 1vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.respuesta-seleccionada {
    opacity: 0.3;
}

.titulo-pregunta {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    color: #016d38;
    font-weight: 600;
}

.contorno-respuesta {
    text-align: center;
    padding: 1px;
}

.contorno-respuesta label {
    cursor: pointer;
    max-width: 100%;
}

.col-xs-6 {
    width: 50%;
}

@media (min-width: 768px) {
    .col-xs-6 {
        width: 33%;
        float: left;
    }
}

.col-xs-8 {
    width: 50%;
}

.col-xs-12 {
    width: 100%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}


.imagen-respuesta {
    width: 210px;
    height: 230px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: background-image;
    transition: background-image;
}

@media (max-width: 512px) {
    .imagen-respuesta {
        width: 200px;
        height: 190px;
    }
}

@media (max-width: 445px) {
    .imagen-respuesta {
        width: 138px;
        height: 190px;
    }
}


#siguiente {
    text-align: center;
}

.boton-siguiente {
    font-family: 'Roboto', sans-serif;
    width: 133px;
    height: 43px;
    border-radius: 8px;
    background-color: #016d38;
    color: #fff;
    border: none;
    -webkit-box-shadow: 6px 6px 3px 0px rgba(0, 0, 0, 0.40);
    box-shadow: 6px 6px 3px 0px rgba(0, 0, 0, 0.40);
}

.redi__calificarBoton {
    border: none;
}


button[disabled],
html input[disabled] {
    opacity: 0.3;
}

/* Ajustes */

.contenido {
    font-size: 20px;
}

.contenido h2 {
    font-size: 26px;
    margin-top: 0;
}

.contenido-cscoei {
    max-width: 1000px;
    width: 100%;
    margin: 30px auto;
    border: dashed #016d38 1px;
    border-radius: 10px;
    padding: 1.6vw;
    -webkit-box-shadow: 0px 0px 0px 9px #fff, 0px 0px 0px 11px #016d38;
    box-shadow: 0px 0px 0px 9px #fff, 0px 0px 0px 11px #016d38;
    margin: 30px auto;
}

label {
    max-width: 100%;
}