   /**
 * @license
 * Copyright 2019 Google LLC. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */
/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
 #map {
    height: 70%;
    margin-top: 0%;
    }

/* 
* Optional: Makes the sample page fill the window. 
*/
html,
body {
height: 100%;
margin: 0;
padding: 0;
}

#description {
font-family: Roboto;
font-size: 15px;
font-weight: 300;
}

#infowindow-content .title {
font-weight: bold;
}

#infowindow-content {
display: none;
}

#map #infowindow-content {
display: inline;
}

.pac-card {
background-color: #fff;
border: 0;
border-radius: 2px;
box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
margin: 10px;
padding: 0 0.5em;
font: 400 18px Roboto, Arial, sans-serif;
overflow: hidden;
font-family: Roboto;
padding: 0;
}

#pac-container {
padding-bottom: 12px;
margin-right: 12px;
}

.pac-controls {
display: inline-block;
padding: 5px 11px;
}

.pac-controls label {
font-family: Roboto;
font-size: 13px;
font-weight: 300;
}

#pac-input {
background-color: #fff;
font-family: Roboto;
font-size: 15px;
font-weight: 300;
margin-left: 12px;
padding: 10px 11px 10px 13px;
text-overflow: ellipsis;
width: 400px;
top:10px !important;
}

#pac-input:focus {
border-color: #4d90fe;
}

#title {
color: #fff;
background-color: #4d90fe;
font-size: 25px;
font-weight: 500;
padding: 6px 12px;
}

#target {
width: 345px;
}

*, *:before, *:after {
box-sizing: border-box;
}

html {
font-size: 15px;
}

body {
font-family: "Roboto", sans-serif;
font-size: 1em;
line-height: 1.6;
background: #F2F1EF;
}
.btn-flotante {
font-size: 16px; /* Cambiar el tamaño de la tipografia */
text-transform: uppercase; /* Texto en mayusculas */
font-weight: bold; /* Fuente en negrita o bold */
color: #28a745; /* Color del texto */
border-radius: 5px; /* Borde del boton */
letter-spacing: 2px; /* Espacio entre letras */
background-color: #f8f9fa; /* Color de fondo */
padding: 5px 30px; /* Relleno del boton */
position: absolute;
top: 26%;
right: 49%;
transition: all 300ms ease 0ms;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
z-index: 99;
}
.btn-flotante:hover {
background-color: #e4e4ed; /* Color de fondo al pasar el cursor */
box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
transform: translateY(-7px);
}
@media only screen and (max-width: 600px) {
 .btn-flotante {
    font-size: 14px;
    padding: 12px 20px;
    bottom: 20px;
    right: 20px;
}
}

.loader {
z-index: 5;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50px;
height: 10px;
background: #68a68d;
border-radius: 5px;
-webkit-animation: load 1.8s ease-in-out infinite;
      animation: load 1.8s ease-in-out infinite;
}
.loader:before, .loader:after {
position: absolute;
display: block;
content: "";
-webkit-animation: load 1.8s ease-in-out infinite;
      animation: load 1.8s ease-in-out infinite;
height: 10px;
border-radius: 5px;
}
.loader:before {
top: -20px;
left: 10px;
width: 40px;
background: #afc04e;
}
.loader:after {
bottom: -20px;
width: 35px;
background: #59367a;
}

@-webkit-keyframes load {
0% {
transform: translateX(40px);
}
50% {
transform: translateX(-30px);
}
100% {
transform: translateX(40px);
}
}

@keyframes load {
0% {
transform: translateX(40px);
}
50% {
transform: translateX(-30px);
}
100% {
transform: translateX(40px);
}
}
#div2{
  position: absolute;
  z-index: 2;
  height:100%;
  width: 100%;
  background-color: rgba(255,255,255,0.7);
}
/* unvisited link */
a:link {
color: #343a40 ;
text-decoration: dashed ;
}

/* visited link */
#capas{
    color: rgb(246, 246, 246);
}
a:visited {
color: #343a40;
}

/* mouse over link */
a:hover {
color: #000 !important;
}

/* selected link */
a:active {
color: #000 !important;
}

/* The side navigation menu */
.sidenav {
    height:  100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #28a745; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 50px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
     
    font-size: 25px;
    color: #fff;
    display: block;
    transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

/* SIDE NAV RESPONSIVO */
#sideNavigation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh; /* alto total visible */
    width: 0;
    background-color: #28a745;
    overflow-x: hidden;
    overflow-y: auto;
    transition: width 0.3s ease;
    z-index: 2000;
    padding-top: 60px; /* espacio para evitar solapamiento */
  }
  
  /* Abierto */
  #sideNavigation.open {
    width: 250px;
  }
  
  /* En móviles: usa mayor parte de la pantalla */
  @media screen and (max-width: 600px) {
    #sideNavigation.open {
      width: 80%;
    }
  }
/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    
    overflow:hidden;
    width:100%;
    
}
body {
overflow-x: hidden;
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: #ffffff;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
     
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #4CAF50;
    color: white;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

a svg{
transition:all .5s ease;

&:hover{
    #transform:rotate(180deg);
}
}

#ico{
display: none;
}

.menu{
background: #000;
display: none;
padding: 5px;
width: 320px;
@include border-radius(5px);

#transition: all 0.5s ease;

a{
    display: block;
    color: #fff;
    text-align: center;
    padding: 10px 2px;
    margin: 3px 0;
     
    background: #444;

    &:nth-child(1){
    margin-top: 0;
    @include border-radius(3px 3px 0 0 );
    }
    &:nth-child(5){
    margin-bottom: 0;
    @include border-radius(0 0 3px 3px);
    }

    &:hover{
    background: #555;
    }
}
}

@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900');
*{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}
.mwb-form-main-wrapper{
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
    padding: 20px;
}
.mwb-form-main-container {
    background-color: #fff;
    box-shadow: 1px 2px 10px rgba(0,0,0,.11);
    color: #7b7878;
    margin: 0 auto;
    max-width: 600px;
}
.mwb-form-main-container form{
    padding: 20px;
}
.mwb-form-main-container h1 {
    background-color: #26A69A;
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 10px 0;
    padding: 22px 15px;
    text-align: center;
}
.mwb-form-group {
    font-size: 14px;
    margin-bottom: 30px;
    position: relative;
}
.mwb-form-text-label {
    left: 10px;
    position: absolute;
    top: 12px;
    transition: 0.2s linear all;
}
.mwb-form-group.focus-input .mwb-form-text-label {
    background-color: #ffffff;
    padding: 0 2px;
    top: -11px;
    transition: 0.2s linear all;
}
.mwb-form-control {
    background-color: #ffffff;
    border-radius: 4px;
    border: 2px solid #dddddd;
    font-size: 14px;
    padding: 13px;
    width: 100%;
}
.mwb-form-submit-btn {
    background-color: #26A69A;
    border-radius: 4px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    min-width: 200px;
    padding: 16px 10px;
}
.mwb-form-radio {
    display: inline-block;
    margin-right: 15px;
    position: relative;
}
.mwb-form-radio input[type="radio"] ~ label {
    padding-left: 10px;
    cursor: pointer;
}
.mwb-form-radio input[type="radio"] {
    margin: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    opacity: 0;
}
.mwb-form-radio input[type="radio"] + label::before {
    background-color: #dddddd;
    border-radius: 50%;
    content: "";
    cursor: pointer;
    height: 20px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 20px;
}
.mwb-form-radio input[type="radio"] + label::after {
    background-color: #26A69A;
    border-radius: 50%;
    content: "";
    height: 10px;
    left: 5px;
    opacity: 0;
    position: absolute;
    top: 11px;
    transform: scale(0);
    transition: 0.3s linear all;
    visibility: hidden;
    width: 10px;
}
.mwb-form-radio input[type="radio"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
    transition: 0.3s linear all;
    visibility: visible;
}
.mwb-form-error {
    color: #f52626;
    display: none;
    font-size: 12px;
    padding-top: 2px;
}
.inactiveMixin {
content: "";
position: absolute;
display: block;
}
.beforeAnimation {
-moz-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
-o-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
-webkit-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
}
.afterAnimation {
box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
-moz-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
-o-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
-webkit-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
}
.toggleWrapper {
padding-top: 10px;
background: white;
}
.toggleWrapper input.mobileToggle {
opacity: 0;
position: absolute;
}
.toggleWrapper input.mobileToggle + label {
position: relative;
display: inline-block;
user-select: none;
-moz-transition: 0.4s ease;
-o-transition: 0.4s ease;
-webkit-transition: 0.4s ease;
transition: 0.4s ease;
-webkit-tap-highlight-color: transparent;
height: 30px;
width: 50px;
border: 1px solid #e4e4e4;
border-radius: 60px;
}
.toggleWrapper input.mobileToggle + label:before {
content: "";
position: absolute;
display: block;
-moz-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
-o-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
-webkit-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
height: 30px;
width: 51px;
top: 0;
left: 0;
border-radius: 30px;
}
.toggleWrapper input.mobileToggle + label:after {
content: "";
position: absolute;
display: block;
box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
-moz-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
-o-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
-webkit-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
background: whitesmoke;
height: 28px;
width: 28px;
top: 1px;
left: 0px;
border-radius: 60px;
}
.toggleWrapper input.mobileToggle:checked + label:before {
background: #2ecc71;
-moz-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
-o-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
-webkit-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}
.toggleWrapper input.mobileToggle:checked + label:after {
left: 24px;
}
#loader-out {
    background-color: #18A6A8;
    position:fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  
  #loader-container {
    width: 150px;
    height: 150px;
    color: white;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    border: 5px solid #18A6A8;
    border-radius: 50%;
    -webkit-animation: borderScale 1s infinite ease-in-out;
    animation: borderScale 1s infinite ease-in-out;
  }
  
  #loading-text {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    top: 35%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
  }
  @-webkit-keyframes borderScale {
    0% {
      border: 5px solid white;
    }
    50% {
      border: 25px solid #18A6A8;
    }
    100% {
      border: 5px solid white;
    }
  }
  
  @keyframes borderScale {
    0% {
      border: 5px solid white;
    }
    50% {
      border: 25px solid #18A6A8;
    }
    100% {
      border: 5px solid white;
    }
  }

/* Estilos para el panel lateral de detalle */
#panelLateral {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: #f8f9fa;
  border-left: 1px solid #ccc;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  z-index: 1050;
  padding: 1rem;
}
#panelLateral.open {
  right: 0;
}
#cerrarPanel {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.2rem;
}