* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
	height: 100vh;
	width: 100vw;
	background-color: #08001f;
}

#map { 
    height: 100vh;
    width: 100vw;
    z-index: 9;
 }

 .controls{
	color: #ccc;
	text-align: center;
	justify-content: center;
	align-items: center;
 }

 #btnCoo1{
	display: none;
 }

 #toggle-mode{
	display: none;
 }
 #clear1{
	display: none;
 }
  #toggle-mode2{
	display: none;
 }
 #clear2{
	display: none;
 }
  #toggle-mode3{
	display: none;
 }
 #clear3{
	display: none;
 }
  #toggle-mode4{
	display: none;
 }
 #clear4{
	display: none;
 }
 #toggle-mode5{
	display: none;
 }
 #clear5{
	display: none;
 }
  #toggle-mode6{
	display: none;
 }
 #clear6{
	display: none;
 }
 #toggle-mode7{
	display: none;
 }
 #clear7{
	display: none;
 }
  #toggle-mode8{
	display: none;
 }
 #clear8{
	display: none;
 }
  #marker{
	display: none;
 }
 







 /*********************************************************************botones toast**********************************************/
 
 .contenedor {
  display: grid;
  place-content: center;
  align-items: center;
  text-align: center;
  justify-content: center;
}

 .contenedor-botones {
  display: none;  
}
.btn {
	padding: 10px 10px;
	font-size: 20px;
	background: #000;
	border: none;
	cursor: pointer;
	color: #fff;
	border-radius: 5px;
	transition: 0.3s ease all;
}

.btn.exito {
	background: transparent;
}
.btn.error {
	background: transparent;
}
.btn.info {
	background: transparent;
}

/* Toast */
.contenedor-toast {
	right: 30vw;
	bottom: 50vh;
	width: auto;
	max-width: 95vw;
	display: flex;
	flex-direction: column-reverse;
	gap: 25px;
  position: fixed;
  z-index: 33;
}

.toast {
	background: #ccc;
	display: flex;
	justify-content: space-between;
	border-radius: 10px;
	overflow: hidden;
	animation-name: apertura;
	animation-duration: 500ms;
	animation-timing-function: ease-out;
	position: relative;
}

.toast.exito {
	  border: 1px solid rgba(241, 142, 6, 0.81);
    background-color: rgba(245, 174, 19, 0.49);
    box-shadow: 0px 0px 2px #ffb103;
    color: #0414f5;
    text-shadow: 2px 1px #eaf5f8;
  transition:0.5s;
  cursor:pointer;
  font-family: "Poppins"; 
 z-index: -1;
}
.toast.error {
	border: 1px solid rgba(241, 6, 6, 0.81);
    background-color: rgba(220, 17, 1, 0.43);
    box-shadow: 0px 0px 2px #ff0303;
    color: #ffffff;
    text-shadow: 2px 1px #2e2701;
  transition:0.5s;
  cursor:pointer;
  font-family: "Poppins";
}
.toast.info {
	border: 1px solid rgba(6, 241, 226, 0.81);
    background-color: rgba(1, 204, 220, 0.41);
    box-shadow: 0px 0px 2px #08001f;
    color: #e2e4ec;
    text-shadow: 2px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
  font-family: "Poppins";
  z-index: -1;
}


.toast .contenido {
	display: grid;
	font-size: 25px;
	grid-template-columns: 30px auto;
	align-items: center;
	gap: 15px;
	padding: 15px;
  margin-left: 15px;
}

.toast .icono {
	color: rgba(0, 0, 0, 0.4);
 -webkit-animation: blink-1 2s infinite both;
  animation: blink-1 2s infinite both;
  width: 35px; 
  height: 35px;
  margin-left: -5px;
}


@-webkit-keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.toast .titulo {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}

.toast .btn-cerrar {
	background: rgba(0, 0, 0, 0.1);
	border: none;
	cursor: pointer;
	padding: 0px 5px;
	transition: 0.3s ease all;
}

.toast .btn-cerrar:hover {
	background: rgba(0, 0, 0, 0.3);
}

.toast .btn-cerrar .icono {
	width: 20px;
	height: 20px;
	color: #fff;
}

@keyframes apertura {
	from {
		transform: translateY(100vh);
		opacity: 0;
	}
	to {
		transform: translateY(0vh);
		opacity: 1;
	}
}

.toast.cerrando {
	animation-name: cierre;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

@keyframes cierre {
  from {
		transform: translateX(0vh);
		opacity: 1;
	}
	to {
		transform: translateX(100vh);
		opacity: 0;
	}
/*	 from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(100% + 40px));
	} */
}

.toast.autoCierre::after {
	content: '';
	width: 100%;
	height: 4px;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	bottom: 0;
	animation-name: autoCierre;
	animation-duration: 5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

@keyframes autoCierre {
	from {
		width: 100%;
	}
	to {
		width: 0%;
	}
}
/*********************************************************************botones toast**********************************************/