/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 19 2025 | 21:50:55 */
.gform_wrapper .gform_heading .gform_title {
    font-size: 16px; /* Cambia el tamaño de la fuente */
    color: white; /* Cambia el color del texto */
    font-family: 'Poppins', sans-serif; /* Cambia la fuente */
    text-align: center; /* Centra el texto */
    font-weight: bold; /* Hace el texto en negrita */
}

/*.gfield select {
    background-color: #4aad52 !important;
	color: white;
    border: none;
    padding: 10px;
    font-size: 15px;
    width: 70%;
}*/

.gfield select {
    background-color: #ffffff !important;
	color: #666666;
    border: none;
	border-bottom: 1px;
	border-bottom-color: #275c91;
    padding: 10px;
    font-size: 15px;
    width: 70%;
}

.info-button {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #002a70; /* Fondo azul oscuro */
  border-radius: 50%; /* Hace el botón redondo */
  text-align: center;
  line-height: 40px; /* Centra el texto verticalmente */
  text-decoration: none; /* Elimina el subrayado del enlace */
}

.policy-label {
 	font-size: 12px;
	color: #fff;
}

fieldset.titulo {
    background-color: #4aad52 !important;  /*Color de fondo para el fieldset */
	color: white;
    border: none; /* Opcional: elimina el borde del fieldset si lo prefieres */
}

fieldset.titulo legend {
  	background-color: #4aad52 !important;  /*Color de fondo para el fieldset */
	
    color: white; /* Color del texto del legend */
}

.inputForm {

        font-size: 13px;

        margin-bottom: 0;

        margin-top: 8px;

        padding: 8px;

        background-color: #ffffff;

        border-width: 0px;

        border-style: solid;

        max-width: 100%;

        width: 100%;

    }
    .textoErrorTecnico {

        background: #fff9f9;

        border: 1px solid #c02b0a;

        color: #c02b0a;

        text-align: center;

        font-size: 14px;

        display: inline;
    }

  .modalDialog {

        position: fixed;

        font-family: Arial, Helvetica, sans-serif;

        top: 0;

        right: 0;

        bottom: 0;

        left: 0;

        background: rgba(0, 0, 0, 0.8);

        z-index: 99999;

        opacity: 0;

        -webkit-transition: opacity 400ms ease-in;

        -moz-transition: opacity 400ms ease-in;

        transition: opacity 400ms ease-in;

        pointer-events: none;

    }

 

    .modalDialog:target {

        opacity: 1;

        pointer-events: auto;

    }

 

    .modalDialog>div {

        font-family: solomonNormal;

        font-size: 13px;

        color: white;

        width: 867px;

        position: relative;

        margin: 10% auto;

        padding: 5px 20px 13px 20px;

        border-radius: 10px;

        background: #223369;

        -webkit-transition: opacity 400ms ease-in;

        -moz-transition: opacity 400ms ease-in;

        transition: opacity 400ms ease-in;

    }

 

    .close {

        background: #606061;

        color: #FFFFFF;

        line-height: 25px;

        position: absolute;

        right: -12px;

        text-align: center;

        top: -10px;

        width: 24px;

        text-decoration: none;

        font-weight: bold;

        -webkit-border-radius: 12px;

        -moz-border-radius: 12px;

        border-radius: 12px;

        -moz-box-shadow: 1px 1px 3px #000;

        -webkit-box-shadow: 1px 1px 3px #000;

        box-shadow: 1px 1px 3px #000;

    }

 

    .close:hover {

        background: #00d9ff;

    }

 .icono_info {

        border-radius: 100%;
	 
	 	/*background-color: #223369;*/

        width: 12%;

        margin-left: 5.5%;

        height: 25px;

    }

    .g_icono_info {

        border-radius: 100%;

        /*background-color: #223369;*/

        width: 12%;

        margin-left: 5px;

        height: 25px;

    }
 


    .ancla_icono_info {

        text-decoration: none;

        color: white;

        font-size: 20px;

        font-family: solomonNormal;

    }
.inputForm {
    color: black !important; /* Cambia el color del texto a negro para buena legibilidad (opcional) */
}

         .divTitle {

            border-bottom: solid 2px #f0ffff;

            display: flex;

            justify-content: center;

            align-items: center;

            width: 74.5%;

            margin-left: 12.7%;
			 
			 color: #ffffff

        }


    .pMasInfo {

        text-align: center;

        font-weight: bold;

        font-size: 16px;

    }

/* Media Queries para hacer el dialog responsivo */
@media (max-width: 768px) {
    .modalDialog > div {
        width: 95%;
        font-size: 14px;
        padding: 15px;
    }

    .close {
        font-size: 16px;
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
}

@media (max-width: 480px) {
    .modalDialog > div {
        font-size: 12px;
    }

    .close {
        font-size: 14px;
    }
}

.suggestion-list {
    list-style-type: none;
    padding: 0;
    border: 1px solid #ddd;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    width: 300px;
    background: white;
    z-index: 1000;
    display: none;
}

.suggestion-list li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.suggestion-list li:hover {
    background: #f0f0f0;
}