﻿html {
    margin: 0 !important;
    -webkit-text-size-adjust: none
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

body {
    /*max-height: 100vh;*/
    overflow-x: hidden;
    background-color: #fff;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    body::-webkit-scrollbar-thumb {
        background-color: #cbcbcb;
        border-radius: 20px;
        outline: 1px solid transparent;
    }

    body::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px #f2f2f2
    }

    body::-webkit-scrollbar {
        height: 10px;
        width: 10px
    }
main{
    flex: 1;
}
ol, ul {
    list-style: none
}

.language-list li, input[type=checkbox], input[type=checkbox] + *, input[type=radio], input[type=radio] + * {
    vertical-align: middle
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=file] > button::-moz-focus-inner,
input[type=file] > input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner, input[type=submit]::-moz-focus-inner {
    margin: 0;
    border: 0;
    padding: 0
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

a {
    color: inherit;
    cursor: pointer
}

    a img {
        border: none;
        opacity: 1
    }

    a:focus-visible {
        outline: 1px solid #c2c2c2;
        outline-offset: 0;
    }

.show-card {
    transform: translateY(0);
    opacity: 1;
}

.master-wrapper-content.landing-page-master-wrapper {
    width: 100%;
    background-color: #f7f7f7;
    background-position-y: bottom;
    background-size: contain;
    background-blend-mode: multiply
}

#header-menu-mobile {
    top: -42px;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/*used on all image containers*/
.small-image-container {
    flex-shrink: 0;
}

button:focus {
    outline: 0
}

/*When the image fails to load show this image instead*/
img {
    max-height: 100%;
    max-width: 100%;
}
    img:before{
        display: none;
    }
    img:after {
        content: ' ';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #fff;
        background-image: url("../images/noimage.png");
        background-position: center;
        background-size: cover
    }

.inputs, button, input, select, textarea {
    font-size: 14px;
    font-family: 'Inter', Helvetica, sans-serif;
}

    .inputs input[type="text"],
    input[type="text"],
    .inputs input[type="email"],
    input[type="email"],
    .inputs input[type="tel"],
    input[type="tel"],
    .inputs input[type="password"],
    input[type="password"],
    .inputs input[type="number"],
    input[type="number"],
    .inputs select,
    select,
    .inputs textarea,
    textarea, .selectCustom.select {
        max-width: 100%;
        background-color: #fff;
        border: 1px solid #cacaca;
        height: 40px;
        padding: 8px 12px;
        border-radius: 8px;
        color: #2c2c2c;
        transition: border .5s ease;
    }
        .inputs input[type="text"]::placeholder,
        input[type="text"]::placeholder,
        .inputs input[type="email"]::placeholder,
        input[type="email"]::placeholder,
        .inputs input[type="tel"]::placeholder,
        input[type="tel"]::placeholder,
        .inputs input[type="password"]::placeholder,
        input[type="password"]::placeholder,
        .inputs input[type="number"]::placeholder,
        input[type="number"]::placeholder,
        .inputs textarea::placeholder,
        textarea::placeholder {
            color: #6E6E6E;
            opacity: 1;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        input[type="password"]:focus,
        input[type="number"]:focus,
        textarea:focus,
        input:focus-within,
        select:focus-within,
        textarea:focus-within {
            border: 1px solid #F04D24;
            position: relative;
            outline: 0;
            box-shadow: 0 4px 15px rgba(44,44,44,.04);
            transition: border .5s
        }


    input[type="checkbox"],
    input[type="radio"],
    input[type="checkbox"] + *,
    input[type="radio"] + * {
        vertical-align: middle;
    }

    input[type="checkbox"] {
        accent-color: #e65228;
    }

    /*Input type radio global styling*/
    input[type="radio"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 50%;
        min-width: 16px;
        max-width: 16px;
        min-height: 16px;
        max-height: 16px;
        border: 1px solid #878787;
        transition: .2s linear;
        position: relative
    }

    input[type=radio]:checked {
        border:1px solid #F04D24;
    }
    input[type="radio"]:checked + label {
        color: #F04D24;
    }

        input[type=radio]:checked::after {
            content: "";
            background-color: #F04D24;
            width: 5px;
            height: 5px;
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%,-50%);
            border: 5px solid #F04D24;
            border-radius: 50%
        }

.required {
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 0 5px; /*siblings offset*/
    font-size: 15px;
    color: #6E6E6E;
}

/*Search-box input custom css*/
#small-search-box-form, #small-searchterms {
    background-color: #FAFAFA;
    color: #2c2c2c;
    border: none;
    transition: all ease .3s;
    border-radius: 30px;
}
#small-search-box-form {
    border: 1px solid #EAEAEA;
}
    #small-searchterms::placeholder {
        color: #2c2c2c;
        font-weight: 400;
    }

input[type="number"].from, input[type="number"].to, input[type="number"].gift-card-input {
    height: 35px;
    border-color: #E2E2E2;
    border-left: none;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}

#currency-label {
    height: 35px;
}

.gc-inputs {
    border-color: #E2E2E2 !important;
}

.message-error,
.field-validation-error,
.username-not-available-status,
.poll-vote-error, .password-error {
    display: flex;
    padding: 0 5px 0 0;
    text-align: left;
    font-size: 12px;
    color: #F04D24;
}

.product-review-popup .message-error, .field-validation-error,
.username-not-available-status,
.poll-vote-error, .password-error {
    padding: 0;
}

.field-validation-valid,
.username-available-status {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #4cb17c;
}

.bar-notification-container {
    max-width: 500px;
    width: auto;
    color: #2c2c2c;
    position: fixed;
    border-radius: 4px;
    top: 60px;
    right: 15px;
    z-index: 1050;
    line-height: 16px;
    min-width: 275px
}

.bar-notification {
    margin-top: 15px;
    border-radius: 4px;
    position: relative;
    display: none;
    text-align: left;
    padding: 8px 40px
}

    .bar-notification .close, .bar-notification .icon {
        top: 50%;
        transform: translate(0,-50%);
        cursor: pointer
    }

.cart-qty, .eu-cookie-bar-notification, .noscript, .search-input .buttons {
    text-align: center
}


.noscript {
    border-bottom: 1px solid #333;
    background-color: #ff9;
    padding: 30px 15px;
    text-align: center;
    line-height: 22px;
    color: #444;
}

.please-wait {
    background: url(../images/i-loading.svg) no-repeat center;
    width: 20px;
    height: 20px;
}


.ui-dialog, .ui-dialog-titlebar {
    background-color: #fff;
    overflow: hidden
}

.ui-dialog {
    max-width: 90%;
    border-radius: 4px
}

    .ui-dialog:before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5)
    }

    .ui-dialog .ui-dialog-content {
        overflow-y: auto;
        scrollbar-width: thin
    }

        .ui-dialog .ui-dialog-content::-webkit-scrollbar {
            width: 8px
        }

        .ui-dialog .ui-dialog-content::-webkit-scrollbar-track {
            box-shadow: inset 0 0 5px #ececec;
            border-radius: 3px
        }

        .ui-dialog .ui-dialog-content::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 3px
        }

            .ui-dialog .ui-dialog-content::-webkit-scrollbar-thumb:hover {
                background-color: #c1c1c1
            }

.ui-dialog-content {
    background-color: #fff !important;
    padding: 24px !important;
    color: #777
}

    .ui-dialog-content .page {
        min-height: 0
    }

    .ui-dialog-content .page-title {
        min-height: 0;
        margin: 0 0 15px;
        padding: 0 10px 10px;
        text-align: center
    }

        .ui-dialog-content .page-title h1 {
            font-size: 24px;
            line-height: 30px
        }

.ui-dialog-titlebar {
    padding: 8px 24px !important;
    background-image: none;
    font-weight: 400;
    cursor: auto !important
}

    .ui-dialog-titlebar > span {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 16px;
        color: #F04D24;
        margin: 0 !important
    }

    .ui-dialog-titlebar button {
        position: absolute;
        border: none !important;
        overflow: hidden;
        background: url('../images/close.png') center no-repeat !important;
        font-size: 0;
        top: 0 !important;
        right: 0 !important;
        width: 42px !important;
        height: 40px !important;
        margin: 0 !important;
        border-radius: 0;
        padding: 0 !important;
        outline: 0 !important
    }

        .ui-datepicker-header a span, .ui-dialog-titlebar button span, .ui-helper-hidden-accessible {
            display: none !important
        }

.eu-cookie-bar-notification {
    position: fixed;
    left: 0;
    z-index: 1050;
    height: 60px;
    background-color: #F5F5F5;
    text-align: center;
    bottom: 0;
    right: 0;
    display: flex;
}
@media (min-width: 812px) and (max-width: 1370px) {
    .eucookielaw-description{
        width: 50%;
    }
}

.advanced-search .price-range, .language-list li {
    display: inline-block
}

.language-selector select,
.currency-selector select,
.language-selector select option,
.currency-selector select option {
    color: #b9b1b1;
    background-color: #161616;
    padding: 0 12px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center
}

.language-list {
    max-width: 100%;
    font-size: 0
}

    .language-list li {
        margin: 0 1px
    }

    .language-list a {
        display: block;
        position: relative;
        width: 24px;
        height: 32px;
        line-height: 0
    }

    .language-list img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto
    }

/*icons on hover background effect*/
.i-bg-effect {
    min-width: 35px;
    height: 32px;
    display: flex;
    justify-content: center;
    border-radius: 32px;
    align-items: center;
    transition: background .4s ease;
}

@media only screen and (min-width: 768px) {
    .i-bg-effect {
        min-width: 35px;
        height: 32px;
        display: flex;
        justify-content: center;
        border-radius: 32px;
        background-color: #FAFAFA;
        border: 1px solid #EAEAEA;
        color: #2C2C2C;
        align-items: center;
        transition: background .4s ease;
    }
}

.i-bg-effect:hover {
    background-color: rgba(255,255,255,.15);
    /*backdrop-filter: blur(5px)*/
}

/*cart quantity circle custom css*/
.cart-qty, .wishlist-qty, .chat-notification {
    width: 17px;
    height: 17px;
    font-size: 11px;
    align-items: center;
    justify-content: center;
}

/*navbar icons animation on mobile*/
.nav-i-animation {
    transition: transform .3s ease;
    transform: translate3d(0,0,0) translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.ui-autocomplete {
    border: 1px solid #ddd;
    border-top: none;
    overflow: hidden;
    background-color: #f7f7f7;
    text-align: left;
    border-radius: 0;
    padding: 10px;
    font: 14px Inter,sans-serif
}

    .ui-autocomplete li:first-child {
        border-top: none
    }

    .ui-autocomplete a {
        display: flex;
        font-size: 12px;
        margin: 0 0 5px !important;
        padding: 10px !important;
        line-height: normal !important;
        color: #6e6e6e !important
    }

        .ui-autocomplete a.ui-state-focus,
        .ui-autocomplete a:focus,
        .ui-autocomplete a:hover {
            border: 1px solid #F04D24 !important
        }

#flyout-cart section::-webkit-scrollbar {
    width: 5px;
}

#flyout-cart section::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #ececec;
    border-radius: 3px;
}

#flyout-cart section::-webkit-scrollbar-thumb {
    background-color: #CCCCCC;
    border-radius: 3px;
}

    #flyout-cart section::-webkit-scrollbar-thumb:hover {
        background-color: #c1c1c1;
    }


.ui-tabs {
    border: none;
    border-radius: 0;
    background: 0 0;
    padding: 0;
    font: 14px Arial,Helvetica,sans-serif;
    color: #777
}

.ui-tabs-nav, .ui-tabs-nav li, .ui-tabs-panel {
    padding: 0 !important
}

.ui-widget-content, .ui-widget.ui-widget-content.ui-tabs {
    border: none
}

.ui-tabs-nav {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    font-size: 0;
    margin: 0 0 30px !important;
    border-width: 0 0 1px;
    border-radius: 0;
    background: 0 0;
    line-height: normal;
    font-weight: 400;
    color: #444
}

    .ui-tabs-nav li {
        flex: 1;
        float: none !important;
        margin: 0 -1px !important;
        border: none !important;
        border-radius: 0;
        background: 0 0 !important
    }

        .ui-tabs-nav li a {
            display: block;
            border: 1px solid #ddd;
            text-align: center;
            font-size: 18px;
            color: #444;
            float: none !important;
            padding: 12px 24px !important
        }

        .ui-tabs-nav li.ui-state-active a {
            background-color: #eee;
            color: #4ab2f1
        }

pre {
    white-space: normal;
    word-wrap: break-word
}

.go-up {
    transform: translateX(200px);
    transition: .5s
}

    .go-up i {
        font-size: 44px;
    }

    .go-up:hover {
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    }

.sold-out {
    width: 100%;
    z-index: 2;
    height: 100%;
    background: rgba(255,255,255,.5);
    pointer-events: none;
}

.search-box-inp {
    width: 92%;
    transition: width .3s ease;
    transform: translate3d(0,0,0) translateZ(0);
    backface-visibility: hidden;
    will-change: width;
}

.responsive-wrapper {
    width: 100%;
    position: relative;
}

.ui-autocomplete {
    border-radius: 30px;
    --tw-shadow: 0px 5px 10px rgba(44, 44, 44, 0.2);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.product-title-lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wishlist-content .product-title-lines {
    height: 45px;
}

.main-slider-wrapper .main-slider-thumbs {
    padding-top: 12px !important;
}

.special-offer-swiper .swiper-button-next, .special-offer-swiper .swiper-button-prev {
    display: flex;
    border: 1px solid #757575;
    background-color: #FFF !important;
    color: #6E6E6E;
    border-radius: 100%;
    height: 36px;
    width: 36px;
}

    .special-offer-swiper .swiper-button-next:hover, .special-offer-swiper .swiper-button-prev:hover {
        background-color: #1A1A1A !important;
    }

    .special-offer-swiper .swiper-button-next::after, .special-offer-swiper .swiper-button-prev::after {
        color: #6E6E6E;
        font-size: 16px;
    }

    .special-offer-swiper .swiper-button-next:hover::after, .special-offer-swiper .swiper-button-prev:hover::after {
        color: #FFF !important;
    }

.account-card {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 100;
    width: 240px;
}

.language-currency-card {
    position: absolute;
    top: 40px;
    right: 0px;
    z-index: 100;
}

    .account-card.active, .language-currency-card.active, .flyout-cart-active {
        display: block;
    }

.flyout-cart {
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 100;
    width: 360px;
}

input[type="number"].qty {
    width: 45px;
    max-height: 30px;
    font-weight: 500;
    text-align: center;
    color: #2c2c2c;
    border-color: #e2e2e2;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

input[type="number"].cart-qty {
    width: 16px;
    max-height: 16px;
    border: none;
    background: none;
    padding: 0;
}

input.qtyplus, input.qtyminus {
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}

.cart-quantity input.qtyplus, .cart-quantity input.qtyminus {
    min-width: 16px;
    height: 16px;
    line-height: 14px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/*Main banner animation needs transparent*/
.main-slider.swiper-pagination-bullet-active {
    background-color: transparent !important;
}

.swiper-lazy-preloader {
    --swiper-preloader-color: #F04D24;
}

.ui-widget-content {
    border: none;
}

.ui-slider .ui-slider-handle {
    width: 1.3em;
    height: 1.3em;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    background-color: #fff !important;
    border: 2px solid #F04D24;
}

.cart {
    height: min-content;
}

#ui-id-1 {
    overflow-y: scroll !important;
    border-radius: 12px !important;
    max-height: 328px;
}

    #ui-id-1::-webkit-scrollbar {
        background-color: transparent;
        width: 3px !important;
        border-radius: 50%;
    }

    #ui-id-1::-webkit-scrollbar-thumb {
        width: 1px !important;
        background-color: #F04D24;
    }

    #ui-id-1::-webkit-scrollbar-track {
        background-color: transparent;
        margin: 10px 0;
    }

/*Search autocomplete scrollbar for mozilla firefox*/
.ui-autocomplete {
    scrollbar-width: thin;
    scrollbar-color: #F04D24 #f5f5f5;
}

.popular-categories {
    display: grid;
    grid-template-columns: repeat(1,1fr);
}

    .popular-categories img {
        mix-blend-mode: multiply;
    }

.lds-dual-ring {
    width: 20px;
    height: 20px;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid #F04D24;
        border-color: #F04D24 #F04D24 #F04D24 transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ajax-loading-block-window {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    margin: -16px 0 0 0;
    background: url('../images/i-loading.svg') center no-repeat;
    background-size: 65px;
    z-index: 9999;
}

.ajax-loading-products {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(../images/i-loading.svg);
    background-repeat: no-repeat;
    background-size: 40px !important;
    background-position: 50% 120px;
    background-color: rgba(255,255,255,0.5) !important;
    z-index: 9999 !important;
}

.item-box .picture, .skeleton-box .picture {
    z-index: 1;
    background-color: #fff;
    margin: 0 0 10px;
}

    .item-box .picture a:focus, .skeleton-box .picture a:focus {
        opacity: 0.85;
    }

    .item-box .picture a:before, .skeleton-box .picture a:before {
        content: "";
        display: block;
        padding-top: 100%;
    }

.item-grid:after {
    content: "";
    display: block;
    clear: both;
}

.item-box:hover .picture a img, .skeleton-box:hover .picture a img {
    opacity: 0.85;
}

/*.item-box .picture a img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}*/

.products-container {
    position: relative;
}

    .products-container .ajax-products-busy {
        display: none;
        z-index: 2;
        width: 100%;
        height: 100%;
        position: fixed;
        width: 100%;
        height: 100%;
        margin: -16px 0 0 0;
        background: url('../images/i-loading.svg') center no-repeat;
    }

/*.product-grid .title {
    margin: 0 0 30px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 15px;
    font-size: 30px;
    font-weight: normal;
    color: #444;
}*/

.skeleton-animation {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        /*background-color: rgb(242, 242, 242);*/
        opacity: 0;
    }

    100% {
        /*background-color: rgb(230, 230, 230);*/
        opacity: 1;
    }
}

.active {
    display: flex;
}

li.active {
    flex-direction: column;
}

#product-box-slider-thumb .swiper {
    margin-left: 0;
    margin-right: 0;
}

#product-box-slider-thumb .swiper-slide-thumb-active:before {
    height: 100%;
    width: 3px;
    border-radius: 6px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #F04D24;
}

#product-box-slider-thumb .swiper-slide {
    height: 100px;
}

.category-sidebar-shadow, .homepage-category-sidebar-shadow {
    -webkit-box-shadow: 0px 8px 60px 0px rgba(30,30,54,0.2);
    -moz-box-shadow: 0px 8px 60px 0px rgba(30,30,54,0.2);
    box-shadow: 0px 8px 60px 0px rgba(30,30,54,0.2);
}

.subcat-grid-1, .subcat-grid-2 {
    grid-template-columns: repeat(3, minmax(120px, 150px));
    column-gap: 10px;
}

.homepage-sidemenu {
    /*padding-bottom: 4px;*/
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.master-column-wrapper:after, .page-body:after, .page-title:after, .page:after, .side-2:after {
    content: "";
    display: block;
    clear: both
}

.gjirafa-products-travel {
    min-width: 125px !important;
}

@media all and (max-width: 1025px) {
    .gjirafa-products-nav {
        gap: 20px;
    }

    .gjirafa-products {
        padding-bottom: 1rem;
    }

    .gjirafa-products-travel {
        min-width: 80px !important;
        padding-bottom: 1rem;
    }

    .zirafa50-products-mobile {
        min-width: 58px;
        height: 42px;
        padding-bottom: 0.9rem;
    }
}

@media all and (min-width: 481px) and (max-width: 1024px) {
    .gjirafa-products-travel {
        max-width: 80px !important;
    }

    footer-lower {
        padding-bottom: 0px !important;
    }

    .gjirafa-products-nav {
        gap: 20px;
    }

    .footer-info {
        padding-bottom: 1rem;
    }
}

@media all and (max-width: 480px) {
    .gjirafa-products {
        min-width: 130px;
        padding-right: 16px;
        padding-left: 16px;
        padding-bottom: 0;
        margin-bottom: 1rem;
        border-right: 1px solid #EAEAEA;
    }

    .gjirafa-products-travel {
        min-width: 140px !important;
        padding-right: 16px;
        padding-left: 16px;
        padding-bottom: 0;
        margin-bottom: 1rem;
        border-right: 1px solid #EAEAEA;
    }

    .gjirafa-products-carvago {
        min-width: 90px;
        padding-right: 8px;
        padding-left: 16px;
        padding-bottom: 0;
        border: none;
    }

    .gjirafa-products-video {
        min-width: 140px;
    }

    .gjirafa-products-mobile {
        min-width: 160px;
    }

    .gjirafa50-products-mobile {
        min-width: 116px;
    }

    .zirafa50-products-mobile {
        min-width: 100px;
        height: 32px;
    }

    .eu-cookie-bar-notification .buttons-more .learn-more, .eu-cookie-bar-notification .content p{
        font-size: 11px
    }

    .ui-autocomplete {
        width: calc(100% - 30px) !important;
        border-radius: 4px;
        --tw-shadow: 0px 5px 10px rgba(44, 44, 44, 0.2);
        box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)
    }

    #paymentmethod_1 {
        width: 3rem !important;
    }

    #ui-id-2 {
        top: 0 !important;
    }

    .quantity-in-product {
        width: 40px !important;
    }

    .cart-footer {
        width: 100%
    }

        .cart-collaterals, .cart-content, .cart-footer .totals {
            margin: 0
        }

    .account-card {
        top: 40%;
        right: .5rem
    }

    .language-currency-card {
        right: 0;
    }

    .cart .product {
        width: 200px;
        text-align: left;
    }

    .subtotal label {
        display: block;
    }
}

@media all and (min-width: 481px) {

    .header-menu, .master-wrapper-content {
        width: 100%
    }

    .ui-autocomplete {
        max-height: 359.4px
    }

    .ui-tabs-nav li {
        display: inline-block;
        min-width: 150px;
        margin: 0 5px -1px !important
    }

    .sub-cat {
        width: calc(100vw - 284px);
    }
}

@media all and (max-width: 768px) {
    .special-offer-swiper .swiper-button-next, .special-offer-swiper .swiper-button-prev {
        background-color: #1A1A1A !important;
    }

        .special-offer-swiper .swiper-button-next::after, .special-offer-swiper .swiper-button-prev::after {
            color: #FFF;
            font-size: 16px;
        }

    #ui-id-1 {
        left: 0px !important;
        width: calc(100vw - 24px) !important;
        max-height: 382px !important;
    }


    .cfGMLl {
        bottom: 80px !important;
    }
}

@media all and (min-width: 768px) {
    .popular-categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .sub-cat > div {
        -webkit-box-shadow: 0px 2px 6px 4px rgba(30,30,54,0.1);
        -moz-box-shadow: 0px 2px 6px 4px rgba(30,30,54,0.1);
        box-shadow: 0px 2px 6px 4px rgba(30,30,54,0.1);
    }
}

@media all and (max-width: 811px) {

    .bar-notification-container {
        top: 110px;
        right: 10px;
        margin-left: 10px;
    }

    .eu-cookie-bar-notification {
        flex-direction: column;
        height: unset;
    }

        .eu-cookie-bar-notification .content {
            width: 100%;
            padding: 9px 0;
        }

        .eu-cookie-bar-notification button {
            padding: 14px 12px;
        }

        .eu-cookie-bar-notification .buttons-more {
            width: 100%;
        }

    .header-scrolled #flyout-cart {
        top: 130%;
    }

    #flyout-cart {
        position: fixed;
        inset: 0;
        right: 0;
        width: 100%;
        z-index: 10;
    }

    #account__card {
        top: 40%;
        right: .5rem;
    }

    .header-scrolled .nav-i-animation {
        transform: translate3d(0,50px,0) translateZ(0);
    }

    .header-scrolled .search-input-mobile {
        width: 75% !important;
        transition: width .3s ease;
    }

    .header-scrolled .search-box-inp {
        width: 70%;
    }

    .ui-menu-item-wrapper {
        padding: 10px !important;
    }

    /*    .mobile-categories-menu {
        transform: translateX(-305px);
    }*/

    #header-menu-mobile {
        top: -107px;
    }

    .main-slider-thumbs {
        display: none;
    }

    .main-slider-wrapper .main-slider-thumbs {
        padding-top: 0;
    }

    .language-selector select, .currency-selector select {
        -webkit-appearance: none;
    }

    .nav-container {
        top: -46px;
    }

    .header-scrolled .small-search-box-form {
        transition: right 0.6s ease-in-out;
        will-change: right;
    }

    .header-scrolled .small-search-box-form {
        right: 60px;
    }

    .scroll-wishlist {
        transition: transform 0.6s ease-in-out;
    }

    .header-scrolled .scroll-wishlist {
        transform: translateY(50%);
    }


    .subcat-transition {
        left: 0px;
        opacity: 1;
    }

    .popular-manufacturers {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
}

@media all and (max-width: 1000px) {

    .header-menu {
        z-index: 1;
    }
}

@media all and (min-width: 811px) {

    .footer-lower {
        width: 90%;
    }

    .search-box-inp {
        transition: transform .3s ease;
        width: 50%;
        transition: width .3s ease;
        transform: translate3d(0,0,0) translateZ(0);
        backface-visibility: hidden;
        will-change: width;
    }

    .image-grayscale {
        filter: grayscale(100%);
        z-index: 0;
    }

    .follow-us {
        margin: 0;
        margin-top: 16px;
    }

    .product-list .item-box {
        float: none;
        width: auto;
        margin: 0 5px 20px;
    }

        .product-list .item-box .picture {
            float: left;
            width: 220px;
        }

        .product-list .item-box:hover .picture a img,
        .product-list .item-box:focus .picture a img {
            opacity: 1;
        }

        .product-list .item-box .picture:hover a img,
        .product-list .item-box .picture:focus a img {
            opacity: 0.85;
        }

        .product-list .item-box .picture + .details {
            margin: 0 0 0 240px;
        }

        .product-list .item-box .product-title {
            height: auto;
            padding: 10px 0;
            font-size: 18px;
        }

        .product-list .item-box .description {
            display: block;
            margin: 0 0 10px;
            line-height: 22px;
        }

        .product-list .item-box .prices {
            height: auto;
            margin: 0 0 30px;
        }

        .product-list .item-box .buttons {
        }

        .product-list .item-box .product-box-add-to-cart-button {
            width: auto;
            min-width: 150px;
            padding: 0 20px;
        }

        .product-list .item-box .add-to-compare-list-button,
        .product-list .item-box .add-to-wishlist-button {
            width: 42px;
        }

    .ui-tabs-nav {
        text-align: left;
    }

        .ui-tabs-nav li {
            margin: 0 10px -1px 0;
            /*override jQuery UI styles, do not delete doubled properties*/
            margin: 0 10px -1px 0 !important;
        }

    .responsive-wrapper {
        width: 90%;
        margin: auto;
    }

    .popular-manufacturers {
        display: grid;
        grid-template-columns: repeat(6,1fr);
    }

    #ui-id-1 {
        max-height: 360px !important;
    }

    /*.sub-cat {
        width: calc(100vw - 316px);
    }*/
}

@media only screen and (min-width: 811px) {

    .menu-toggle, .sublist-toggle {
        display: none
    }

    .responsive-wrapper {
        width: 100%
    }

    .add-to-wishlist-button {
        border: 1px solid #F04D24 !important;
    }

        .add-to-wishlist-button:hover {
            background-color: #fceee9;
        }
}

@media all and (min-width: 1001px) {

    #topcartlink, .cart tr {
        width: auto;
        margin: 0
    }

    .header-logo, .language-list, .page {
        text-align: left
    }

    .header-logo, .search-box {
        display: table-cell;
        vertical-align: middle
    }

    .cart tr, .footer-block .list {
        margin: 0
    }

    #topcartlink {
        display: flex;
        cursor: pointer
    }

    .header-logo {
        font-size: 0
    }

    .search-box {
        text-align: right
    }

        .search-box .search-box-button, .search-box input.search-box-text {
            height: 40px
        }

    .footer-lower {
        position: relative
    }

    .footer-upper{
        padding: 40px 0;
    }
}

@media all and (min-width: 1024px) {
    .popular-categories {
        display: grid;
        grid-template-columns: repeat(7,1fr);
    }

    .subcat-grid-1, .subcat-grid-2 {
        grid-template-columns: repeat(4, minmax(160px, 300px));
        column-gap: 0;
    }

    .sub-cat {
        width: calc(100% - 284px);
    }

    .homepage-sidemenu {
        /*position: relative;*/
        display: block;
    }

    .homepage-category-sidebar-shadow {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

@media all and (min-width: 1280px) {
    .sub-cat {
        width: calc(100% - 300px)
    }
}

@media only screen and (min-width: 1400px) {
    .footer-lower, .footer-upper, .header-menu .sublist, .responsive-wrapper, .top-menu {
        width: 1360px
    }

    .footer-block {
        width: 100%
    }
}

@media only screen and (max-width: 1024px) {
    .footer-upper {
        width: 1360px;
        padding: 40px 10px;
    }
}

@media all and (min-width: 1440px) {
    .subcat-grid-1 {
        grid-template-columns: repeat(4, minmax(200px, max-content))
    }

    .subcat-grid-2 {
        grid-template-columns: repeat(5, minmax(200px, 1fr))
    }
}

.animate-overlay {
    animation: .4s cubic-bezier(.61,1,.88,1) show-overlay;
    animation-fill-mode: forwards
}

@keyframes show-overlay {
    from {
        background: rgb(0 0 0 / 0)
    }

    to {
        background: rgb(0 0 0 / .5)
    }
}


.slideup, .slidedown {
    overflow-y: hidden;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.slideup {
    max-height: 0;
    opacity: 0;
}

.slidedown {
    max-height: 400px;
    opacity: 1;
}

.categories-menu{
    min-height:504px;
}

.shop-with-confidence{
    transition: all 1s linear !important;
}

.recommended-categories, .shop-with-confidence {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

    .recommended-categories::-webkit-scrollbar, .shop-with-confidence div::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }

.productbox-vendor img {
    height: 18px;
    width: 18px;
}

.productbox-vendor h6{
    line-height:20px;
    font-size:12px;
}

.selectCustom-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4px 8px;
    border-radius: 4px;
    margin: 4px;
    height: auto;
}

.selectCustom.isActive .selectCustom-options {
    display: block;
}

.selectLabel {
    display: block;
    font-weight: bold;
    margin-bottom: 0.4rem;
}

.selectWrapper {
    position: relative;
}

.selectCustom {
    position: relative;
    height: 30px;
}

.selectCustom-trigger {
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 4px 8px;
}

.selectCustom-options {
    position: absolute;
    top: calc(30px + 5px);
    left: 0;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0px 4px 10px rgb(44 44 44 / 10%);
    z-index: 12;
    display: none;
    max-height: 400px;
    overflow: auto;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes fadeSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .search-select {
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
}

.swiper-slide.image-error:hover {
    background-color: #FAFAFA;
}

    .swiper-slide.image-error .picture {
        display: none;
    }

    .swiper-slide.image-error h2 {
        text-align: center;
        margin-left: 0px;
    }