body {
	font-family: 'Roboto', sans-serif;
	background: #fff;
}


.wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
}

.box {
	margin: 10px;
	width: 200px;
	height: 300px;
	text-align: center;
	border-radius: 3px;
	-webkit-transition: 200ms ease-in-out;
	-o-transition: 200ms ease-in-out;
	transition: 200ms ease-in-out;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.3);
	        box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.box:hover {
	margin-bottom: -10px;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.7);
	        box-shadow: 0 0 5px rgba(0,0,0,0.7);
}
.box h1 {
	color: #fff;
	padding: 10px;
	margin-top: 20px;
	text-align: center;
	font-weight: 100;
	font-size: 25px;
	background: rgba(0,0,0,0.8);
	-webkit-box-shadow: 0 0 30px rgba(0,0,0,0.7);
	        box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.date h4 {
	color: #fff;
	font-weight: 300;
	text-align: center;
	letter-spacing: 3px;
	text-shadow: 0 0 3px rgba(0,0,0,0.9);
}
.poster {
	width: 130px;
	height:130px;
	margin: 30px auto;
	position: relative;
	border-radius: 100px;
}
.poster h4 {
	top: 16px;
	color: #fff;
	position: relative;
	font-size: 80px;
	text-align: center;
	font-weight: 100;
}
.poster img{
	width: 130px;
}
.one {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


/* POSTER*/
.p1 {
	background: #ffffff;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #6E0000, #ffffff);  /* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-gradient(linear, left top, right top, from(#6E0000), to(#ffffff));
	background: -webkit-linear-gradient(left, #6E0000, #ffffff);
	background: -o-linear-gradient(left, #6E0000, #ffffff);
	background: linear-gradient(to right, #6E0000, #ffffff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	-webkit-box-shadow: 0 0 20px rgb(51, 3, 3);
	        box-shadow: 0 0 20px rgb(51, 3, 3);
}



@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

  /* Estilo para el mapa */
  #map {
	width: 100%;
	height: 300px;
}

/* Asegurarse de que el mapa ocupe el 100% de su contenedor */
.map-container {
	height: 100%;
}

/* Ajustar el tamaño del mapa en pantallas grandes */
@media (min-width: 768px) {
	#map {
		border: 2px solid #000000;
		border-radius: 20px;
		height: 60vh;
	}
}

.floating-button {
    position: fixed;
    top: 170px; /* Ajusta la distancia desde la parte inferior */
    right: 20px;  /* Ajusta la distancia desde la parte derecha */
    z-index: 9999; /* Asegura que esté por encima de otros elementos */
}
