#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-image: url("https://www.cajaarequipa.pe/wp-content/uploads/2024/03/bgapp.png");
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    background-size: cover;
    background-position: center;
}

#cookie-consent-banner p {
    margin: 0 0 13px 0;
    font-size: 16px;
    color: #FFFFFF;
    font-family: "Helvetica Rounded LT Std", sans-serif;
    line-height: 25px;
}

#cookie-consent-banner a{
	font-size: 16px;
    color: #FFFFFF;
    font-family: "Helvetica Rounded LT Std", sans-serif;
    line-height: 25px;
    font-weight: 700;
    text-decoration: underline;
}

#cookie-consent-banner button {
    margin: 10px 5px 0 0;
    padding: 12px 32px 14px;
    background-color: #08cacc;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border: 2px solid #08cacc;
    margin-right: 13px;
    border-radius: 50px;
}

#cookie-consent-banner button:hover {
    background-color: #FFFFFF;
    color: #192C53;
	border: 2px solid #FFFFFF;
}

.lblcookies{
	font-size: 16px;
    color: #FFFFFF;
    font-family: "Helvetica Rounded LT Std", sans-serif;
    line-height: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    width: max-content;
}
.lblcookies input{
	width: 15px;
    height: 15px;
    margin-right: 7px;
}

#cookie-consent-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    display: none; /* Ocultamos inicialmente */
}

#cookie-consent-options.active {
    display: block;
    max-height: 240px; /* Ajusta según el contenido */
    opacity: 1;
}

#option-buttons {
    display: none; /* Ocultamos los botones "Guardar" y "Cancelar" inicialmente */
}

#cookie-consent-options.active #option-buttons {
    display: block; /* Mostramos los botones cuando las opciones están activas */
}

#cookie-consent-options.active ~ #cookie-buttons {
    display: none; /* Oculta los botones de "Aceptar" y "Personalizar" cuando las opciones están activas */
}


@media(min-width: 100px){
	#cookie-consent-banner a {
		font-size: 13px;
		line-height: 19px;
	}
	#cookie-consent-banner p {
		font-size: 13px;
		line-height: 19px;
	}
	#cookie-consent-banner button {
		padding: 10px 23px 12px;
		font-size: 13px;
		margin-right: 8px;
	}
	.lblcookies {
		font-size: 14px;
		margin-bottom: 5px;
	}
	#cookie-consent-banner {
		padding: 15px 15px;
	}
}

@media(min-width: 992px){
	#cookie-consent-banner {
		padding: 25px 30px;
	}
	.lblcookies {
		font-size: 16px;
		margin-bottom: 12px;
	}
	#cookie-consent-banner a {
		font-size: 16px;
		line-height: 25px;
	}
	#cookie-consent-banner p {
		font-size: 16px;
		line-height: 25px;
	}
	#cookie-consent-banner button {
		padding: 12px 32px 14px;
		font-size: 14px;
		margin-right: 13px;
	}
}




