.custom-dropdown {
	--custom-dropdown-height: 33px;
	--custom-dropdown-border-width: 1px;
	--custom-dropdown-padding-x: 4px;
	--custom-dropdown-border-radius: 0;
	--custom-dropdown-font-size: 12px;
	--custom-dropdown-line-height: 1.333;
	--custom-dropdown-font-weight: 400;
	--custom-dropdown-font-family: inherit;
	--custom-dropdown-color: #222;
	--custom-dropdown-bg-color: #fff;
	--custom-dropdown-toggle-border-width: var(--custom-dropdown-border-width);
	--custom-dropdown-toggle-padding-x: var(--custom-dropdown-padding-x);
	--custom-dropdown-toggle-padding-x-right: var(--custom-dropdown-height);
	--custom-dropdown-toggle-padding-y: 8px;
	--custom-dropdown-toggle-font-size: var(--custom-dropdown-font-size);
	--custom-dropdown-toggle-line-height: var(--custom-dropdown-line-height);
	--custom-dropdown-toggle-font-weight: var(--custom-dropdown-font-weight);
	--custom-dropdown-toggle-font-family: var(--custom-dropdown-font-family);
	--custom-dropdown-toggle-arrow-size: 12px;
	--custom-dropdown-toggle-arrow-line-width: var(--custom-dropdown-border-width);
	--custom-dropdown-toggle-arrow-right: var(--custom-dropdown-padding-x);
	--custom-dropdown-toggle-text-color: var(--custom-dropdown-color);
	--custom-dropdown-toggle-bg-color: var(--custom-dropdown-bg-color);
	--custom-dropdown-toggle-border-color: #a5a5a5;
	--custom-dropdown-toggle-arrow-color: var(--custom-dropdown-color);
	--custom-dropdown-menu-zindex: 80;
	--custom-dropdown-menu-top-offset: 1px;
	--custom-dropdown-menu-width: auto;
	--custom-dropdown-menu-top: 100%;
	--custom-dropdown-menu-left: 0;
	--custom-dropdown-menu-right: 0;
	--custom-dropdown-menu-box-shadow: 5px 5px 10px rgba($black, 0.3);
	--custom-dropdown-menu-border-width: 0;
	--custom-dropdown-menu-border-radius: var(--custom-dropdown-border-radius);
	--custom-dropdown-menu-font-size: var(--custom-dropdown-font-size);
	--custom-dropdown-menu-line-height: var(--custom-dropdown-line-height);
	--custom-dropdown-menu-font-weight: var(--custom-dropdown-font-weight);
	--custom-dropdown-menu-font-family: var(--custom-dropdown-font-family);
	--custom-dropdown-menu-padding-x: 0;
	--custom-dropdown-menu-padding-y-top: 0;
	--custom-dropdown-menu-padding-y-bottom: 0;
	--custom-dropdown-menu-item-padding-x: var(--custom-dropdown-padding-x);
	--custom-dropdown-menu-item-padding-y: calc((var(--custom-dropdown-height) - (var(--custom-dropdown-border-width) * 2) - (var(--custom-dropdown-font-size) * var(--custom-dropdown-line-height))) * 0.5);
	--custom-dropdown-menu-color: var(--custom-dropdown-color);
	--custom-dropdown-menu-bg: var(--custom-dropdown-bg-color);
	--custom-dropdown-menu-border-color: var(--custom-dropdown-menu-color);
	--custom-dropdown-menu-link-color: #a5a5a5;
	--custom-dropdown-menu-link-hover-color: #000;
	--custom-dropdown-menu-link-hover-bg: transparent;
	--custom-dropdown-menu-link-active-color: var(--custom-dropdown-menu-link-hover-color);
	--custom-dropdown-menu-link-active-bg: var(--custom-dropdown-menu-link-hover-bg);
	--custom-dropdown-menu-link-disabled-color: var(--custom-dropdown-menu-link-color);
	display: block;
	position: relative;
	width: 100%;
}
.custom-dropdown .custom-dropdown-toggle {
	white-space: normal;
	display: block;
	position: relative;
	width: 100%;
	color: var(--custom-dropdown-color);
	background: var(--custom-dropdown-toggle-bg-color);
	border: solid var(--custom-dropdown-toggle-border-color);
	border-width: 0 0 1px;
	padding: var(--custom-dropdown-toggle-padding-y) var(--custom-dropdown-toggle-padding-x-right) var(--custom-dropdown-toggle-padding-y) var(--custom-dropdown-toggle-padding-x);
	font-size: var(--custom-dropdown-toggle-font-size);
	line-height: var(--custom-dropdown-toggle-line-height);
	font-weight: var(--custom-dropdown-toggle-font-weight);
	font-family: var(--custom-dropdown-toggle-font-family);
	text-transform: uppercase;
	text-align: left;
}
.custom-dropdown .custom-dropdown-toggle::after {
	content: "";
	position: absolute;
	z-index: 5;
	top: 50%;
	right: var(--custom-dropdown-toggle-arrow-right);
	transform: translate(0, -50%) rotate(45deg);
	width: var(--custom-dropdown-toggle-arrow-size);
	height: var(--custom-dropdown-toggle-arrow-size);
	margin-top: calc(var(--custom-dropdown-toggle-arrow-size) * -0.25);
	border: solid var(--custom-dropdown-toggle-arrow-color);
	border-width: 0 var(--custom-dropdown-toggle-arrow-line-width) var(--custom-dropdown-toggle-arrow-line-width) 0;
	transition: all 0.3s ease;
}
.custom-dropdown .custom-dropdown-menu {
	position: absolute;
	z-index: var(--custom-dropdown-menu-zindex);
	top: var(--custom-dropdown-menu-top);
	left: var(--custom-dropdown-menu-left);
	right: var(--custom-dropdown-menu-right);
	width: var(--custom-dropdown-menu-width);
	box-shadow: var(--custom-dropdown-menu-box-shadow);
	list-style: none;
	margin: var(--custom-dropdown-menu-top-offset) 0 0;
	padding: var(--custom-dropdown-menu-padding-y-top) var(--custom-dropdown-menu-padding-x) var(--custom-dropdown-menu-padding-y-bottom);
	background-color: var(--custom-dropdown-menu-bg);
	border: var(--custom-dropdown-menu-border-width) solid var(--custom-dropdown-menu-border-color);
	border-radius: var(--custom-dropdown-menu-border-radius);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
	text-align: left;
	transition: all 0.3s ease;
	opacity: 0;
	pointer-events: none;
}
.custom-dropdown .custom-dropdown-menu > li {
	position: relative;
}
.custom-dropdown .custom-dropdown-menu > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.custom-dropdown .custom-dropdown-menu > ul > li {
	position: relative;
}
.custom-dropdown .custom-dropdown-menu > ul > li a,
.custom-dropdown .custom-dropdown-menu > ul > li button {
	display: block;
	width: 100%;
	font-size: var(--custom-dropdown-menu-font-size);
	line-height: var(--custom-dropdown-menu-line-height);
	font-weight: var(--custom-dropdown-menu-font-weight);
	font-family: var(--custom-dropdown-menu-font-family);
	text-transform: uppercase;
	text-align: start;
	text-decoration: none;
	white-space: normal;
	color: var(--custom-dropdown-menu-link-color);
	background: none;
	border: 0;
	padding: var(--custom-dropdown-menu-item-padding-y) var(--custom-dropdown-menu-item-padding-x);
	cursor: pointer;
	transition: all 0.3s ease;
}
.custom-dropdown .custom-dropdown-menu > ul > li a:hover,
.custom-dropdown .custom-dropdown-menu > ul > li button:hover {
	color: var(--custom-dropdown-menu-link-hover-color);
	background-color: var(--custom-dropdown-menu-link-hover-bg);
}
.custom-dropdown .custom-dropdown-menu > ul > li:first-child a,
.custom-dropdown .custom-dropdown-menu > ul > li:first-child button {
	border-top-left-radius: var(--custom-dropdown-menu-border-radius);
	border-top-right-radius: var(--custom-dropdown-menu-border-radius);
}
.custom-dropdown .custom-dropdown-menu > ul > li:last-child a,
.custom-dropdown .custom-dropdown-menu > ul > li:last-child button {
	border-bottom-left-radius: var(--custom-dropdown-menu-border-radius);
	border-bottom-right-radius: var(--custom-dropdown-menu-border-radius);
}
.custom-dropdown .custom-dropdown-menu > ul > li.active a,
.custom-dropdown .custom-dropdown-menu > ul > li.active button {
	color: var(--custom-dropdown-menu-link-active-color);
	background-color: var(--custom-dropdown-menu-link-active-bg);
}
.custom-dropdown .custom-dropdown-menu > ul > li.disabled, .custom-dropdown .custom-dropdown-menu > ul > li:disabled, .custom-dropdown .custom-dropdown-menu > ul > li[disabled] {
	cursor: not-allowed;
	pointer-events: none;
	color: var(--custom-dropdown-menu-link-disabled-color);
}
.custom-dropdown.custom-dropdown-opened .custom-dropdown-toggle::after {
	transform: translate(0, -50%) rotate(225deg);
	margin-top: calc(var(--custom-dropdown-toggle-arrow-size) * 0.25);
}
.custom-dropdown.custom-dropdown-opened .custom-dropdown-menu {
	opacity: 1;
	pointer-events: all;
}

.images-slideshow {
	position: relative;
	font-size: 0;
	line-height: 0;
}
.images-slideshow .swiper-container {
	position: relative;
	overflow: hidden;
	height: 100%;
}
.images-slideshow .swiper-slide {
	display: flex;
	height: 100%;
}
.images-slideshow .swiper-slide figure {
	margin: 0;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.images-slideshow .swiper-slide figure img {
	position: absolute;
	inset-block-start: 0;
	inset-inline-start: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.side-content .descarga.tres .title-seccion.title-seccion-general {
	cursor: default;
	pointer-events: none;
}
@media (min-width: 992px) {
	.side-content .descargas.tres .left-side {
		width: 50%;
	}
}
@media (min-width: 992px) {
	.side-content .descargas.tres .left-side .menu-element#bottomNav {
		margin-top: 0;
	}
}
@media (min-width: 992px) {
	.side-content .descargas.tres .right-side {
		width: 50%;
		height: calc(100svh - var(--header-height));
	}
}
.side-content .descargas.tres .right-side .login-image-holder {
	width: 100%;
}
@media (min-width: 992px) {
	.side-content .descargas.tres .right-side .login-image-holder {
		display: flex;
		height: 100%;
	}
}
.side-content .descargas.tres .right-side .login-image-holder .images-slideshow {
	width: 100%;
}
@media (max-width: 991px) {
	.side-content .descargas.tres .right-side .login-image-holder .images-slideshow .swiper-slide figure {
		aspect-ratio: 1/1;
		height: auto;
	}
}

.two-sides .side-select .cta {
	font-size: 16px;
}
.two-sides .side-select:hover .layer {
	opacity: 1;
}
.two-sides .dropdown-form-group {
	width: 50%;
	padding-top: 30px;
	margin-bottom: 15px;
	padding-inline-start: 194px;
}
@media (max-width: 1519px) {
	.two-sides .dropdown-form-group {
		padding-inline-start: 134px;
	}
}
@media (max-width: 1200px) {
	.two-sides .dropdown-form-group {
		padding-inline-start: 114px;
	}
}
@media (max-width: 991px) {
	.two-sides .dropdown-form-group {
		width: auto;
		margin-bottom: 15px;
		padding-inline: 20px;
	}
}
@media (min-width: 992px) {
	.two-sides .dropdown-form-group .custom-dropdown .custom-dropdown-toggle {
		display: none !important;
	}
}
@media (min-width: 992px) {
	.two-sides .dropdown-form-group .custom-dropdown .custom-dropdown-menu {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		width: auto;
		box-shadow: none;
		margin: 0;
		padding: 0;
		border: 0;
		opacity: 1;
		pointer-events: all;
	}
}
@media (min-width: 992px) {
	.two-sides .formularios {
		height: calc(100svh - var(--header-height));
		justify-content: flex-start;
	}
}
.two-sides .formularios .accordion-item:last-child {
	margin-bottom: 0;
}
.two-sides .formularios .accordion-item .half.images .images-slideshow {
	position: absolute;
	z-index: 5;
	inset: 0;
}
.two-sides .formularios .accordion-item .half.images.open {
	display: block;
}
.two-sides .formularios .accordion-item .accordion-item-dropdown {
	display: none !important;
}
@media (max-width: 991px) {
	.two-sides .half.in {
		height: calc(100dvh - 95px);
		overflow-y: auto;
	}
}
@media (min-width: 992px) {
	.two-sides .half-left {
		height: calc(100svh - var(--header-height));
	}
}
@media (min-width: 992px) {
	.two-sides .half-left.in {
		overflow-y: auto;
	}
}

.descargas .select-all-files,
.descargas .download-selected,
.descargas .download-all {
	float: right;
	margin-bottom: 10px;
	padding-inline: 5px;
	color: #a5a5a5;
	transition: all 0.3s ease;
	cursor: pointer;
}
.descargas .select-all-files:hover,
.descargas .download-selected:hover,
.descargas .download-all:hover {
	color: #3a3a3a;
}
.descargas .back-link-download {
	position: relative;
	padding-inline-start: 20px;
	cursor: pointer;
	color: #a5a5a5;
	transition: all 0.3s ease;
	text-transform: uppercase;
}
.descargas .back-link-download::before {
	content: "";
	position: absolute;
	z-index: 5;
	inset-block-start: 50%;
	inset-inline-start: 4px;
	transform: translate(0, -50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border: solid currentColor;
	border-width: 0 0 1px 1px;
	margin-top: -1px;
}
.descargas .back-link-download:hover {
	color: #3a3a3a;
}
.side-content .descargas {
	height: auto;
}

/* visual-slider */
.visual-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: auto;
}
.visual-slider .swiper-wrapper {
	height: auto;
}
.visual-slider .swiper-slide {
	width: auto;
}
.visual-slider figure {
	margin: 0;
}
.visual-slider figure img,
.visual-slider figure video {
	display: block;
	width: auto;
	height: 350px;
	-o-object-fit: cover;
	   object-fit: cover;
}
.visual-slider .swiper-pagination {
	position: static;
	padding: 10px 0;
}
@media (max-width: 1919px) {
	.visual-slider figure img,
	.visual-slider figure video {
		height: 18.23vw;
	}
}
@media (max-width: 1200px) {
	.visual-slider figure img,
	.visual-slider figure video {
		height: 29.17vw;
	}
}
@media (max-width: 767px) {
	.visual-slider .swiper-wrapper {
		flex-direction: column;
		gap: 30px 0;
	}
	.visual-slider .swiper-pagination {
		display: none;
	}
	.visual-slider figure img,
	.visual-slider figure video {
		width: 100%;
		height: auto;
	}
}
/*# sourceMappingURL=styles-2025.css.map */
