.contenido {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    header h1 {
        font-size: 40px;
    }
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    line-height: 1.2 !important;
    vertical-align: middle;
    padding: 6px 10px;
    border-color: hsla(0, 0%, 100%, 0.5);
}

.qwsa-form label {
    display: block;
    width: 100%;
    text-align: center;
    height: 100%;
    cursor: pointer;
    margin-bottom: 0;
}

.title_table {
    color: #2B8B4B;
    font-size: 22px;
    font-family: var(--fuente__titulos);
}

@media (max-width: 767px) {
    .title_table {
        font-size: 18px;
    }
}


.label-container {
    /*position: relative;*/
}

.label-container input {
    left: 45%;
    right: 50%;
    margin: auto;
    width: 35px;
    height: 35px;
    display: none;
    opacity: 0;
}

.radio-elegant {
    top: -5px;
    right: 50%;
    margin: auto;
    width: 30px;
    height: 30px;
}

svg.svg-radio-elegant {
    border: 3px solid #fff;
    height: 30px;
    pointer-events: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: hsla(161, 33%, 53%, 0.7);
}

svg.svg-radio-elegant:not(:root) {
    overflow: hidden;
}

svg.svg-radio-elegant path {
    stroke: #FEC51C;
    stroke-width: 13px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 1009.5966796875px, 1009.5966796875px;
    stroke-dashoffset: 1009.5966796875px;
    -webkit-transition: stroke-dashoffset 0.8s ease-in 0s;
    transition: stroke-dashoffset 0.2s ease-in 0s;
}

.checked svg.svg-radio-elegant path {
    stroke-dashoffset: 0px;
}

@keyframes fondo {
    0% {
        background-position: center left 10px, top 3px right 0;
    }

    100% {
        background-position: center left 30px, top 3px right 200px;
    }
}

.fondoContenido {
    background-color: hsla(161, 33%, 53%, 0.4);
    background-image: url(../img/fondo.gif), url(../img/fondo2.svg);
    background-size: 120px, 1000px;
    padding: 20px 50px 20px 160px;
    border-radius: 10px;
    background-position: center left 10px, top center;
    background-repeat: no-repeat, repeat;
    animation: fondo 8s infinite linear;
    overflow: hidden;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    @keyframes fondo {
        0% {
            background-position: bottom 10px center, top 3px right 0;
        }

        100% {
            background-position: bottom 10px center, top 3px right 200px;
        }
    }

    .fondoContenido {
        padding: 20px 20px 140px;
        margin-bottom: 30px;
        background-size: auto 135px, 1000px;
        background-position: bottom 10px center, top center;
    }
}

.modalCalificacion.edModal--activo {
    background-color: rgb(0 0 0 / 80%);
}

.modalCalificacion__porcentajeTexto,
.modalCalificacion__porcentaje {
    color: #ffd02c;
}

.modalCalificacion__resultado {
    max-width: 500px;
}

.modalCalificacion__retro {
    background-color: rgb(0 0 0 / 20%);
    border-radius: 10px;
    box-shadow: inset 0 0 3px 0 rgb(0 0 0 / 20%);
    padding: 10px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 0;
}