@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--bs-body-font-family: 'Inter', sans-serif;
	--bs-body-color: #383838;
	--bs-primary-rgb: 39, 77, 138;
	--bs-success-rgb: 55, 156, 138;
	--bs-success-text-emphasis: #7db752;
	--bs-success-bg-subtle: #7db752;
	--bs-info-rgb: 44, 131, 204;
	--bs-warning-rgb: 240, 136, 65;
	--bs-danger-rgb: 174, 20, 38;
	--bs-border-color: #dddddd;
	--bs-light-rgb: 235, 235, 235;
	--bs-border-radius-xxl: 1.4rem;
	--bs-pagination-active-bg: #274d8a;
	--c1: #274d8a;
	--c2: #379c8a;
	--c3: #7db752;
	--c4: #0bb494;
	--c5: #2c83cc;
}

/* ------ dark ------ */
[data-bs-theme=dark] {
	color-scheme: dark;
	--bs-body-bg: #202225;
	--bs-body-bg-rgb: 32, 34, 37;
	--bs-body-color: #ececec;
	--bs-primary-rgb: 166, 207, 255;
	--bs-success-rgb: 125, 208, 193;
	--bs-success-text-emphasis: #7db752;
	--bs-success-bg-subtle: #7db752;
	--bs-info-rgb: 136, 199, 252;
	--bs-warning-rgb: 240, 136, 65;
	--bs-danger-rgb: 174, 20, 38;
	--bs-border-color: #dddddd;
	--bs-light-rgb: 235, 235, 235;
	--c1: #a6cfff;
	--c2: #7dd0c1;
	--c3: #c7f8a1;
	--c4: #0bb494;
	--c5: #a6cfff;
}

html[data-bs-theme="grey"] {
	filter: grayscale(1) !important;
}

::selection {
	background-color: #222222;
	color: #fff;
}

strong {
	font-weight: 600;
}


/* ------ header ------ */
header {
	position: fixed;
	z-index: 20;
}

#wrapNav {
	background: linear-gradient(90deg, rgba(48, 93, 162, .9) 0%, rgba(34, 67, 120, .9) 100%);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #fff;
	padding-left: 10rem;
	padding-right: 10rem;
}

html[data-bs-theme="dark"] #wrapNav {
	background: linear-gradient(90deg, rgba(48, 87, 139, .9) 0%, rgba(40, 69, 101, .9) 100%);
	border-color: #202225;
}

.ls1 {
	letter-spacing: 1.2px;
}

#logo {
	height: 45px;
	transition: all 0.3s ease;
}

#header.scroll #logo {
	height: 36px;
	width: auto;
}

#topNav {
	background-color: rgba(36, 105, 93, .4);
	border-bottom: 1px solid #fff;
	padding-left: 11.2rem;
	padding-right: 11.2rem;
}

html[data-bs-theme="dark"] #topNav {
	border-color: #202225;
}

#header.scroll #topNav {
	background-color: rgba(36, 105, 93, .8);
	backdrop-filter: blur(2px);
}

@media (max-width:1400px) {
	#wrapNav {
		padding-left: 3rem;
		padding-right: 3rem;
	}

	#topNav {
		padding-left: 4.6rem;
		padding-right: 4.6rem;
	}
}

@media (max-width:1200px) {
	header {
		position: relative;
	}

	#topNav {
		background-color: rgba(34, 67, 120, .9);
	}

	.linkTop {
		font-size: 1.2rem;
	}

	.text-label {
		display: none;
	}
}

@media (max-width:992px) {
	#wrapNav {
		padding-left: 0;
		padding-right: 0;
	}

	#topNav {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	#logo {
		height: 36px;
		width: auto
	}
}


/* ------ banner ------ */
#wrapmainCarousel {
	padding-top: 240px;
}

#mainBanner {
	background: linear-gradient(90deg, #6dbecd 0%, #8dbe78 100%);
	height: 100svh;
}

html[data-bs-theme="dark"] #mainBanner {
	background: linear-gradient(90deg, #3b6371 0%, #4b6f40 100%);
}

#mainBanner .ban {
	border-radius: 3rem;
	height: 60svh;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 80%;
	z-index: 1;
}

#mainBanner .bg {
	filter: grayscale(1);
	mix-blend-mode: soft-light;
	opacity: .8;
}

html[data-bs-theme="dark"] #mainBanner .bg {
	opacity: .7;
}

#mainBanner::after {
	background: linear-gradient(90deg, rgba(10, 30, 63, .2) 0%, rgba(36, 105, 93, 0) 80%);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

#mainBanner .divisor {
	bottom: -12px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 10;
}

#mainBanner.articleHeader .divisor {
	bottom: -2px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 10;
}

#mainBanner.newsHeader .divisor {
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 10;
}

#mainBanner .divisor svg {
	fill: #fff;
}

html[data-bs-theme="dark"] #mainBanner .divisor svg path {
	fill: #202225 !important;
}

@media (max-width:768px) {
	#mainBanner .divisor {
		width: 200%;
		bottom: -7px;
		left: initial;
		right: 0;
	}

	#mainBanner.articleHeader .divisor {
		width: 200%;
		bottom: -4px;
		left: initial;
		right: 0;
	}
}

@media (max-width:992px) {
	#mainBanner.articleHeader .divisor {
		width: 200%;
		bottom: -3px;
		left: initial;
		right: 0;
	}
}

.h1Main {
	left: 0;
	padding-left: 5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 40%;
	z-index: 4;
}

.h1Main p {
	text-shadow: 0 0 100px rgba(20, 20, 20, .4),
		0 0 30px rgba(20, 20, 20, .4),
		0 0 5px rgba(20, 20, 20, .2);
}

#search {
	left: 50%;
	position: absolute;
	top: 150px;
	transform: translateX(-50%);
	width: 40%;
	z-index: 3;
}

#search input::placeholder {
	color: #fff;
}

html[data-bs-theme="dark"] #search .btn-light {
	background-color: rgba(32, 34, 37, .6);
}

#wrapAviso {
	max-width: 360px;
	right: calc(10% + 70px);
	margin-top: 120px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
}

.aviso {
	-webkit-mask-image: linear-gradient(175deg, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.4)), linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, .65));
}

.avisosTitle {
	box-shadow: 0 0 20px rgba(40, 40, 40, .15);
}

@media (max-width:1400px) {
	.h1Main {
		font-size: 3.8rem;
		width: 45%;
	}

	#search {
		top: 136px
	}

	#mainBanner .ban {
		top: calc(20% + 70px);
	}

	#mainCarousel .display-4 {
		font-size: 2.5rem;
	}
}

@media (max-width:1200px) {
	#mainBanner {
		height: auto;
		padding-bottom: 3rem;
	}

	#search {
		left: initial;
		padding: 1rem 1rem 1.5rem 1rem;
		position: relative;
		top: initial;
		transform: none;
		width: initial;
	}

	#wrapmainCarousel {
		padding-top: 0;
	}

	#wrapAviso {
		margin-left: 2rem;
		margin-right: 2rem;
		margin-top: 1.5rem;
		max-width: initial;
		position: relative !important;
		right: initial;
		transform: none;
		top: initial;
	}

	#mainBanner .ban {
		height: auto !important;
	}
}

@media (max-width:992px) {
	.carousel-indicators {
		position: relative;
	}

	.h1Main {
		position: relative !important;
		transform: none;
		top: 0;
		width: 100%;
		padding: 20px;
		z-index: 2;
		text-align: center;
	}

	.h1Main p {
		font-size: 1rem;
		color: white;
		margin-bottom: 10px;
		text-align: center;
	}

	.carousel-item img {
		order: 2;
		width: 100%;
		height: auto;
	}
}

@media (max-width:768px) {
	#mainCarousel .display-4 {
		font-size: 2rem;
	}
}

@media (max-width:576px) {
	#mainCarousel .display-4 {
		font-size: 1.5rem;
	}
}


/* ------ navBar ------ */
#navBarMain .nav-link {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 1.2px;
	padding-left: .9rem;
	padding-right: .9rem;
	position: relative;
	text-transform: uppercase;
}

#navBarMain .nav-link:hover {
	color: #fff;
	text-decoration: underline;
}

#navBarMain .navbar-nav .nav-link.active,
#navBarMain .navbar-nav .nav-link.show {
	color: #fff;
	text-decoration: underline;
}

#navBarMain .navbar-nav .dropdown-item:active {
	background-color: var(--c3);
	color: #fff;
}

html[data-bs-theme="dark"] #navBarMain .navbar-nav .dropdown-item:active {
	color: #383838;
}

.navbar {
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-toggler {
	border: 1px solid rgba(255, 255, 255, .9);
}

#wrapNav .dropdown-menu {
	--bs-dropdown-padding-x: .4rem;
	--bs-dropdown-padding-y: .9rem;
	border: 0;
	box-shadow: 0 0 30px rgba(20, 20, 20, .25);
}

html[data-bs-theme="dark"] #wrapNav .dropdown-menu {
	box-shadow: 0 0 0 1px rgba(200, 200, 200, .6);
}

#wrapNav .dropdown-item {
	color: var(--c1);
	font-size: .97rem;
	font-weight: 500;
}

@media (max-width:1400px) {
	#navBarMain .nav-link {
		padding-left: .7rem;
		padding-right: .7rem;
	}
}

@media (max-width:1200px) {
	.dropdown-item {
		white-space: wrap
	}
}


/* ------ btn ------ */
.btn {
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: .5px;
	padding: .4rem 1.2rem;
	text-transform: uppercase;
}

.btn-primary {
	--bs-btn-bg: var(--c1);
	--bs-btn-border-color: var(--c1);
	--bs-btn-hover-bg: var(--c3);
	--bs-btn-hover-border-color: var(--c3);
	--bs-btn-active-bg: var(--c3);
	--bs-btn-active-border-color: var(--c3);
}

html[data-bs-theme="dark"] .btn-primary {
	--bs-btn-color: #141618;
	--bs-btn-hover-color: #141618;
	--bs-btn-active-color: #141618;
	--bs-btn-disabled-color: #141618;
}

.btn-success {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--c2);
	--bs-btn-border-color: var(--c2);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--c2);
	--bs-btn-hover-border-color: var(--c2);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--c2);
	--bs-btn-active-border-color: var(--c2);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--c2);
	--bs-btn-disabled-border-color: var(--c2);
}

html[data-bs-theme="dark"] .btn-success {
	--bs-btn-color: #141618;
	--bs-btn-hover-color: #141618;
	--bs-btn-active-color: #141618;
	--bs-btn-disabled-color: #141618;
}

.btn-outline-secondary {
	--bs-btn-color: #a5a5a5;
	--bs-btn-border-color: #a5a5a5;
	--bs-btn-hover-bg: #a5a5a5;
	--bs-btn-hover-border-color: #a5a5a5;
	--bs-btn-active-bg: #a5a5a5;
	--bs-btn-active-border-color: #a5a5a5;
	--bs-btn-disabled-color: #a5a5a5;
	--bs-btn-disabled-border-color: #a5a5a5;
}

.btn-light {
	--bs-btn-color: var(--bs-body-color);
}

.btn-close:focus {
	box-shadow: 0 0 0 .22rem rgba(40, 40, 40, .12);
}

.btn-primary:hover {
	background-color: #fff;
	border-color: var(--c1);
	color: var(--c1);
}

html[data-bs-theme="dark"] .btn-primary:hover {
	color: #383838;
}

.btn-primary:active {
	background-color: var(--c1) !important;
	border-color: var(--c1) !important;
	color: #fff !important;
}

.btn-success:hover {
	background-color: #13ac90;
}

.btn-info:hover {
	color: var(--c4);
	cursor: pointer;
}


/* ------ misc ------ */
.fs-5b {
	font-size: 1.1rem;
}

.smallFc {
	font-size: .75rem;
}

.smallFc2 {
	font-size: .95rem;
}

.shadow1 {
	box-shadow: 0 0 40px rgba(216, 216, 233, .4);
}

.shadow2 {
	box-shadow: 0 0 40px rgba(216, 216, 233, .8);
}

html[data-bs-theme="dark"] .shadow2 {
	box-shadow: 0 0 0 2px rgba(179, 180, 182, .8);
}

html[data-bs-theme="dark"] .modal .shadow2 {
	box-shadow: 0 0 20px rgba(68, 68, 68, .8);
}

.updated {
	border-top: 1px dashed #d8d8d8;
}

.mainPad {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.mainPaidArticle {
	padding-top: 5rem;
}

.paddingX {
	padding-left: 12rem;
	padding-right: 12rem;
}

.innerHeight {
	min-height: 530px;
	z-index: 11;
}

.google-map {
	height: 0;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 56.25%;
}

.google-map iframe,
.google-map object,
.google-map embed {
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	width: 100%;
}

@media (max-width: 992px) {
	.mainPad {
		padding-bottom: 2.2rem;
		padding-top: 2.2rem;
	}
}

@media (max-width: 768px) {
	.mainPad {
		padding-bottom: 1.5rem;
		padding-top: 1.5rem;
	}
}

/* Para pantallas muy pequeñas */
@media (max-width: 576px) {
	.paddingX {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}

.bg-white2 {
	backdrop-filter: blur(3px);
	border: 1px solid #dddddd;
	border-radius: 1rem;
}

.imgContact {
	border-radius: 50%;
	height: 110px;
	width: 110px;
}


.linkPhoto h3 {
	bottom: 24px;
	left: 28px;
	position: absolute;
}

.linkPhoto::after {
	background: linear-gradient(0deg, rgba(29, 33, 39, .8) 0%, rgba(29, 33, 39, 0) 100%);
	border-radius: 0 0 1rem 1rem;
	bottom: 0;
	content: "";
	height: 60%;
	left: 0;
	position: absolute;
	width: 100%;
}

.wrapNew {
	width: 350px;
}

.wrapNew3 {
	width: 300px;
}

.coffee {
	width: 86px;
}

.titleLine {
	background-color: #9bcca2;
	height: 1px;
	margin: 1rem auto 1.4rem auto;
	width: 210px;
}

.titleLine.v2 {
	background-color: #d4d4d4;
}

.grad1 {
	background: linear-gradient(90deg, #559fbc 0%, #82b96c 100%);
	overflow: hidden;
	position: relative;
}

html[data-bs-theme="dark"] .grad1 {
	background: linear-gradient(90deg, #3b6371 0%, #4b6f40 100%);
}

.grad1::after {
	background-image: url(../img/bgBanner5.jpg);
	background-position: top;
	background-size: 150%;
	content: "";
	filter: grayscale();
	height: 100%;
	left: 0;
	mix-blend-mode: color-burn;
	opacity: .5;
	position: absolute;
	top: 0;
	width: 100%;
}

html[data-bs-theme="dark"] .grad1::after {
	opacity: .3;
}

.dataBg {
	background-position: center;
	background-size: cover;
	border-radius: 3rem;
}

.dataBg::after {
	background-color: rgba(20, 20, 20, .5);
	border-radius: 3rem;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

html[data-bs-theme="dark"] .dataBg::after {
	background-color: rgba(20, 20, 20, .75);
}

.dataBg::before {
	background-color: var(--c1);
	border-radius: 3rem;
	content: "";
	height: 70%;
	left: 0;
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 1;
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.4)), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .4));
}

html[data-bs-theme="dark"] .dataBg::before {
	background-color: #141618;
}

.bgNews {
	background: linear-gradient(0deg, rgba(240, 240, 240, 0) 0%, rgba(240, 240, 240, 1) 100%);
}

html[data-bs-theme="dark"] .bgNews {
	background: linear-gradient(0deg, rgba(50, 50, 50, 0) 0%, rgba(50, 50, 50, 1) 100%);
}

.bgNews .mountain {
	content: "";
	height: 115%;
	left: 0;
	position: absolute;
	bottom: -180px;
	width: 100%;
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1)), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

html[data-bs-theme="dark"] .bgNews .mountain {
	mix-blend-mode: multiply;
}

@media (max-width:768px) {
	.bgNews .mountain {
		height: 40%;
	}
}

.bgNews .divisor {
	left: 0;
	position: absolute;
	top: -16px;
	transform: scaleY(-1) scaleX(-1);
	width: 100%;
	z-index: 10;
}

@media (max-width:768px) {
	.bgNews .divisor {
		width: 200%;
		top: -6px;
		left: initial;
		right: 0;
	}
}

.bgNews .divisor svg {
	fill: #fff;
}

html[data-bs-theme="dark"] .bgNews .divisor svg {
	fill: #202225;
}


footer {
	z-index: 100;
}

html[data-bs-theme="dark"] footer.bg-primary {
	background-color: #243c63 !important;
}

footer .divisor {
	left: 0;
	position: absolute;
	top: -4px;
	transform: scaleY(-1);
	width: 100%;
	z-index: 10;
}

footer .divisor svg {
	fill: #fff;
}

html[data-bs-theme="dark"] footer .divisor svg {
	fill: #202225;
}

footer .escudo {
	filter: grayscale(1) contrast(1.5);
	left: -10svw;
	mix-blend-mode: soft-light;
	opacity: .5;
	position: absolute;
	top: -10svw;
	width: 30%;
}

html[data-bs-theme="dark"] footer .escudo {
	opacity: .2;
}

footer .bg {
	object-position: 0 -100px;
	filter: grayscale(1);
	height: 100%;
	left: 0;
	mix-blend-mode: overlay;
	opacity: .3;
	position: absolute;
	top: 0;
	width: 100%;
}

html[data-bs-theme="dark"] footer .bg {
	opacity: .1;
}

#footBottom {
	background-color: #22427a;
	font-size: .97rem;
	padding: 1.4rem;
}

html[data-bs-theme="dark"] #footBottom {
	background-color: #1f3253;
}

@media (max-width:992px) {
	footer .bg {
		object-position: 0;
	}

	footer .paddingX {
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
}

@media (max-width:768px) {
	footer .divisor {
		width: 200%;
		top: -6px;
		left: initial;
		right: 0;
	}
}

.statBg {
	background-color: rgba(4, 32, 51, .2);
	backdrop-filter: blur(2px);
	padding: 2rem;
}

html[data-bs-theme="dark"] .statBg {
	background-color: rgba(24, 32, 38, .7);
}

@media (max-width:1400px) {
	.paddingX {
		padding-left: 4rem;
		padding-right: 4rem;
	}

	.wrapNew {
		width: 290px;
	}

	footer .escudo {
		left: -8svw;
		top: -8svw;
		width: 35%;
	}

	.bgNews .h4 {
		font-size: 1.35rem !important;
	}
}

@media (max-width:768px) {
	footer .escudo {
		left: -24svw;
		top: -16svw;
		width: 72%;
	}
}


/* HOVER IMAGEN */
.linkPhoto {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	cursor: pointer;
}

.linkPhoto img {
	transition: all 0.3s ease-in-out;
	width: 100%;
	border-radius: inherit;
	aspect-ratio: 16 / 11;
}

@media (hover: hover) {
	.linkPhoto:hover img {
		transform: scale(1.03);
		filter: brightness(0.7);
	}
}

.item-profile:hover {
	transform: scale(1.03);
	cursor: pointer;
}

.item-a {
	text-decoration: none;
	color: inherit;
}

.item-a:hover {
	cursor: pointer;
	color: var(--c2);
	text-decoration: none;
}

.custom-link {
	text-decoration: none;
	color: inherit;
}

.custom-link:hover,
.custom-link:focus,
.custom-link:visited {
	text-decoration: none;
	color: inherit;
}

.list-group-item {
	background-color: var(--bs-list-group-bg);
	border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
	display: block;
	color: var(--bs-list-group-color);
	padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
	position: relative;
	text-decoration: none;
}

.list-group-item a {
	text-decoration: none;
	color: inherit
}

.list-group-item a:hover {
	color: #3c9787;
}

html[data-bs-theme="dark"] .list-group-item a:hover {
	color: var(--c2);
}

.link-light:hover {
	text-decoration: underline;
}

html[data-bs-theme="dark"] .link-dark {
	color: #ececec !important;
}



/* Links perfiles */
@media (max-width: 768px) {
	.btn-profile {
		position: relative !important;
		display: block;
		margin-bottom: 50px;
		top: 0px !important;
		text-align: center;
	}
}

@media (max-width: 992px) {
	.row-custom {
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 1200px) {
	.d-flex.h-100 {
		flex-direction: column;
		align-items: center;
	}

	.custom-column {
		flex-direction: row !important;
	}

	.wrapNew {
		width: 100% !important;
		height: auto !important;
		display: flex;
		justify-content: center;
	}

	.wrapNew3 {
		width: 100% !important;
		height: auto !important;
		display: flex;
		justify-content: center;
	}

	.wrapNew img {
		border-radius: 8px 8px 0 0 !important;
		max-width: 100%;
	}

	.wrapNew3 img {
		border-radius: 8px 8px 0 0 !important;
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.btnConocerMas {
		display: block;
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
		font-size: 0.85rem;
	}
}


.ar1 {
	aspect-ratio: 350/230;
	max-width: 100%;
}

.z-5 {
	z-index: 5;
}

.custom-line-height {
	line-height: 1em;
}

.mt-custom {
	margin-top: -10px;
}

.mt-custom-9 {
	margin-top: -9px;
}

.avisoBtn {
	font-size: 0.9rem !important;
}

.btn-profile {
	font-size: .9rem !important;
	top: 33px;
}

@media (max-width: 992px) {
	.profiles {
		padding-top: 1.2rem !important;
	}
}

.fontsizeTramites {
	font-size: 1.25rem;
}

@media (max-width: 992px) {
	.fontsizeTramites {
		font-size: 1rem;
	}

	.h1 {
		font-size: calc(1.375rem + 2vw);
	}
}


/* ------ btTop ------ */
.btTop {
	background-color: var(--c3);
	border: none;
	border-radius: 8px 0 0 8px;
	bottom: 24px;
	box-shadow: 0 0 0 1px rgba(15, 15, 15, .2);
	color: #fff;
	display: none;
	font-size: 1rem;
	height: 36px;
	line-height: 35px;
	outline: none;
	position: fixed;
	right: 0;
	text-align: center;
	transition: all 0.3s ease;
	width: 36px;
	z-index: 1040;
}

html[data-bs-theme="dark"] .btTop {
	color: #272727;
}

.btTop:hover {
	background-color: var(--c1);
	color: #fff;
}

html[data-bs-theme="dark"] .btTop:hover {
	background-color: var(--c2);
}

/* COLOR ICONS PROFILES */
.circle-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profileModal .icon1 .circle-icon {
	background-color: var(--c1);
	color: #fff;
}

html[data-bs-theme="dark"] .profileModal .icon1 .circle-icon {
	color: #383838;
}

.profileModal .icon1 span {
	color: var(--c1);
}

.profileModal .icon2 .circle-icon {
	background-color: var(--c2);
	color: #fff;
}

html[data-bs-theme="dark"] .profileModal .icon2 .circle-icon {
	color: #383838;
}

.profileModal .icon2 span {
	color: var(--c2);
}

.profileModal .icon3 .circle-icon {
	background-color: var(--c3);
	color: #fff;
}

html[data-bs-theme="dark"] .profileModal .icon3 .circle-icon {
	color: #383838;
}

.profileModal .icon3 span {
	color: var(--c3);
}

.profileModal .icon4 .circle-icon {
	background-color: #f39122;
	color: #fff;
}

html[data-bs-theme="dark"] .profileModal .icon4 .circle-icon {
	color: #383838;
}

.profileModal .icon4 span {
	color: #f39122;
}

#loadingSpinner {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 4rem;
	color: #787373;
	padding: 20px;
	border-radius: 10px;
	z-index: 9999;
	display: none;
}


.breadcrumb-item a {
	color: #fff !important;
	font-size: .95rem;
	pointer-events: auto;
	text-decoration: none;
}

.breadcrumb-item a:hover {
	text-decoration: underline;
	cursor: pointer;
}

.breadcrumb-item.active {
	text-decoration: underline;
}

.breadcrumb {
	--bs-breadcrumb-item-active-color: #fff !important;
	--bs-breadcrumb-divider-color: rgba(255, 255, 255, .5) !important;
}


/* GENERICA */
#mainBanner.articleHeader {
	background: linear-gradient(90deg, #6dbecd 0%, #8dbe78 100%);
	height: auto;
	padding-top: 5rem;
	padding-bottom: 4rem;
}

html[data-bs-theme="dark"] #mainBanner.articleHeader {
	background: linear-gradient(90deg, #3b6371 0%, #4b6f40 100%);
}


/* ------ social ------ */
.social-btn {
	align-items: center;
	background-color: #fff;
	border: 1px solid #ccc !important;
	border-radius: 50%;
	display: flex;
	height: 50px;
	justify-content: center;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	width: 50px;
}

html[data-bs-theme="dark"] .social-btn {
	background-color: #141618;
	border: 1px solid #202225 !important;
}

.social-btn i.facebook {
	color: #315c95;
}

html[data-bs-theme="dark"] .social-btn i.facebook {
	color: #7db4fc;
}

.social-btn i.whatsapp {
	color: #51c066;
}

html[data-bs-theme="dark"] .social-btn i.whatsapp {
	color: #88fd9e;
}

.social-btn i.email {
	color: #73bdce;
}

html[data-bs-theme="dark"] .social-btn i.email {
	color: #abf0ff;
}

.social-btn:hover {
	background-color: #f0f0f0;
	border-color: #888;
}


/* ------ mainText ------ */
.mainText p+h2,
.mainText p+h3,
.mainText ul+h2,
.mainText table+h2,
.mainText h2+h3 {
	margin-top: 1.5rem;
}

.mainText figure.table {
	overflow-x: auto;
}

.mainText .table {
	--bs-table-bg: transparent;
	--bs-table-color: #333e48;
}

.mainText table {
	margin-bottom: 1.9rem;
	width: 100%;
}

.mainText table th,
.mainText table td {
	border-bottom: 1px solid #bcbcc9 !important;
	font-size: 1.05rem;
	line-height: 1.3rem;
	padding: .6rem .5rem;
}

.mainText table th p,
.mainText table td p {
	margin-bottom: 0;
}

.mainText table th {
	border-bottom: 2px solid var(--c6) !important;
	color: var(--c6);
	font-weight: 500;
}

.mainText figure img {
	border-radius: 1rem;
	height: auto;
	width: 100%;
}

.mainText figcaption {
	font-size: .875em;
	font-style: italic;
	margin-top: .3rem;
}

.mainText .embed-container {
	margin-bottom: 1rem;
}

.mainText .embed-container+h2,
.mainText .embed-container+h3 {
	margin-top: 2rem;
}

.mainText h2+figure.media,
.mainText h3+figure.media {
	margin-top: .7rem;
}

.mainText a {
	color: var(--c2);
	font-weight: 500;
}

.mainText a:hover {
	color: var(--c8);
}

.mainText ul {
	list-style: none;
	margin: 0 0 1.5rem 0;
	padding: 0 0 0 .5rem;
}

.mainText ul li {
	padding: 4px 0 4px 20px;
	position: relative;
}

.mainText ul li::before {
	content: "\f105";
	color: var(--c5);
	font: var(--fa-font-solid);
	font-size: .9rem;
	left: 0;
	position: absolute;
	top: 10px;
}

@media (max-width:768px) {
	.mainText .w-50 {
		width: 100% !important
	}
}

#wrapSubmenu .h5 {
	color: var(--c2);
	font-style: italic;
	font-weight: 700 !important;
}


/* ------ subMenu y btn-toggle ------ */
#toggleSubmenuBtn {
	font-size: .97rem !important;
	position: relative;
	z-index: 100;
}

#wrapSubmenu {
	box-shadow: 0 0 40px rgba(216, 216, 233, .4);
	border-radius: 1rem;
	width: 290px;
	z-index: 1;
}

html[data-bs-theme="dark"] #wrapSubmenu {
	box-shadow: 0 0 10px rgba(69, 69, 75, 0.4);
}

.subLink {
	color: var(--c8);
	font-size: 16px;
	font-weight: 600;
	padding: .6rem 1.2rem;
	position: relative;
	text-decoration: none;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
}

.subLink:hover {
	text-decoration: underline;
}

.btn-toggle::after {
	color: var(--c2);
	line-height: 0;
	content: "\f078";
	font: var(--fa-font-solid);
	font-size: .8rem;
	height: 30px;
	padding-top: 10px;
	position: relative;
	text-align: center;
	/* top: -3px; */
	transition: transform .35s ease;
	transform-origin: 14px 50%;
	width: 30px;
	left: -10px;
}

.btn-toggle.active-color::after {
	color: #fff
}

.btn-toggle[aria-expanded="true"]::after {
	transform: rotate(-180deg);
}

.btn-toggle-nav a {
	color: var(--c1);
	font-size: 15px;
	font-weight: 500;
	margin-top: .125rem;
	margin-left: 4px;
	letter-spacing: .3px;
	padding: .25rem .9rem;
	text-decoration: none;
	user-select: none;
}

.btn-toggle-nav a:hover {
	text-decoration: underline;
}

.btn-toggle-nav a.active {
	text-decoration: underline !important;
}

.divSubmenu ul {
	list-style: none;
	padding-left: 20px;
}

.btn-toggle-nav li {
	position: relative;
}

.btn-toggle-nav li::before {
	content: "";
	background-color: var(--c1);
	border-radius: 2px;
	height: 6px;
	width: 6px;
	position: absolute;
	/* left: -6px; */
	top: 15px;
}

#subMenu>li>a {
	color: var(--c8);
	font-size: 16px;
	position: relative;
	letter-spacing: .3px;
	text-transform: none;
	font-weight: 600;
}


#subMenu>li>a:hover {
	text-decoration: underline;
}

@media (max-width:1200px) {
	#wrapSubmenu {
		width: initial
	}

	#mainBanner.articleHeader {
		padding-top: 0;
	}

	.mainPaidArticle {
		padding-top: 2rem;
	}

	#mainBanner.articleHeader {
		padding-bottom: 2rem;
	}
}

@media (max-width:768px) {
	.mountainArticle {
		left: -40% !important;
		top: -90px !important;
		width: 120%;
	}
}

.divSubmenu li::marker {
	list-style-type: square !important;
}

.active-bg {
	background: linear-gradient(90deg, #3088aa 0%, #73b05d 100%);
	border-radius: 12px;
	color: #fff;
}

html[data-bs-theme="dark"] .active-bg {
	background: linear-gradient(90deg, #3b6371 0%, #4b6f40 100%);
}

#wrapSubmenu .bg-white {
	border-radius: 12px;
	padding-left: 1rem;
	padding-right: 1rem;
}

.mountainArticle {
	position: absolute;
	left: 0;
	top: -242px;
	mix-blend-mode: multiply;
	z-index: 10;
	pointer-events: none;
}

.background-article {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9;
	pointer-events: none;
	width: 100%;
	height: 530px;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(241, 241, 241, 1) 100%);
}

html[data-bs-theme="dark"] .background-article {
	background: #202225;
}

@media (max-width: 1200px) {
	#wrapShare {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}

	#shareDiv.list-group {
		flex-direction: row;
		justify-content: center;
	}
}

/* ------ accordion ------ */
#documents .accordion {
	--bs-accordion-active-color: var(--c2);
	--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(222, 229, 202, 0.2);
}

html[data-bs-theme="dark"] #documents {
	background-color: #202225 !important;
}

#documents .accordion-button:not(.collapsed) {
	color: var(--c6);
	font-weight: 600;
}

#documents .accordion-button:focus {
	box-shadow: 0 0 0 0.2rem #eaeaf6;
}

#documents .accordion-button:not(.collapsed) {
	background-color: transparent;
}

#documents .accordion {
	--bs-accordion-bg: transparent;
	--bs-accordion-border-color: #eaeaf6;
	--bs-accordion-active-bg: transparent;
	--bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(170, 170, 170, 0.25);
	border-bottom: 1px solid #eaeaf6;
	border-top: 1px solid #eaeaf6;
	color: var(--bs-body-color);
}

#documents .accordion-button {
	font-size: 1rem;
	font-weight: 500;
}

#documents .accordion:nth-child(1) {
	border-top: 0 !important;
}

#documents .accordion-button::after {
	--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230098ce'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239393b9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion.sub {
	position: relative;
	top: -1px;
}

#documents .list-group-item {
	background-color: transparent;
	border-color: #eaeaf6;
	font-size: 1rem;
	padding-bottom: .85rem;
	padding-top: .85rem;
}

#documents .doc-list a {
	color: var(--bs-body-color);
	font-size: 1rem;
}

#documents .accordion.sub {
	border-bottom: 0;
}

#documents .accordion.sub+.list-group {
	border-top: 1px solid #eaeaf6;
}

.bg-white {
	--bs-bg-opacity: 0.7;
	background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

html[data-bs-theme="dark"] .bg-white {
	background-color: #141618 !important;
}

.mainText i.text-success {
	color: var(--c2) !important;
	font-size: 1rem;
	font-weight: 500 !important;
}


/* News */
.paddingNews {
	padding-left: 3rem;
	padding-right: 3rem;
}

.border-corner-right {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.ar2 {
	aspect-ratio: 260 / 200;
	max-width: 100%;
}

.wrapNew2 {
	width: 300px;
}

#newBox .h4 {
	font-size: 1.2rem;
}


/* ------ pagination ------ */
.paginationInside .page-link {
	border: 1px solid #fff;
	color: var(--bs-body-color);
	min-width: 36px !important;
}

.active>.page-link,
.page-link.active {
	background-color: var(--c1);
	border-color: var(--c1);
	color: #fff;
	font-weight: 500;
	text-align: center;
}

html[data-bs-theme="dark"] .active>.page-link,
html[data-bs-theme="dark"] .page-link.active {
	border-color: #fff;
	color: #383838;
}

.page-link:focus {
	box-shadow: var(--bs-pagination-focus-box-shadow);
	box-shadow: 0 0 0 .25rem rgba(186, 186, 186, .2);
}


/* NOTICIAS DETALLE */
.titleLine.v3 {
	background-color: #9bcca2;
	height: 1px;
	margin: 0;
	width: 70px;
}

.imgGallery {
	aspect-ratio: 290 / 250;
}

.iconGallery .grad {
	background: linear-gradient(356deg, rgba(23, 23, 23, 0.582647585401348) 0%, rgba(23, 23, 23, 0) 100%);
	bottom: 0;
	height: 80%;
	right: 0;
	width: 100%;
}

.iconGallery i {
	color: #8fd39b;
}

.iconGallery:hover i {
	color: #fff;
}


/* ------ forms ------ */
.form-label {
	font-size: .95rem;
	font-weight: 500;
	margin-bottom: .3rem;
}

.form-control {
	border: 1px solid #8c8c8c;
	border-radius: .6rem;
	padding: .5rem .75rem;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--c2);
	box-shadow: 0 0 0 .25rem rgba(55, 156, 138, .25);
}

.form-select {
	border: 1px solid #8c8c8c;
	border-radius: .6rem;
	padding: .5rem 2.25rem .5rem .75rem;
}

.form-check-input {
	border-color: #858585;
	margin-top: .2em;
}

.form-check-input:checked {
	background-color: var(--c2);
	border-color: var(--c2)
}

.form-check-input:focus {
	border-color: var(--c8);
	box-shadow: 0 0 0 .25rem rgba(55, 156, 138, .25);
}

[data-bs-theme="dark"] .form-select {
	background-color: rgba(62, 62, 62, .35);
	border-color: #a8e6bd;
	box-shadow: none;
	font-size: .96rem;
	font-weight: 500;
}

[data-bs-theme="dark"] .form-select option {
	background-color: rgba(58, 58, 58, 1);
	border-radius: 0;
}


/* ------ accordion contact ------ */
#accordionContact.accordion {
	--bs-accordion-bg: rgba(255, 255, 255, .2);
	--bs-accordion-border-color: #b2c0d4;
	--bs-accordion-border-color: var(--c2);
	--bs-accordion-border-radius: 1.5rem;
	--bs-accordion-inner-border-radius: 1.5rem;
}

html[data-bs-theme="dark"] #accordionContact.accordion {
	--bs-accordion-bg: transparent;
}

#accordionContact .accordion-button:not(.collapsed) {
	background: inherit;
	box-shadow: none;
	color: var(--c2);
}

#accordionContact .accordion-button:focus {
	box-shadow: none;
}

#accordionContact .accordion-button::after {
	--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23379c8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235e5e5e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


/* ------ access ------ */
#optionsMenu {
	background-color: #fff;
	border-radius: 1rem 1rem 0 0;
	box-shadow: 0 0 15px rgba(52, 52, 52, .2);
	left: -470px;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	width: 310px;
	z-index: 1000000;
}

html[data-bs-theme="dark"] #optionsMenu,
html[data-bs-theme="dark"] #optionsMenu .bg-white {
	background-color: #1c1e20 !important;
}

html[data-bs-theme="dark"] #optionsMenu .text-white {
	color: #202225 !important;
}

#optionsMenu .list-group-item:hover {
	background-color: #f7faff;
}

[data-bs-theme="dark"] #optionsMenu .list-group-item:hover {
	background-color: #17191b;
}

#optionsMenu .list-group-item.active {
	--bs-list-group-active-bg: #ebf7e2;
	--bs-list-group-active-color: #689744;
	--bs-list-group-active-border-color: #c8ddb8;
}

[data-bs-theme="dark"] #optionsMenu .list-group-item.active {
	--bs-list-group-active-bg: #2c3033;
	--bs-list-group-active-color: #ddebff;
	--bs-list-group-active-border-color: #767a7c;
}

#optionsMenu .list-group-item.active:hover {
	background-color: #f7faff;
}

html[data-bs-theme="dark"] #closeOptions {
	color: #202225 !important;
}

@media only screen and (max-width:1200px) {
	#accessBtn {
		bottom: 12px;
		top: initial;
		transform: initial;
	}

	#optionsMenu {
		bottom: 12px;
		top: initial;
		transform: initial;
	}
}


/* ----------- google -----------*/
#google_translate_element .goog-te-combo {
	background-color: #fff;
	border: 1px solid #acacac;
	border-radius: 4px;
	font-size: 1rem;
	padding: .7rem 1rem;
	text-transform: capitalize;
	width: 100%;
}

[data-bs-theme="dark"] #google_translate_element .goog-te-combo {
	background-color: #202225;
}


/* ------ siteMap ------ */
#siteMap>ul {
	columns: 2;
	column-gap: 86px;
	column-rule: 1px solid #dee2e6;
	list-style: none;
	margin: 0;
	padding: 0;
}

html[data-bs-theme="dark"] #siteMap>ul {
	column-rule: 1px solid #424242;
}

#siteMap>ul>li {
	font-weight: 500;
	line-height: 1.5em;
	padding: 7px 0;
}

#siteMap>ul>li>a,
#siteMap .firstLevel {
	color: var(--c5);
	font-size: 1.1rem;
	font-weight: 500;
	text-decoration: none;
}

#siteMap .firstLevel:hover {
	color: var(--c5);
	text-decoration: underline;
}

#siteMap>ul>li>a:hover {
	color: var(--c5);
}

#siteMap>ul>li>ul {
	list-style: none;
	margin: 0;
	padding: 6px 0 0 0;
}

#siteMap>ul>li>ul>li {
	padding: 3px 0 3px 24px;
	position: relative;
}

#siteMap>ul>li>ul>li a {
	color: var(--bs-body-color);
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.3s ease;
}

#siteMap>ul>li>ul>li>a:before {
	background-color: var(--c5);
	content: "";
	display: block;
	left: 6px;
	height: 1px;
	position: absolute;
	top: 14px;
	transition: all 0.3s ease;
	width: 8px;
}

#siteMap>ul>li>ul>li a:hover {
	text-decoration: underline;
}

@media (max-width:768px) {
	#siteMap ul {
		columns: 1
	}
}


/* ------ poll ------ */
.wrapPoll {
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 40%, rgba(241, 241, 241, .75) 100%);
}

html[data-bs-theme="dark"] .wrapPoll {
	background: linear-gradient(0deg, rgba(32, 34, 37, 1) 40%, rgba(20, 22, 24, .75) 100%);
}


/* ------ poll ------ */
.sectionIcons a {
	background-image: linear-gradient(to right, #4ba6ca, #2458ac, #2458ac, #4ba6ca);
	background-size: 300% 100%;
	position: relative;
	transition: background-position 0.5s ease;
}

html[data-bs-theme="dark"] .sectionIcons a {
	background-image: linear-gradient(to right, #30578b, #284565, #284565, #30578b);
}

.sectionIcons a:hover {
	background-position: 100% 0;
}

.sectionIcons a::before {
	background-image: url(../img/bgBanner5.jpg);
	background-size: 150%;
	border-radius: 1rem;
	content: "";
	filter: grayscale(1);
	height: 100%;
	mix-blend-mode: multiply;
	left: 0;
	opacity: .3;
	position: absolute;
	top: 0;
	width: 100%;
}


/*----------- orgChart -----------*/
.orgChart {
	overflow-x: scroll;
	padding-bottom: 26px;
}

/*
 * jQuery OrgChart Plugin
 * https://github.com/dabeng/OrgChart
 *
 * Copyright 2016, dabeng
 * https://github.com/dabeng
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */
.orgchart {
	font-size: .95em;
	min-height: 380px;
	min-width: 202px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow-x: auto;
	position: relative;
	margin: auto;
	max-width: 860px;
}

.orgchart .hidden,
.orgchart~.hidden {
	display: none
}

.orgchart.b2t {
	transform: rotate(180deg)
}

.orgchart.l2r {
	position: absolute;
	transform: rotate(-90deg) rotateY(180deg);
	transform-origin: left top;
}

.orgchart .verticalNodes ul {
	list-style: none;
	margin: 0;
	padding-left: 18px;
	text-align: left;
}

.orgchart .verticalNodes ul:first-child {
	margin-top: 5px
}

.orgchart .verticalNodes>td::before {
	border: 1px solid #c7c7c7;
	content: '';
	line-height: 22px !important;
}

.orgchart .verticalNodes>td>ul>li:first-child::before {
	border-width: 2px 0 0 2px;
	box-sizing: border-box;
	height: 32px;
	/*fcc*/
	margin-top: -2px;
	top: -4px;
	width: calc(50% - 2px);
}

.orgchart .verticalNodes ul>li {
	position: relative
}

.orgchart .verticalNodes ul>li::before,
.orgchart .verticalNodes ul>li::after {
	box-sizing: border-box;
	border-color: #c7c7c7;
	border-style: solid;
	border-width: 0 0 2px 2px;
	content: '';
	left: -6px;
	position: absolute;
}

.orgchart .verticalNodes ul>li::before {
	height: 27px;
	/*fcc*/
	top: 0;
	width: 15px;
	/*fcc*/
}

.orgchart .verticalNodes ul>li::after {
	height: 100%;
	top: 1px;
}

.orgchart .verticalNodes ul>li:first-child::after {
	border-width: 2px 0 0 2px;
	box-sizing: border-box;
	top: 25px;
	/*fcc*/
	width: 15px;
	/*fcc*/
}

.orgchart .verticalNodes ul>li:last-child::after {
	box-sizing: border-box;
	border-width: 2px 0 0;
}

.orgchart.r2l {
	position: absolute;
	transform: rotate(90deg);
	transform-origin: left top;
}

.orgchart>.spinner {
	color: rgba(68, 157, 68, 0.8);
	font-size: 100px;
	margin-top: 30px;
}

.orgchart table {
	border-spacing: 0;
	border-collapse: separate;
}

.orgchart>table:first-child {
	margin: 0 auto
}

.orgchart td {
	text-align: center;
	vertical-align: top;
	padding: 0;
}

.orgchart .lines:nth-child(3) td {
	box-sizing: border-box;
	height: 20px;
}

.orgchart .lines .topLine {
	border-top: 2px solid #c7c7c7
}

.orgchart .lines .rightLine {
	border-right: 1px solid #c7c7c7;
	float: none;
	border-radius: 0;
}

.orgchart .lines .leftLine {
	border-left: 1px solid #c7c7c7;
	float: none;
	border-radius: 0;
}

.orgchart .lines .downLine {
	background-color: #c7c7c7;
	margin: 0 auto;
	height: 20px;
	width: 2px;
	float: none;
}

/* node styling */
.orgchart .node {
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 5px;
	border: 2px dashed transparent;
	text-align: center;
}

.orgchart.l2r .node,
.orgchart.r2l .node {
	width: 50px;
	height: 130px;
}

.orgchart .node>.spinner {
	color: rgba(68, 157, 68, 0.8);
	font-size: 30px;
	left: calc(50% - 15px);
	position: absolute;
	top: calc(50% - 15px);
	vertical-align: middle;
}

.orgchart .node:hover {
	cursor: default;
	transition: .5s;
	z-index: 20;
}

.orgchart .ghost-node {
	position: fixed;
	left: -10000px;
	top: -10000px;
}

.orgchart .ghost-node rect {
	fill: #ffffff;
	stroke: #bf0000;
}

.orgchart .node.allowedDrop {
	border-color: rgba(68, 157, 68, 0.9)
}

.orgchart .node .title {
	background-color: var(--c1);
	border-radius: 3px;
	color: #fff;
	font-size: .92em;
	font-weight: 600;
	line-height: 17px;
	overflow: hidden;
	padding: 7px 16px;
	text-align: center;
	text-overflow: ellipsis;
	margin-left: 4px;
}

html[data-bs-theme="dark"] .orgchart .node .title {
	color: #202225;
}

.orgchart .node .title a {
	color: #424244;
	display: block;
}

.orgchart .node .title i {
	display: none
}

.orgchart .node .title a:focus {
	outline: 1px dashed #fff;
	outline-offset: 2px;
}

.orgchart .node .title a:hover {
	text-decoration: underline;
}

.orgchart>table .nodes .node .title {
	background-color: #fff;
	border: 2px solid var(--c2);
	color: var(--c2);
}

html[data-bs-theme="dark"] .orgchart>table .nodes .node .title {
	background-color: #202225;
}

.orgchart .l01 .title {
	border-color: var(--c3) !important;
	font-weight: 500;
}

.orgchart .l01 .title a {
	color: #474749 !important;
}

html[data-bs-theme="dark"] .orgchart .l01 .title a {
	color: #fff !important;
}

.orgchart .l02 .title {
	border-color: #c7c7c7 !important;
	font-weight: 500;
}

.orgchart .l02 .title a {
	color: #5e6061 !important;
}

html[data-bs-theme="dark"] .orgchart .l02 .title a {
	color: #fff !important;
}

.orgchart .l03 .title {
	background-color: #fff !important;
	border-color: #e6e6e6 !important;
}

.orgchart .l03 .title a {
	color: var(--c1) !important;
}

.orgchart.b2t .node .title {
	transform: rotate(-80deg);
	transform-origin: center bottom;
}

.orgchart.l2r .node .title {
	transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
	transform-origin: bottom center;
	width: 120px;
}

.orgchart.r2l .node .title {
	transform: rotate(-90deg) translate(-40px, -40px);
	transform-origin: bottom center;
	width: 120px;
}

.orgchart .node .title .symbol {
	float: left;
	margin-top: 4px;
	margin-left: 2px;
}

.orgchart .node .content {
	box-sizing: border-box;
	width: 100%;
	height: 20px;
	font-size: 11px;
	line-height: 18px;
	border: 1px solid rgba(217, 83, 79, 0.8);
	border-radius: 0 0 4px 4px;
	text-align: center;
	background-color: #fff;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.orgchart.b2t .node .content {
	transform: rotate(180deg);
	transform-origin: center top;
}

.orgchart.l2r .node .content {
	transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
	transform-origin: top center;
	width: 120px;
}

.orgchart.r2l .node .content {
	transform: rotate(-90deg) translate(-40px, -40px);
	transform-origin: top center;
	width: 120px;
}

.orgchart .node .edge {
	font-size: 15px;
	position: absolute;
	color: rgba(68, 157, 68, 0.5);
	cursor: default;
	transition: .2s;
}

.orgchart.noncollapsable .node .edge {
	display: none
}

.orgchart .edge:hover {
	color: #449d44;
	cursor: pointer;
}

.orgchart .node .verticalEdge {
	width: calc(100% - 10px);
	width: -webkit-calc(100% - 10px);
	width: -moz-calc(100% - 10px);
	left: 5px;
}

.orgchart .node .topEdge {
	top: -4px
}

.orgchart .node .bottomEdge {
	bottom: -4px
}

.orgchart .node .horizontalEdge {
	width: 15px;
	height: calc(100% - 10px);
	height: -webkit-calc(100% - 10px);
	height: -moz-calc(100% - 10px);
	top: 5px;
}

.orgchart .node .rightEdge {
	right: -4px
}

.orgchart .node .leftEdge {
	left: -4px
}

.orgchart .node .horizontalEdge::before {
	position: absolute;
	top: calc(50% - 7px);
}

.orgchart .node .rightEdge::before {
	right: 3px
}

.orgchart .node .leftEdge::before {
	left: 3px
}

.orgchart .node .topEdge,
.orgchart .node .bottomEdge,
.orgchart .node .rightEdge,
.orgchart .node .leftEdge {
	display: none
}

.orgchart .node .toggleBtn {
	background-color: #fff;
	color: var(--c3);
	display: block;
	line-height: .92em;
	position: absolute;
	left: 4px;
	top: 15px;
	z-index: 1000;
}

.orgchart .node .toggleBtn {
	color: #274d8a;
}

.orgchart .node .toggleBtn:hover {
	color: var(--c5)
}

.oc-export-btn {
	display: inline-block;
	position: absolute;
	right: 5px;
	top: 5px;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	user-select: none;
	color: #fff;
	background-color: #5cb85c;
	border: 1px solid transparent;
	border-color: #4cae4c;
	border-radius: 4px;
}

.oc-export-btn[disabled] {
	cursor: not-allowed;
	box-shadow: none;
	opacity: 0.3;
}

.oc-export-btn:hover,
.oc-export-btn:focus,
.oc-export-btn:active {
	background-color: #449d44;
	border-color: #347a34;
}

.orgchart~.mask {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.3);
}

.orgchart~.mask .spinner {
	position: absolute;
	top: calc(50% - 54px);
	left: calc(50% - 54px);
	color: rgba(255, 255, 255, 0.8);
	font-size: 108px;
}

.orgchart .node {
	transition: transform 0.3s, opacity 0.3s
}

.orgchart .slide-down {
	opacity: 0;
	transform: translateY(40px);
}

.orgchart.l2r .node.slide-down,
.orgchart.r2l .node.slide-down {
	transform: translateY(130px)
}

.orgchart .slide-up {
	opacity: 0;
	transform: translateY(-40px);
}

.orgchart.l2r .node.slide-up,
.orgchart.r2l .node.slide-up {
	transform: translateY(-130px)
}

.orgchart .slide-right {
	opacity: 0;
	transform: translateX(130px);
}

.orgchart.l2r .node.slide-right,
.orgchart.r2l .node.slide-right {
	transform: translateX(40px);
}

.orgchart .slide-left {
	opacity: 0;
	transform: translateX(-130px);
}

.orgchart.l2r .node.slide-left,
.orgchart.r2l .node.slide-left {
	transform: translateX(-40px);
}

html[data-bs-theme="dark"] .fa-plus-square::before,
html[data-bs-theme="dark"] .fa-square-plus::before {
	color: #379c8a;
}

@media only screen and (max-width:800px) {
	.orgchart .l01 .title {
		background-color: #fff !important;
		border: 2px solid var(--c3) !important;
		color: var(--c3) !important;
	}

	.orgchart .l02 .title {
		border-color: #aaadae !important;
		font-weight: 400;
	}

	.orgchart .l02 .title a {
		color: #3a3d4f !important;
	}

	html[data-bs-theme="dark"] .orgchart .l02 .title a {
		color: #fff !important;
	}

	.orgchart .l03 .title {
		border-color: #c7c7c7 !important;
		font-weight: 300;
	}

	.orgchart .l03 .title a {
		color: #5f6365 !important;
	}

	html[data-bs-theme="dark"] .orgchart .l03 .title a {
		color: #fff !important;
	}

	.orgchart .l04 .title a {
		color: var(--c2) !important;
	}

	.orgchart .l04 .title {
		background-color: #fff !important;
		border-color: #ebebeb !important;
	}
}

@media only screen and (max-width:600px) {
	.orgchart .node .title {
		text-align: left;
		white-space: initial
	}
}


/* ------ imgs ------ */
.blogImg {
	aspect-ratio: 400 / 320;
}

.projImg {
	aspect-ratio: 310 / 230;
}

.placeImg {
	aspect-ratio: 310 / 330;
}

@media (max-width:992px) {
	.placeImg {
		aspect-ratio: 310 / 290
	}
}


/* ------ color links ------ */
.link-primary:hover {
	color: var(--c2) !important;
}

.link-info:focus,
.link-info:hover {
	color: var(--c2) !important;
}

.link-success:focus,
.link-success:hover {
	color: var(--c5) !important;
}


/* ------ places ------ */
.placeGrad {
	background: linear-gradient(90deg, #73b05d 0%, #3088aa 100%);
	background-size: 150%;
}

html[data-bs-theme="dark"] .placeGrad {
	background: linear-gradient(90deg, #3b6371 0%, #4b6f40 100%);
}


/* ------ events ------ */
.date-box {
	background: linear-gradient(90deg, #3088aa 0%, #73b05d 100%);
	color: white;
	padding: 0.2rem;
	border-radius: 0.5rem;
	min-width: 50px;
}

html[data-bs-theme="dark"] .date-box {
	background: linear-gradient(90deg, #3b6371 0%, #4b6f40 100%);
}

.month {
	color: #73b05d;
	margin-left: 0.5rem;
}

.event-card {
	border-radius: 1rem;
	box-shadow: 0 2px 10px rgba(40, 40, 40, 0.05);
}

.icon-text {
	gap: 0.4rem;
	color: #666;
}


/* ------ fancybox ------ */
.fancybox__backdrop {
	background: rgba(30, 30, 30, .8);
}


/* ------ boot high contrast ------ */
html[data-bs-theme="dark"] .opacity-50 {
	opacity: .95 !important;
}

html[data-bs-theme="dark"] .opacity-75 {
	opacity: .95 !important;
}