/* Estilos generales del formulario */
.uk-eta-form-step {
    margin: 20px auto;
    max-width: 600px;
	min-width: 600px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
}

@media only screen and (max-width:768px){
	.uk-eta-form-step {
    max-width: 100%!important;
	min-width: 100%!important;
	}
	.uk-eta-reason-grid{
		flex-direction: row!important;
	}
}

.uk-eta-form-header {
    margin-bottom: 16px;
}

.uk-eta-form-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uk-eta-form-title {
    font-family: 'Inter'!important;
    font-size: 20px!important;
	margin: 0!important;
}

.uk-eta-form-row {
    margin-bottom: 16px;
}

.uk-eta-form-item-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
	width: 33%;
}

.uk-eta-hidden {
    display: none !important;
}

.uk-eta-label {
    font-weight: bold;
}

.uk-eta-reason-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
	justify-content: space-between;
}
@media (min-width: 576px) {
    .uk-eta-reason-grid {
        flex-direction: row;
    }
}

.uk-eta-form-check-input {
    transform: scale(1.2);
    margin-right: 8px;
}

.uk-eta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.uk-eta-icon {
    max-width: 48px;
    margin: 0 auto;
}

/* Botón */
.uk-eta-btn {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    border-radius: 4px;
}

.uk-eta-btn-success {
    background-color: #52b418;
    font-family: 'Inter';
	font-weight: 500;
	letter-spacing: -0.5px;
    padding: 15px;
    width: 100%;
    color: #fff;
}

.uk-eta-btn-success:hover {
	background: #c91e35;
	color: white;
}

.uk-eta-btn-success:focus {
	background: #c91e35!important;
	color: white;
}

.uk-eta-error {
    color: #d9534f; /* Rojo */
    font-size: 0.9rem;
    margin-top: 4px;
}

/********************************************
 * 1. Ocultar el radio button (sin quitar su funcionalidad)
 ********************************************/
.uk-eta-form-item-wrapper input[type="radio"] {
    position: absolute;   /* Lo saca del flujo normal */
    opacity: 0;           /* Lo hace invisible */
    pointer-events: none; /* El usuario no interactúa directamente con él */
    justify-content: center;
}

/********************************************
 * 2. Estilizar el contenedor clickable (.uk-eta-wrapper)
 ********************************************/
/* Por defecto el bloque tiene un borde transparente y es clicable */
.uk-eta-form-item-wrapper .uk-eta-wrapper {
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 10px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
	justify-content: center;
	width: 100%;
    height: 100%;
}

/* Efecto hover para que se resalte cuando el usuario pase el ratón */
.uk-eta-form-item-wrapper:hover .uk-eta-wrapper {
    background-color: #f9f9f9;
}

/* Cuando el radio está seleccionado, el bloque se resalta */
.uk-eta-form-item-wrapper input[type="radio"]:checked + .uk-eta-wrapper {
    border-color: #52b418;     /* Borde verde */
    background-color: #f1f1f1;  /* Fondo gris claro */
}


label[for="has-secondary-citizenship"] {
    width: 100%!important;
}

label[for="reason-for-travel-tourism"] {
    border: 1px solid #d0d0d0;
    border-radius: 8px;
}

label[for="reason-for-travel-business"] {
    border: 1px solid #d0d0d0;
    border-radius: 8px;
}

label[for="reason-for-travel-transit"] {
    border: 1px solid #d0d0d0;
    border-radius: 8px;
}

#eligibility-form-step-2-outcome{
	display: flex;
    flex-direction: row;
    align-items: center;
}

#eligibility-form-step-2-outcome img{
	 width: 50px!important;
}

#eligibility-form-step-2-outcome h2{
	font-size: 21px!important;
    font-family: 'Inter'!important;
    margin: 0!important;
    padding-left: 10px!important;
	line-height: 22px!important;
}

#eligibility-form-step-2-outcome {
	margin-bottom: 20px!important;
}

#citizenship-meta{
	background: #F8FAFC;
    font-family: 'Inter';
    font-weight: 600;
    color: #474747;
    font-size: 14px;
    padding: 13px;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
}

#length-of-stay-meta{
	background: #F8FAFC;
    font-family: 'Inter';
    font-weight: 600;
    color: #474747;
    font-size: 14px;
    padding: 13px;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
}

#type-meta{
	background: #F8FAFC;
    font-family: 'Inter';
    font-weight: 600;
    color: #474747;
    font-size: 14px;
    padding: 13px;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
}