.quiz-container {
    /* display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px 10px;
    position: relative;
    z-index: 9999; */
    /* modified */
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 30px 10px;
    position: relative;
    z-index: 9999;
    box-shadow: -11px 10px 20px 7px gray;
}

.checkboxContainer {
    display: flex;
    align-items: center;
    margin: 15px 0px;
    /* modificado */
    display: flex;
    align-items: center;
    margin: 15px 0px;
    font-size: 1.1em;
    color: #444444;
}

.inputOptions{
    width: 13px;
    margin-right: 10px;
}

.inputText {
    display: flex;
    margin-left: 10px;
    cursor: pointer;
}

.question-prev {
    display: none;
}

.question-next {
    display: none;
}

.question-title {
    padding: 20px 0 20px 20px;
}

.quiz-options {
    margin-top: 20pxpx;
    padding-left: 50px;
}

.container-buttons {
    /* display: flex;
    align-items: center;
    height: 10%;
    margin-top: 50px;
    margin-bottom: 20px; */
    /* CSS MODIFICADO */
    display: flex;
    align-items: center;
    height: 10%;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-left: 35px;
    justify-content: flex-end;
    padding-right: 372px;
    gap: 8px;
}

.button-question {
    background-color: #ffcc02;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    margin-left: 10px;
}

.button-question-reload {
    background-color: gray;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.text-pagination {
    /* font-size: 12px;
    color: gray;
    margin-left: 15%; */
    /* modified */
    font-size: 14px;
    color: gray;
    margin-left: 2%;
    font-weight: 600;
}

.questions-container {
    height: 100%;
    width: 90%;
}

.button-question:hover {
    opacity: 0.8;
}

#quizResultsContainer {
    display: flex;
    flex-direction: column;
    height: 200px;
    align-items: baseline;
    justify-content: space-evenly;
}

#buttonShowQuiz {
    display: block;
    font-size: 11px;
    cursor: pointer;
    line-height: 1;
    background-color: #71716E;
    color: #fff;
    border-radius: 5px;
    padding: 8px 30px;
    font-size: 11px;
    width: 170px;
    margin-left: calc(100% - 200px);
}

#buttonShowQuiz:hover {
    background-color: #444444;
}

.container-button-quiz{
    /* display: flex;
    flex-wrap: wrap;
    justify-content: initial;
    align-items: center; */
    /* modified */
    display: flex;
    flex-wrap: wrap;
    justify-content: initial;
    align-items: center;
    gap: 2px;
}

.text-button-show-quiz{
    margin-left: 10px;
}

.text-button-show-quiz-img {
    width: 15px;
}

.container-message {
    background-color: #eacb32;
    padding: 15px 20px;
    font-size: 12px;
    color: #000;
    text-align: center;
    position: absolute;
    top: 60px;
    right: 0;
    opacity: 0.9;
    z-index: 100000;
}

/*
    CAMBIOS CSS NUEVOS----------------------------------------------------------------------
*/

/*
    BOTON ANTERIOR QUIZ
*/

.css-button-arrow--sky {
    min-width: auto;
    height: auto;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    background: linear-gradient(218deg, #ffcc02, #ae8d09);
}

.css-button-arrow--sky:hover {
    border-radius: 5px;
    padding-left: 24px;
    padding-right:8px;
}

.css-button-arrow--sky:hover:after {
    opacity: 1;
    right: 93px;
}

.css-button-arrow--sky:after {
    content: "\00AB";
    position: absolute;
    opacity: 0;
    font-size: 20px;
    top: 0;
    left: 8px;
    transition: 0.4s;
}

/*
    BOTON SIGUIENTE QUIZ
*/

.css-button2-arrow--sky {
    min-width: auto;
    height: auto;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    background: linear-gradient(218deg, #ffcc02, #ae8d09);
}

.css-button2-arrow--sky:hover {
    border-radius: 5px;
    padding-right: 24px;
    padding-left:8px;
}

.css-button2-arrow--sky:hover:after {
    opacity: 1;
    right: 10px;
}

.css-button2-arrow--sky:after {
    content: "\00BB";
    position: absolute;
    opacity: 0;
    font-size: 20px;
    top: 0;
    right: -20px;
    transition: 0.4s;
}

/*
*/

.quiz-name{
    font-size: 2.5em;
    font-weight: 700;
    color: #444444;
}

.strong_id_question{
    color: #444444;
    font-weight: 900;
}

.question-title{
    font-size: 1.15em;
}

.inputText:hover {
    font-weight: bold;
}

.inputOptions:checked + .span-check-option {
    font-weight: bold;
}

@media only screen and (min-width: 0px) and (max-width: 767.98px) {

    .container-buttons{
        padding-right: 0;
    }

}