.section-table .table__content tbody > tr:nth-child(odd) {
  background-color: var(--bg-gray);
}

.section-table .table__content tbody > tr:nth-child(even) {
  background-color: white;
}

.section-table .table__content tbody > tr > td:nth-child(1) {
  padding-left: 20px;
}

.section-table a {
  color: var(--main-red);
}
.section-table .table__container {
  margin-top: 20px;
}

.section-table .table__header {
  margin-top: 26px;
}

.section-table .table__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
}

.section-table .table__header:nth-child(1) {
  margin-top: 0;
}

.section-table .table__content td {
  vertical-align: top;
  min-width: 190px;
}

.section-table .table__content td:first-child {
  min-width: 230px;
  max-width: 380px;
}

.section-table .table__content td > * {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
}

.section-table .table__content td > *:nth-child(n + 2) {
  margin-top: 5px;
}

.section-filter {
  padding: 20px 0;
  margin-top: 4px;
}

.section-filter__item {
  padding: 12px 20px;
  box-sizing: border-box;
  background-color: white;
  cursor: pointer;
  transition: all 200ms ease-out;
  order: 2;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  border-bottom: 1px solid var(--bg-gray);
  border-right: 1px solid var(--bg-gray);
  border-left: 1px solid var(--bg-gray);
}

.section-filter__item:hover {
  color: var(--main-red);
  font-weight: 600;
}

.section-filter__item_active {
  font-weight: 600;
  padding: 15px 50px 15px 20px;
  background-color: var(--bg-gray);
  color: var(--main-red);
  order: 1;
  position: relative;
}

.section_gray .section-filter__item {
  background-color: var(--bg-gray);
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  border-left: 1px solid white;
}

.section_gray .section-filter__item_active {
  background-color: white;
}

.section-filter__item_active::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 12px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.05412L6 5.94531L11 1.05412' stroke='%239C1B33' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

.section-filter__options {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}

.section-filter__options_active {
  border-radius: 8px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
}

.section-filter__options .section-filter__item {
  display: none;
}

.section-filter__options_active .section-filter__item {
  display: block;
}

.section-filter__options .section-filter__item_active {
  display: block;
}

@media screen and (min-width: 768px) {
  .section-table .table__content tbody > tr > td:nth-child(1) {
    padding-left: 30px;
  }
  .section-table .table__title {
    font-size: 18px;
    line-height: 19.8px;
  }
  .section-table .table__content td > * {
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
  }

}

@media screen and (min-width: 1200px) {
  .table.section-table {
    margin-top: 20px;
  }
  .section-table .table__content tbody > tr > td:nth-child(1) {
    padding-left: 60px;
  }
  .section-table .table__container {
    margin-top: 24px;
  }
  .section-table .table__header {
    margin-top: 50px;
  }
  .section-table .table__title {
    font-size: 20px;
    line-height: 22px;
  }
  .section-filter {
    margin-top: 20px;
  }

}
