.tabs-accordions {
  background: #F6F6F6;
  padding: 160px 0;
  padding-top: 0;
}

@media (max-width: 768px) {
  .tabs-accordions {
    padding: 80px 0;
    padding-top: 0;
  }
}

.tabs-accordions .wp-block-tabs {
  padding: 0 16px;
}

.tabs-head {
  margin-bottom: 80px;
}

.tabs-head .title {
  font-size: 40px;
  font-weight: 700;
}

.tabs-nav {
  display: flex;
  width: 100%;
  gap: 0;
  margin: 0;
  padding: 0;
}

.tab-label {
  flex-grow: 1;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: #EAEAEA;
  padding: 24px;
  font-size: 25px;
  font-weight: 700;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-label:last-child {
  background: #F1F1F1;
}

.tab-label.is-active {
  background: #fff;
  color: #009FE2;
}

.tab-content {
  display: none;
  padding-bottom: 24px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.tab-content.is-active {
  display: block;
}

/* Accordion */
.accordion {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.accordion-header {
  position: relative;
  background: #fff;
  color: black;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  padding: 32px;
  border-top: 1px solid #CACACA;
}

.accordion-header .display {
  display: flex;
  align-items: center;
  gap: 32px;
}

.accordion-header .icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  background: url('../../assets/images/icon-plus.svg') center/contain no-repeat;
  z-index: 1;
}

.accordion-header.open .icon {
  background-image: url('../../assets/images/icon-minus.svg');
}

.accordion-header .index {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #009FE2;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-content {
  display: none;
  padding: 0;
  border: 0;
}

.accordion-content.is-open,
.accordion.no-header .accordion-content {
  display: block;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #CACACA;
}

.info-table th,
.info-table td {
  padding: 32px;
  vertical-align: top;
  text-align: left;
}

.info-table td,
.info-table td.first {
  vertical-align: top !important;
}

.info-table th {
  font-size: 16px;
  text-transform: uppercase;
  color: #009FE2;
  border-bottom: 1px solid #CACACA;
  white-space: nowrap;
}

.info-table td {
  font-size: 20px;
  color: black;
  background: #fff;
}

.info-table td.first .display {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-table td.first .display {
  align-items: flex-start;
  height: auto;
}

.info-table td .dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
}

.info-table td .dot[style*="#FFFFFF"] {
  border: 1px solid #CACACA;
}

.info-table td span {
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .tab-label {
    font-size: 14px;
    padding: 20px 24px;
  }

  .accordion-header {
    font-size: 14px;
    padding: 16px;
  }

  .accordion-header .icon {
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
  }

  .info-table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .info-table-wrapper::-webkit-scrollbar {
    display: none;
  }

  .info-table {
    min-width: 768px;
    width: auto;
  }

  .info-table th,
  .info-table td {
    padding: 16px;
    font-size: 14px;
  }

  .info-table td .dot {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 9px;
  }

  .info-table td {
    max-width: 150px;
    white-space: pre-wrap;
  }

  .info-table td.first {
    border-right: 1px solid #CACACA;
    box-shadow: 1px 0 0 0 #CACACA;
  }

  .info-table td.first .display {
    position: absolute;
    top: 16px;
  }

  .info-table td.first,
  .info-table th:first-child {
    position: sticky;
    left: 0;
    background: white;
    z-index: 2;
    background-clip: padding-box;
  }

  .info-table tr {
    display: table-row;
  }

  .info-table td,
  .info-table th {
    height: 100%;
    vertical-align: top;
  }

  .info-table td {
    display: table-cell;
  }
}

.tabs-accordions .row {
  row-gap: 40px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

.tabs-accordions .col-md-10 {
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 100%;
}

.tabs-accordions .offset-md-1 {
  margin-left: 0;
}

@media (min-width: 768px) {

  .tabs-accordions .col-md-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .tabs-accordions .offset-md-1 {
    margin-left: 8.3333%;
  }
}
