/*@font-face {
    font-family: "Suisse Intl";
    src: url("../fonts/SuisseIntl-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("../fonts/SuisseIntl-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}*/

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    --main-black: rgba(0, 0, 0, 0.85);
    --main-gray: #929292;
    --button-gray: #dfdfdf;
    --main-orange: #ff5100;
    --white-gray: #f1f1f2;
}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1410px;
    }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.875rem;
}

.row {
    --bs-gutter-x: 1.875rem;
}

.g-0 {
    --bs-gutter-x: 0;
}

:where(.is-layout-flex) {
    gap: 1.875em;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    color: var(--main-black);
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

p, ul, ol {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

header#desktop-header {
    display: block;
}
header#mobile-header {
    display: none;
}

header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    position: relative;
}

header.sticky {
    position: fixed;
    transform: translateY(-10px);
    animation: stickyFadeIn 0.3s ease forwards;
    z-index: 9999;
}

header .top {
    padding: 10px 0;
    border-bottom: 1px solid var(--main-gray);
}

header .menu {
    padding: 0;
    list-style: none;
}

header .menu li {
    display: inline-block;
    margin-right: 20px;
}

header .menu li:last-child {
    margin-right: 0;
}

header .menu li a,
header .lang-switcher a {
    text-transform: lowercase;
    letter-spacing: 0.01em;
    transition: all .3s ease;
}

header .menu li a:hover,
header .lang-switcher a:hover {
    color: var(--main-orange);
}

header .top-right {
    display: flex;
    justify-content: flex-end;
}

.lang-switcher {
    margin-left: 22px;
}

header .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo-title {
    text-align: center;
    padding-top: 17px;
    padding-bottom: 17px;
}

header.sticky .logo-title {
    padding-top: 12px;
    padding-bottom: 5px;
}

.logo-title .logo {
    display: none;
}

.button {
    color: #f2f2f2;
    line-height: 1em;
    background-color: var(--button-gray);
    border: none;
    padding: 11px 23px;
    text-align: center;
    border-radius: 48px;
    font-weight: 600;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.button::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
    content: '';
    background: var(--main-black);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
    transform-origin: 100% 50%;
}

.button:hover::before {
    transform: scale3d(0,1,1);
    transform-origin: 0 50%;
}

.button:hover {
    color: var(--main-black);
}


.button-plain {
    border: 1px solid var(--main-black);
    color: var(--main-black);
    background: var(--main-black);
}
.button-plain::before {
    background: #ffffff;
}
.button-plain:hover {
    color: #ffffff;
}

@keyframes stickyFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


footer {
    padding: 53px 0 55px;
    background: #262626;
}

.footer-logo {
    margin-top: -1rem;
}

.footer-logo a {
    color: var(--white-gray);
    font-size: 4.5rem;
    line-height: 1.11em;
}

footer .footer-widget h3 {
    margin-bottom: 15px;
    color: var(--main-gray);
    font-size: 1em;
    line-height: 1.625em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 300;
}

footer .footer-widget p {
    margin-bottom: 2rem;
    color: var(--white-gray);
}

footer .footer-widget a {
    color: var(--white-gray);
}

footer .footer-widget ul {
    padding: 0;
    list-style: none;
}

footer .footer-widget ul li {
    color: var(--white-gray);
    text-transform: lowercase;
}

footer .bottom-row {
    margin-top: 144px;
}

footer .bottom-row .footer-widget p {
    margin-bottom: 0;
}

#page-title {
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-heading {
    font-weight: 300;
    font-size: 88px;
    line-height: 92px;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.single-autor-page .page-heading {
    text-transform: none;
    line-height: 96px;
    margin-bottom: 25px;
}

.page-title-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.autori-prostori-page #page-title .button {
    padding: 13px 32px;
}

.author-list {
    margin-bottom: 1rem;
}

.author-box {
    margin-bottom: 70px;
}

.author-box .author-slika {
    overflow: hidden;
}
.author-slika img {
    transition: all .6s ease;
}
.author-box:hover .author-slika img {
    transform: scale(1.1);
}

.author-name {
    letter-spacing: 0.01em;
    font-weight: 300;
    font-size: 1rem;
}

.default-page {
    padding-top: 50px;
    padding-bottom: 50px;
}

.default-page p {
    margin-bottom: 2rem;
}

.contact-page .page-heading {
    margin-top: 50px;
    margin-bottom: 50px;
}

.sub-heading {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
    font-weight: 300;
}

.contact-info {
    margin-top: 162px;
}

.contact-info p {
    margin-bottom: 20px;
}

#map {
    margin-top: 90px;
    margin-bottom: 85px;
}
#map iframe {
    height: 700px;
}

.form-input-div {
    margin-bottom: 20px;
}

.form-input-div input:not([type="submit"]),
.form-input-div textarea {
    color: #B0B0B0;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    border: 1px solid #B0B0B0;
    border-radius: 23px;
    line-height: 20px;
    box-shadow: none;
    padding: 12px 28px 14px;
}

.form-input-div input:not([type="submit"])::placeholder,
.form-input-div textarea::placeholder {
    color: #B0B0B0;
}

.form-input-div.bigger-margin {
    margin-bottom: 32px;
}

.contact-page form {
    margin-top: -85px;
}

.wpcf7-not-valid-tip {
    margin-left: 0.5em;
}

.about-page .page-heading {
    margin-top: 50px;
    margin-bottom: 75px;
}

.about-intro {
    margin-top: 75px;
    margin-bottom: 85px;
}

.up-heading {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.333em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-intro .up-heading {
    margin-bottom: 5px;
}

.about-intro .page-heading {
    line-height: 1.0909em;
    margin-top: 0;
    text-transform: none;
    letter-spacing: -0.04em;
}

.about-text {
    margin-bottom: 60px;
}

.about-text .row {
    align-items: flex-end;
}

.about-text p {
    margin-bottom: 24px;
}

#brands {
    margin-bottom: 95px;
    border-top: 1px solid var(--main-gray);
    border-left: 1px solid var(--main-gray);
}

#brands .row > div {
    border-right: 1px solid var(--main-gray);
    border-bottom: 1px solid var(--main-gray);
}

.brand-logo {
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.struja-art-page .page-heading,
.catalogs-page .page-heading,
.news-page .page-heading {
    margin-top: 50px;
    margin-bottom: 65px;
}

#magazines {
    margin-bottom: 20px;
}

.mag {
    margin-bottom: 70px;
}

.mag .image-container {
    margin-bottom: 14px;
}

.mag h4 {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5em;
    margin: 0;
}

.single-post-title {
    margin-top: 60px;
}

.meta {
    color: var(--main-gray);
    margin-bottom: 10px;
    line-height: 100%;
}

.single-post-title h1 {
    font-weight: 300;
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: 0;
    margin-bottom: 40px;
}

.single-post-page .cover {
    margin-bottom: 75px;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--main-gray);
}

.post-content .wp-block-group,
.post-content .pc-cont > figure {
    margin-bottom: 75px;
    margin-top: 75px;
}

.single-post-page .single-post-below {
    padding-top: 24px;
    padding-bottom: 90px;
}

.single-post-below .share span {
    display: inline-block;
    font-size: 14px;
    margin-right: 14px;
}

.share a {
    display: inline-block;
    margin-right: 22px;
}

.post-nav {
    display: flex;
    justify-content: flex-end;
}

.prev-post {
    margin-right: 40px;
}

.post-nav a {
    font-size: 14px;
    line-height: 24px;
}

a.disabled span {
    color: var(--main-gray);
}

.prev-post img {
    margin-right: 15px;
}

.next-post img {
    margin-left: 15px;
}

.news-page .cover {
    margin-bottom: 45px;
}

#featured-post h3 {
    font-weight: 300;
    font-size: 32px;
    line-height: 1.1875em;
    letter-spacing: 0;
}

.feat-text p {
    margin-bottom: 1.5rem;
}

#older-posts {
    margin-top: 80px;
    padding-bottom: 20px;
}

#older-posts h5 {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.333em;
    letter-spacing: 0;
    margin-bottom: 70px;
}

#older-posts .meta {
    margin-top: 20px;
    margin-bottom: 10px;
}

#older-posts .thumbnail,
#home-news .thumbnail {
    overflow: hidden;
}

#older-posts .thumbnail img,
#home-news .thumbnail img {
    transition: transform .6s ease;
}

#home-news a:hover img {
    transform: scale(1.1);
}

.mag-slider .slick-dots {
    bottom: 120px;
}

.portrait-slider .slick-dots {
    bottom: 24px;
}

.mag-slider .slick-dots li,
.portrait-slider .slick-dots li {
    width: 11px;
    height: 11px;
    margin: 0 4px;
}

.mag-slider .slick-dots li button,
.portrait-slider .slick-dots li button {
    width: 11px;
    height: 11px;
    padding: 0;
}

.mag-slider .slick-dots li button:before,
.portrait-slider .slick-dots li button:before {
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    width: 11px;
    height: 11px;
    content: '';
    opacity: 1;
}

.mag-slider .slick-dots li.slick-active button:before,
.portrait-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #d9d9d9;
}

.catalogs-page .mag-slider .slick-dots li button:before {
    border: 1px solid #989898;
}
.catalogs-page .mag-slider .slick-dots li.slick-active button:before {
    background: #989898;
}

#author-projects {
    margin-top: 90px;
}

#author-projects .up-heading {
    margin-bottom: 25px;
}

.projects-slider {
    position: relative;
}

.projects-slider-nav {
    position: absolute;
    right: 0;
    display: none;
    top: -60px;
}

.projects-slider-nav .counter,
.home-slider-nav .counter {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--main-gray);
    margin: 0 25px;
}

.projects-slider-nav img,
.home-slider-nav img {
    margin-top: -4px;
}

.image-container {
    overflow: hidden;
}
.image-container img {
    transition: transform .6s ease;
}
.image-container:hover img {
    transform: scale(1.1);
}

.psi-box {
    cursor: pointer;
}

.psi-box .image {
    margin-bottom: 18px;
    overflow: hidden;
}

.psi-box .image img {
    filter: grayscale(100%);
    transition: filter .3s ease, transform .6s ease;
}
.psi-box:hover .image img {
    transform: scale(1.1);
}

.psi-box .title {
    letter-spacing: 0.01em;
    color: var(--main-gray);
    transition: all .3s ease;
}

.psi-box.active .title {
    color: var(--main-black);
    text-decoration: underline;
}

.psi-box.active .image img {
    filter: none;
}

.projects-slider-items {
    margin: 0 -15px 85px;
}

.projects-items {
    margin-bottom: 85px;
}

.projects-slider-items .slick-slide {
    margin: 0 15px;
}

.thumbs .more {
    position: relative;
}

.thumbs .more .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .7);
    color: #000000;
    font-size: 86px;
    line-height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galleries-wrapper .proj-title h4 {
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: 0;
    margin-bottom: 35px;
}

.galleries-wrapper .thumbs > * {
    margin-bottom: 30px;
}

.project-gallery {
    opacity: 0;
    transform: scale(0.85);
    visibility: hidden;
    transition: opacity 300ms ease, transform 300ms ease;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.project-gallery.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    position: relative;
    z-index: 2;
}

.single-author-bottom-nav {
    padding-bottom: 65px;
    display: flex;
    justify-content: space-between;
}

.single-author-bottom-nav a {
    font-size: 14px;
    line-height: 24px;
}

.authors-nav .next-link {
    margin-left: 40px;
}

.back-to-authors-page img,
.authors-nav .prev-link img {
    margin-right: 14px;
    margin-top: -2px;
}

.authors-nav .next-link img {
    margin-left: 14px;
    margin-top: -2px;
}

.custom-single-product {
    margin-top: 65px;
}

.custom-single-product .product-title {
    font-weight: 300;
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: 0;
    margin: 0;
}

span.product-title,
span.product-box-title {
    text-transform: lowercase;
}

.custom-single-product .product-price {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.product-full-description {
    width: 53.333%;
    margin-bottom: 35px;
}

.product-specs {
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid var(--main-gray);
    border-bottom: 1px solid var(--main-gray);
}

.product-specs h3 {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.1875em;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.product-specs .attr_name {
    color: var(--main-gray);
}

#order-product {
    margin-top: 80px;
}

.related-products {
    margin-top: 140px;
    padding-bottom: 60px;
}

.related-products .up-heading {
    margin-bottom: 40px;
}

.product-box {
    margin-bottom: 28px;
}

.product-box .product-image {
    overflow: hidden;
}
.product-box .product-image > img {
    transition: all .6s ease;
}
.product-box > a:hover > .product-image > img {
    transform: scale(1.1);
}

.product-below-image {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

.product-box-price {
    letter-spacing: 0.01em;
}


#popup-order-form {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .7);
    z-index: 9999999;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    display: none;
}

#popup-order-form.active {
    display: flex;
}

#order-form {
    position: relative;
    background: #ffffff;
    max-width: 572px;
    min-height: 540px;
    padding: 70px 99px 80px;
}

#close-order-popup {
    position: absolute;
    right: 20px;
    top: 19px;
}

#order-form h4 {
    margin-bottom: 25px;
}

#order-form input:not([type=submit]), #order-form textarea {
    font-size: 14px;
    color: var(--main-gray);
    padding: 6px 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    border: 1px solid var(--main-gray);
    border-radius: 48px;
    box-shadow: none;
    line-height: 20px;
    margin-bottom: 13px;
    width: 100%;
}

#order-form textarea {
    border-radius: 17px;
    height: 100px;
}

#order-form input:not([type=submit])::placeholder, #order-form textarea::placeholder {
    color: var(--main-gray);
}

#order-form input[type=submit] {
    font-size: 14px;
    padding: 10px 28px;
}

#confirm-order-message {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    padding-top: 35%;
}

.home-page #fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 110px;
    padding-top: 130px;
    z-index: -4;
}

#fixed h1 {
    font-weight: 300;
    font-size: 520px;
    line-height: 1em;
    letter-spacing: 0;
    text-indent: -22px;
    text-align: center;
}

@media screen and (max-width: 1400px) {
    #fixed h1 {
        font-size: 400px;
    }
}

.home-slider-container {
    margin-top: 710px;
    margin-bottom: 105px;
}

.home-page {
    background: #ffffff;
}

.home-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.home-page #brands {
    margin-top: 26px;
    margin-bottom: 110px;
}

#featured-products {
    margin-top: 105px;
    margin-bottom: 100px;
}

#featured-products .up-heading {
    margin-bottom: 35px;
}

#featured-products .product-box {
    margin-bottom: 70px;
}
.all-products-cta, .all-news-cta {
    justify-content: center;
    text-align: center;
}

#home-about-us .page-heading {
    text-transform: none;
    margin-bottom: 25px;
    margin-top: -7px;
}

#home-about-us p {
    max-width: 320px;
    margin-bottom: 36px;
}

.readmore {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 0;
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    display: inline-block;
    position: relative;
}
.readmore:hover {
    text-decoration: none;
}
.readmore::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: currentColor;
    transition: width 0.6s ease;
    pointer-events: none;
}

.readmore:hover::after {
    width: 100%;
}

#home-autori a.button {
    margin-top: 40px;
}

#home-autori {
    overflow: hidden;
    margin-bottom: 110px;
}
/*
.autor-list {
    display: block; /* override za .row */
/*    animation: scroll-left linear infinite;
    animation-duration: var(--scroll-duration);
    will-change: transform;
}
/*
.autor-list .col-6, .autor-list .col-lg-2 {
    float: left;
}
*/

.autor-list {
    overflow: hidden;
    margin-top: 80px;
}

.autor-track {
    display: flex;
    flex-wrap: nowrap; /* ključna stvar */
    /*animation: scroll-left linear infinite;
    animation-name: scroll-left;
    animation-duration: var(--scroll-duration);*/
    will-change: transform;
    gap: 30px;
}

.autor-track > .autor-col {
    flex: 0 0 auto; /* sprečava flex širenje */
    max-width: 16.6667%; /* 2 od 12 kolona */
}

@media (max-width: 767.98px) {
    .autor-track > .autor-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--scroll-distance));
    }
}

#home-news {
    padding-bottom: 100px;
}

#home-news .up-heading {
    margin-bottom: 25px;
}

#home-news .thumbnail, .search-results .post-type-post .thumbnail {
    margin-bottom: 40px;
}

#home-news .meta, .search-results .post-type-post .meta {
    margin-bottom: 15px;
}

#home-news h5, .search-results .post-type-post h5 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
}

#home-news .custom-excerpt, .search-results .post-type-post .custom-excerpt {
    margin-bottom: 30px;
}

#home-news .button {
    margin-top: 40px;
}

.main-cats-container {
    border-bottom: 1px solid var(--main-gray);
    padding-bottom: 20px;
}

.main-categories-links {
    display: flex;
    justify-content: space-between;
    text-transform: lowercase;
}

.main-categories-links .active {
    font-weight: 600;
}

.woo-category-page {
    padding-bottom: 95px;
}

.woo-category-page .page-heading {
    margin-top: 65px;
    margin-bottom: 65px;
}

#filter-results {
    min-height: 80px;
    padding-top: 24px;
    padding-bottom: 36px;
}

.chosen-filters .bapf_sfilter, .struja-reset-filters {
    margin: 0;
}

#filter-results .chosen-filters .braapf_unselect_all {
    display: none !important;
}

.chosen-filters .bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a {
    border: none;
    color: var(--main-black);
    padding: 0;
    font-size: 16px;
    margin-right: 23px;
}

.chosen-filters .bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a:before {
    color: var(--main-black);
    right: -15px;
    top: 0;
    font-size: 15px;
    font-weight: 600;
    width: auto;
    height: auto;
}

.bapf_sfilter.bapf_button_light.struja-reset-filters .bapf_button {
    color: var(--main-black);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.1875em;
    letter-spacing: 0;
    text-decoration: underline;
    padding: 0;
    border: none;
}

.woocommerce-ordering .orderby {
    cursor: pointer;
    text-align: right;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    width: 100%;
    text-transform: lowercase;
}

.woo-category-page .product-box {
    margin-bottom: 70px;
}

.woo-below-products-nav {
    border-top: 1px solid var(--main-gray);
    padding-top: 16px;
}

.product-counter {
    font-size: 14px;
}

.woo-pagination .arrow-left-p {
    margin-right: 15px;
}

.woo-pagination .arrow-right-p {
    margin-left: 15px;
}

.woo-pagination .page-numbers {
    font-size: 14px;
    color: var(--main-gray);
    margin: 0 5px;
}

.woo-pagination .page-numbers.dots {
    margin: 0 17px;
}

.woo-pagination .page-numbers.current {
    color: var(--main-black);
}

.shop-sidebar .berocket_single_filter_widget {
    border-top: 1px solid var(--main-gray);
    margin: 0;
}

.shop-sidebar .bapf_sfilter {
    margin: 0;
    padding: 16px 0;
    cursor: pointer;
}

.shop-sidebar .bapf_head h3 {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    color: var(--main-black);
}

.shop-sidebar .bapf_body {
    margin-top: 14px;
}

.shop-sidebar .bapf_radio_chck ul li input[type=checkbox] {
    border: 1px solid var(--main-black);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 11px;
}

.shop-sidebar .bapf_radio_chck ul li input[type=checkbox]:checked {
    background: var(--main-gray);
}

.shop-sidebar .bapf_radio_chck ul li input[type=checkbox]:checked:after {
    display: none;
}

.shop-sidebar .fa-chevron-down::before {
    content: url("../img/icons/chevron-down.svg");
}

.shop-sidebar .fa-chevron-up::before {
    content: url("../img/icons/chevron-up.svg");
}

.shop-sidebar .bapf_slidr_main.ui-widget-content .ui-slider-range,
.shop-sidebar .berocket_filter_price_slider.ui-widget-content .ui-slider-range {
    background: var(--main-black);
}

.shop-sidebar .bapf_slidr_jqrui .bapf_slidr_main {
    margin-bottom: 18px;
}

.bapf_slidr_main.ui-widget-content .ui-slider-handle,
.berocket_filter_price_slider.ui-widget-content .ui-slider-handle,
.slide.default .bapf_slidr_main .ui-state-default,
.slide.default .bapf_slidr_main .ui-widget-header .ui-state-default,
.slide.default .bapf_slidr_main.ui-widget-content .ui-state-default,
.slide.default .berocket_filter_price_slider .ui-state-default,
.slide.default .berocket_filter_price_slider .ui-widget-header .ui-state-default,
.slide.default .berocket_filter_price_slider.ui-widget-content .ui-state-default {
    background: var(--main-black);
    top: -6px;
}
.shop-sidebar .bapf_slidr_main.ui-widget-content,
.shop-sidebar .berocket_filter_price_slider.ui-widget-content {
    height: 2px;
    background: #EAECEC;
}
.shop-sidebar .ui-slider-horizontal .ui-slider-range {
    height: 2px;
}
.shop-sidebar .bapf_slidr_all {
    position: relative;
}
.ui-slider-horizontal .ui-slider-handle {
    margin-left: 0;
}
.shop-sidebar .bapf_slidr_main span:last-child {
    margin-left: -14px;
}

#search-form-popup {
    display: none;
    position: fixed;
    top: 120px;
    background: #ffffff;
    left: 0;
    width: 100%;
    height: calc(100vh - 120px);
    z-index: 99;
}
#search-form-popup.active {
    display: block;
}
#search-form-popup .container {
    position: relative;
}
#close-search-popup {
    position: absolute;
    right: 20px;
    top: 50px;
}
.search-form {
    padding-top: 30vh;
}
.search-input {
    font-size: 40px;
    line-height: 1.2em;
    border: none;
    border-bottom: 1px solid var(--main-gray);
    background-image: url("../img/icons/search.svg");
    background-repeat: no-repeat;
    background-position: right center;
    width: 100%;
    background-size: 29px;
    padding: 5px 0;
    outline: none;
}
.search-input::placeholder {
    color: var(--main-black);
}
.search-query {
    margin-top: 45px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--main-gray);
    margin-bottom: 80px;
}
.search-results {
    padding-bottom: 80px;
}
.search-results .post-type-post {
    margin-bottom: 30px;
}

.show-desk {
    display: flex;
}

#desktop-header .wpml-ls-legacy-list-horizontal {
    padding: 0;
    border: none;
}
#desktop-header .wpml-ls-legacy-list-horizontal li:not(:last-child) {
    margin-right: 4px;
}

#desktop-header .wpml-ls-legacy-list-horizontal li:not(:last-child) a::after{
    content: "/";
    margin-left: 4px;
    transition: none;
    color: var(--main-black);
    vertical-align: middle;
}
#desktop-header .wpml-ls-legacy-list-horizontal li:not(:last-child) a:hover::after {
    color: var(--main-black);
}
#desktop-header .wpml-ls-legacy-list-horizontal a {
    padding: 0;
    line-height: 1em;
}