.header-cart {
  width: 53px;
  height: 53px;
  border: 1px solid #fe4f18;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  background: url('../img/svg/cart.svg') no-repeat center;
  position: relative;
}
.header-cart.mob {
  display: none;
}
.header-cart span {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 15px;
  height: 15px;
  line-height: 15px;
  border-radius: 50%;
  background: #fe4f18;
  font-size: 10px;
}
.cart__clear {
  text-align: right;
  padding: 10px 0;
}
.cart__clear button {
  color: #a1a1a1 !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding-right: 28px;
  background: url('../img/svg/clear.svg') no-repeat right;
  text-transform: uppercase;
  cursor: pointer;
  border: aqua;
}
.cart__list {
  padding-bottom: 14px;
}
.cart__item {
  margin-bottom: 16px;
  position: relative;
  border-radius: 16px;
  background: #edeceb;
  padding: 20px 20px 20px 205px;
  display: table;
  width: 100%;
}
.cart__item-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 165px;
  height: 100%;
  border-radius: 16px;
}
.cart__item-name {
  display: table-cell;
  vertical-align: middle;
  padding-right: 20px;
}
.cart__item-name h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
}
.cart__item-number {
  display: table-cell;
  vertical-align: middle;
  width: 204px;
}
.cart__item-number .number {
  width: 126px;
  height: 54px;
  border-radius: 16px;
  background: #f7f6f5;
  position: relative;
}
.cart__item-number .number input {
  width: 100%;
  height: 100%;
  text-align: center;
  background: none;
  font-size: 16px;
  font-weight: 700;
  border: 0;
}
.cart__item-number .number span {
  position: absolute;
  width: 54px;
  height: 54px;
  line-height: 54px;
  cursor: pointer;
  text-align: center;
  top: 0;
  font-size: 30px;
}
.cart__item-number .number span.minus {
  left: 0;
}
.cart__item-number .number span.plus {
  right: 0;
}
.cart__item-price {
  display: table-cell;
  vertical-align: middle;
  width: 144px;
  font-family: Bebas Neue;
  font-size: 30px;
}
.cart__item-delete {
  display: table-cell;
  vertical-align: middle;
}
.cart__item-delete button {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../img/svg/delete.svg');
  cursor: pointer;
	border: aqua;
}
.cart__result {
  margin-bottom: 30px;
  position: relative;
  border-radius: 16px;
  background: #edeceb;
  padding: 30px 30px;
  font-family: Bebas Neue;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
}
.cart__result button {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -32px;
}
.cart .popup {
  max-width: 100%;
}
@media (max-width: 1399px) {
  .header-contacts {
    gap: 12px;
  }
  .header-menu {
    gap: 12px;
  }
  .header-menu li a {
    font-size: 14px;
  }
  .header-contacts-tel {
    font-size: 22px;
  }
  .header-contacts-email {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .header-cart.mob {
    display: block;
    position: absolute;
    right: 145px;
  }
}
@media (max-width: 991px) {
  .cart__item {
    padding: 20px 20px 20px 180px;
  }
  .cart__item-image {
    width: 160px;
  }
  .cart__item-number {
    width: 160px;
  }
  .cart__item-price {
    width: 100px;
  }
  .cart__item-name h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .header-cart.mob {
    right: 130px;
  }
}
@media (max-width: 767px) {
  .cart__item-image {
    width: 100px;
  }
  .cart__item {
    padding: 20px 20px 20px 120px;
  }
  .cart__item-name h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .cart__item-number .number {
    width: 91px;
    height: 35px;
  }
  .cart__item-number .number span {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
  }
  .cart__item-price {
    font-size: 20px;
    width: 70px;
  }
  .cart__item-number {
    width: 110px;
  }
}
@media (max-width: 575px) {
  .cart__item {
    padding: 14px 14px 14px 121px;
    display: block;
  }
  .cart__item-image {
    width: 107px;
  }
  .cart__item-name {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    padding-right: 40px;
  }
  .cart__item-delete {
    position: absolute;
    top: 14px;
    right: 14px;
  }
  .cart__item-price {
    width: 50%;
    text-align: right;
  }
  .cart__result {
    padding: 20px 20px 20px 30px;
  }
  .cart__result button {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
  }
  .cart__result span {
    float: right;
  }
}
