.experience_slider {
    width: 1000vw;
}

/* Selección de experiencia */
.experience_buttons_container {
    display: flex;
    width: 90%;
    flex-direction: column;
    align-items: center;
    margin: 70px 0 auto 0;
}

.experience_buttons_container .anwser-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Center horizontally */
    margin-top: 20px; /* Add space between buttons */
}

.experience_buttons_container .rounded-button-start {
    margin: 10px 0;
    width: 100%;
}

.button_experience {
    position: static;
}

.button_experience:first-child {
    margin-top: 30px;
}

.not-back-ground {
    background-color: transparent;
    background-image: none;
}

.dots_container {
    display: flex;
    margin: auto 0;
    min-height: 50px;

}

.animated_dot {
    position: relative;
    display: flex;
    z-index: 9999;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 10px;
    animation: bounce 1s infinite ease-in-out;
}

.animated_dot:nth-child(2) {
    animation-delay: 0.25s;
}

.preload_buttons_container {
    display: flex;
    width: 90%;
    flex-direction: column;
    align-items: center;
    margin: 150px 0 auto 0;
}

.animated_dot:nth-child(3) {
    animation-delay: 0.5s;
}

/*  */
.logo_experiencia_container {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xperience_text_container{
    color: #FFF;
    font-size: 1.5em;
    font-weight: 100;
    margin-top: 15px;
}

/*Styles for the rounded buttons in the quiz*/
.button-container {
    display: inline-block;
}

/* Style for the round image buttons */
.round-button {
    border: white 1px solid;
    border-radius: 50%; /* Makes the button round */
    padding: 0; /* Remove padding to make the button size fit the image */
    cursor: pointer;
    margin-left: 10%;/* Add space between buttons horizontally */
    margin-right: 10%;
    filter: brightness(0) invert(1);
    width: 73px;
    height: 73px;
}

/* Style to remove default button outline on focus */
.round-button:focus {
            outline: none;
}

/* Style for the text */
.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px; /* Adjust font size as needed */
    text-align: center;
}

.instrucciones-quiz {
    margin: 1.25em 0 0.25em 0;
    font-size: 1.25em;
}

/* Style for disabled buttons */
button:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    background-color: transparent;
    color: #FFF;
    /* Add any other styling you want for disabled buttons */
}

.round-button:disabled {
    cursor: not-allowed;
    opacity: 1;
    background-color: #ffffff;
    filter: brightness(1) invert(0);
    /* Add any other styling you want for disabled buttons */
}

@keyframes bounce {
    0% {
        top: 100%;
    }

    50% {
        top: 50%;
    }

    100% {
        top: 100%;
    }
}