/*p {
	margin-bottom: 15px !important;
}*/

.checkbox-wrapper {
	position: relative;
	width: 1.5rem;
	height: 1.5rem;
}

.checkbox-wrapper input {
	cursor: pointer;
}

.checkbox-wrapper .checkbox-bg {
	transition: opacity 0.2s ease-in-out;
}

.filter-container {
	transition: border-color 0.2s ease-in-out;
}

.carousel-2.splide {
	position: static;
}
.carousel-2 .splide__arrow {
	opacity: 1;
	width: 56px;
	height: 56px;
	background: #e5f7f8;
	transition: background-color 0.3s ease-in-out;
}
.carousel-2 .splide__arrow:hover {
	background: #00b2b8;
}
.carousel-2 .splide__arrow svg {
	fill: none;
	width: unset;
	height: unset;
}
.carousel-2 .splide__slide.is-active.is-visible > div {
	z-index: 1;
	position: relative;
	opacity: 1;
	background: #fff;
	transition: transform 0.3s ease-in-out;
	transform: scale(1.25);
	box-shadow: 0 4px 20px 0 rgba(58, 134, 137, 0.4);
}

.tabs-splide .splide__slide {
	color: #c8cece;
	padding-bottom: 10px;
	transition: color 0.2s ease;
	cursor: pointer;
	outline: none !important;
}
.tabs-splide .splide__slide:hover {
  color: #000000;
}
.tabs-splide .splide__slide:before {
	content: "";
	position: absolute;
	width: 37px;
	height: 4px;
	bottom: 0;
	background: #00b2b8;
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
}
.tabs-splide .splide__slide[aria-selected=true] {
  cursor: auto;
  color: #000000;
}
.tabs-splide .splide__slide[aria-selected=true]:before {
  opacity: 1;
}
.tile-with-tabs-content a {
  color: #00B2B8;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tile-with-tabs-content a:hover {
  color: #00599B;
}
.tile-with-tabs-content ul,
.unordered-list ul {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}
.tile-with-tabs-content ul li,
.unordered-list ul li {
  padding-left: 26px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.tile-with-tabs-content ul li:before,
.enroll-table ul li:before,
.unordered-list ul li:before{
  left: 7px;
  top: 7px;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: #00B2B8;
}

.numbered-list ol {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  list-style: none;
  counter-reset: li;
}

.numbered-list ol li {
  padding-left: 32px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.numbered-list ol li:before {
  content: counter(list-item) " ";
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #FFF;
  color: #00B2B8;
  position: absolute;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 600;
  left: 0;
  top: 0;
}

@media (min-width: 1024px) {
  .tile-with-tabs-content ul li,
  .unordered-list ul li {
    padding-left: 30px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .tile-with-tabs-content ul li:before,
  .unordered-list ul li:before {
    left: 8px;
    top: 8px;
	width: 6px;
	height: 6px;
  }
  .numbered-list ol {
	gap: 1rem;
  }
  .numbered-list ol li {
    padding-left: 48px;
	font-size: 1rem;
    line-height: 1.5rem;
  }
  .numbered-list ol li:before {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    line-height: 1.5rem;
    border-radius: 8px;
  }
}

@media (min-width: 1024px) {
	.carousel-2 .splide__slide.is-active.is-visible > div {
		transform: scale(1.16);
	}

	.tabs-splide .splide__slide {
		padding-bottom: 20px;
	}
	.tabs-splide .splide__slide:before {
		height: 8px;
	}
	.tabs-splide.splide.is-initialized:not(.is-active) .splide__list {
		display: flex;
	}
	.tabs-splide-cards.splide.is-initialized:not(.is-active) .splide__list {
		display: grid;
	}
}


/* FILTERS CUSTOM DROPDOWN - START */
/* Filter holder */
.filter-select-holder {}

/* Filter label */
.filter-select-holder.filter-select-holder--active .filter-label {
	color: #00B2B8 !important;
}

/* Filter select holder */
.filter-select-holder .choices {
	overflow: visible;
}

/* Filter select holder - expand clickable area above */
.filter-select-holder .choices:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200%;
	background-color: transparent;
	z-index: 1;
}

/* Chevron icon */
.filter-select-holder .choices:after {
	border: none !important;
	width: 20px !important;
	height: 20px !important;
	background-image: url("../images/icon-chevron-down.svg");
	background-size: contain;
	background-repeat: no-repeat;
	margin-top: 0px !important;
	top: -10px !important;
}

/* Chevron icon */
.filter-select-holder .choices.is-open:after {
	background-image: url("../images/icon-chevron-down-blue.svg");
}

/* Selected item */
.filter-select-holder .choices.is-open .choices__inner {
	color: #00B2B8;
}

/* Selected item */
.filter-select-holder .choices .choices__inner {
	border: none;
	background-color: #fff;
	padding: 0 !important;
	min-height: 0;
}

/* Selected item */
.filter-select-holder .choices .choices__list {
	padding: 0;
}

/* Selected item */
.filter-select-holder .choices .choices__list--single .choices__item {
	font-family: "Source Sans 3", serif;
	font-size: 1rem !important;
	font-weight: 600 !important;
}

/* Dropdown */
.filter-select-holder .choices .choices__list--dropdown {
	min-width: 314px !important;
	width: calc(100% + 20px) !important;
	border-radius: 6px !important;
	border: none !important;
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
	left: -20px !important;
	margin-top: -5px !important;
	padding: 0 10px;
	box-sizing: border-box;
}

/* Dropdown */
@media screen and (max-width: 1024px) {
	.filter-select-holder .choices .choices__list--dropdown {
		width: calc(100% + 40px) !important;
		min-width: 100% !important;
	}
}

/* Dropdown Items */
.filter-select-holder .choices .choices__list--dropdown .choices__item.is-highlighted {
	background-color: #E5F7F8 !important;
	border-radius: 6px !important;
}

/* Dropdown Items */
.filter-select-holder .choices .choices__list--dropdown .choices__item {
	font-family: "Source Sans 3", serif;
	font-size: 0.875rem !important;
	margin-bottom: 2px !important;
	padding: 8px 12px !important;
}

/* Dropdown Search Input */
.filter-select-holder .choices .choices__list--dropdown .choices__input {
	border: none !important;
}
/* FILTERS CUSTOM DROPDOWN - END */



/* FILTERS CUSTOM DROPDOWN 2 - START */
.filter-select-holder-2 {}

/* Filter label */
/*.filter-select-holder-2.filter-select-holder-2--active .filter-label {*/
/*	color: #00B2B8 !important;*/
/*}*/

/* Filter select holder */
/*.filter-select-holder-2 .choices {*/
/*	overflow: visible;*/
/*}*/

/* Chevron icon */
.filter-select-holder-2 .choices:after {
	border: none !important;
	width: 20px !important;
	height: 20px !important;
	background-image: url("../images/icon-chevron-down.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateY(-50%);
	margin-top: 0px !important;
	/*top: -10px !important;*/
}

/* Chevron icon */
.filter-select-holder-2 .choices.is-open:after {
	background-image: url("../images/icon-chevron-down-blue.svg");
}

/* Selected item */
.filter-select-holder-2 .choices.is-open .choices__inner {
	color: #00B2B8;
}

/* Selected item */
.filter-select-holder-2 .choices .choices__inner {
	border: solid 2px #00B2B8 !important;
	border-radius: 8px !important;
	background-color: #fff;
	padding: 12px 16px !important;
	min-height: 0;
}

/* Selected item */
.filter-select-holder-2 .choices .choices__list {
	padding: 0;
}

/* Selected item */
.filter-select-holder-2 .choices .choices__list--single .choices__item {
	font-family: "Source Sans 3", serif;
	font-size: 1rem !important;
	font-weight: 600 !important;
}

/* Dropdown */
.filter-select-holder-2 .choices .choices__list--dropdown {
	min-width: 314px !important;
	width: calc(100% + 20px) !important;
	border-radius: 6px !important;
	border: none !important;
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
	left: -10px !important;
	margin-top: -5px !important;
	padding: 0 10px;
	box-sizing: border-box;
}

/* Dropdown */
@media screen and (max-width: 1024px) {
	.filter-select-holder-2 .choices .choices__list--dropdown {
		min-width: 100% !important;
	}
}

/* Dropdown Items */
.filter-select-holder-2 .choices .choices__list--dropdown .choices__item.is-highlighted {
	background-color: #E5F7F8 !important;
	border-radius: 6px !important;
}

/* Dropdown Items */
.filter-select-holder-2 .choices .choices__list--dropdown .choices__item {
	font-family: "Source Sans 3", serif;
	font-size: 0.875rem !important;
	margin-bottom: 2px !important;
	padding: 8px 12px !important;
}

/* Dropdown Search Input */
.filter-select-holder-2 .choices .choices__list--dropdown .choices__input {
	border: none !important;
}
/* FILTERS CUSTOM DROPDOWN 2 - END */

/* Remove padding from fancybox popups with iframe */
.fancybox__slide.has-iframe .fancybox__content {
	padding: 0 !important;
	background: transparent !important;
}

/* List with checkmark icon and background */
.tick-list.tick-list-white ul li:before {
	background: #fff;
}
.tick-list ul {
	display: flex;
	flex-flow: column;
	gap: 1rem;
}
.tick-list ul li {
	position: relative;
	font-size: 1rem;
	line-height: 1.5rem;
	padding-left: 48px;
	min-height: 32px;
}
.tick-list ul li:before {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: baseline;
	content: url("../images/checkmark.svg");
	width: 32px;
	height: 32px;
	background: #e5f7f8;
	border-radius: 8px;
	flex-shrink: 0;
	left: 0;
}
@media (min-width: 1024px) {
	.tick-list ul {
		gap: 1.5rem;
	}
	.tick-list ul li {
		font-size: 1.25rem;
		line-height: 1.875rem;
	}
}

.desktop-search::-webkit-search-cancel-button {
	display: none;
}

/* Section academy */

.section-academy-list .prev.hidden, .section-academy-list .next.hidden {
  visibility: hidden;
}

.section-academy-list-slider.splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 640px) {
  .section-academy-list-slider.splide.is-initialized:not(.is-active) .splide__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .section-academy-list-slider.splide.is-initialized:not(.is-active) .splide__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .section-academy-list-slider.splide.is-initialized:not(.is-active) .splide__list {
    grid-template-columns: repeat(4, 1fr);
  }
}