/* Dark Theme */

.tabber-theme--dark.section { 
  background-color: #0D0D0D; 
}

.tabber-theme--dark .tabber__tabcontent-container--boxed {
  background-color: #181818;
  border: 1px solid #363636;
}

.tabber-theme--dark .section__header-content,
.tabber-theme--dark .section__header-content *,
.tabber-theme--dark .tab,
.tabber-theme--dark .tabber__quotation-persona-tag,
.tabber-theme--dark .tabber__quotation-quote,
.tabber-theme--dark .tabber__quotation-quote *,
.tabber-theme--dark .tabber__quotation-author,
.tabber-theme--dark .tabber__faqs-title,
.tabber-theme--dark .tabber__faqs-content,
.tabber-theme--dark .tabber__faqs-content *,
.tabber-theme--dark .tabber__faqs-content-inner,
.tabber-theme--dark .tabber__faqs-content-inner * {
  color: #ffffff;
}

.tabber-theme--dark .tabber__faqs-icon svg {
  fill: #ffffff;
}

/* Light Theme */

.tabber-theme--light .tabber__tabcontent-container--boxed {
  background-color: #ffffff;
  box-shadow: 0px 14px 53.1px 0px #00000017;
}

.tabber-theme--light .section__header-content,
.tabber-theme--light .section__header-content *,
.tabber-theme--light .tab,
.tabber-theme--light .tabber__quotation-persona-tag,
.tabber-theme--light .tabber__quotation-quote,
.tabber-theme--light .tabber__quotation-quote *,
.tabber-theme--light .tabber__quotation-author,
.tabber-theme--light .tabber__faqs-title,
.tabber-theme--light .tabber__faqs-content,
.tabber-theme--light .tabber__faqs-content *,
.tabber-theme--light .tabber__faqs-content-inner,
.tabber-theme--light .tabber__faqs-content-inner * {
  color: #000000;
}

.tabber-theme--light .tabber__faqs-icon svg {
  fill: #000000;
}

/* Styling */

.section {
  background-repeat: no-repeat;
}

/* Tabber - Tablist */

.tabber__tablist-container {
  margin-bottom: 2rem;
}

.tablist {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.tabber__tab {
  padding: 0.5rem 2rem;
}

.tab {
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  text-underline-offset: 0.25rem;
}

.tab[aria-selected="false"] {
  opacity: 0.5;
}

.tab[aria-selected="true"] {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .tabber__tablist-container {
    overflow-x: scroll;
  }

  .tablist {
    flex-wrap: nowrap;
    margin: 0;
  }

  .tabber__tab {
    padding: 0.5rem;
  }

  .tab {
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .tablist {
    justify-content: center;
  }
}

/* Tabber - Tabcontent */

.tabber__tabcontent-container {
  border-radius: 1rem;
  padding: 2rem;
}

.tabber__tabcontent-container--has-shadow {
  box-shadow: 0px 14px 53.1px 0px rgba(0, 0, 0, 0.09);
}

/* Tabber - Tabpanel */

.tabber__tabpanel {
  transition: transform 0.3s ease;
}

.tabber__tabpanel.is-hidden {
  height: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -100;
  transform: scale(0.9);
}

.tabber__tabpanel-left {
  width: 100%;`
}

.tabber__tabpanel-right {
  width: 100%;
}  

.tabber__tabpanel-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .tabber__tabpanel-left {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .tabber__tabpanel-left {
    padding-right: 5rem;
    width: 60%;
  }
  
  .tabber__image--bottom-align {
    transform: translateY(2rem);
  }

  .tabber__tabpanel-right {
    overflow-y: scroll;
    position: relative;
    width: 40%;
  }
  
  .tabber__faqs {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

/* Tabber - Tabpanel Quotation */

.tabber__quotation-img {
  /*aspect-ratio: 2.39 / 1;*/
  aspect-ratio: 3 / 2;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.tabber__quotation-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/*.tabber__quotation-persona-tag {
  border-radius: 1rem;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  right: 2rem;
  padding: 0.5rem 1rem;
  position: absolute;
  top: 2rem;
}*/

.tabber__quotation-quote {
  margin-bottom: 2rem;
}

.tabber__quotation-quote,
.tabber__quotation-quote * {}

.tabber__quotation-author span {
  display: block;
  font-size: 0.75rem;
}

/* Tabber - Tabpanel FAQs */

.tabber__faq-item {
  border-bottom: 0.5px solid #A7A7A7;
  margin-bottom: 20px;
  padding-bottom: 0.625rem;
}

.tabber__faq-toggle {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.tabber__faqs-title {
  line-height: 1.32;
  margin-bottom: 0.625rem;
  text-align: left;
  /*width: calc(100% - 3rem); */
  width: 100%;
}

.tabber__faqs-icon {
  align-items: center;
  display: flex;
  flex-grow: 0;
  height: 100%;
  justify-content: flex-end;
  padding: 0 0 0.625rem 1rem;
  width: 3rem;
}

.tabber__faqs-icon svg {
  transition: transform 0.15s;
}

.tabber__faq-toggle[aria-expanded="true"] .tabber__faqs-icon svg {
  transform: rotate(-90deg);
}

.tabber__faqs-content {
  padding-bottom: 1rem;
}

/* Section Footer */

.section__footer-buttons {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  margin-top: 30px;
}

.section__footer-button {
  padding: 0.625rem;
}