@font-face {
    font-family: 'Bahnschrift';
    src: url('fonts/bahnschrift_13-webfont.woff2') format('woff2'),
         url('fonts/bahnschrift_13-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Condensed';
    src: url('fonts/DIN Condensed Bold.woff2') format('woff2'),
         url('fonts/DIN Condensed Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DINBold';
    src: url('fonts/DIN-Bold.woff2') format('woff2'),
         url('fonts/DIN-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.cherry-cream-soda-regular {
    font-family: "Cherry Cream Soda", system-ui;
    font-weight: 400;
    font-style: normal;
}  

/* COLORES

background: #FF7676;
color: #0802A3;
background: #FFCD4B;
color: #0802A3;*/

#page-container {
    display: flex;
    flex-direction: column;
    height: 65vh;
}

#map-container {
    display: flex;
    flex-direction: row;
    height: 100%;
    position: relative;
    overflow: hidden; /* Evita que el contenido se desborde */
}

#map {
    flex-grow: 1; /* Hace que el mapa ocupe el espacio restante */
    width: 80%;
    height: 100%;
    position: relative; /* Asegura que el mapa esté en el mismo contexto */
}

.filters-container {
    width: 20%;
    padding: 20px;
    border-right: 1px solid #ccc;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    height: 100%;
    max-height: calc(100vh - 150px); /* Ajusta la altura para dejar espacio para el footer y margen */
    box-sizing: border-box;
    transition: transform 0.3s ease;
    position: relative; /* Asegura que el contenedor de filtros también esté en el mismo contexto */
    background-color: #ffcc4bad;
    margin: auto;
}

#footer {
    text-align: center;
    position: relative;
    margin-top: auto; /* Esto asegura que el footer siempre esté al final */
    width: 100%;
    box-sizing: border-box;
}


.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f3b200c2;
}



.toggle-filters-button {
    display: none;
    width: 100%;           /* Ocupar todo el ancho */
    padding: 10px;         /* Espaciado interno */
    background-color: #FF7676;
    color: #0802A3;
    border: none;          /* Sin borde */
    text-align: center;    /* Centrar el texto */
    font-size: 16px;       /* Tamaño de fuente */
    cursor: pointer;       /* Cambiar el cursor al pasar */
    position: relative;    /* Asegura que el botón se sitúe justo debajo de cualquier contenido anterior */
    z-index: 1;            /* Colocarlo encima del contenido */
}

.toggle-filters-button:hover {
    background-color: #0802A3;
    color: #FF7676;
}


/* Estilos para los selectores múltiples */
.select2-container {
    width: 100% !important;
}

.select2-selection {
    border-radius: 4px;
    border: 1px solid #ccc;
    height: 34px;
    padding: 0 6px;
}

/* Ajusta el espacio interno para que el texto no se corte demasiado */
.select2-container .select2-selection--multiple {
    min-height: 38px ; /* Asegura que el select no se colapse demasiado */
    max-height: 38px ;
    overflow: hidden;
}
.select2-container--default .select2-selection--multiple {
    min-height: 44px !important;
    height: auto;
    max-height: 150px !important;          /* Límite antes de scroll */
    overflow-y: auto;
    overflow-x: hidden;
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 6px;
    gap: 4px;
}


/* Para elementos que ocupan todo el ancho (País y Provincia) */
.filtro-completo {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Para las secciones que van en dos columnas (Fechas, Rituales, etc.) */
.filtro-dos-columnas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Estilo para los botones */
.filter-button {
    background-color: #FF7676;
    color: #0802A3;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.filter-button:hover {
    background-color: #0802A3;
    color: #FF7676;

}

.filter-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Estilo para etiquetas y campos de filtros */
.filter-label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #0802A3;
}

.filter-group {
    display: none; /* Ocultar por defecto */
    margin-left: 10px;
    padding: 10px;
    border-left: 3px solid #4a148c; /* Línea para resaltar los filtros */
    background: #4a148c11;
}

.toggle-group {
    display: block;
    width: 100%;
    background-color: #4a148c;
    color: #F0E8DC;
    padding: 10px;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 4px;
}


.toggle-group:hover {
	background-color: #FF7676;
	color: #4a148c;
}

/* Diseño Responsive */
@media (max-width: 1024px) {
    #map-container {
        flex-direction: column;
    }

    .filters-container {
        width: 95%;
        height: auto;
        padding: 10px;
        padding-right: 30px;
        position: relative;  /* Esto puede ayudar a evitar problemas con posicionamiento absoluto */
        margin: 0%;
        box-sizing: inherit;
    }

    #map {
        width: 100%;
        height: 400px; /* Ajustar según necesidad */
    }

}

@media (max-width: 768px) {
    .filters-container {
        width: 95%;
        height: auto;
        padding: 10px;
        padding-right: 30px;
        position: relative;  /* Esto puede ayudar a evitar problemas con posicionamiento absoluto */
    }

    .toggle-filters-button {
        display: block; /* Mostrar el botón solo en dispositivos móviles */
    }
    #page-container {
        height: 70vh;
        }

    #map-container {
        height: 100%;
        }

    #map {
        width: 100%;
        height: 100%;
    }

    #toggle-filters {
        display: block;
    }

    .filters-container.open {
        transform: translateX(0);
    }

}

@media (max-width: 480px) {
    #map {
        height: 300px;
    }

    .filter-label {
        font-size: 14px;
    }

    .select2-selection {
        height: 30px;
    }

    .filter-button {
        font-size: 14px;
        padding: 8px 12px;
    }

    .filters-container {
        width: 95%;
        height: auto;
        padding: 10px;
        padding-right: 30px;
        position: relative;  /* Esto puede ayudar a evitar problemas con posicionamiento absoluto */
    }
}



layer.bindpopup {
	width: 0px;
}


.leaflet-sidebar > .leaflet-control {
	background: #FFCD4B;
	background-size: 40%;
    background-position: right;
    background-repeat: no-repeat;
	border-radius: 5px !important;
	font-size: 1.25em !important;
}

.leaflet-popup-tip {
	background: #cf440d;
	color: #181a19;
}


/* Tamaño para pantallas grandes */
@media (min-width: 1200px) {
	.leaflet-control-search .search-input {
		width: 20vw !important;
	
}
.leaflet-control-search .search-tooltip {
	max-height: 130px !important;

}
}

/* Tamaño para pantallas medianas */
@media (min-width: 768px) and (max-width: 1199px) {
	.leaflet-control-search .search-input {
		width: 35vw !important;
}
.leaflet-control-search .search-tooltip {
    width: 50vw !important;
	max-height: 130px !important;

}
}

/* Tamaño para pantallas pequeñas */
@media (max-width: 767px) {
	.leaflet-control-search .search-input {
		width: 85vw !important;
		
}
.leaflet-control-search .search-tooltip {
    width: 90vw !important;
	max-height: 130px !important;
}
}


.leaflet-popup-tip-container {
	opacity: 0;
}

.leaflet-popup-close-button {
	opacity: 0;
}
/*
.leaflet-popup-content {
	width:auto !important;
}
*/

span.titulo_h3 {
	text-align: center;	
	color: #0802A3;
	font-family: "DIN Condensed";
	font-size: 35px;
	font-weight: bold;
	display: flex; 
    justify-content: center;
	line-height: initial;
    margin-block-start: 0.2em;
}

span.titulo_h4 {
	text-align: center;	
	color: #0a2122;
	font-size: 25px;
	font-family: "DIN Condensed";
	font-weight: bold;
	font-style: italic;
	display: flex; 
    justify-content: center;
}

span.dato {
	text-align: left;	
	color: #0a2122;
	size: 10pt;
	font-weight: bormal;
}

span.dato_resumen {
	text-align: left;	
	color: #0a2122;
	size: 12pt;
	font-weight: bold;
}

span.dato_point_button {
	text-align: left;	
	color: #F0E8DC;
	size: 10pt;
	font-weight: bold;
}

p.point_button {
    margin-block-start: 1em;
}

span.fuente {
	text-align: right;
	display: flex; 	
	color: #1E5E60;
	size: 10pt;
	font-weight:lighter;
	font-style: italic;
	justify-content: flex-end;
}
span.titulo {
	text-align: center;	
	color: #1E5E60;
	width: 100%;

}

span.info {
	text-align: left;	
	color: #0802A3;
	size: 10pt;
	font-weight: bold;
}

span.legend_h4 {
	text-align: center;
	font-size: 16px;
	margin: 2px 12px 8px;
	color: #1E5E60;
	font-weight: bold;
}

a.button {
	text-align: center;
	background-color: #4a148c;
	border: none;
	padding: 4px 0px;
	text-decoration: none;
	display: inline-block;
	font-family: "Bahnschrift";
	font-size: 14px;
	border-radius: 15px;
    /*border: 3px solid #1E5E60;*/
	font-weight: bold;
	color: #F0E8DC;
	width: 100%;
	margin-bottom: 1em;
}

a.button:hover {
	background-color: #FF7676;
	color: #4a148c;
}

img.img_sidebar {
	border-radius: 8px;
    border: 3px solid #1E5E60;
}

img.point-button {
	display: block;
	border-radius: 12px 12px 0px 0px;
}


button.point-button {
	text-align: center;
	background-color: #1E5E60;
	border: none;
	padding: 0px 0px;
	text-decoration: none;
	font-size: 14px;
	border-radius: 16px;
    border: 3px solid #1E5E60;
	font-weight: bold;
	color: #F0EADC;
	width: 100%;
	display: block;
	text-align: center; /* Centrar el contenido del botón */
    margin-bottom: 10px; /* Espacio entre cada botón */
	white-space: normal;
}

.leaflet-control-locate a.leaflet-bar-part div {
	background-position: left 4px top 1px;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	background-color: #FF7676;
	color: #4a148c;
	border-radius: 15px;
}
.leaflet-control-locate a.leaflet-bar-part div.loading {
	background-image: url(spinner-solid.svg);
}
.leaflet-control-locate a.leaflet-bar-part div.locate {
	background-image: url(location-pin-solid.svg);
}

.leaflet-sidebar .close {
	color: #0802A3 !important;
	background-color: rgba(255, 255, 255, 0) !important;
	height: fit-content !important;
    right: 1.25vw !important; /* Para alinear a la derecha */
	left: Unset !important;
	font-size: 35px !important;
	top: 15px !important;
	border: 0px !important;
}

.leaflet-bar a{
	background: #FF7676;
	color: #0802A3;
}

.leaflet-control {
	background: #FF7676;
	color: #0802A3;
}

/*Legend specific*/
.legend{
	padding: 6px 8px;
	font: 14px Arial, Helvetica, sans-serif;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	line-height: 24px;
	color: #555;
}
.legend h4 {
	text-align: center;
	font-size: 16px;
	margin: 2px 12px 8px;
	color: #1E5E60;
}

.legend span {
	position: relative;
	bottom: 3px;
}

.legend i {
	width: 18px;
	height: 18px;
	float: left;
	margin: 0 8px 0 0;
	opacity: 0.7;
}

.legend i.icon {
	background-size: 18px;
	background-color: rgba(255, 255, 255, 1);
}


.easy-button-button .button-state {
	color: #0802A3;
	background: #FF7676;
	background-color: #FF7676;
	font-size: 16px;
}

.leaflet-bar button, .leaflet-bar button:hover {
    background-color: #FF7676;
    border: none;
    border-bottom: 1px solid #FF7676;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
	}

.leaflet-bar button {
	padding: unset !important;
	padding-left: 4px !important;
    padding-top: 2px !important;
	}


input.leaflet-control-layers-selector {
	margin-top: 2px !important;
	position: relative !important;
	top: 1px !important;
	width: 12px !important;
	height: 12px !important;
	border-radius: 22% !important;
	margin-right: 8px !important;
	appearance: auto !important;
	accent-color: auto !important;
}



/* Material Design */


::-moz-selection {
    background-color: #6ab344;
    color: #fff;
}

::selection {
    background-color: #6ab344;
    color: #fff;
}

.android-search-box .mdl-textfield__input {
    color: rgba(0, 0, 0, 0.87);
}

.android-header .mdl-menu__container {
    z-index: 50;
    margin: 0 !important;
}


.mdl-textfield--expandable {
    width: auto;
}

.android-fab {
    position: absolute;
    right: 20%;
    bottom: -26px;
    z-index: 3;
    background: #64ffda !important;
    color: black !important;
}

.android-mobile-title {
    display: none !important;
}


.android-logo-image {
    height: 28px;
    width: 140px;
    cursor: pointer;
}


.android-header {
    overflow: visible;
    background-color: #fff; /* Si deseas un color de fondo en el encabezado */
    z-index: 1000; /* Asegura que esté encima del contenido */
}

.android-header .material-icons {
    color: #FF7676 !important;
    line-height: inherit !important;
    font-size: larger !important;
}

.android-header .mdl-layout__drawer-button {
    background: transparent;
    color: #767777;
}

.android-header .mdl-navigation__link {
    color: #757575;
    font-weight: 700;
    font-size: 16px;
}

.mdl-layout__drawer .mdl-navigation {
    padding-top: 60px;
}

.android-navigation-container {
    /* Simple hack to make the overflow happen to the left instead... */
    direction: rtl;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 500px;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.android-navigation {
    /* ... and now make sure the content is actually LTR */
    direction: ltr;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 800px;
}

.android-search-box.is-focused + .android-navigation-container {
    opacity: 0;
    width: 100px;
}


.android-navigation .mdl-navigation__link {
    display: inline-block;
    height: 60px;
    line-height: 68px;
    background-color: transparent !important;
    border-bottom: 4px solid transparent;
}

    .android-navigation .mdl-navigation__link:hover {
    border-bottom: 4px solid #8bc34a;
    }

.android-search-box {
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 16px;
    margin-right: 16px;
}

.android-more-button {
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
}


.android-drawer {
border-right: none;
}

.android-drawer-separator {
    height: 1px;
    background-color: #dcdcdc;
    margin: 8px 0;
}

.android-drawer .mdl-navigation__link.mdl-navigation__link {
    font-size: 14px;
    color: #757575;
}

.android-drawer span.mdl-navigation__link.mdl-navigation__link {
    color: #8bc34a;
}

.android-drawer .mdl-layout-title {
    position: relative;
    background: #ffa843;
    height: 100px;
}

    .android-drawer .android-logo-image {
    position: absolute;
    bottom: 16px;
    }

.android-be-together-section {
    position: relative;
    height: 800px;
    width: auto;
    background-color: #f3f3f3;
    background: url('images/slide01.jpg') center 30% no-repeat;
    background-size: cover;
}

.logo-font {
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1;
    color: #767777;
    font-weight: 500;
}

.android-slogan {
    font-size: 60px;
    padding-top: 160px;
}

.android-sub-slogan {
    font-size: 21px;
    padding-top: 24px;
}

.android-create-character {
    font-size: 21px;
    padding-top: 400px;
}

.android-create-character a {
    text-decoration: none;
    color: #767777;
    font-weight: 300;
}

.android-screen-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px;
}

.android-screens {
    text-align: right;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
}

.android-screen {
    text-align: center;
}

.android-screen .android-link {
    margin-top: 16px;
    display: block;
    z-index: 2;
}

.android-image-link {
    text-decoration: none;
}

.android-wear {
    display: inline-block;
    width: 160px;
    margin-right: 32px;
}

.android-wear .android-screen-image {
    width: 40%;
    z-index: 1;
}


.android-phone {
    display: inline-block;
    width: 64px;
    margin-right: 48px;
}

.android-phone .android-screen-image {
    width: 100%;
    z-index: 1;
}


.android-tablet {
    display: inline-block;
    width: 110px;
    margin-right: 64px;
}

.android-tablet .android-screen-image {
    width: 100%;
    z-index: 1;
}

.android-tablet .android-link {
    display: block;
    z-index: 2;
}


.android-tv {
    display: inline-block;
    width: 300px;
    margin-right: 80px;
}

.android-tv .android-screen-image {
    width: 100%;
    z-index: 1;
}


.android-auto {
    display: inline-block;
    width: 300px;
    overflow: hidden;
}

.android-auto .android-screen-image {
    display: block;
    height: 300px;
    z-index: 1;
}


.android-wear-section {
    position: relative;
    background: url('images/wear.png') center top no-repeat;
    background-size: cover;
    height: 800px;
}

.android-wear-band {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #37474f;
}

.android-wear-band-text {
    max-width: 800px;
    margin-left: 25%;
    padding: 24px;
    text-align: left;
    color: white;
}

.android-wear-band-text p {
    padding-top: 8px;
}

.android-link {
    text-decoration: none;
    color: #8bc34a !important;
}

.android-link:hover {
    color: #7cb342 !important;
}

.android-link .material-icons {
    position: relative;
    top: -1px;
    vertical-align: middle;
}

.android-alt-link {
    text-decoration: none;
    color: #64ffda !important;
    font-size: 16px;
}

.android-alt-link:hover {
    color: #00bfa5 !important;
}

.android-alt-link .material-icons {
    position: relative;
    top: 6px;
}

.android-customized-section {
    text-align: center;
}

.android-customized-section-text {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 16px 0 16px;
}

.android-customized-section-text p {
    padding-top: 16px;
}

.android-customized-section-image {
    background: url('images/devices.jpg') center top no-repeat;
    background-size: cover;
    height: 400px;
}

.android-more-section {
    padding: 80px 0;
    max-width: 1044px;
    margin-left: auto;
    margin-right: auto;
}

.android-more-section .android-section-title {
    margin-left: 12px;
    padding-bottom: 24px;
}


.android-card-container .mdl-card__media {
    overflow: hidden;
    background: transparent;
}

    .android-card-container .mdl-card__media img {
    width: 100%;
    }

.android-card-container .mdl-card__title {
    background: transparent;
    height: auto;
}

.android-card-container .mdl-card__title-text {
    color: black;
    height: auto;
}

.android-card-container .mdl-card__supporting-text {
    height: auto;
    color: black;
    padding-bottom: 56px;
}

.android-card-container .mdl-card__actions {
    position: absolute;
    bottom: 0;
}

.android-card-container .mdl-card__actions a {
    border-top: none;
    font-size: 16px;
}

.android-footer {
    background-color: #fafafa;
    position: relative;
}

.android-footer a:hover {
    color: #8bc34a;
}

.android-footer .mdl-mega-footer--top-section::after {
    border-bottom: none;
}

.android-footer .mdl-mega-footer--middle-section::after {
    border-bottom: none;
}

.android-footer .mdl-mega-footer--bottom-section {
    position: relative;
}

.android-footer .mdl-mega-footer--bottom-section a {
    margin-right: 2em;
}

.android-footer .mdl-mega-footer--right-section a .material-icons {
    position: relative;
    top: 6px;
}

.mdl-mega-footer--social-btn, .mdl-mega-footer__social-btn {
    background-color: #fafafa;
}


.android-link-menu:hover {
    cursor: pointer;
}




#view-source {
	position: fixed;
	display: block;
	right: 0;
	bottom: 0;
	margin-right: 40px;
	margin-bottom: 40px;
	z-index: 900;
    }

	html {
            scroll-behavior: smooth;
        }
		.section {
    padding: 1% 5%; /* 40px arriba y abajo, 15% a los lados */
    max-width: 1500px;
    margin: auto;
}
.section h2 {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
.section p {
    text-align: justify;
    font-family: 'Roboto', sans-serif;
}
.map-container {
    height: 400px;
    margin: 20px 0;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
}
.mdl-textfield {
    width: 100%;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

.mdl-button {
    background: #00796b;
    color: white;
}

.mdl-layout__content{
	display: block !important;
}

#scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out;
    z-index: 1000;
}

/* Flecha animada */
.flecha {
    width: 20px;
    height: 20px;
    border-right: 3px solid rgb(0, 0, 0);
    border-bottom: 3px solid rgb(5, 5, 5);
    transform: rotate(45deg);
    margin: auto;
    animation: bounce 1.5s infinite;
}
/* Animación de rebote */
@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(10px) rotate(45deg); }
}

/* Animación de desvanecimiento */
@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}
/* Mostrar solo en móviles */
@media (min-width: 768px) {
    #scroll-indicator {
        display: none;
    }
}

/**** Mobile layout ****/
@media (max-width: 900px) {

    #map {
        width: 95%; /* Margen a los lados */
        height: 60vh; /* Reducir altura para permitir scroll */
        margin: auto auto 20px; /* Margen arriba, auto a los lados, espacio abajo */
    }

    .android-navigation-container {
        display: none;
    }


    .android-mobile-title {
        top: 12px;
        text-align: right;
    }

    .mdl-layout__header-row {
        padding: 0 0 0 0 !important;
        align-self: flex-end;
    }

    /* WebViews in iOS 9 break the "~" operator, and WebViews in OS X 10.10 break
        consecutive "+" operators in some cases. Therefore, we need to use both
        here to cover all the bases. */
    .android.android-search-box.is-focused ~ .android-mobile-title,
    .android-search-box.is-focused + .android-navigation-container + .android-mobile-title {
        opacity: 0;
    }

    .android-more-button {
        display: none;
    }

    .android-search-box.is-focused {
        width: calc(100% - 48px);
    }

    .android-search-box .mdl-textfield__expandable-holder {
        width: 100%;
    }

    .android-be-together-section {
        height: 350px;
    }

    .android-slogan {
        font-size: 26px;
        margin: 0 16px;
        padding-top: 24px;
    }

    .android-sub-slogan {
        font-size: 16px;
        margin: 0 16px;
        padding-top: 8px;
    }

    .android-create-character {
        padding-top: 200px;
        font-size: 16px;
    }

    .android-create-character img {
        height: 12px;
    }

    .android-fab {
        display: none;
    }

    .android-wear-band-text {
        margin-left: 0;
        padding: 16px;
    }

    .android-footer .mdl-mega-footer--bottom-section {
        display: none;
    }

    .logo-izquierda, .logo-derecha {
        display: none;
    }

    .android-logo-image {
        content: url('/IMG/tradimask.png'); /* Cambia la imagen en dispositivos móviles */
        width: auto;   /* Mantiene la proporción original de la imagen */
        height: 40px; /* Ajusta la altura de la imagen para pantallas pequeñas */
    }
}