@font-face {
    font-family: BebasNeueRegular;
    src: url(fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: Alegreya-Regular;
    src: url(fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: Ubuntu-Medium;
    src: url(fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: Ubuntu-Regular;
    src: url(fonts/Montserrat-Regular.ttf);
}



.ac-container {
    width: auto;
    max-height: 100%;
    font-family: 'Ubuntu-Regular', Arial, sans-serif; /* Cambiar la fuente para un aspecto más moderno */
	background: #f9f9f9; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    overflow: hidden; 
    border: none; /* Quitar bordes sólidos */
}

div[id^="leaflet-control-accordion-layers"] > label {
    background: linear-gradient(to right, #691c32, #9f2241); 
    color: white;
    text-shadow: none;
    border-radius: 4px; /* Bordes ligeramente redondeados */
    margin: 5px; /* Espacio alrededor de las etiquetas */
    padding: 10px 20px; /* Espaciado interno */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra suave para profundidad */
    transition: transform 0.3s ease; /* Animación suave para hover */
    display: block; /* Asegurar que las etiquetas sean bloques */
    text-align: left; /* Alinear texto a la izquierda */
}

/* Efecto al pasar el cursor sobre las etiquetas de grupo */
div[id^="leaflet-control-accordion-layers"] > label:hover {
    transform: translateY(-2px); /* Mover ligeramente hacia arriba */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada al hover */
}
.ac-container input.menu:checked + label,
.ac-container input.menu:checked + label:hover{
	background: #235b4e;
	color: white;
	text-shadow: 0px 1px 1px rgba(255,255,255, 0.6);
	box-shadow:
		0px 0px 0px 1px rgba(155,155,155,0.3),
		0px 2px 2px rgba(0,0,0,0.1);
}
.ac-container div[id^="leaflet-control-accordion-layers"] > label:hover:after,
.ac-container input.menu:checked + div[id^="leaflet-control-accordion-layers"] > label:hover:after{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	right: 13px;
	top: 7px;
	background: transparent url(images/arrow_down.png) no-repeat center center;
}
.ac-container input.menu:checked + div[id^="leaflet-control-accordion-layers"] > label:hover:after{
	background-image: url(images/arrow_up.png);
}
.ac-container input.menu{
	display: none;
}
.ac-container article{
	background: rgba(255, 255, 255, 0);
	margin-top: -1px;
	overflow: hidden;
	height: 0px;
    padding: 0px;
    line-height: 0px;
	position: relative;
	z-index: 10;
	-webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}

.ac-container input.menu:checked ~ article{
	-webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
}

.ac-container input.menu:checked ~ article.ac-large{
	height: auto;
	max-height : auto;
	padding: 8px 0;
	overflow-y: auto;
    line-height: 18px;
}

.ac-container article label {
    display: inline;
    cursor: pointer;
}

.ac-container .group-toggle-container {
    text-align: right;
    margin-right: 3px;
    line-height: 0px;
    display: none;
    height: 20px;
}

.ac-container input.menu:checked ~ .group-toggle-container {
    display: block;
	line-height: 1em;
}

.menu-item-radio{
	font-family: 'Ubuntu-Regular', Arial, sans-serif;
	font-size: 13px;

}

.menu-item-checkbox{
	font-family: 'Ubuntu-Regular', Arial, sans-serif;
	font-size: 13px;

}

.bt_delete{
    position: relative;
	float: right;
	background-image: url(images/delete.png);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    height: 16px;
    width: 16px;
    vertical-align: middle;
}

.leaflet-control-layers-expanded {
    padding: 5px;
}

.leaflet-control-layers:hover {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: rgba(0,0,0,0);
	border-radius: 5px;
}
/* Estilo para el botón de eliminar */
.bt_delete {
    background-image: url(images/delete-modern.png); /* Usar un icono moderno */
    background-color: transparent;
    border: none;
    transition: transform 0.3s ease; /* Efecto de transición al interactuar */
}

.bt_delete:hover {
    transform: scale(1.1); /* Efecto al pasar el cursor */
}