﻿.ProductsDropdown {
    flex-direction: column;
    position: relative;
    height: 100%;
}

.categories {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: #025182;
    padding: 0 10px;
}

.menu-pages {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 0 10px;
}

.ProductsDropdown .icon-menu, .hamburger .icon-menu {
    font-size: 2.6rem;
    color: #fff;
}


.dropdown-component, .dropdown-component ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

    .dropdown-component ul {
        padding-left: 20px;
    }

    .dropdown-component ul {
        margin-top: 4px;
    }

    .dropdown-component li {
        background-color: #A0A0A0;
    }

.dropdown-component {
    position: absolute;
    top: 100%;
    /*min-width:100%;*/
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

    .dropdown-component i {
        color: var(--accent-text-color);
    }

    .dropdown-component li a {
        display: block;
        color: white;
        position: relative;
        text-decoration: none;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        cursor: pointer;
        transition: 0.3s ease-in-out;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-size: 13px;
        font-weight: normal;
        position: relative;
        line-height: 23px;
    }

        .dropdown-component li a:hover {
            color: #025182;
        }

    .dropdown-component a {
        /*border-bottom: 1px dashed #cdcdcd;*/
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        /*padding:0px 6px;
        border-radius:4px;*/
    }

li.dropdown-active {
    border-bottom: none;
}

.dropdown-component li a:hover, .dropdown-component a.selected {
    color: #555;
    background: #f5f5f5;
}



.has-sub-droupdown i {
    width: 40px;
    height: 22px;
    padding: 0 2px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    color: #fff;
}

    .has-sub-droupdown i:hover {
        color: #555;
        background: #f5f5f5;
    }

.sub-dropdown {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    /*opacity: 0;*/
}

.has-sub-droupdown:not(.dropdown-active) > .sub-dropdown {
    /*max-height: 0 !important;*/
}

.dropdown-active > .sub-dropdown {
    height: auto;
    opacity: 1;
    display: block;
}

.filter-category {
    font-weight: bold;
    margin: 10px 0 5px 0;
    display: inline-block;
}

.space-between {
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}




.menu-dropdown {
    position: relative;
    z-index: 999;
}

    .menu-dropdown .dropdown-tree-input {
        color: #337ab7;
        transition: 0.4s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
    }

    .menu-dropdown .dropdown-component li {
        background: transparent;
        margin: 4px 0;
    }

    .menu-dropdown .dropdown-component {
        z-index: 999;
        background: #DDDDDD;
        border-radius: 4px;
        padding: 10px;
    }

        .menu-dropdown .dropdown-component li a {
            margin-right: 0;
            padding: 4px 10px;
            font-size: 1rem;
            color: #025182;
            border-radius: 4px;
        }

            .menu-dropdown .dropdown-component li a:hover {
                background: #025182;
                color: #fff;
            }

        .menu-dropdown .dropdown-component li .dropdown-item {
            width: max-content;
            padding: 0;
        }

.ProductsDropdown .dropdown-component {
    padding: 0;
    border-radius: 0;
}

    .ProductsDropdown .dropdown-component .dropdown-item .dropdown-item-expand {
        height: 23px;
    }

.header-menu-news {
    position: relative;
}

    .header-menu-news span {
        color: #337ab7;
        transition: 0.4s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
    }

.newsletter-wrap {
    position: absolute;
    margin-top: 10px;
    top: 100%;
    right: 0;
    z-index: 999;
}

.newsletter {
    display: grid;
    grid-row-gap: 10px;
    justify-content: center;
    align-content: center;
    background: #DDDDDD;
    border-radius: 4px;
    padding: 10px;
}

    .newsletter .btn {
        background: #025182;
    }



.dropdown {
    position: absolute;
    background: var(--accent-color);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    top: 100%;
    right: 0px;
    box-shadow: 0 2px 28px 0 rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.15s ease-in-out;
}


.dropdown-items {
    display: flex;
    flex-direction: column;
}



.dropdown-item:hover {
    color: var(--secondary-accent-color);
    padding-left: 5px;
}

.newsletter_success #newsletter_response {
    color: green;
}

.newsletter_fail #newsletter_response {
    color: red;
}

#newsletter_response {
    padding: 5px 0px;
}

.error {
    color: red;
}


body {
    margin: 0;
}

.products-wrapper {
    display: flex;
    flex-wrap: wrap;
    overflow-y: hidden;
    min-height: 400px;
    margin: 10px;
}

.k-listview {
    border: none;
}

@keyframes product-load {
    from {
        transform: scale(0.1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.03);
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.product-filters label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .product-filters label input {
        margin-right: 10px;
    }

.product-filter-section {
    padding: 5px 10px 10px 10px;
    margin: 5px 0px 5px 0px;
    box-shadow: 0px 2px 12px 0px rgb(111 111 111 / 20%);
    transition: 0.3s !important;
}

.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5px;
    margin: 8px;
    box-shadow: 0px 2px 12px 0px rgba(111, 111, 111, 0.2);
    transition: 0.3s !important;
}

.product-price s {
    text-decoration: line-through;
}

.produce-price--sup {
    font-size: 12px !important;
}

.special-price-container {
    position: absolute;
    top: 10px;
    background-color: red;
    color: white;
    font-weight: bold;
    width: 50%;
    padding: 5px;
    text-align: center;
    box-shadow: 0px 2px 12px 0px rgba(111, 111, 111, 0.2);
    left: -5px;
}

.content{
    min-height: 500px;
}

.full-row .special-price-container {
    width: 15%;
}
    .special-price-container:last-child .special-price {
        border-bottom-right-radius: 3px;
        box-shadow: 0 2px 6px -2px rgb(0 0 0 / 40%);
    }

    .special-price-container:first-child .special-price {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

.product-item a, .product-item img {
    align-items: center;
    text-align: center;
}

.category-item {
    align-items: center;
    flex: 1 0 25%; /*grow | shrink | basis */
    max-width: calc(25% - 10px);
    max-height: 220px;
}

.category-item-home {
    align-items: center;
    flex: 1 0 16.6%; /*grow | shrink | basis */
    max-width: calc(16.6% - 10px);
}

.full-row .product-item {
    border-bottom: 1px solid #DDD;
    padding: 5px 10px;
    margin: 5px 15px;
    width: 100%;
    flex-direction: row;
}

.product-image-wrapper {
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.product-item > img {
    object-fit: contain;
    width: 200px;
    height: 175px;
}

.product-details {
    display: flex;
    flex-direction: column;
    text-align: center;
}


.product-price {
    font-weight: bold;
    font-size: 1.4rem;
}

.product-widgets {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 20px;
    top: 0;
    bottom: 0;
    justify-content: center;
    transform: translateX(70px);
    transition: 0.6s ease-out;
}

.product-image-wrapper:hover .product-image {
    transform: scale(1.1);
}

.product-image-wrapper:hover .product-widgets {
    transform: translateX(0px);
}


.product-widgets div {
    margin: 4px 0;
    background: white;
    color: #999;
    width: 40px;
    height: 40px;
    display: flex;
    transition: 0.3s;
}

    .product-widgets div:hover {
        color: white;
        background-color: #e6c302;
    }

    .product-widgets div i {
        margin: auto;
    }

.product-title a {
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

    .product-title a:hover {
        color: #e6c302;
    }

.product-list-wrapper {
    width: 100%;
    display: flex;
}

.product-list {
    width: 100%;
}

.product-categories {
    flex: 0 0 300px;
    padding: 0 10px;
}

.price-slider {
    width: 100%;
    margin-bottom: 20px;
}

.k-tick .k-label {
    display: none;
}

div[data-quantity="0"] {
    display: none;
}

.add-cart {
    background-color: #025182;
    border: none;
    color: #FFFFFF;
    height: 30px;
    border-radius: 4px;
    margin-top: 4px;
    width: 100%;
}

.product-description {
    white-space: pre-wrap;
}


a {
    color: inherit;
    transition: 0.4s;
    text-decoration: none;
}


.content {
    margin: auto;
}

.content_width {
    width: 100%;
    margin: auto;
    border-left: solid 1px rgba(89, 89, 97, 0.22);
    border-right: solid 1px rgba(89, 89, 97, 0.22);
}




.header {
    display: flex;
    align-content: space-between;
}

.ProductsDropdown {
    width: 250px;
}

.nav {
    justify-content: space-between;
}

nav, .nav {
    background-color: #808050;
}

    .nav menu {
        width: 100%;
    }

    nav .k-input {
        white-space: normal;
        height: 100% !important;
    }

    nav .k-i-close {
        line-height: 100% !important;
        top: unset !important;
        height: 100% !important;
        right: 24px !important;
    }

.ProductsLink {
    text-decoration: none;
}

.ProductsDropdown {
    display: flex;
}

    .ProductsDropdown .k-dropdowntree .k-dropdown-wrap {
        background-color: #025182;
        background-image: linear-gradient(#0d71af,#025182);
        color: white;
    }

.banner-wrapper {
    margin-bottom: 10px;
}

.category {
    display: flex;
    flex-direction: column;
    border-top: solid 1px #DDDDDD;
    border-bottom: solid 1px #DDDDDD;
    margin-bottom: 30px;
}

    .category:last-of-type {
        margin-bottom: 0px;
    }

.category-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-item, .category-item-home {
    width: 180px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 5px;
    margin: 5px;
}

.category-item-img {
    width: 170px;
    height: 175px;
    object-fit: contain;
}

.product-description {
    display: none;
}

.price-Tva {
    font-size: 10px;
    color: #333;
}

.product-image-gallery {
    width: 50%;
}

.product-page {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
    margin-bottom: 10px;
}


.buy-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.buy-buttons {
    display: flex;
    flex-direction: column;
}

.buy-wrap > div {
    width: 50%;
}

@media (min-width: 768px) {
    .full-row .product-item {
        width: 100%;
        flex-direction: row;
        height:max-content;
    }

    .product-item {
        width: 100%;
    }

    .full-row .producer-info {
        flex-direction: column;
        margin: 12px 0;
        height: 40%;
        text-align: center;
    }

    .full-row .producer-info-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }



    .full-row .product-description {
        display: block;
    }

    .full-row .product-description-wrap {
        width: 50%;
        padding: 10px;
        box-sizing: border-box;
    }

    .full-row .producer-info-wrap {
        width: 20%;
    }

    .full-row .product-price-wrap {
        width: 20%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
}

@media (max-width: 1024px) {
    .header {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.producer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .producer-info img {
        width: 100%;
        max-width: 80px;
    }

.producer-rating {
    color: #337ab7;
    font-size: 14px;
    display: flex;
    justify-content: center;
}

.producer-stock, .delivery-time__green {
    font-weight: bold;
    color: green;
    font-size: 12px;
    text-align: right;
}

.delivery-time__red {
    font-weight: bold;
    color: red;
    font-size: 12px;
    text-align: right;
}

.product-description-wrap {
    margin-bottom: auto;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: auto;
    padding-bottom: 10px;
    overflow: hidden;
    line-height: 16px;
    text-align: center;
}

.categorylist-title {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: auto;
    padding-bottom: 10px;
    /*padding-top: 5px;*/
    /*overflow: hidden;*/
    line-height: 16px;
    text-align: center;
    margin-top: -10px;
}

.categorylist-title, a.categorylist-title {
    text-align: center;
}

.stock-info {
    color: black;
}

.product-title a {
    text-decoration: none;
    color: black;
    transition: 0.2s;
    text-align: center;
}

    .product-title a:hover {
        color: #e6c302;
    }

.product-code {
    font-size: 11px;
    padding: 4px 0;
}

.produce-price {
    color: #FF0000;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.product-price-currency {
    font-size: 11px;
}

.category-title {
    background-color: #DDDDDD;
    padding: 5px 10px;
    line-height: 35px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

    .category-title a {
        color: #337ab7;
        text-decoration: none;
        font-weight: normal;
    }

.product-item {
    width: 80%;
}

.filter_btn {
    cursor: pointer;
}

@media (max-width: 768px) {
    .product-list-wrapper {
        display: flex;
        flex-direction: column;
    }

    .product-categories {
        flex: 0 1 0;
    }

    /*.dropdown-component {
        position: absolute;
        left: 0px;
    }*/

    .product-item {
        width: 45%;
    }

    .category-item {
        max-width: calc(50% - 10px);
    }

    .category-item-home {
        max-width: calc(50% - 10px);
    }

    .prduct-details .producer-image img {
        width: 100px;
    }

    .product-image-gallery {
        width: 100%;
    }

    .product-page {
        padding: 0px;
    }

    .buy-wrap {
        display: block;
    }

        .buy-wrap > div {
            width: 100%;
        }

    .buy-buttons {
        margin-top: 20px;
    }
}

@media (min-width: 768px) {
    .content_width {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .content_width {
        width: 970px;
    }

    .product-item {
        width: 42%;
    }
}

@media (min-width: 1200px) {
    .content_width {
        width: 1170px;
    }

    .product-item {
        width: 23%;
    }
}

.header {
    display: flex;
}

    .header > div {
        flex-basis: 100%;
    }

.header-logo {
    max-width: 260px;
}


.header-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

    .header-menu i {
        font-size: 1.6rem;
        padding: 6px;
    }

    .header-menu > a, .header-search {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header-menu > a {
        text-decoration: none;
        color: #337ab7;
        transition: 0.4s;
    }

        .header-menu > a:hover, .header-menu > a:active, .header-menu > a:focus {
            color: #337ab7;
            color: #23527c;
        }

.banner-wrapper {
    display: flex;
}

.banner_spacer {
    width: 250px;
}

.homepage_banner {
    width: calc(100% - 270px);
    height: 300px;
    margin: 10px;
    margin-left: auto;
}

    .homepage_banner img {
        max-height: 280px;
        width: 40%;
        min-width: 140px;
        object-fit: contain;
        display: inline-block;
        float: right;
    }

    .homepage_banner .banner-content {
        padding: 10px 50px;
        box-sizing: border-box;
        position: relative;
        font-size: 1em;
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: row-reverse;
    }

    .homepage_banner .splide__slide {
        display: flex;
        height: 300px;
        flex-direction: column;
        justify-content: space-around;
    }

.banner-content span p {
    line-height: 26px;
    margin: 0.6em 0;
}

@media (max-width: 992px) {
    .homepage_banner {
        width: 100%;
        height: 300px;
        margin: 10px;
        margin-left: auto;
        font-size: calc(0.7em + 0.4vw);
    }

        .homepage_banner .banner-content {
            display: block;
        }

    .banner-content span p {
        line-height: 16px;
    }
}

.banners .slick-arrow {
    width: 90px;
}

.banners .slick-prev {
    background-image: linear-gradient(to right, rgba(175, 173, 173, .5) 0, rgba(0, 0, 0, .0001) 100%);
    justify-content: end;
}

.banners .slick-next {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(175, 173, 173, 0.5) 100%);
    justify-content: flex-end;
}

.ProductsLink {
    font-size: 12px;
    font-weight: normal;
    position: relative;
    line-height: 22px;
}


.k-treeview-lines {
    scrollbar-width: thin;
    scrollbar-color: blue orange;
}

/* Works on Chrome/Edge/Safari */
.k-treeview::-webkit-scrollbar {
    width: 6px;
}

.k-treeview::-webkit-scrollbar-track {
    background: transparent;
}

.k-treeview::-webkit-scrollbar-thumb {
    background-color: rgba(30,30,30,0.3);
    border-radius: 20px;
    border: 3px solid rgba(30,30,30,0.3);
}

.view_type {
    color: #333;
    background-color: #fff;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .view_type i {
        pointer-events: none;
    }

.product-toolbar .toolbar {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-toolbar {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
    margin-bottom: 19px;
}

    .product-toolbar .toolbar > *, .filter-toolbar .toolbar > * {
        margin: 5px;
    }

.view_type--selected {
    background-color: #dddddd;
}

.catalogs {
    display: grid;
    grid-template-columns: repeat(auto-fit, 170px);
    grid-gap: 10px;
    justify-content: center;
    padding-top: 20px;
}

.catalog {
    height: 280px;
    width: 170px;
}

    .catalog img {
        width: 170px;
        height: 240px;
        object-fit: cover;
    }

.catalog-title {
    background-color: #808050;
    border: none;
    color: #ffffff !important;
    font-weight: bold;
    padding: 5px 5px 5px 5px;
    cursor: pointer;
    margin-top: 0px;
    font-size: 11px;
    text-decoration: none !important;
    width: 170px;
    margin: 0px auto;
    border: 1px solid #808050 !important;
    min-height: 40px;
    box-sizing: border-box;
}

.card {
    padding: 10px;
    padding-top: 20px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.05), 0 10px 10px -5px rgba(0,0,0,.01);
}

.contact-layout .card {
}

.js-Dropdown-title, .js-Dropdown-list {
    font-family: Arial;
    font-size: 14px;
    background-color: #dddddd;
}


#temporary-editablearea-close {
    display: initial;
    height: 16px;
    width: 16px;
    position: absolute;
    right: 10px;
    top: 20px;
    margin-top: -16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    background-color: transparent !important;
}
    #temporary-editablearea-close .icon-cancel {
        color:#fff;
    }