.offers__list--grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media (min-width: 360px) {
  .offers__list--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .offers__list--grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1320px) {
  .offers__list--grid {
    gap: 24px;
  }
}
.offers__item {
  position: relative;
  padding: 30px 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  color: #000000;
  border-radius: 20px;
  border: 1px solid #D2D2DA;
  -webkit-box-shadow: 0 10px 10px 0 rgba(38, 45, 51, 0.05);
          box-shadow: 0 10px 10px 0 rgba(38, 45, 51, 0.05);
}
@media (min-width: 768px) {
  .offers__item {
    padding: 30px 20px 20px;
  }
}
.offers__item:visited {
  color: #000000;
}
.offers__item.--hidden {
  display: none;
}
.offers__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .offers__item-wrapper {
    display: grid;
    grid-template-columns: minmax(auto, 45%) auto;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    row-gap: 21px;
  }
}
.offers__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .offers__item-header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.offers__item-header.--small {
  display: grid;
  grid-template-columns: 50px auto;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}
.offers__item-header.--small .offers__item-logo {
  width: 50px;
  height: 50px;
}
.offers__item-header.--small .offers__item-promo {
  grid-column: span 2;
}
.offers__item-logo {
  max-width: 140px;
  height: 35px;
}
.offers__item-logo.--smal {
  display: none;
}
.offers__item-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.offers__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
@media (min-width: 992px) {
  .offers__item-info {
    gap: 4px;
  }
}
.offers__item-name {
  margin-right: auto;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
.offers__item-promo {
  padding: 3px 15px;
  min-height: 25px;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#CB134C), to(#472D83));
  background: linear-gradient(90deg, #CB134C 0%, #472D83 100%);
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0 20px;
}
.offers__item-promo span {
  font-size: 16px;
}
.offers__item-promo .timer {
  font-size: inherit;
}
.offers__item-action {
  grid-column: 2/3;
}
.offers__item-button {
  position: relative;
  z-index: 2;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  font-weight: 800;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
}
.offers__item-footnote {
  font-size: 10px;
  color: #767676;
}
@media (min-width: 992px) {
  .offers__item-footnote {
    font-size: 12px;
  }
}
.offers__params {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 21px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .offers__params {
    position: static;
    justify-items: start;
    gap: unset;
  }
}
.offers__params::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #D2D2DA;
  position: absolute;
  bottom: 31px;
  left: 0;
}
@media (min-width: 768px) {
  .offers__params::after {
    width: calc(100% - 40px);
    left: 20px;
    bottom: 81px;
  }
}
.offers__params-sum {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 110%;
  color: var(--offer_button_bg_color);
}
@media (min-width: 768px) {
  .offers__params-sum {
    position: absolute;
    bottom: 34px;
    left: 25px;
    font-size: 22px;
  }
}
.offers__params-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 6px;
  text-align: right;
}
.offers__params-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 100%;
}
.offers__params-label {
  color: #767676;
  font-weight: 500;
  font-size: 12px;
}
.offers__params-value {
  font-size: 12px;
  font-weight: 500;
  color: #000;
}
@media (min-width: 992px) {
  .offers__params-value {
    font-size: 13px;
  }
}
.offers__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 24px;
}
.offers__button-show-more {
  cursor: pointer;
  min-width: 191px;
  height: 50px;
  background-color: var(--show_more_button_bg_color);
  color: var(--show_more_button_text_color);
  font-weight: 800;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  font-family: inherit;
  border-radius: 10px;
}
.offers__button-show-more:hover {
  background-color: var(--show_more_button_bg_hover_color);
  color: var(--show_more_button_text_hover_color);
}

.description__wrapper {
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.07);
}