html {
	overflow: -moz-scrollbars-vertical;
	overflow-y: scroll;
}
/*Barra navegacion*/
#divCabecera{
            background-color: #fff;
        }
        .navLogo{
            height: auto;
            padding: 10px 15px;
        }
/*Cuerpo*/
#txtCaptcha {
	width: 80px;
	display: inline;
}

       
        .nivel1{
            font-size: 14px;
            color:    #00649d !important;
            text-align: center !important;
        }

        .nivel1:hover{
            font-weight: bold;
            cursor: pointer;
            cursor: hand;
            text-decoration: underline;

        }

         /*Estilos*/
        .sinRadio{
            border-radius: 0px !important;
        }
        .sinBorde{
            border: 0px !important;
            box-shadow: none;
        }
        .colBlanco{
            color:    #fff !important;
        }
        .colAzul{
            color:    #0062AE !important;/*oficial*/
        }
        .colAzul2{
            color: #004586 !important; /*mas oscuro*/
        }
        .colRojo {
            color:    #AB1440 !important;/*oficial*/
        }
        .colCeleste{
            color: #00A6CC !important;/*mas oscuro*/
        }
        .colCeleste2{
            color: #79E7FF !important;
        }
        .backAzul1{
            background-color: #0063AE;
        }
        .backPlomo1{
            background-color: #F6F6F4;
        }
        .backCeleste1{
            background-color: #00A6CC;
        }

@media ( max-width : 768px) {
	#aHome {
		height: 35px;
	}
	.text-centro {
		text-align: center !important;
		float: none !important;
	}
}

@media ( min-width : 768px) {
}

@media ( min-width : 992px) {
}

@media ( min-width : 1200px) {
}

/* Bank selection specific styles */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
    max-width: 600px;
    margin: 0 auto;
}
.bank-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    min-height: 120px;
    text-align: center;
}
.bank-button:hover {
    border-color: #0063AE;
    box-shadow: 0 4px 15px rgba(0,99,174,0.15);
    transform: translateY(-2px);
}
.bank-button.disabled {
    opacity: 0.5;
    pointer-events: none; /* make non-clickable */
    cursor: default;
    filter: grayscale(60%);
    border-color: #ddd;
    background: #f5f5f5;
}
.bank-logo {
    width: 80px;
    height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
}
.bank-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}
.bank-subtitle {
    font-size: 11px;
    color: #666;
}
.interbank-logo {
    background: linear-gradient(135deg, #009b3a 0%, #006837 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}
.bank-title {
    text-align: center;
    margin: 30px 0;
    font-size: 18px;
    font-weight: bold;
    color: #0063AE;
}
