/* TABBED CONTENT
-------------------------------------------- */
.tabbed-content {
  padding: 80px 0;
  background-color: #F7F7F7;
}
@media (max-width: 767.98px) {
  .tabbed-content {
    padding: 40px 0;
  }
}
.tabbed-content .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  align-self: stretch;
}
.tabbed-content__wrapper {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
  padding: 40px 80px;
  gap: 40px;
}
@media (max-width: 1199.98px) {
  .tabbed-content__wrapper {
    padding: 40px;
  }
}
@media (max-width: 991.98px) {
  .tabbed-content__wrapper {
    padding: 20px;
    gap: 32px;
  }
}
.tabbed-content__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .tabbed-content__content {
    flex-direction: column;
  }
}
.tabbed-content__left {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 548px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .tabbed-content__left {
    gap: 32px;
    max-width: 100%;
  }
}
.tabbed-content__nav {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .tabbed-content__nav {
    display: none;
  }
}
.tabbed-content__tabs-wrapper {
  display: flex;
  align-items: center;
  border-radius: 72px;
  background: #ebebeb;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: wrap;
  gap: 4px;
}
.tabbed-content__tab {
  display: flex;
  padding: 12px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 56px;
  border: none;
  background: transparent;
  color: #2c2c2c;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.tabbed-content__tab.active {
  background: #18b1b5;
  color: #fff;
}
.tabbed-content__tab:hover:not(.active) {
  background: rgba(24, 177, 181, 0.1);
}
.tabbed-content__tab-arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 991.98px) {
  .tabbed-content__tab-arrow {
    width: 40px;
    height: 12px;
  }
}
.tabbed-content__mobile-instructions {
  display: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #777777;
  text-align: center;
}
@media (max-width: 991.98px) {
  .tabbed-content__mobile-instructions {
    display: block;
    margin-bottom: -20px;
  }
}
.tabbed-content__mobile-selector {
  display: none;
  position: relative;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .tabbed-content__mobile-selector {
    display: block;
  }
}
.tabbed-content__mobile-selector::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 12px;
  background: url("../../images/tab-arrow-down.svg") no-repeat center;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tabbed-content__mobile-selector::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  transform: translateY(-75%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  pointer-events: none;
  transition: all 0.3s ease;
}
.tabbed-content__mobile-selector.open::before {
  transform: translateY(-25%) rotate(-135deg);
}
.tabbed-content__mobile-selector.active::after {
  opacity: 1;
}
.tabbed-content__mobile-selector.active::before {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.tabbed-content__dropdown {
  width: 100%;
  padding: 16px 24px;
  border-radius: 56px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #2c2c2c;
  transition: all 0.3s ease;
}
.tabbed-content__dropdown:focus {
  outline: none;
  border-color: #18b1b5;
}
.tabbed-content__dropdown option {
  padding: 16px 24px;
  background: #fff;
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 500;
}
.tabbed-content__dropdown.active {
  background: #18b1b5;
  color: #fff;
  border-color: #18b1b5;
}
.tabbed-content__dropdown-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  pointer-events: none;
  width: 40px;
  height: 12px;
}
.tabbed-content__panels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tabbed-content__panel {
  display: none;
}
.tabbed-content__panel.active {
  display: block;
}
.tabbed-content__heading {
  margin: 0 0 40px;
}
@media (max-width: 991.98px) {
  .tabbed-content__heading {
    margin-bottom: 24px;
  }
}
.tabbed-content__right {
  max-width: 528px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .tabbed-content__right {
    width: 100%;
    max-width: 100%;
    height: 320px;
  }
}
@media (max-width: 575.98px) {
  .tabbed-content__right {
    height: 260px;
  }
}
.tabbed-content__image {
  display: none;
  height: 100%;
}
.tabbed-content__image.active {
  display: block;
}
.tabbed-content__image img {
  width: 100%;
  height: 386px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 991.98px) {
  .tabbed-content__image img {
    height: 100%;
  }
}
.tabbed-content .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}