
:root{
    --color-barra-lateral:rgb(255,255,255);

    --color-texto:rgb(0,0,0);
    --color-texto-menu:rgb(134,136,144);

    --color-menu-hover:rgb(238,238,238);
    --color-menu-hover-texto:rgb(27,197,189);

    --color-boton:rgb(0,0,0);
    --color-boton-texto:rgb(255,255,255);

    --color-linea:rgb(180,180,180);

    --color-switch-base :rgb(201,202,206);
    --color-switch-circulo:rgb(241,241,241);

    --color-scroll:rgb(192,192,192);
    --color-scroll-hover:rgb(134,134,134);
}

.flotanteInf {
    min-height: 100px;
    max-height: 300px;
    width: 250px;
    justify-content: center;
    font-size: 12px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.flotanteInf .card-header{
    background-color: #ee9d01;
    color: #fff;    
    align-items: center;
}

.flotanteInf .card-body{
    background-image: url(../media/images/bg_trama.png);
}

.leaflet-control-attribution {
	display: none !important;
}

.leaflet-popup-content{
    width: 501px !important;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
}
body{
    height: 100vh;
    width: 100%;
    background-color: azure;		
}

#map-canvas{
    height: 100vh;
    width: 100%;
	z-index: 1;
}
#map-canvas.info .leaflet-interactive {
    cursor: url(../media/images/informacion.ea08fd372c1f62538ded.png),help;
    display: flex
}
.intro {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    transition: transform .5s;
    z-index: 1000;
    background-color: #000000bf;
}

.intro>div h1 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 20px;
    color: #e3f5f9;
}
.intro>div p {
    margin-top: 10px;    
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    text-align: justify;
}

#btn-comenzar{
	width: 250px;
	color: #FFFFFF;
    background-color: #219EBC;
    border-color: #219EBC;
}
/*-----------------Menu*/
.menu{    
    font-size: 20px;
    display: none;
    justify-content: center;
    align-items: center;    
    cursor: pointer;    
    color: var(--color-boton-texto);
    right: 15px;
    top: 4px;
    z-index: 100;
}


/*----------------Barra Lateral*/
.barra-lateral{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100px;
    height: 100%;
    overflow: hidden;
    padding: 20px 15px;
    background-color: var(--color-barra-lateral);
    transition: width 0.5s ease,background-color 0.3s ease,left 0.5s ease;
    z-index: 50;
}

.mini-barra-lateral{
    width: 80px;
}
.barra-lateral span{
    width: 100px;
    white-space: nowrap;
    font-size: 18px;
    text-align: left;
    opacity: 1;
    transition: opacity 0.5s ease,width 0.5s ease;
}
.barra-lateral span.oculto{
    opacity: 0;
    width: 0;
}

/*------------> Nombre de la página */
.barra-lateral .nombre-pagina{
    width: 100%;    
    color: var(--color-texto);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.barra-lateral .nombre-pagina i{
    min-width: 50px;
    font-size: 40px;
    cursor: pointer;
}
.barra-lateral .nombre-pagina span{
    margin-left: 5px;
    font-size: 25px;
}

.logo-mapa {
    width: 100%;
}


/*------------> Botón*/
.barra-lateral .boton{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    background-color: var(--color-boton);
    color: var(--color-boton-texto);
}
.barra-lateral .boton i{
    min-width: 50px;
    font-size: 25px;
}


/*--------------> Menu Navegación*/
.barra-lateral .navegacion{
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.barra-lateral .navegacion::-webkit-scrollbar{
    width: 5px;
}
.barra-lateral .navegacion::-webkit-scrollbar-thumb{
    background-color: var(--color-scroll);
    border-radius: 5px;
}
.barra-lateral .navegacion::-webkit-scrollbar-thumb:hover{
    background-color: var(--color-scroll-hover);
}

.barra-lateral .navegacion ul{  
   padding-left: 0;
}
.barra-lateral .navegacion li{  
    list-style: none;
    display: flex;
    margin-bottom: 5px;
}
.barra-lateral .navegacion a{
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    text-decoration: none;
	text-align: center;
    border-radius: 10px;
    color: var(--color-texto-menu);
}
.barra-lateral .navegacion a:hover{
    background-color: var(--color-menu-hover);
    
}
.barra-lateral .navegacion i{
    min-width: 65px;
    font-size: 20px;
	color: #b5b5c3;
}

.barra-lateral .navegacion i:hover{    
	color: var(--color-menu-hover-texto);
}


/*-----------------> Linea*/
.barra-lateral .linea{
    width: 100%;
    height: 1px;
    margin-top: 15px;
    background-color: var(--color-linea);
}

/*---------------> Usuario*/
.barra-lateral .usuario{
    width: 100%;
    display: flex;
	text-align: center;
}
.barra-lateral .usuario i{
    font-size: 20px;
	min-width: 65px;    
	color: #b5b5c3;
}

header{    
    position: absolute;
    width: -webkit-fill-available;
	z-index: 2;
}

.navbar-brand{
    padding-left: 110px;
	color: #fff;
	font-size: 19px;
}

.navbar-brand:focus, .navbar-brand:hover {
    color: #f1f1f1 !important;
} 

.botones-circulo {
    border-radius: 50%;
    height: 54px;
    width: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff !important;
}
.btn-leyenda {
    right: 18px;
    top: 150px;
	position: absolute;
	z-index: 3;
	background-color: #ee9d01;
	cursor: pointer;
}

.btn-contacto {
    right: 18px;
    top: 215px;
	position: absolute;
	z-index: 3;
	background-color: #ee9d01;
}
.btn-herramientas, .btn-subir-shape, .btn-info {
    right: 25px;
    background-color: #219EBC;
    cursor: pointer;
}
.btn-herramientas {
    bottom: 40px;
	position: absolute;
    z-index: 999;
}

.btn-info {
    bottom: 105px;
	position: absolute;
    z-index: 999;
}

.button-tools-options {
    right: 5px;
    bottom: 0;
    position: absolute;
    margin: 0px 20px 0px 0px;
    z-index: 99;
    display: none;
}

.btn-tools{
	background-color: #219EBC;
	margin-bottom: 5px;
}

.btn-tools:hover{
	background-color: #fff;
	color: #219EBC !important;
	border: solid 1px #219EBC;
}

.offcanvas, .modal-content {
    background-color: #fff;
    background-image: url(../media/images/bg_trama.png);
}

.offcanvas-header, .modal-header {
    color: #fff !important;
    padding-top: 20px;
    background-color: #ee9d01;    
}

.accordion-button:not(.collapsed) {
	color: var(--color-menu-hover-texto);
	background-color: #f2f8ff;
}

.accordion-button {
	color: #9aa0a7;
}

.accordion-button:focus {    
    border-color: #dbe0e7;
	box-shadow: 0 0 0 0.25rem rgba(219, 224, 231, 0.25);
}

.text-primary {
    color: #1BC5BD !important;
}

.form-switch .form-check-input {
	width: 3rem;
	height: 1.5rem;
}
.form-check-reverse {
	text-align: left;
}

.form-check-input {
	margin-top: 0;
}
.form-switch label{
	display: flex;
}

.form-check-input:checked {
    background-color: #219EBC;
    border-color: #219EBC;
}

.form-check-input:focus {
    border-color: #219EBC;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(33,158,188,.25);
}

.btn-modal{
	background-color: #219EBC;
	color: #fff;
}

.btn-modal:hover{
	background-color: #106f86;	
	color: #fff;
}


.nav-tabs .nav-link.active {
    border-bottom: 3px solid #003845;
    color: #072b4b;
    text-overflow: clip;
    overflow: initial;
    white-space: normal;
    min-width: 100%;
    text-align: center;
    font-weight: 600;
}

.nav-tabs .nav-link {
    color: #6c757d;
    background-color: #f8f9fa;    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {    
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid #bf0909 !important;
    background-color: #dee2e6 !important;
}
.tab-content{
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0 0 8px 8px;
    padding: 15px; 
}
.tab-content table tbody tr td{
    padding-bottom: 0px;
}

.leaflet-popup-content-wrapper{
	background-image: url(../media/images/bg_trama.png);
	text-align: left;
    min-width: 430px !important;
    max-width: 700px !important;
}
.leaflet-popup-content{	
	padding: 10px !important;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif !important;
	letter-spacing: 0.5px;
}

.leaflet-popup-content h7{
	background-color: #dee2e6;
	border-bottom: solid 3px #bf0909;
	color: #003845;
	font-weight: bold !important;
}

#offcanvasDetalles{
	width: 70%;
}

.flotanteCnt {
    overflow: visible;
    box-shadow: none;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 350px;
    position: absolute;
    margin: 0;
    height: 50px;
    font-weight: 200;
    top: 85px;
    left: 145px;
    z-index: 2;
}
.icon-leyenda {
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 5px;
    border: 2px;
    border-style: solid;
}

.twitter-typeahead{
	width: 85% !important;
}
.tt-menu{
	width: 100%;
	margin: 12px 0;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);	
}
.tt-suggestion {
    padding: 3px 20px;
    font-size: 14px;
    line-height: 24px;
}

.tt-suggestion:hover {
    cursor: pointer;
    color: #fff;
    background-color: #219EBC;
}

.leaflet-control-browser-print.active {
    display: flex !important;
}

.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
    border: none;
}
.leaflet-control-browser-print a {
    background: #219EBC url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAQAAADlauupAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAAAGAAAABgAPBrQs8AAAAHdElNRQflBAcQKTMFuuNlAAAA1ElEQVQ4y6WSTQ7BUBSFz5VOMNWRubANsYIuovuwoW7CtG9KYwMShJF2QN5nIJKWR0m/2fs5J/ecXFMNmE6l4VBfuVzMiiL4BM7RinN1TU8d6Wxgj9H7fTGZyKLoJxW3m2y7Nasq4RcLOJ/bs79yOsF8LiiK/4TXKyyXsNvBei3w/j+D/R7GY1itwHsD6FLie2kcj7IsC5eXJLLRqHn3Rp5/LJ88f/3dfZGshtRc0zDO1TWBxYljSNOwOI6lw+GjdyhjW0fWNJjNpMHge4SyNNtsnqc7Hg5VUyTywH4AAAAldEVYdGRhdGU6Y3JlYXRlADIwMjEtMDQtMDdUMTY6NDE6NTErMDA6MDCDQ9RiAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIxLTA0LTA3VDE2OjQxOjUxKzAwOjAw8h5s3gAAAABJRU5ErkJggg==) no-repeat 5px !important;
    background-position: center !important;
}

.leaflet-control-browser-print a:hover {
    background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAE7mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDIgNzkuZGJhM2RhMywgMjAyMy8xMi8xMy0wNTowNjo0OSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI1LjcgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0wNS0wOVQwMToxMTo0My0wNTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMDUtMDlUMDE6MTI6NTAtMDU6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMDUtMDlUMDE6MTI6NTAtMDU6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOmVlNjlmNGJkLWRjNzctMTY0MC05YWE4LTlkYjk3NWYyYjkxMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDplZTY5ZjRiZC1kYzc3LTE2NDAtOWFhOC05ZGI5NzVmMmI5MTIiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDplZTY5ZjRiZC1kYzc3LTE2NDAtOWFhOC05ZGI5NzVmMmI5MTIiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmVlNjlmNGJkLWRjNzctMTY0MC05YWE4LTlkYjk3NWYyYjkxMiIgc3RFdnQ6d2hlbj0iMjAyNC0wNS0wOVQwMToxMTo0My0wNTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDI1LjcgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PubqIRkAAACFSURBVDiNtZNbDYAwDEXPFgzgYGAAESjBGBgZHsDAMhQgoXyRACOQrHCTfrRNX7etERE0KK6GehgfM4auNUfdqsoDRj1CPYwT0GTELsBqM4Nj6FoHlKbqfe4MEXAaEh18sIXkDiDd9Y67G7HArGhgRkROUvVerrYnn5qDf0h8e6gj1L+wAbl5TqydlvuPAAAAAElFTkSuQmCC) no-repeat 5px !important;
    background-position: center !important;
}

.leaflet-touch .leaflet-bar a, .leaflet-touch .leaflet-bar a {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    margin-bottom: 5px;
    border: solid 1px #219EBC;
    justify-content: center;
    align-items: center;    
    margin-bottom: 14px;
}

.leaflet-control-browser-print .leaflet-browser-print {
    background-color: #219EBC;
    border: solid 1px #219EBC !important;
}

.leaflet-control-browser-print:hover .leaflet-browser-print:hover {
    background-color: #fff;
   
}

.leaflet-control-browser-print {
    filter: brightness(1);
    position: absolute;
    float: right;
    right: 15px;
    bottom: 208px;    
}

.leaflet-touch .leaflet-bar a {	
    line-height: 30px;
    border-radius: 50%;
    color: #219EBC;
    width: 54px;
    height: 54px;
    margin-bottom: 5px;
    border: solid 1px #219EBC;
    justify-content: center;
    align-items: center;
	display: flex;
}

.leaflet-control-browser-print ul {
    height: 50px;
}

#btn-zoom{
	position: absolute;
	right: 25px;
	bottom: 280px;
	z-index: 1;
}

#btn-mas-opciones{
	position: absolute;
	right: 25px;
	bottom: 97px;
	z-index: 1;
}

#btn-buscar-coordenada{
	position: absolute;
	right: 25px;
	bottom: 340px;
	z-index: 1;
}

#btn-subir_shape{
	position: absolute;
	right: 25px;
	bottom: 400px;
	z-index: 1;
}
#polyline-measure-control.active {
    display: flex;
}

#polyline-measure-control {
    position: fixed;
    right: 25px;    
    color: #fff;
    background-color: #219EBC;
    border: solid 1px #219EBC;
	bottom: 158px;
}

#polyline-measure-control:hover {    
    color: #219EBC;
    background-color: #fff;
    border: solid 1px #219EBC;
}

.leaflet-pm-toolbar {
    bottom: 87px;
    right: 71px;
    display: none;
}

.leaflet-pm-toolbar .button-container:first-child .leaflet-buttons-control-button {
    border-radius: 50% !important;
    width: 54px;
    height: 54px;
    margin-bottom: 5px;
    border: solid 1px #219EBC;
    justify-content: center;
    align-items: center;
    display: flex;
}

.leaflet-pm-toolbar .control-icon {
	width: 50%;
	height: 50%;
	color: #219EBC;
	filter: brightness(0) saturate(100%) invert(54%) sepia(63%) saturate(4198%) hue-rotate(159deg) brightness(97%) contrast(74%);	
}

.action-finish {
	border-radius: 0% !important;
	-webkit-border-radius: 0% !important;
	-moz-border-radius: 0% !important;
	-ms-border-radius: 0% !important;
	-o-border-radius: 0% !important;
}

.action-cancel {
	border-radius: 0% !important;
	-webkit-border-radius: 0% !important;
	-moz-border-radius: 0% !important;
	-ms-border-radius: 0% !important;
	-o-border-radius: 0% !important;
}

.action-removeLastVertex {
	border-radius: 0% !important;
	-webkit-border-radius: 0% !important;
	-moz-border-radius: 0% !important;
	-ms-border-radius: 0% !important;
	-o-border-radius: 0% !important;
}

.leaflet-pm-actions-container {
    top: -40px !important;
    left: -50% !important;
    transform: translateX(-50%);
    margin-left: 100%;
    /* text-align: center; */
    /* display: flex !important; */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    right: 0;
    border-radius: 3px !important;
}

a.polyline-measure-controlOnBgColor, a.polyline-measure-controlOnBgColor:hover {
    color: #219EBC !important;
    background-color: #fff !important;
	border: solid 1px #219EBC;
    
}

.leaflet-control-zoomhome {
    position: flex !important;
    float: right;
    right: 70px;
    bottom: 271px;
    
}

 /*PRE LOADER*/

 .logo-preloading {
	max-width: 130px;
	top: calc(50%) !important;
}

#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 200px;
	height: 200px;
	margin: -100px 0 0 -100px;
	border-radius: 50%;
	border: 6px solid transparent;
	border-top-color: #da323c;
	-webkit-animation: spin 2s linear infinite;
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 2s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 6px solid transparent;
	border-top-color: #60656c;
	-webkit-animation: spin 3s linear infinite;
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 6px solid transparent;
	border-top-color: #e8e4e6;
	-webkit-animation: spin 1.5s linear infinite;
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 1.5s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
}

.preloader {
	background-color: #000;
	opacity: 0.8;
	position: fixed;
	z-index: 999999;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

.preloader img {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.tippy-box {
	background-color: rgba(45, 163, 153, 0.8);
	font-size: 13px;
	text-align: justify;
	color: #fff;	
	padding: 5px;
}
.tippy-box[data-placement^='right'] > .tippy-arrow::before{
	border-right-color: rgba(45, 163, 153, 0.8);
}

.tippy-box[data-placement^='left'] > .tippy-arrow::before{
	border-left-color: rgba(45, 163, 153, 0.8);
}
.tippy-content{
	max-width: 200px;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

/*------------------> Responsive*/
@media (max-height: 660px){
    .barra-lateral .nombre-pagina{
        margin-bottom: 5px;
    }   
}
@media (max-width: 600px){
    .barra-lateral{
        position: fixed;
        left: -250px;
    }
    .max-barra-lateral{
        left: 0;
    }
    .menu{
        display: flex;
    }
    .menu ion-icon:nth-child(2){
        display: none;
    }
    main{
        margin-left: 0;
    }
    main.min-main{
        margin-left: 0;
    }
    
    .navbar-brand{
        padding-left: 0px;
		margin-right: 0px;
		font-size: 18px;
		font-weight: 500;
		white-space: pre-line !important;
    }

	.basemaps{
		margin-top: 120px !important;
	}
	.btn-leyenda {
		top: 185px;
	}
	.btn-contacto {
		top: 245px;
	}
	#offcanvasDetalles{
		width: 100%;
	}
	.flotanteCnt{
		width: 300px;
		top: 105px;
		left: 10px;
	}
}
