@media screen and (min-width: 1020px) {
.t-store .t-store__tabs {
    box-sizing: border-box;
    width: 100% !important;
    display: block !important;
    margin-top: 20px !important;
    max-width: 29% !important;
}
.t-store__product-snippet .t-container>div:after {
    clear: unset !important;
    content: '';
    display: block;
    height: 0;
}
}

    
    .t-store__filter__options_center {
    text-align: right;
}
    .t-store__grid-cont_col-width_stretch[data-col-gap='20'] .t-store__filter {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -24px;
}

.t-descr_xxs {
    font-size: 14px;
    line-height: 1.3;
}





body > div:nth-child(8) {
    backdrop-filter: blur(2px);
    background-color: rgb(58 58 58 / 70%);
}

.popup {
    opacity: 0; /* Невидимый по умолчанию */
    transform: scale(0.8); /* Уменьшенный размер из центра */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform-origin: center; /* Центр как точка анимации */
    transform: translate(-50%, -50%) scale(0.8); /* Центрируем элемент и задаем уменьшение */
    background: white; /* Фон для примера */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.popup.open {
    opacity: 1; /* Полностью видимый */
    transform: translate(-50%, -50%) scale(1); /* Увеличение до нормального размера */
}

