/* Estilos generales para el popup */
#popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: #000000E6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-container.hide {
    display: none;
}
.popup-gallery{
	max-width: 1255px;
	width: 100%;
	margin: 0 auto;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.galeria__options_popup {
    max-width: 276px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.button-gallery{
	background-color: #fff;
	padding: 14px 30px;
	display: flex;
    align-items: center;
    gap: 15px;
}
.button-gallery:first-child{
	border-radius: 50px 0px 0px 50px;
}
.button-gallery:last-child{
	border-radius: 0px 50px 50px 0px;
}
.popup-content:not(.popup-gallery) {
    max-width: 90vw;
    max-height: 90vh;
	position: relative;
}
.thumbnail.slick-slide {
    margin: 0 5px;
}
.popup-content {
	width: 100%;
}
.popup-content iframe {
    width: 100%;
    height: 80vh;
	border: none;
	display: block;
}
.slider-nav .slick-list{
	margin: 0 -5px;
}
.slider-nav{
	padding: 20px 0;
}
.slider-for .slick-slide img {
	height: 71vh;
    width: 100%;
	object-fit:cover;
}
.slider-nav .slick-slide img {
	height: 70px;
    width: 100%;
}
.slider-nav .slick-slide.slick-current img {
    border: 2px solid #fff;
}
.container__project-installments {
    max-width: 574px;
    width: 100%;
    margin: 20px  auto 0;
	display: flex;
	background-color: var(--e-global-color-231ef25);
    border-radius: 10px;
}
.container__project-installments .installments-from-label, .container__project-installments .installments-from{
	padding: 20px
}
.container__project-installments .installments-from-label{
	background-color: #fff;
	max-width: 129px;
	width: 100%;
	font-size: 16px;
    line-height: 18.78px;
	font-family: var(--e-global-typography-primary-font-family);
    font-weight: 600;
    display: flex;
    align-items: center;
    border-radius: 10px 0 0 10px;
}
.container__project-installments .installments-from{
	max-width: 180px;
	width: 100%;
	background-color: var( --e-global-color-231ef25 );
	font-family: var(--main-font);
    font-size: 42px;
    line-height: normal;
	border-radius: 0px 10px 10px 0px;
}
.container__project-installments .installments-from .text-price-after {
    font-size: 14px;
    font-family: 'Poppins';
}
.popup-informacion{
	border-radius: 10px;
	background-color: var( --e-global-color-accent );
	color: #fff;
	font-size: 16px;
	padding: 15px 30px;
	margin: auto;
	cursor: pointer;
	font-weight: 600;
}

/* Botón para cerrar el popup */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1100;
}
.text-alt {
	display: flex;
    flex-direction: column;
}
.text-alt .text-price-after {
	margin-top: -0.6rem;
}
@media (max-width:767px){
	.slider-for .slick-slide img {
		height: inherit;
	}
	.popup-content:not(.popup-gallery) {
		max-width: 100vw;
		max-height: 90vh;
		margin-top: -50px;
	}
	.popup-content iframe {
		height: 80vh !important;
	}
	.container__project-installments, .container__project-installments .installments-from-label {
		border-radius: 0px;
	}
	.container__project-installments .installments-from-label{
		max-width: 120px;
	}
	.container__project-installments .installments-from {
		border-radius: 0px 10px 10px 0px;
		padding: 20px 10px;
		font-size: 36px;
	}
	.popup-informacion {
		font-size: 14px;
        padding: 2vw 5vw 2vw 5vw;
		text-align: center;
		margin-right: 5px;
	}
}