@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
/*Còdigos universales de la pàgina
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;;
}*/
/*Còdigo opcional - Fondo de la pàgina
body{
	 background: url("https://travelandleisure.mx/wp-content/uploads/2018/10/marc-antoine-depelteau-268520-unsplash.jpg");
    background-size: 100vw 100vh;
    background-repeat: no-repeat;;
}*/
/*---*/
.modal12{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal12{
	position: fixed;
	top: 0;
	left: 0;
	background: rgb(0,0,0,0.5);
	transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
}
#btn-modal12:checked ~ .modal12{
	opacity: 1;
	visibility: visible;
} 
.contenedor12{
	width: 400px;
	height: 300px;
	margin: auto;
	background: #fff;
	box-shadow: 1px 7px 25px rgba(0,0,0,0.6);
	transition: all 500ms ease;
	position: relative;
	transform: translateY(-30%);
}
#btn-modal12:checked ~ .modal12 .contenedor{
	transform: translateY(0%);
} 
.contenedor12 header{
	padding: 10px;
	background: #db8046;
	color: #fff;
}
.contenedor12 label{
	position: absolute;
	top: 10px;
	right: 10px;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
}
.contenido12{
	width: 100%;
	padding: 10px; 
}
.contenido12 h3{
	margin-bottom: 10px;
}
.contenido12 p{
	margin-bottom: 7px;
}
#btn-modal12{
	display: none;
}
.lbl-modal{
	background: #fff;
	padding: 10px 15px;
	border-radius: 4px;
	cursor: pointer;
}
@media only screen and (min-width:320px) and (max-width:768px){
	.contenedor12{
		width: 95%;
	}
}


/*¨Puntos de inspeción*/
.container15{
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.container15 img{
    width: 100%;
}

.hotspot15{
    width: 20px;
    height: 20px;
    background-color: #28ADED;
    border-radius: 50%;
    position: absolute;
    animation: wave 1s infinite;
    cursor: pointer;
}

.punto3{
    right: 16.5%;
    bottom: 68.5%
}


.punto1{
    left: 34.3%;
    bottom: 36%;
}

.punto4{
    left: 22.9%;
    top: 27%;
}

.punto2{
    right: 60%;
    bottom: 40%;
}

.punto5{
   left: 19%;
    bottom: 49%;
}


@keyframes wave{
    from{
        box-shadow: 0 0 0 0 #28ADEDbb;
    }
    to{
        box-shadow: 0 0 0 10px #28ADED10;
    }
}
/*
.hotspot15::before{
    content: attr(text);
    width: max-content;
    position: absolute;
    background-color: #222222dd;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 3px;
    display: none;
}

.hotspot15::after{
    content: "";
    border-color: transparent transparent #222222dd;
    border-width: 0 8px 6px;
    border-style: solid;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}*/

.hotspot15:hover::before,
.hotspot15:hover::after{
    display: block;
}