.btnSeleccion{
    width: 50%;
}

.btnPrimeroPost{
    width: 20%;
}

.btnSegundoPost{
    width: 20%;
}

@media (max-width: 800px) {
    .btnPrimeroPost{
        width: 40%;
    }
    .btnSeleccion{
        width: 60%;
    }
}

@media (max-width: 500px) {
    .btnPrimeroPost{
        width: 50%;
    }
}

@media (max-width: 800px) {
    .btnSegundoPost{
        width: 40%;
    }
}

@media (max-width: 500px) {
    .btnSegundoPost{
        width: 50%;
    }
}

.dialogoCargando{
    width: 60%;
}

@media (max-width: 800px) {
    .dialogoCargando{
        width: 60%;
    }
}

@media (max-width: 500px) {
    .dialogoCargando{
        width: 90%;
    }
}

.dialogoVistaPlan{
    width: 70%;
}

@media (max-width: 800px) {
    .dialogoVistaPlan{
        width: 90%;
    }
}

@media (max-width: 500px) {
    .dialogoVistaPlan{
        width: 90%;
    }
}

.dialogoCargando{
    width: 60%;
}

@media (max-width: 800px) {
    .dialogoCargando{
        width: 60%;
    }
}

@media (max-width: 500px) {
    .dialogoCargando{
        width: 90%;
    }
}

/* css del Tooltip */
.icono {
	font-size: 20px;
	color: #2196F3;
}

.tooltip {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	border-radius: 10px;
	box-shadow: 5px 5px 50px rgba(0,0,0,.20);
	width: 31.25em;
	z-index: 1000;
	opacity: 0;
	transition: .3s ease all;
	transform: translateY(10px);
}

.tooltip::after {
	content: "";
	display: inline-block;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid #fff;
	position: absolute;
	bottom:-15px;
	left: calc(50% - 15px);
}

.tooltip.activo {
	opacity: 1;
	transform: translateY(0px);
}

.tooltip .thumb {
	width: 40%;
}

.tooltip .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px 0 0 10px;
	vertical-align: top;
}

.tooltip .info {
	width: 60%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.tooltip .info .titulo {
	color: #3c48e5;
	font-weight: 600;
	margin-bottom: 10px;
}

.tooltip .info .direccion {
	color: #707070;
	font-size: 12px;
	margin-bottom: 20px;
}

.tooltip .info .resumen {
	margin-bottom: 20px;
}

.tooltip .info .contenedor-btn {
	display: flex;
	justify-content: center;
}

.tooltip .info a {
	border: none;
	background: #75ac35;
	font-weight: bold;
	padding: 10px 20px;
	width: 80%;
	color: #fff;
	border-radius: 100px;
	font-family: 'Open Sans', sans-serif;
	cursor: pointer;
        text-align: center;
}

.tooltip .info a:hover {
	background: rgba(117,172,53, 0.9);
}

/* Mediaqueries */
/* ------------------------- */
@media screen and (max-width: 768px) {
	figcaption .tooltip {
		font-size: 12px;
	}

	.tooltip .info button {
		width: 100%;
	}
}

@media screen and (max-width: 576px) {
	
	figcaption .icono {
		top: 32px;
		/* display: none; */
	}

	.tooltip {
		position: absolute;
		opacity: 0;
		width: 100%;
		transform: translate(0);
	}

	.tooltip::after {
		content: "";
		display: none;
	}
}