<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    font-size: 14px;
    overflow-x: hidden !important;
}

body {
    margin: 0px;
}

.product-wrapper-inner {
    width: 100%;
    display: inline-flex;
    padding: 10px;
    margin-top: 10px;
    box-sizing: border-box;
}

.product-photo {
    width: 100%;
    margin: 0px 0px 10px 0px;
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-photos-wrapper {
    width: 50%;
    gap: 10px;
}

.photos-desktop-wrapper {
    display: grid;
    grid-auto-rows: 1fr;
}

.product-info-wrapper {
    width: 50%;
    max-width: 465px;
    margin-left: 25px;
}

.sticky-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
}

.sku-block {
    margin-top: -15px;
}

.page-product-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.page-product-info-wrapper a {
    text-decoration: none !important;
}


.product-colours-wrapper {
    height: 7rem;
    width: 100%;
}

.colors-wrapper {
    height: 25px;
    width: 100%;
    display: inline-flex;
    gap: 10px;
}

.color-rectangle:hover {
    stroke: #000;
    stroke-width: 1;
}

.color-rectangle .selected-color {
    stroke: #000;
    stroke-width: 1;
}


.product-sizes-wrapper {
    width: 100%;
}

.sizes-wrapper {
    flex-flow: wrap;
    width: 100%;
    display: inline-flex;
    cursor: pointer;
    gap: 10px;
    height: 80px;
}

.size-wrapper {
    border: 1px solid #000;
    display: flex;
    padding: 4px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.1s;
    justify-content: flex-start;  
    height: fit-content;  
}
.other-sizes{   
    gap: 5px;
    font-family: "Roboto Condensed";
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.1s cubic-bezier(0, 1, 0, 1); 
}
.size-wrapper:hover &gt; .other-sizes {
    overflow: hidden;
    max-height: 1000px;
    display: flex;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.selected-size {
    color: #fff;
    background: #000;
}
.rus-size{
    font-size: 24px;
    line-height: 24px;
    font-family: "Roboto Condensed Light";
    margin-top: -3px;
    text-shadow: -0.1px 0 black, 0 0.1px black, 0.1px 0 black, 0 -0.1px black;
    }

.padding-block{
    height: 10px;
}
.foreign-size, .size-label, .other-size-label{
    font-size: 12px;
    line-height: 12px;
}
.other-size-container{
    display: flex;
    gap: 10px;
}
.other-size-label{
    opacity: 0.5;
}
.size-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.size-info-wrapper p {
    margin: 0;
}

.main-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-info p {
    margin: unset;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
    color: #000;
}

#add-to-cart-button {
    /*    width: 100%;
    margin: 20px 0px 0px 0px;
    display: flex;
    min-width: 20px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;*/
}

.add-to-cart-button-style {
    width: 100%;
    margin: 20px 0px 0px 0px;
    display: flex;
    min-width: 20px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

hr {
    margin: 10px 0px 20px 0px;
    color: #ababab;
    width: 100%;
}

ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

ul li:before {
    content: "• ";
    font-size: 10pt;
}

.collapsible-wrapper {
    width: 100%;
}

.collapsible-content {
    margin-top: 15px;
    margin-bottom: 10px;
}

.product-description {
    margin: 0px;
}

.collapsible {
    margin: 0;
}

.suggested-products {
    margin: 2rem 10px 3rem 10px;
}

.suggested-products-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 0.5fr));
    grid-gap: 10px;
    margin-top: 20px;
}


/* photos slider */

.photos-mobile-wrapper {
    display: none;
}

.photos-slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.slider-photo-wrapper {
    display: none;
}

.photos-slideshow-prev,
.photos-slideshow-next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-position: center;
    background-size: 17px;
    background-repeat: no-repeat;
    background-image: url(../img/arrow.png);
    filter: invert(1);


}

.photos-slideshow-prev {}

.photos-slideshow-prev:hover,
.photos-slideshow-next:hover {}

.photos-slideshow-next {
    right: 0;
    rotate: 180deg;
    border-radius: 3px 0 0 3px;
}

.slider-photo-wrapper img {
    width: 100%;
}

/* sizes window */


#sizes-open-button {
    cursor: pointer;
    text-decoration: underline;
}

#product-sizes-window {
    display: none;
    width: 454px;
    flex-direction: column;
    position: fixed;
    top: 20vh;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #000;
}

#size-request-window {
    display: none;
    width: 470px;
    flex-direction: column;
    position: fixed;
    top: 20vh;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #000;
}



#subscribe-on-product-button {
    margin-top: 5px;
}

#subscribe-on-product-button:hover {
    color: #fff;
    background: #000
}

#request-size-open-button {
    cursor: pointer;
    display: block;
    margin-top: 15px;
    text-decoration: underline;
}

.window-sizes-inner {
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    align-self: stretch;
    background: #fff;
}

.window-sizes-wrapper {
    width: 100%;
    -webkit-box-sizing: border-box;
}

.sizes-name-wrapper {
    padding: 0px 20px;
}

.header-row {
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0px 50px 0px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
}

.short-header {
    padding: 0px 30px 0px 20px;
}

.content-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #ababab;
}

.content-row span {
    width: 32px;
    text-wrap: nowrap;
    padding: 15px 0px;
}

.content-row .left-element {
    width: 46px;
    margin-left: 20px;
}

.content-row .right-element {
    width: 46px;
    margin-right: 20px;
}

.row-shorten .left-element {
    width: 33px;
}

.row-shorten .right-element {
    width: 32px;
}

.size-notification-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    padding: 30px;
}

.notification-product-wrapper {
    display: flex;
    gap: 10px;
}

.notification-product-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notification-product-photo-wrapper {
    width: 95px;
}

.notification-product-photo-wrapper img {
    width: 100%;
}

.notification-size-selection {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 10px;
}

.notification-size-wrapper {
    border: 1px solid #000;
    display: flex;
    padding: 5px 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.notification-size-wrapper:hover {
    color: #fff;
    background: #000;
}

.size-notification-wrapper input[type="text"] {
    margin-top: 10px;
}

.email-input-wrapper {
    margin-top: -5px;
    display: flex;
    flex-direction: column;
}

#full-screen-image-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
}

#full-screen-image-wrapper.active {
    display: flex !important;
}

#full-screen-image-wrapper .close-icon-wrapper {
    all: unset;
    position: absolute;
    top: 15px;
    right: 15px;
}

#full-screen-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
}

/* media 768*/
@media(max-width: 768px) {

    #product-sizes-window,
    #size-request-window {
        width: unset;
    }

    .photos-desktop-wrapper {
        display: none;
    }

    .photos-mobile-wrapper {
        display: block;
    }

    .product-wrapper-inner {
        display: block;
        width: unset;
        margin-top: 0;
    }

    .product-info-wrapper {
        margin-top: 10px;
        width: unset;
        max-width: unset;
        margin-left: unset;
    }

    .product-photos-wrapper {
        width: unset;
    }

    .suggested-products-wrapper {
        justify-content: center;
    }
    .main-info{
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    .price{
        margin: 0;
    }
    .prices-inner .price:first-of-type{
        margin-right: 10px;
    }
    .sticky-info{
        gap: 25px;
    }
}</pre></body></html>