.main {
  min-height: 60vh;
}


.cart__container {
  position: relative;
}

.cart__popup {
  display: none;
  position: absolute;
  border-radius: 10px;
  top: 24px;
  right: 24px;
  padding: 39px 30px;
  min-width: 430px;
  z-index: var(--z-index-2);

  /* box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3), 0 6px 10px 4px rgba(0, 0, 0, 0.15); */
  box-shadow: -2px 2px 6px 0 rgba(12, 12, 13, 0.1);
  background: var(--white);

  display: flex;
  gap: 20px;
  flex-direction: column;
}

.cart__popup__title {
  display: flex;
  justify-content: space-between;

  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: var(--black);
}

.cart__items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  overflow-y: auto;
  min-height: 50px;
}

.cart__item-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.cart__item-main {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.cart__item-btns-block {
  width: 100%;
  display: flex;
  gap: 10px;
}

.cart__like-item {
  display: none !important;
}

.cart__remove-item{
    padding: 5px;
    border-radius: 10px;
    background: var(--shop-light-ice);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
}

.cart__item-btns-block .popular__btn-num {
  height: 40px;
  background: var(--shop-light-ice);
}

.cart__item-img-inner {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 10px;
}


.cart__item-img {
  border-radius: 10px;
  width: 100%;
}

.cart__item-info-inner {
  display: flex;
  gap: 7px;
  flex-direction: column;
  width: 65%;
}

.cart__item-info-category {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--black);
}

.cart__item-info-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--csgo-text-secondary-light-gray);
}

.cart__item-prices-block {
  display: flex;
  gap: 7px;
  align-items: center;
}

.cart__item-info-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--shop-bright-blue);
}

.cart__item-info-old-price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  text-decoration: line-through;
  color: var(--csgo-text-secondary-light-gray);
}

.cart__total {
  display: flex;
  gap: 12px;
  flex-direction: column;

  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--black);
}

.cart-total-black {
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
}

.cart-total-blue {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--shop-bright-blue);
}

.cart__your-balance {
  display: flex;
  gap: 10px;
  flex-direction: column;
  display:none !important;
}

.cart__your-balance-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--black);
}

.cart__your-balance-block {
  width: 100%;
  padding: 7px 14px;
  border-radius: 10px;
  background: var(--shop-soft-blue);
}

.cart__your-balance-block p {
  font-weight: 600;
  font-size: 20px;
  color: var(--shop-bright-blue);
}

.cart__your-balance-dont .cart__your-balance-block p {
  color: #ff383c;
}

.cart__your-balance-dont-money {
  display: none;
  opacity: 0;
  font-weight: 400;
  font-size: 12px;
  color: #ff383c;
}

.cart__your-balance-dont .cart__your-balance-dont-money {
  display: block;
  opacity: 1;
}

.cart__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart__btns {
  display: flex;
  gap: 11px;
  flex-direction: column;
}

.cart__btn-buy,
.cart__btn-empty {
  border-radius: 3px;
  padding: 12px 0;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  transition: var(--transition);
}

.cart__btn-buy:hover,
.cart__btn-empty:hover {
  background: #558955;
}


.cart__btn-empty:hover {
  color: #fff;
}


.cart__btn-buy {
  color: var(--shop-light-ice);
  background: VAR(--shop-burnt-sienna);
}

.cart__btn-empty {
  border: 1px solid var(--shop-burnt-sienna);
  color: var(--shop-burnt-sienna);
  background: transparent;
}


.factory-new-icon {
  font-family: var(--font3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 4px;
  line-height: 1;
  color: var(--csgo-background-secondary-dark-slate-gray);
  border-radius: 4px;
  width: 11px;
  height: 11px;
}

.cart__popup {
  transform: translateX(100%);
  transition: transform 0.3s ease;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 360px;
  z-index: 9999;
}

.cart__popup--active {
  transform: translateX(0%);
  display: flex;
}

@media (max-width: 460px) {
  .cart__popup  {
    width: 90%;
    min-width: 0;
  }
}