/*СУММА СТАРЫХ ЦЕН*/ 
.sum-old-price {
  font-family: "TildaSans", Arial, sans-serif; /*Шрифт*/
  font-size: 16px; /* Размер шрифта */
  font-weight: 500; /* Жирность */
  color: black; /* Цвет текста */
  margin-bottom: 10px; /*Отступ снизу*/
    
}


/*СУММА СКИДКИ*/ 
.sum-discont {
  font-family: "TildaSans", Arial, sans-serif; /*Шрифт*/
  font-size: 16px; /* Размер шрифта */
  font-weight: 500; /* Жирность */
  color: black; /* Цвет текста */
  margin-bottom: 10px; /*Отступ снизу*/
}
.sum-discont span {
    color: #23A77F; /*Цвет самой скидки*/
}


/*ОБЩАЯ СУММА*/
.t706__cartwin-prodamount-wrap {
    font-size: 22px; /*Размер шрифта*/
    font-weight: 700; /*Жирность*/
}

/*НОВАЯ ЦЕНА В КОРЗИНЕ*/
.t706__cartwin-prodamount-price, .t706__cartwin-prodamount-currency {
    font-weight: 500; /*Жирность*/
}


/*СТАРАЯ ЦЕНА В КОРЗИНЕ*/
.t706__product-title a p {
    position: absolute;
    bottom:20px; /*Отступ от нижней границы контейнера товара*/
    right: 55px; /*Отступ справа от окна браузера*/
    font-size: 16px; /*Размер шрифта*/
    font-weight: 500; /*Жирность*/
    color: #bbbbbb; /*Цвет текста*/
    text-decoration: line-through !important;
    text-decoration-thickness: 1px !important; /* Толщина линии перечеркивания */
    text-decoration-color: #bbbbbb !important; /* Цвет линии перечеркивания */
}


/*СТАРАЯ ЦЕНА В КОРЗИНЕ НА МОБИЛЬНЫХ*/
@media screen and (max-width: 640px){
    .t706__product-title a p {
        bottom:0; /*Отступ от нижней границы контейнера товара*/
        right:0; /*Отступ справа от окна браузера*/
    }   
}
.sum-discont-container {
    align-items: flex-end;
}
.t706__product {
    position:relative;
}
.js-store-prod-name p {
    display: none;
}

/*Сумма скидки автоматическая - Первая часть модификации*/
 
 /*ИКОНКА СКИДКИ ВНУТРИ ПОПАПА*/
.discount-icon {
  display: inline-block;
  position: absolute;
  top: -24px; /*Переместить иконку вверх или вниз*/
  left: 20px; /*Переместить иконку вправо или влево*/
  background-color: #ff4a4a; /*Фоновый цвет*/
  color: white; /*Цвет текста*/
  font-family: "TildaSans", Arial, sans-serif; /*Шрифт*/
  font-size: 14px; /*Размер шрифта*/
  font-weight: 700; /*Жирность*/
  padding: 5px; /*Внутренние отступы*/
  border-radius: 5px; /*Скругление углов*/
  box-shadow: none; /*Фоновая тень*/
  user-select: none;
  white-space: nowrap;
}


/*ИКОНКА СКИДКИ НА КАРТОЧКЕ*/
.t-store__card__price_old .discount-icon {
  font-size: 8px; /*Размер шрифта*/
  font-weight: 500; /*Жирность*/
  top: -12px; /*Регулировка положения (вверх или вниз)*/
  left: 30px; /*Переместить иконку вправо или влево*/
  background-color: #ff4a4a; /*Фоновый цвет*/
  color: white; /*Цвет текста*/
  padding: 3px; /*Внутренние отступы*/
   border-radius: 5px; /*Скругление углов*/
  box-shadow: none; /*Фоновая тень*/
  user-select: none;
  white-space: nowrap;
}