.table {
  display: table;
  width: 100%;
  border-collapse: separate;
  text-align: center;
}

.table__small {
  display: table-cell;
}

.table svg,.table__text {
  position: relative;
}

.table svg {
  top: 9px;
  width: 30px;
}

.table__text {
  top: 0;
  left: 5px;
}

.table__link {
  color: #363339;
  text-decoration: none;
}

.table__row {
  display: table-row;
  border: 0;
}

.table__row > .table__small > .table__cell:nth-child(odd) {
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #e22927;
  color: #e5e5e5;
}

.table__row > .table__small > .table__cell {
  padding: 4px 0 15px 10px;
  border-bottom: #dbdbdc 1px solid;
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-weight: 600;
  color: #363338;
  text-align: left;
}

.table__row > .table__small > .table__cell.-block {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28.8px;
  line-height: 1.8rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
}

.table__row > .table__small > .table__cell.-list {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
}

.table__row:nth-child(2n) {
  background-color: #ffffff;
}

.table__header {
  display: table-row;
}

.table__header__item {
  display: table-cell;
  padding: 14px 0 10px 10px;
  border-bottom: 2px solid #dbdbdc;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28.8px;
  line-height: 1.8rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-weight: 800;
  color: #363338;
  text-align: left;
  cursor: default;
}

.table__header__item.filter-action {
  cursor: pointer;
}

.-expand {
  transition: color .3s, background-color .3s;
}

.-expand:after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 13px;
  height: 7px;
  background-image: url(/assets/svg/slider-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.-expand:hover {
  background-color: #e22927;
  color: #ffffff !important;
}

.-expand:hover:after {
  background-image: url(/assets/svg/slider-arrow-white.svg);
}

.wrapper {
  width: 90%;
  overflow: hidden;
  transition: max-height .1s ease-out;
}

.wrapper .-expand {
  position: absolute;
  bottom: 0px;
  left: calc(50% - 140px);
  display: none;
  align-items: center;
  justify-content: center;
  width: 280px;
  border-radius: 30px;
  height: 50px;
  color: #3F4C59;
  cursor: pointer;
  z-index: 20;
  border: 1px solid #e22927;
}

.wrapper.-more {
  position: relative;
  margin-bottom: 100px;
}

.wrapper.-more .-expand {
  display: flex;
  justify-content: flex-start;
  padding-left: 25px;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 17.6px;
  line-height: 1.1rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-weight: 800;
  color: #000000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.wrapper.-more:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(0deg, #f6f6f6 0%, #f6f6f6 33%, #fbfbfb 66%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  .table {
    display: block;
  }

  .table__row:nth-child(2n+3) {
    background: none;
  }

  .table__header {
    display: none;
  }

  .table__row > .table__small > .table__cell:nth-child(odd) {
    display: table-cell;
    width: 50%;
  }

  .table__cell {
    display: table-cell;
    width: 50%;
  }

  .table__row {
    display: table;
    width: 100%;
    margin: 5% auto 0;
    border-collapse: separate;
    text-align: center;
  }

  .table__small {
    display: table-row;
  }

  .table__row > .table__small:first-child > .table__cell:last-child {
    border-left: none;
  }

  .table__row > .table__small > .table__cell:first-child {
    border-left: #ccc 1px solid;
  }

  .table__row > .table__small:first-child > .table__cell:first-child {
    border-top-left-radius: 5px;
    border-top: #ccc 1px solid;
  }

  .table__row > .table__small:first-child > .table__cell:last-child {
    border-top-right-radius: 5px;
    border-top: #ccc 1px solid;
  }

  .table__row > .table__small:last-child > .table__cell:first-child {
    border-right: none;
  }

  .table__row > .table__small > .table__cell:last-child {
    border-right: #ccc 1px solid;
  }

  .table__row > .table__small:last-child > .table__cell:first-child {
    border-bottom-left-radius: 5px;
  }

  .table__row > .table__small:last-child > .table__cell:last-child {
    border-bottom-right-radius: 5px;
  }
}
