#recurso2 {
    text-align: center;
    font-size: 22px;
    max-width: 1000px;
    width: 100%;
    overflow: initial;
}

.redi__calificar {
    position: sticky;
    bottom: 10px;
    z-index: 99;
}

.texto-ahorcado {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #016d38;
    font-size: 25px;
}

.letra {
    width: 30px;
    height: 30px;
    border: none;
    color: #fff;
    margin: 5px;
}

.espacio {
    width: 20px;
}

.contenedorSopa {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
}

@media (max-width: 767px) {
    .contenedorSopa {
        grid-template-columns: 1fr;
    }
}

#container_abecedario {
    width: 100%;
    margin: auto;
    max-width: 450px;
}

@media (max-width: 767px) {
    #container_abecedario {
        width: 100%;
    }
}

#container_abecedario input {
    border-radius: 3px;
    padding: 0;
}

#container_abecedario input:nth-child(5n+1) {
    background: #016d38;
    box-shadow: 0 0 0 2px #016d38;
}

#container_abecedario input:nth-child(5n+2) {
    background: #f8cf3d;
    box-shadow: 0 0 0 2px #f8cf3d;
}

#container_abecedario input:nth-child(5n+3) {
    background: #0C1B68;
    box-shadow: 0 0 0 2px #0C1B68;
}

#container_abecedario input:nth-child(5n+4) {
    background: #016d38;
    box-shadow: 0 0 0 2px #016d38;
}

#container_abecedario input:nth-child(5n+5) {
    background: #E70000;
    box-shadow: 0 0 0 2px #E70000;
}

#container_abecedario input[disabled] {
    background-color: #e5e5e5;
    box-shadow: 0 0 0 2px #e5e5e5;
}

#container_palabra {
    color: #ffdc5d;
    font-size: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto 10px;
}

@media (max-width: 767px) {
    #container_palabra {
        display: block;
    }
}


#campo_ahorcado {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

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

.pista_titulo {
    font-size: 32px;
    color: #016d38;
    font-weight: 600;
    margin-top: 10px;
}

#pista_palabra {
    padding-bottom: 10px;
    color: #333;
    font-size: 22px;
    line-height: 1.3;
    text-align: justify;
}

.linea {
    font-size: 50px;
    color: #ffdc5d;
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
}

.linea:first-child {
    margin-left: 0;
}

.linea:last-child {
    margin-right: 0;
}

.letra-palabra {
    color: #333;
    position: relative;
    display: inline-block;
    font-size: 35px;
    width: 0;
    left: 10px;
    padding-bottom: 5px;
}

.letra-palabra:first-child {
    text-transform: capitalize;
}

@media (max-width: 570px) {
    .linea {
        font-size: 22px;
    }

    .letra-palabra {
        font-size: 22px;
        left: 5px;
    }
}

#modal-ahorcado {
    text-align: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.3);
}

#modal-ahorcado .modal-content {
    background: #016d38;
    padding: 8px;
    border-radius: 10px;
}

#modal-ahorcado.intentar .modal-content {
    background: #ffdc5d;
    color: #016d38;
}

#modal-ahorcado button.closeModal {
    top: 0;
    right: 0;
    transform: translate(30%, -30%);
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8cf3d;
    color: #016d38;
    transform: scale(1);
    transition: transform .3s;
}

#modal-ahorcado.intentar button.closeModal {
    background: #016d38;
    color: #fff;
}

#modal-ahorcado button.closeModal:hover {
    transform: scale(1.02);
}

#modal-ahorcado .modal-body {
    border: 2px dashed #fff;
}

#modal-ahorcado.modal.in .modal-dialog {
    top: 50%;
    transform: translateY(-70%);
}

#modal-ahorcado button.closeModal {
    top: 0;
    right: 0;
    transform: translate(30%, -30%);
}

#texto-modal {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 20px;
}

.intentalo,
.continuar {
    display: block;
    margin-top: 19px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    #texto-modal {
        font-size: 24px;
        line-height: 1.3;
    }
}

@media (max-width: 767px) {
    .espacio::before {
        content: '\A';
        white-space: pre;
    }
}