.basket-title {
  padding: 0 0 7.5px 0;
}
.basket-title h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.basket-top {}
.basket-top__controls {
  display: flex;
  gap: 30px;
  white-space: nowrap;
}
.basket-top__controls a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  color: inherit;
  padding-left: 15px;
}
.basket-top__controls a:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 1.7px;
  left: 0;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #B7B7B7;
}
.basket-items {}
.basket-item {
  padding-top: 38px;
}
.basket-item__wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
}
.basket-item__check {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.basket-item__thumb {
  flex: 0 0 195px;
  max-width: 195px;
  padding: 15px;
  border: 1px solid var(--color_gray);
  border-radius: 12px;
}
.basket-item__thumb img {
  width: 100%;
  height: auto;
  border-radius: inherit;
}
.basket-item__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.basket-item__info--metal {}
.basket-item__info--metal span {
  border: 1px solid #1F1F1F;
  border-radius: 5px;
  background: #ffff;
  color: #1F1F1F;
  font-weight: bold;
  padding: 5px 15px;
  text-transform: uppercase;
}
.basket-item__info--metal span.gold {
  color: #fff;
  border-color: #BCA959;
  background: #BCA959;
}
.basket-item__info--metal span.silver {
  color: #fff;
  border-color: #707070;
  background: #707070;
}
.basket-item__info--metal span.platinum {
  color: #1F1F1F;
  border-color: #D3D3D3;
  background: #D3D3D3;
}
.basket-item__info--name {
  text-decoration: none;
  font-family: 'Bebas Neue Cyrillic';
  color: #000;
  font-size: 25px;
  line-height: 30px;
}
.basket-item__info--features {
  padding-top: 4px;
  font-size: 14px;
}
.basket-item__totals {
  flex: 0 0 210px;
  max-width: 210px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
.basket-item__price {
  font-size: 30px;
  font-weight: 700;
  text-align: right;
}
.basket-item__buttons {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 991px) {
  .basket-top__controls {
    gap: 10px;
  }
  .basket-item__wrapper {
    flex-wrap: wrap;
    gap: 0;
  }
  .basket-item__thumb {
    flex: 0 0 100px;
    max-width: 100px;
    height: 100px;
    max-height: 100px;
  }
  .basket-item__check {
    flex: 0 0 30px;
    justify-content: flex-start;
    padding-top: 37px;
    max-width: 30px;
  }
  .basket-item__info {
    flex: 0 0 calc(70% - 30px);
    max-width: calc(70% - 30px);
    padding-left: 10px;
  }
  .basket-item__info--metal span {
    padding: 5px 5px !important;
    font-size: 12px;
  }
  .basket-item__info--name {
    font-size: 18px;
    line-height: 1.2;
  }
  .basket-item__totals {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .basket-item__price {
    padding-left: 136px;
    font-size: 20px;
    text-align: left;
  }
  .basket-item__buttons {
    padding-top: 10px;
    flex-direction: row;
  }
}