.terms-and-conditions {
  display: flex;
  flex-flow: column nowrap;
  background-image: url("/assets/backgrounds/background.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  gap: 85px;
  width: 100%;
  padding: 85px 16.88%;
  align-items: center;
  overflow: hidden;
}

.terms-and-conditions__switch-container {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  width: 100%;
  transition-duration: 0.5s;
}

.terms-and-conditions__switch-section {
  display: flex;
  flex-flow: column nowrap;
  gap: 17px;
  opacity: 1;
  width: 100%;
}
.terms-and-conditions__switch-section > header {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 17px;
}
.terms-and-conditions__switch-section > header > p {
  margin: 0;
  font-size: 1em;
  color: #10357F;
  font-weight: bold;
}
.terms-and-conditions__switch-section > p {
  margin: 0;
}

.terms-and-conditions__switch-section[hidden] {
  display: none;
}

.terms-and-conditions__switch-section[data-transition=fading] {
  position: absolute;
  top: 0;
  opacity: 1;
  animation: 0.5s ease-out 0s normal forwards fade;
}

.terms-and-conditions__switch-section[data-transition=appearing] {
  opacity: 0;
  animation: 0.5s ease-out 0s reverse forwards fade;
}

.terms-and-conditions__external-text-group {
  display: flex;
  flex-flow: column nowrap;
  gap: 17px;
}
.terms-and-conditions__external-text-group p {
  margin: 0;
}
.terms-and-conditions__external-text-group ol, .terms-and-conditions__external-text-group ul {
  margin: 5px 0;
}
.terms-and-conditions__external-text-group ol:last-child, .terms-and-conditions__external-text-group ul:last-child {
  margin-bottom: 0;
}

.terms-and-conditions__switch-section-header {
  font-size: 3em;
  color: #10357F;
  margin: 0;
  text-align: center;
}

.terms-and-conditions__accordion {
  padding: 33px 0 13px;
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}

.terms-and-conditions__nav-scroller {
  display: flex;
  justify-content: space-around;
  overflow-y: scroll;
  width: 100vw;
  padding: 0 25.47%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.terms-and-conditions__nav-scroller::-webkit-scrollbar {
  display: none;
}

.terms-and-conditions__back-to-homepage {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}

.terms-and-conditions__external-small-header {
  font-size: 1em;
  color: #10357F;
  margin: 0;
}

.terms-and-conditions__gapped-list {
  display: flex;
  flex-flow: column nowrap;
  gap: 17px;
  margin: 0;
  padding-inline-start: 25px;
}

.terms-and-conditions__external-list-header {
  font-weight: 600;
  font-size: 1em;
  margin: 0;
}

@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nav-switch {
  position: relative;
  width: fit-content;
  height: 50px;
  border-radius: 100px;
  background-color: #E9EBF3;
  display: flex;
}

.nav-switch__list {
  margin: 0;
  padding: 5px;
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  list-style: none;
}

.nav-switch__list-item {
  position: relative;
  padding: 0 10px;
  display: flex;
  font-size: 0.875em;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  text-wrap-mode: nowrap;
}

.nav-switch__list-item_state_active {
  font-weight: bold;
  color: #10357F;
}

.nav-switch__slider {
  position: absolute;
  top: 5px;
  height: 40px;
  background-color: white;
  border-radius: 100px;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
  z-index: 2;
  transition-duration: 0.5s;
}

.tnc-details {
  width: 100%;
  display: flex;
  position: relative;
  flex-flow: column nowrap;
  padding: 20px;
  background-color: white;
  border: 1px solid #dbdfea;
  border-radius: 15px;
  box-shadow: 0 4px 15px 0 rgba(7, 34, 105, 0.1);
  gap: 0;
  transition-duration: 0.5s;
  transition-property: gap;
  overflow: hidden;
  word-break: break-word;
}
.tnc-details > .tnc-details__summary {
  display: grid;
  grid-template-columns: 1fr 14px;
  gap: 15px;
  align-items: center;
  padding: 0;
  border-bottom: 0 solid rgba(191, 191, 191, 0);
  transition-duration: 0.5s;
  cursor: pointer;
}
.tnc-details > .tnc-details__summary::after {
  content: "";
  width: 14px;
  height: 8px;
  background-image: url(../../assets/svg/details-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(0deg);
  transition-duration: 0.5s;
}
.tnc-details > .tnc-details__content-window {
  height: 0px;
  overflow: clip;
  transition-duration: 0.5s;
  transition-property: height;
}

.tnc-details[open] {
  gap: 20px;
}
.tnc-details[open] > .tnc-details__summary {
  color: #10357F;
  font-weight: bold;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(191, 191, 191, 0.5019607843);
}
.tnc-details[open] > .tnc-details__summary::after {
  transform: rotate(-180deg);
}
.tnc-details[open] > .tnc-details__content-window {
  height: 0px;
}

.tnc-details__content-box {
  display: none;
  flex-flow: column nowrap;
  gap: 20px;
  line-height: 25px;
  overflow: hidden;
}
.tnc-details__content-box p {
  margin: 0;
}

.tnc-details__content-box_visible {
  display: flex;
}

.tnc-details__small-header {
  font-size: 1em;
  color: #10357F;
  margin: 0;
}

.tnc-details__gapped-list {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}

.tnc-details__list-item-box {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}
.tnc-details__list-item-box > ul, .tnc-details__list-item-box > ol {
  padding-inline-start: 22px;
}

.tnc-details__bordered-box {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  padding: 20px;
  border: 1px solid #808080;
  border-radius: 10px;
}

.tnc-state-contact-table {
  border-collapse: collapse;
}
.tnc-state-contact-table thead {
  background-color: rgba(0, 0, 0, 0.06);
}
.tnc-state-contact-table thead th {
  padding: 10px 12px;
  border: 1px solid #b9b9b9;
}
.tnc-state-contact-table td {
  border: 1px solid #b9b9b9;
  padding: 10px 12px;
  vertical-align: text-top;
  word-break: break-word;
  font-size: 0.875em;
}

.tnc-state-contact-table__state-header {
  width: 180px;
}

.tnc-state-contact-table__state-agency-header {
  width: auto;
}

.tnc-state-contact-table__link {
  color: #10357F;
  text-decoration: none;
}

/*# sourceMappingURL=terms-and-conditions.css.map */
