@media (max-width:640px){

/* карточка товара */
.t-store__card,
.t-store__card__wrapper{
    position:relative;
}

/* контейнер плашки */
.t-store__card__mark-wrapper{
    position:absolute !important;
    bottom:15px !important;
    left:50% !important;
    right:auto !important;
    top:auto !important;
    transform:translateX(-50%) !important;
    z-index:5 !important;
}

/* сама плашка */
.t-store__card__mark{
    font-size:10px !important;
    line-height:1 !important;
    padding:4px 8px !important;
    border-radius:0px !important;
    min-height:auto !important;
    height:auto !important;
    white-space:nowrap !important;
}

}

/* десктопная версия */
@media (min-width:641px){

  .t-store__card__mark{
    top:30px !important;     /* отступ сверху */
    left:30px !important;    /* отступ слева */
    background:#000 !important;     /* чёрный фон */
    color:#fff !important;          /* белый текст */
    font-size:12px !important;      /* размер текста */
    padding:15px 15px !important;    /* размер блока */
    border-radius:0 !important;     /* убрать скругления */
    line-height:1 !important;
    min-height:auto !important;
    height:auto !important;
    white-space:nowrap !important;
  }

}