/* Красим scrollbar в свой цвет. Ползунок */

::-webkit-scrollbar-thumb {
background: #919191 !important;
border-radius: 10px !important;
}
::-webkit-scrollbar {
width: 6px !important;
height: 0px !important;
background: #FFFEF4 !important;
}

/* маркер у карточек товаров */
.t-store__card__mark {
    border-radius: 14px;
    height: 32px;
    padding: 0 8px;
    width: 0;
}

/* Кнопки закрытия в поп-апе */

.t-store__prod-popup__close-txt-wr {
    left: 152px;
    top: 110px;
}
.t-popup__close {
    cursor: pointer;
    right: 156px;
    top: 110px;
}

@media screen and (max-width: 1620px){
    .t-store__prod-popup__close-txt-wr {
        left: 112px;
        top: 110px;
    }
    .t-popup__close {
        cursor: pointer;
        right: 116px;
        top: 110px;
    }
}

@media screen and (min-width: 980px) and (max-width: 1200px){
    .t-store__prod-popup__close-txt-wr {
        left: 96px;
        top: 100px;
    }
    .t-popup__close {
        cursor: pointer;
        right: 100px;
        top: 100px;
    }
}

@media screen and (min-width: 640px) and (max-width: 980px){
    .t-store__prod-popup__close-txt-wr {
        left: 40px;
        top: 90px;
    }
    .t-popup__close {
        cursor: pointer;
        right: 44px;
        top: 90px;
    }
}

@media screen and (max-width: 640px){
    .t-store__prod-popup__close-txt-wr {
        left: 24px;
        top: 80px;
    }
    .t-popup__close {
        cursor: pointer;
        right: 26px;
        top: 80px;
    }
}