@font-face {
    font-family: Inter;
    src: url('../font/Inter.woff2') format('woff2');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --font: #222;
    --font-primary: #2b6288;
    --bg: #fff;
    --primary: #5097c8;
    --secondary: #9ec5e1;
    --tertiary: #ecf3f9;
    --font-family: 'Inter', sans-serif;
    --box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.11);
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    opacity: 0.95;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--font-primary);
    font-family: var(--font-family);
}

body {
    width: 100%;
    background: var(--bg);
    color: var(--font-primary);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    font-optical-sizing: auto;
    font-style: normal;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}


#header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--bg);
    box-shadow: var(--box-shadow);
}

#header .header-nav {
    max-height: fit-content;
    border: none;
}

#header .header-nav .display-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    background: none;
    color: var(--font-primary);
}

#header .header-nav .display-nav1 {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0;
}

#header .header-nav .display-nav1 * {
    margin: 0;
    padding: 0;
    color: var(--primary);
    display: flex;
    gap: .25rem;
}

#header .header-nav .user-info,
#header .header-nav .blockcart {
    background: none;
    align-items: center;
    width: fit-content;
    font-size: 0.925rem;
    line-height: 1;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

#header .header-nav .cart-preview.active {
    background: none;
}

#header .header-nav #menu-icon,
#header .header-nav .display-nav .blockcart a,
#header .header-nav .display-nav .blockcart span,
#header .header-nav .display-nav .user-info span {
    display: flex;
    align-items: center;
    color: var(--primary);
    margin: 0;
    text-decoration: none;
    line-height: 1.5rem;
}

#header .header-nav .blockcart,
#header .header-nav .blockcart .header,
#header .header-nav .blockcart .header a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: var(--primary);
}

#header .blockcart .cart-products-count {
    font-size: 0.75rem;
    line-height: 1.5rem;
    color: var(--secondary);
}

#header .header-nav .display-nav2 {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
    padding: .75rem 0;
}

#header .header-nav .display-nav2 div {
    margin: 0;
    padding: 0;
}


#header .header-nav .display-nav .logo {
    width: auto;
    max-height: 2.75rem;
}

.search-widgets {
    width: 100%;
    margin: 0;
}

.search-widgets form {
    width: 100%;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid var(--primary);
    background: var(--primary);
}

.search-widgets form input {
    width: calc(100% - 3rem);
    border: none;
    background: var(--tertiary);
    color: var(--font-primary);
    padding: 0.5rem 1rem;
    font-family: var(--font-family);
    font-size: 0.85rem;
    line-height: 1.5;
    letter-spacing: 0.15px;
    min-height: 36px;
    outline: none;

    &::placeholder {
        color: var(--font-primary);
    }

}

.search-widgets form .icon {
    width: 3rem;
    height: 2.25rem;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-widgets form .icon svg {
    fill: var(--bg);
}

#header .header-top {
    width: 100%;
    position: relative;
    padding: 0;
}

#header .header-top .display-top .menu {
    padding: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-left: 0;
}

#header .mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0;
}

#header .mobile .mobile-cart ._desktop_user_info {
    display: none;
}

#header #menu-icon {
    display: flex;
    align-items: center;
    color: var(--primary);
    height: 50px;
    margin: 0;
    padding: 0;
    line-height: 1;
}

#header #menu-icon .material-icons,
#header #menu-icon i {
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    line-height: 2rem;
    text-align: center;
}

#mobile_top_menu_wrapper {
    width: 100%;
    min-height: calc(100dvh - 50px);
    padding: 0 2.5rem 0 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#_mobile_top_menu.mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    min-height: calc(100dvh - 50px);
    background: var(--bg);
    padding: 0;
}

#close-menu-out {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 2.5rem;
    height: 100%;
}

#_mobile_top_menu .menu-tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    line-height: 2.5rem;
}

#_mobile_top_menu .menu-tabs .tab {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    background: var(--tertiary);
    color: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
}

#_mobile_top_menu .menu-tabs .tab.active {
    background: none;
}

#_mobile_top_menu .level {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    padding: 0.25rem;
}

#_mobile_top_menu .menu.d-none,
#_mobile_top_menu .level.d-none {
    display: none;
}

#_mobile_top_menu .has-children:after {
    content: '';
    background: url(../img/arrow_down.svg);
    display: block;
    width: 1.5rem;
    height: 1.5rem;
}

#_mobile_top_menu .item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 0.5rem;
    height: 3rem;
    padding: 0 0.75rem;
    border-bottom: 1px solid var(--secondary);
    cursor: pointer;
}

#_mobile_top_menu .level a {
    text-decoration: underline;
    color: var(--font-primary);
}

#_mobile_top_menu .back {
    display: flex;
    align-items: center;
    background: var(--primary);
    color: var(--bg);
    justify-content: flex-start;
    height: 3rem;
    padding: 0 0.75rem;
}

#header .header-top .user-menu {
    width: 100%;
    margin: 0;
    padding: 0;
}

#header .user-menu .item {
    background: var(--font-primary);
    border-color: var(--bg);
}

#header .user-menu .item a {
    color: var(--bg);
}

#header .header-nav-full {
    background: var(--font-primary);
    color: var(--bg);
    padding: .5rem 0;
}

#header .header-nav-full p {
    margin: 0;
    color: var(--bg);
    text-align: center;
}

#wrapper {
    width: 100%;
    padding: 0;
    background: none;
    overflow-x: hidden;
    display: block;
    padding: 0 1.5rem;
}

#wrapper .container,
#wrapper .container .row {
    padding: 0;
    margin: 0;
}

#wrapper .breadcrumb {
    display: block;
    max-width: 100%;
    padding: 1rem 0 .5rem 0;
    margin: 0.5rem 0 1rem 0;
    overflow: auto;
    font-size: 0.852rem;
    color: var(--primary);
    overflow-x: scroll;
}

#wrapper .breadcrumb ol {
    display: inline-flex;
    list-style: none;
    gap: 0.25rem;
}

#wrapper .breadcrumb li {
    min-width: fit-content;
}

#wrapper .breadcrumb li::after {
    margin: 0;
    color: var(--secondary);
    content: '/';
}

#wrapper .breadcrumb li span {
    min-width: fit-content;
    color: var(--font-primary);
    font-weight: 500;
}

#wrapper .breadcrumb li a {
    text-decoration: none;
}

#wrapper .breadcrumb li a span {
    color: var(--primary);
    font-weight: 400;
}

#wrapper .breadcrumb li:last-child:after {
    display: none;
}

#whatsapp {
    position: fixed;
    z-index: 100;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
}

#footer {
    width: 100%;
    padding: 0;
    overflow-x: hidden;
}

.d-none {
    display: none;
}

@media screen and (min-width: 576px) {}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 992px) {

    .header-top .container,
    .header-top .container .header-top {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    #header .header-top #_desktop_top_menu {
        padding: 0;
        width: 100%;
        user-select: none;
    }

    #_desktop_top_menu .level_1 {
        padding: 0 calc((100% - 1400px)/2);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--primary);
        margin: 0;
    }

    #_desktop_top_menu .level_1 a {
        display: flex;
        align-items: center;
        color: var(--primary);
        padding: 0.75rem 0;
        font-size: 0.952rem;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease-in-out;

        &:hover {
            color: var(--font-primary);
        }
    }

    #_desktop_top_menu #menu-cart {
        text-transform: none;
        font-weight: 400;
        font-size: 0.85rem;
        color: var(--primary);
    }

    #_desktop_top_menu .submenu {
        width: 100%;
        position: fixed;
        padding: 3rem calc((100% - 1400px)/2);
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        font-size: .925rem;
        background: var(--tertiary);
    }

    #_desktop_top_menu .submenu.d-none {
        display: none;
    }

    #_desktop_top_menu .submenu a {
        display: block;
        width: fit-content;
        padding: 0.5rem 0;
        color: var(--primary);
        transition: all 0.3s ease;

        &:hover {
            text-decoration: underline;
            color: var(--font-primary);
        }
    }

    #_desktop_top_menu .submenu .node-children ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    #_desktop_top_menu .submenu .node-children ul li {
        width: calc(33.33%);
        padding: 0 .75rem;
    }

    #_desktop_top_menu .submenu .node-description * {
        color: var(--primary);
    }

    #_desktop_top_menu .submenu .node-description p {
        font-size: 0.85rem;
        line-height: normal;
    }

    #_desktop_top_menu .submenu .node-description strong {
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.75rem;
        font-size: 1.05rem;
    }

    #_desktop_top_menu .node-description a.btn-primary {
        width: fit-content;
        padding: 0.5rem 1rem;
        margin: 1.5rem 0 0 0;
        background: var(--primary);
        max-width: 100%;
        color: var(--bg);
        font-size: 0.85rem;
        white-space: initial;
        text-transform: none;
        font-weight: 500;
        text-align: center;

        &:hover {
            color: var(--bg);
            background: var(--font-primary);
            text-decoration: none;
        }
    }

    #wrapper .breadcrumb {
        overflow-x: hidden;
        margin: 1.5rem 0;
        padding: 0;
    }
}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1400px) {

    #header .header-nav .container,
    #header .header-nav-full .container,
    #wrapper .container,
    #footer .container {
        width: 1400px;
        margin: auto;
    }

    #header .header-top {
        overflow: hidden;
    }
}