html, body{
	overflow-x: hidden;
}

.formdetail	.formdetail_content {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

/* .formdetail .formdetail_block {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
} */

@media screen and (max-width: 960px) {
	.formdetail .formdetail_block {
		flex-direction: column;
		justify-content: inherit;
	}	
}
/* 
.formdetail .formdetail_left {
	width: calc(576% * 100 / 1200);
} */

@media screen and (max-width: 1024px) {
	.formdetail .formdetail_left {
		width: 50%;
	}	
}

@media screen and (max-width: 960px) {
	.formdetail .formdetail_left {
		width: 100%;
		margin-bottom: 0px;
	}
}

/* .formdetail .formdetail_right {
	width: calc(496% * 100 / 1200);
} */
.formdetail_block{
	display: grid;
    grid-template-columns:45% 55%;
    gap: 50px;
}
.formdetail_item a{
	background: #fff;
    border: 1px solid #D5CFD3;
    margin-bottom: 20px!important;
}

@media screen and (max-width: 1024px) {
	.formdetail .formdetail_right {
		width: 46%;
	}	
}

@media screen and (max-width: 960px) {
	.formdetail .formdetail_right {
		width: 100%;
		padding-bottom: 0;
		margin-bottom: 0;
	}	
	
}



.formdetail .formdetail_subtitle {
	display: block;
	line-height: 40px;
	color: var(--e-global-color-text);
	/*font-family: var(--e-global-typography-primary-font-family);*/
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	margin: 0 0 24px 0;
}

@media screen and (max-width: 767px) {
	.formdetail .formdetail_subtitle {
		line-height: 1.2;
		font-size: 30px;
	}
}

.formdetail .formdetail_description {
	display: block;
	line-height: 24px;
	color: var(--e-global-color-text);
	/*font-family: var(--e-global-typography-primary-font-family);*/
	font-size: 15px;
	font-style: normal;
	font-weight: 200;
	margin: 0;
}

.formdetail .formdetail_description p {
	margin: 0;
}



.formdetail .formdetail_groupslider {
	position: relative;
}

.formdetail .formdetail_portada {
	width: 100%;
	box-shadow: 0px 28px 40px 0px rgba(0, 0, 0, 0.10);
	margin: 24px 0 0 0;
}

.formdetail .formdetail_portada img {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
}

.formdetail .formdetail_sliderblock {
	width: 100%;
	display: none;
}

.formdetail .formdetail_sliderblock.active {
	display: grid;
}

/* .formdetail .formdetail_slider {
	box-shadow: 0px 28px 40px 0px rgba(0, 0, 0, 0.10);
	margin-top: 24px;
} */

.formdetail_caption{
	display: flex;
	gap:30px;
	align-items: center;
}
.formdetail_caption .badge{
    display: flex;
    align-items: center;
    font-weight: 300;
    color: rgb(65, 39, 59);
    text-transform: uppercase;
    gap: 10px;
    padding: 10px;
}
.badge-dpto{
	    height: 45px;
    background: #41273B;
    color: #fff!important;
    min-width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
@media screen and (max-width: 767px) {
	.formdetail .formdetail_slider {
		margin-top: 10px;
	}
}

.formdetail .formdetail_slider ul {
	list-style-type: none;
	padding: 0;
}

.formdetail .formdetail_image {
	display: block;
	position: relative;
	margin: 0;
}

.formdetail .formdetail_image img {
	display: block;
	max-width: 100%;
	width: 100%;
    height: 416px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.formdetail_item {
	position: relative;
	overflow: hidden;
}

.formdetail_item a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	width: 120px;
	height: 120px;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.formdetail_item a::after {
	content: url('data:image/svg+xml,<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 5V19M5 12H19" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.formdetail_item a:hover::before,
.formdetail_item a:hover::after {
	opacity: 1;
}


.formdetail_form {
	margin-top: 43px;
}

.formdetail_button {
	text-align: center;
	margin-top: 20px;
}

/* Slick Slider Styles */
.formdetail_sliderblock {
	position: relative;
	margin-top: 24px;
}

.formdetail_slider {
	/* box-shadow: 0px 28px 40px 0px rgba(0, 0, 0, 0.10); */
	overflow: hidden;
}

.formdetail_slider ul.formdetailPitcherSlider {
	margin: 0;
	padding: 0;
	list-style: none;
}

.formdetail_slider .formdetail_item {
	outline: none;
}

/* Slick Slider Controls */
.formdetail_slider_footer {
	position: relative;
	margin-top: 15px;
}
.formdetail_controls {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 10px;
	position: absolute;
	bottom: 15px;
	right: 0;
}

.formdetail_prev,
.formdetail_next {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	/* background: #41273B; */
	color: white;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 10;
	font-size: 16px;
	border: none;
	outline: none;
}

/* .formdetail_prev:hover,
.formdetail_next:hover {
	background: #2c1830;
	transform: scale(1.1);
} */

.formdetail_prev:before {
	content: url('data:image/svg+xml,<svg width="24" height="18" viewBox="0 0 24 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.6666 9.14307H1.33325M1.33325 9.14307L9.33325 17.1431M1.33325 9.14307L9.33325 1.14307" stroke="%2341273B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	font-size: 18px;
}

.formdetail_next:before {
	content: url('data:image/svg+xml,<svg width="24" height="18" viewBox="0 0 24 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.33325 9.14307H22.6666M22.6666 9.14307L14.6666 1.14307M22.6666 9.14307L14.6666 17.1431" stroke="%2341273B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	font-size: 18px;
}

/* Slick slider specific styles */
.slick-slide {
	outline: none;
}

.slick-slide img {
	display: block;
	width: 100%;
	height: auto;
}

/* Hide slick default arrows */
.slick-prev,
.slick-next {
	display: none !important;
}

/* Responsive styles */

@media screen and (max-width: 1024px) {
	.formdetail_block{
		grid-template-columns:1fr;
	}
	.formdetail .formdetail_image img{
		height: auto;
	}
	.formdetail_caption {
		display: grid;
		grid-template-columns: 1fr 1fr; 
		gap: 20px;
		width: 100%;
	  }
	  
	  .formdetail_caption .badge:first-child {
		grid-column: 1;
		grid-row: 1;
	  }
	  
	  .formdetail_caption .badge:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
		margin: auto;
	  }
	  
	  .formdetail_caption .badge:nth-child(3) {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-content: center;
	  }
	  .formdetail_controls{
		gap: 10px;
		position: relative;
		 bottom: 0px;
		 justify-content: center;
	  }
	  .formdetail_caption .badge{
		justify-content: center;
	  }
}

@media screen and (max-width: 767px) {
	.formdetail_controls {
		gap: 10px;
	}
	
	.formdetail_prev,
	.formdetail_next {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
	
	.formdetail_prev:before,
	.formdetail_next:before {
		font-size: 16px;
	}
}



.slick-prev:before {
    content: "";
    background-image: url(/wp-content/uploads/2024/10/angle-small-left.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center;
}

.slick-next:before {
    color: #fff;
    content: "";
    background-image: url(/wp-content/uploads/2024/10/angle-small-right.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center;
}

.slick-prev:before, .slick-next:before {
    font-family: 'FontAwesome' !important; 
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 1;
    opacity: .75;
    color: #FFF !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



.formdetail .formdetail_right {
    margin-top: 0px;
}

/* Imputs*/

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.custom-input {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(34, 28, 53, 0.5);
    padding: 12px;
    border-radius: 8px;
    background: transparent;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.custom-input {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(34, 28, 53, 0.5);
    border-radius: 8px;
    padding: 12px;
     background: transparent;
}

input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number.custom-input {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(34, 28, 53, 0.5);
    border-radius: 8PX;
    padding: 12px;
     background: transparent;
}

textarea.wpcf7-form-control.wpcf7-textarea.custom-input {
    width: 100%;
    height: 82px;
    border: 1px solid rgba(34, 28, 53, 0.5);
    border-radius: 8px;
    padding: 12px;
}

select.sd_tipo_doc {
    margin-top: 2px;
}




/* ENVIAR*/

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: var(--e-global-color-text);
    color: #fff;
    font-weight: 400;
    text-transform: ;
    padding: 12px 24px;
    border-radius: 4px;
    margin-left: 4px;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background: var(--e-global-color-1b57a2d);
    color: #fff;
    font-weight: 400;
    text-transform: ;
    padding: 12px 24px;
    opacity: 1;
}

.wpcf7-list-item-label a {
    color: #000;
    font-weight: 500;
    text-decoration: underline !important;
}

/* ENVIAR*/

/* selector */




.select:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free" !important;
    z-index: 2;
    font-weight: 900;
    position: relative;
    top: -48px;
    left: calc(100% - 32px);
    pointer-events: none;
    color: #000 !important;
    z-index: 9 !important;
}


.form-custom-cotizar .cols .select {
    margin-top: -42px !important;
        margin-bottom: -12px !important;
}



/* selector */

.form-custom-cotizar .form-group {
    margin-top: -28px !important;
}


.form-custom-cotizar span .wpcf7-not-valid-tip {
    background: #e7272f00;
    color: #E7272F;
    padding: 4px 14px !important;
    margin-bottom: 8px !important;
    margin-top: 4px;
    border-radius: 0px !important;
    position: relative;
    z-index: 2;
    width: 100%;
    font-size: 11px;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.custom-input {
    font-weight: 500 !important;
    font-size: 15px;
}

textarea.wpcf7-form-control.wpcf7-textarea.custom-input {
    font-size: 15px;
    font-weight: 500;
}


select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.custom-input {
    font-size: 14px !important;
    font-weight: 500 !important;
}


.full {
    width: 100% !important;
}

@media screen and (max-width: 1024px){



.formdetail .formdetail_right {
    margin-top: -40px;
}

}

@media (min-width: 991px) and (max-width: 1400px) {
    .formdetail_block {
        max-width: 92%;
        margin: 0px auto;
    }
	    .formdetail .formdetail_image img {
        height: 420px;
    }
	    .formdetail_slider .formdetail_item {
        padding: 5px;
    }
}

@media screen and (max-width: 767px){


.form-group {
    margin-top: 10px !important;
}

.form-custom-cotizar .cols .select {
    margin-top: -44px !important;
    margin-bottom: -12px !important;
}

.form-custom-cotizar .cols {
    margin-top: 8px;
}

.cols {
    margin-top: 0px !important;
}

.espacio-mobile {
    padding-top: 8px !important;
}

.formdetail .formdetail_right {
    margin-top: -40px;
}

.tipologia {
    padding-bottom: -20px !important;
    margin-bottom: -4px !important;
}

}



/* Formulario CSS */