<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.catalog-container, .catalogCategory-container, .product {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 90px 30px 90px 30px 90px 30px 90px 30px 90px 30px 90px 30px 90px 30px 90px 30px 90px 30px 90px;
    grid-template-columns: repeat(10, 90px);
    grid-gap: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}
.catalog-home__mobile {
    position: relative;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.catalog-home__mobile:last-child {
    margin-bottom: 0;
}

.catalog-home_bg {
    width: 100%;
    height: 260px;
    background: #33122b96;
    z-index: 2;
}

.catalog-home__mobile .catalog__image, .catalog-home__mobile .catalog__title, .catalog-home_bg {
    position: absolute;
}

.catalog-home__mobile .catalog__title {
    z-index: 3;
    font-size: 30px;
    text-align: center;
}

.catalog-home__mobile .catalog__title {
    color: #fff;
}
.catalog-home__mobile:hover {
    cursor: pointer;
}
.catalog-container {
    grid-template-columns: repeat(8, 90px)
}

.catalog-sames {
    margin-top: 30px
}

.inner {
    -ms-grid-rows: auto 10px auto 10px 1fr;
    grid-template-rows: auto auto 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 10px
}

.inner &gt; p {
    margin: 0
}

.inner .sWay {
    -ms-grid-row: 1;
    grid-row-start: 1
}

.inner h1 {
    -ms-grid-row: 2;
    grid-row-start: 2
}

.inner .catalog-container {
    -ms-grid-row: 3;
    grid-row-start: 3;
    grid-template-rows: min-content;
}

.inner .catalog-container__menu {
    -ms-grid-row: 3;
    grid-row-start: 3
}

.inner p, .inner h1, .inner h2, .inner h3, .inner h4, .inner ul, .inner ol, .inner .sWay, .inner .catalog-text {
    -ms-grid-column: span 10;
    grid-column-start: span 10
}

.catalogCategory-container {
    -ms-grid-columns: 100px 15px 100px 15px 100px 15px 100px 15px 100px 15px 100px 15px 100px 15px 100px 15px 100px 15px 100px;
    grid-template-columns: repeat(10, 100px);
    grid-gap: 15px
}

.catalog-container__title {
    font-weight: 500;
    text-transform: uppercase
}

.catalog-menu, .catalog-container__menu {
    -ms-grid-column: span 2;
    grid-column-start: span 2
}

.catalog-container__menu ul {
    margin-left: 20px
}

.catalog-container__menu &gt; nav &gt; ul {
    margin-left: 0
}

.catalog-container__menu li {
    margin-bottom: 10px
}
.catalog-menu li &gt; strong {
    margin-bottom: 10px;
    display: block;
}
.catalog-container__menu &gt; nav &gt; ul &gt; li ul {
    margin-top: 20px
}

.catalog-menu li {
    margin-bottom: 20px
}

.catalog-menu li:last-child, .catalog-container__menu li:last-child {
    margin-bottom: 0
}

.catalog-menu a, .catalog-container__menu a {
    color: #222;
    font-size: 1.143em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.catalog-container__menu a {
    font-size: 1em
}

.catalog-menu a::after {
    font-family: "Font Awesome 5 Pro";
    content: '\f054';
    font-size: .857em
}

.itm {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    overflow: hidden;
    position: relative;
    height: auto
}

.itm-white {
    background-color: #fff;
    border-radius: 10px
}

.itm__image, .catalog__image {
    height: 260px;
    overflow: hidden;
    border-radius: 10px
}

.itm__image img, .catalog__image img {
    width: 100%
}

.itm .itm__body {
    display: grid;
    grid-gap: 5px;
    margin-top: 20px;
    padding: 10px;
    position: relative;
}

.itm-white .itm__body {
    margin: 15px 10px
}

.itm__title a, .catalog__title a {
    font-weight: 500;
    color: #222;
    text-transform: uppercase
}

.itm__description {
    color: #999
}

.itm__price {
    font-weight: 500;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.itm__price-actual {
    font-size: 1.143em
}

.itm__price-old {
    color: #777;
    text-decoration: line-through
}

.itm__stars {
    justify-self: flex-end;
    color: #ac328d;
    font-size: .714em
}

.itm:hover .itm-hover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.itm-hover {
    -webkit-transition: display 2s ease-out;
    -o-transition: display 2s ease-out;
    transition: display 2s ease-out;
    display: none;
    position: absolute;
    top: 0;
    cursor: pointer;
    background: #ffffff4d;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border: 3px solid #ac328d;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 3;
}

.itm-hover__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 40px 10px 40px 10px 40px;
    grid-template-rows: repeat(3, 40px);
    grid-row-gap: 10px
}

.products-ctg {
    -ms-grid-column: span 8;
    grid-column-start: span 8;
    display: -ms-grid;
    display: grid
}

.catalog {
    -ms-grid-column: span 2;
    grid-column-start: span 2
}

.catalog__title {
    margin-top: 10px
}
.property-color li.active,.property-size li.active {
    border-color: #d5d5d5;
}
.property-color ul,.property-size ul {
    display: flex;
    flex-wrap: wrap;
}
.property-color li,.property-size li  {
    height: 26px;
    min-width: 26px;
    margin: 0 5px 10px 0;
    border-width: 1px;
    line-height: 26px;
    border-color: #d5d5d5;
    border-radius: 5px;
}

.property-size li  {
    background-color: #d5d5d5;
    text-align: center;
    padding: 0 2px;
    white-space: nowrap;
}

.itm__price-percent {
    color: rgb(255, 255, 255);
    background-color: rgb(116, 36, 95);
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    width: 35px;
    padding: 5px 8px;
    position: absolute;
    top: -30px;
    left: 10px;
}

.itm__price-discount {
    font-weight: 800;
    color: #ac328d;
}</pre></body></html>