


body {
	margin: 0;
	padding: 0;
	font-family: ;
	font-size: px;
	font-weight: ;
	color: ;
}


#main_title {
	font-family: ;
	font-size: px;
	font-weight: ;
	color: ;
    }

.question-box h2 {
	color: ;
}

.radio-option span {
	color:  !important;
}








.submit-button {
	background-color: ;
	border-radius: 0px;
	display: block;
	padding: 24px 35px;
	border: none;
	color: white;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 20px;
	cursor: pointer;
	text-align: center;
	transition: transform 0.2s ease;
	margin-top: 20px;
}



.error-message {
	font-family: ;  /* ✅ Fuente del texto corrido */
	font-size: px; /* ✅ Tamaño del texto corrido */
	font-weight: ; /* ✅ Negrita del texto corrido */
	color: ;  /* ✅ Color de error */
	margin-top: 5px;
}


.graph-main-color {
	background-color: ;
}

.graph-secondary-color {
	background-color: ;
}

.success-message {
	font-size: 20px;
	font-weight: 600;           
	background-color: ;
	color: ;
    border-radius: 20px;
    padding: 37px;
    margin-bottom: 20px;
}

.container {
    width: 895px;
    margin: 0 auto;
    padding: 0;
    max-width: 95%;
    padding-top: 5px;
}

h1 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    margin-bottom: 20px;
    padding-top: 5px;
}

.description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    margin-bottom: 50px;
}

.question-box {
    background-color: ;
    border-radius: 20px;
    padding: 37px;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 22px;
    color: #004F88;
    text-align: left;
    margin-top: 0;
}

img {
    display: block ;
    margin-left: auto ;
    margin-right: auto ;
}

iframe{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

p > img {
   max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}

.question-description {
    font-family: ;
    font-weight: 400;
    font-size: 18px;
    color: ;
    text-align: left;
}

.textarea-container {
    position: relative;
    width: 100%;
}

textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #E2E2E2;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #333333;
    resize: vertical;
    min-height: 150px;
}

.char-counter {
    position: absolute;
    bottom: 24px;
    right: 18px;
    font-family: 'Host Grotesk', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #A3A3A3;
}

button.button-pista {
    display: block;
    padding: 10px 20px;
    background-color: #1982C4;
    border: none;
    border-radius: 23px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Fdo Cambio imagen. Cambios hacer que aparesca en los radio, la imagen luego el texto en lineas separadas
*/
    .options-container {
        position: relative;
        display: grid;
        grid-template-columns: minmax(310px, max-content);
        gap: 10px;
        width: 90%;
        padding-right: 0;
    }
    
    /* Responsive para tablets y móviles */
    @media (max-width: 768px) {
        .options-container {
            grid-template-columns: 1fr;
        }
    }

    .options-container .radio-option .option-text {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
        }

    /* El radio button */
    .options-container .radio-option input[type="radio"] {
    margin-top: 6px;
    }

    /* Contenedor de imagen + texto */
    .options-container .radio-option .option-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    /* Imagen dentro de la opción */
    .options-container .radio-option img {
        max-width: 100px; /* ajustable */
        height: auto;
        display: block;
        margin-bottom: 6px;
        margin-left: 0;
        margin-right: auto;
    }



/* Fin cambio imagen*/

.radio-option, .checkbox-option {
    background: white;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%; /* Asegura que todas las opciones tengan el mismo ancho */
}

input[type="radio"], input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #E2E2E2;
    margin-right: 10px;
    transition: all 0.2s ease-in-out;
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="checkbox"] {
    border-radius: 4px;
}

input[type="radio"]:checked {
    border-color: #004F88;
    background: #004F88;
    box-shadow: inset 0 0 0 4px white;
    transition: all 0.2s ease-in-out;
}

input[type="checkbox"]:checked {
    background-color: #004F88;
    border-color: #004F88;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    transition: all 0.2s ease-in-out;
}

input[type="radio"]:hover, input[type="checkbox"]:hover {
    border-color: #004F88;
    transition: all 0.2s ease-in-out;
}

.radio-option span, .checkbox-option span {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #333333;
}

.image-instruction {
    font-family: 'Bitter', serif;
    font-weight: 400;
    font-size: 20px;
    color: #004F88;
    text-align: left;
    margin-top: 5px;
}

.image-options {
    grid-template-columns: minmax(310px, max-content);
}

.image-options .radio-option {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Alinea elementos en la parte superior */
    padding: 20px;
    width: 100%;
    gap: 15px; /* Espacio entre radio y imagen */
}

.image-options .radio-option input[type="radio"] {
    margin: 0; /* Eliminamos márgenes anteriores */
    order: 1; /* Movemos el input al principio */
}

options-container img {
    max-width: 300px; /*  Establece el ancho máximo */
    height: auto; /*  Mantiene la proporción */
    display: block; /*  Evita espacios extra debajo de la imagen */
}

.image-options img {
    max-height: 110px;
    width: auto;
    max-width: calc(100% - 35px);
    object-fit: contain;
    border-radius: 20px;
    order: 2; /* Movemos la imagen después del input */
}

.personal-data-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    width: 100%;
    max-width: 330px;
    padding: 17px 22px;
    border: 1px solid #E2E2E2;
    border-radius: 23px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #333333;
    background: white;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #333333;
    opacity: 0.8;
}



.submit-button:hover,
.submit-button:active {
    transform: scale(1.05);
}



.results-message {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    padding: 15px 0;
}

.percentage {
    position: absolute;
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #004F88 !important;
    white-space: nowrap;
    font-weight: 500;
}

span.percentage {
    font-weight: 500;
}

button.submit-button {
margin-bottom: 10px;
}

/* Responsive para tablets y móviles - mover porcentaje debajo */
@media (max-width: 768px) {
    .percentage {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        display: block;
        text-align: center;
        white-space: normal;
    }
    
    .radio-option, .checkbox-option {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    .results {
        width: 100%;
        margin-top: 10px;
        order: 3;
        flex-basis: 100%;
    }

    .question-box {
    padding: 20px;
    }


}

.image-options .percentage {
    top: 20px;
    transform: none;
}

.percentage strong {
    font-weight: 700;
}

.disabled-option {
    opacity: 0.3;
}

.question-box.submitted .options-container label:not(.selected) {
    opacity: 0.3;
}

.question-box.submitted .options-container label:not(.selected) .percentage {
    opacity: 1;
}

.question-box.submitted .percentage {
    opacity: 1;
    color: #539D2C;
}

.question-box.submitted input,
.question-box.submitted textarea {
    pointer-events: none;
    opacity: 0.7;
}

.question-box.submitted input[type="radio"],
.question-box.submitted input[type="checkbox"] {
    pointer-events: none;
    cursor: default;
}

.question-box.submitted input[type="radio"]:hover,
.question-box.submitted input[type="checkbox"]:hover {
    border-color: #E2E2E2;
}

.question-box.submitted input[type="radio"]:checked:hover,
.question-box.submitted input[type="checkbox"]:checked:hover {
    border-color: #004F88;
}

.options-container label {
    position: relative;
    display: flex;
    width: 100%;
}





.correct {
color: green;
font-weight: bold;
}

.incorrect {
color: red;
font-weight: bold;
}

.draggable-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.opcion {
padding: 10px;
background: #f0f0f0;
border: 1px solid #ccc;
cursor: grab;
}

.social-share {
display: flex;
gap: 10px;
align-items: center;
background: #d1e7dd;
color: #0f5132;
padding: 20px;
}

.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
color: white;
font-size: 18px;
text-decoration: none;
transition: transform 0.2s ease;
}

.social-icon:hover {
transform: scale(1.1);
}

/* Colores de cada red social */
.facebook { background: #1877F2; }
.twitter { background: #1DA1F2; }
.whatsapp { background: #25D366; }
.linkedin { background: #0077B5; }
.telegram { background: #0088CC; }

.option-label {
    background: white;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    position: relative;
    transition: background 0.3s ease;
}

.option-label.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Mostrar en verde si la respuesta es correcta */
.option-label.correct {
    background: #d4edda;
    border: 2px solid #155724;
    color: #155724;
}

/* Mostrar en rojo si la respuesta es incorrecta */
.option-label.incorrect {
    background: #f8d7da;
    border: 2px solid #721c24;
    color: #721c24;
}

.option-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #333;
}

.feedback {
    margin-left: auto;
    font-size: 14px;
    font-weight: bold;
}



.submit-button.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.feedback-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #004F88;
    padding: 20px 0px 0px 10px;
}

.points-label {
    font-size: 14px;
    font-weight: bold;
    color: #28a745;
    margin-top: 10px;
    display: block;
}

.question-block{
    padding-bottom: 40px;
}

.share-text{
    font-size: 20px;
}

.score-text{
    font-size: 20px;
}
.btn-play-again{
    padding: 20px 25px;
    background-color: #ff7850; 
    border: none; 
    border-radius: 23px;
    color: white; 
    font-family: 'Roboto', sans-serif; 
    font-weight: 600; 
    font-size: 14px;
     cursor: pointer; 
     text-align: center; 
     transition: transform 0.2s ease;
     margin-top: 20px;
}

.ql-align-right {
    text-align: right;
}
.ql-align-center {
    text-align: center;
}
.ql-align-left {
    text-align: left;
}

.ql-align-justify {
text-align: justify !important;
}



.rayas {
    float: left;
    left: 0;
    padding-right: 10px;
    margin-top: 10px;
}


.vistaprevia{
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ff924d;
    color: #FFFFFF;
    font-family: 'HostGrotesk', sans-serif;
    font-weight: 800;
    font-size: 30px;
    text-align: center;
    padding: 15px 10px;
    z-index: 9999
}