.js-store-filter-result {
    display: none !important;
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Поверх всех других элементов */
}

.image-overlay img {
    max-width: 90%;
    max-height: 90%;
}
.t-bullet.active {
    opacity: 1; /* Подсветка активного индикатора */
}
.element {
    -webkit-transition: all 0.3s ease; /* Chrome, Safari */
    -moz-transition: all 0.3s ease; /* Firefox */
    -o-transition: all 0.3s ease; /* Opera */
    transition: all 0.3s ease; /* Standard */
}
/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
@media (max-width: 600px) {
    .element {
        flex-direction: column;
    }
}
:root {
    --main-color: #3498db;
}

.element {
    background-color: var(--main-color);
}
.container {
    display: -webkit-box; /* Older versions of Safari */
    display: -ms-flexbox; /* IE 10 */
    display: flex;
    -webkit-box-pack: center; /* Older versions of Safari */
    -ms-flex-pack: center; /* IE 10 */
    justify-content: center;
    -webkit-box-align: center; /* Older versions of Safari */
    -ms-flex-align: center; /* IE 10 */
    align-items: center;
}
* {
    box-sizing: border-box;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ie10-and-below {
        color: red;
    }
}
