.formdetail	.formdetail_content {
	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: 45%;
}

@media screen and (max-width: 1024px) {
	.formdetail .formdetail_left {
		width: 50%;
	}	
	.col-arrows{
		justify-content: center;
	}
	.movido-movil-carrusel{
		margin:40px 0px;
	}
}

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

.formdetail .formdetail_right {
	width: 53%;
}

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

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



.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; */
	margin: 0 auto;
	margin-top: 2px;
}

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

.formdetail .formdetail_sliderblock {
	width: 100%;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.formdetail .formdetail_sliderblock.active {
	opacity: 1;
	visibility: visible;
	position: relative;
	z-index: 1;
}

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

@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: auto;
}

.formdetail .formdetail_image:before {
	content: "+";
	/* content: "\e900"; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	background-color: #E84634;
	/* background-color: #000; */
	color: white;
	/* font-family: 'icomoon'; */
	font-weight: normal;
	/* font-size: 14px; */
	font-size: 32px;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.formdetail .formdetail_image:hover::before {
	opacity: 1;
	visibility: visible;
}

.formdetail_form {
	/* margin-top: 43px; */
	margin-top: 0;
}

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

.formdetail_controls {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

.formdetail .formdetail_prev, .formdetail .formdetail_next {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* width: 45px;
	height: 45px; */
	/* color: white; */
	font-size: 25px;
	cursor: pointer;
	/* border: 1px solid white; */
	/* border-radius: 50%; */
	box-sizing: border-box;
	margin: 0 8px 0 8px;

    background: var(--e-global-color-primary);
    z-index: 2;
    width: 55px;
    height: 55px;
    border-radius: 99px;
    border: none;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-arrow-right:before {
	/* content: "\e902"; */
	content: ">";
	font-size: 25px;

}
.icon-arrow-left:before {
	/* content: "\e901"; */
	content: "<";
	font-size: 25px;
}