svg { display: initial; }

body {
    text-wrap: pretty;
}

.bg-noise {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: -1; opacity: 0.01;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}


.avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ccc;
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.product__variations {
    display: flex;
    gap: 16px;
}
.variation-color {
    height: 48px;
    width: 48px;
    border-radius: 9999px;
    padding: 4px;
    box-shadow: 0 0 0 3px var(--tm-border-color), 0 0 #0000;
    --tm-border-color: rgba(0,0,0,0);
    background-color: var(--tm-bg-color);
    --tm-bg-color: #fff;
}
.variation-color:hover {
    cursor: pointer;
}
.variation-color.active {
    --tm-border-color: rgba(0,0,0,1);
}

.product__card-variations {
    position: absolute;
    bottom: 1px;
    text-align: center;
    width: 100%;
}
.product__card .product__variations {
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}
.product__card .variation-color {
    height: 24px;
    width: 24px;
    box-shadow: 0 0 0 2px var(--tm-border-color), 0 0 #0000;
}

.product__card-info {
    height: 180px;
}

.product__favourite-img.inactive {
    fill: #ffffff;
}

.product__favourite-img.active {
    fill: #282828;
}


.news-card .product__card-img {
    width: 100%;
    object-fit: cover;
    background-color: #ffffff;
}

.modal-basket {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    z-index: 1000000000;
}
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000000000;
}
.lightbox-modal video {
    max-width: 80vw;
    max-height: 94%;
    width: auto;
    height: auto;
}
.lightbox-modal figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80vw;
    max-height: 80vh;
}
.lightbox-modal img {
    max-width: 80vw;
    max-height: 80vh;
}
.lightbox-modal figcaption {
    margin-top: 8px;
    color: #eee;
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
}
.lightbox-modal button {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    z-index: 10000000;
    cursor: pointer;
}
.lightbox-modal button svg {
    display: block;
    fill: #eee;
}

.loading {
    width: 24px;
    height: 24px;
    border: 4px solid rgb(123 123 123 / 0.25);
    border-bottom-color: rgb(123 123 123 / 0.75);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}





.video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.pointer:hover {
    cursor: pointer;
}



.order__coupon-label {
    display: flex;
}

.order__coupon-apply {
    border: none;
    padding: 16px;
    background-color: #000;
    color: #fff;
    width: 48px;
    font-size: 16px;
    line-height: 24px;
}

.account__list-mobile {
    display: none;
}
.account__list-desktop {
    display: block;
}
.account__list-desktop ul {
    border-right: 1px solid #E6E8EC;
}
@media (max-width: 767px) {
    .account__list-mobile {
        display: block;
    }
    .account__list-desktop {
        display: none;
    }
}

.columns {
    display: block;
}

.products__filter-menu {
    display: flex;
    flex-direction: column;
}



@media (min-width: 767px) {
    .columns {
        display: flex;
    }
}

.column {
    width: auto;
    max-width: 100%;
    padding: 1rem;
}

.banner {
    width: 100%;
    height: auto;
}
.modal__close {
    margin-left: 1rem;
}

.map {
    min-width: 430px;
    min-height: 320px;
    border: 1px solid black;
    margin: 0;
    padding: 0;
    overflow:hidden;
}

&:-webkit-autofill::first-line,
&:-webkit-autofill,
&:-webkit-autofill:hover,
&:-webkit-autofill:focus,
&:-webkit-autofill:active {
    font-family: "Montserrat", serif !important;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.scale-90 {
    transform: scale(.9);
}

.scale-100 {
    transform: scale(1);
}

.__jivoMobileButton {
    display: none;
}


.ignore svg.icon { width: 1em; height: 1em; }

.ignore .uk-accordion-title {
    font-weight: 500;
    font-size: 26px !important;
    line-height: 26px !important;
    margin-top: 13px;
}

.ignore .uk-accordion-content {
    font-size: 15px;
}

.ignore .uk-accordion-title::before {
    content: "";
    width: 26px;
    height: 26px;
    margin-left: 10px;
    float: right;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2226%22%20height%3D%2226%22%20viewBox%3D%220%200%2026%2026%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.0002%201.33337V24.6667M1.3335%2013H24.6668%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%
}

.ignore .uk-open>.uk-accordion-title::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2226%22%20height%3D%222%22%20viewBox%3D%220%200%2026%202%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1.3335%201H24.6668%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E")
}

.uk-modal ::-webkit-scrollbar {
    background-color: hsl(0, 0%, 100%);
    width: 4px;
}
.uk-modal ::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 75%);
}

.tm-underline-v1 {
  position: relative;
}
.tm-underline-v1::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 2px;
  width: 100%;
  transform-origin: bottom left;
  transform: scaleX(1);
  background-color: red;
  transition-property: transform;
  transition-duration: 300ms;
  content: '';
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.tm-underline-v1:hover::after {
  transform-origin: bottom right;
  content: '';
  transform: scaleX(0);
}
.tm-underline-v2 {
  position: relative;
}
.tm-underline-v2::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 2px;
  width: 100%;
  transform-origin: bottom left;
  transform: scaleX(0);
  background-color: red;
  transition-property: transform;
  transition-duration: 300ms;
  content: '';
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.tm-underline-v2:hover::after {
  transform-origin: bottom right;
  content: '';
  transform: scaleX(1);
}


.js-card {
    box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.05);
    padding: 5px;
    margin: 5px;
}

.js-card-body .js-title {
    font-size: 0.875rem;
 }

.js-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    padding-top: 10px;
}

.js-color-swatch {
    padding-left: 6px !important;
}

@media (min-width: 767px) {
    .js-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        padding: 10px;
        margin: 30px 15px;
    }

    .js-card-body .js-title { font-size: 1rem; }

    .js-card-body {
        padding: 10px;
        padding-top: 20px;
    }
    .js-color-swatch {
        padding-left: 12px !important;
    }


}
