@font-face {
    font-family: 'Pinar-DS4';
    src: url('/Fonts/Pinar/Pinar-DS4-FD-Regular.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fontawesome';
    src: url('/Fonts/Fontawesome/fontawesome.eot?#') format('eot'), url('/Fonts/Fontawesome/fontawesome.woff') format('woff'), url('/Fonts/Fontawesome/fontawesome.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'WooCommerce';
    src: url('/Fonts/WooCommerce/WooCommerce.eot?#') format('eot'), url('/Fonts/WooCommerce/WooCommerce.woff') format('woff'), url('/Fonts/WooCommerce/WooCommerce.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}
/*#region common */
body {
    font-family: 'Pinar-DS4', 'Arial Narrow', Arial, sans-serif;
    --c-green-light: #1bd33c;
    --c-green: #106d1b;
    --c-red: #d31b10;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.required {
    color: red;
}

.btn {
    text-wrap: nowrap;
}

.btn-blue, .btn-default {
    color: white;
    background-color: var(--c-green);
    text-wrap: nowrap;
}

.btn-green {
    color: white;
    background-color: var(--c-red);
    text-wrap: nowrap;
}

.btn-orange {
    color: white;
    background-color: var(--c-green-light);
    text-wrap: nowrap;
}

.bg-black {
    background-color: black;
}

.bg-green {
    background-color: var(--c-red);
}

.text-green {
    color: var(--c-red)
}

.text-blue {
    color: var(--c-green)
}

.text-orange {
    color: var(--c-green-light)
}

.master-wrapper-content {
    min-height: 50vh;
}

.form-control {
    border-radius: 0;
}

.fieldset .form-fields .inputs, fieldset .form-fields .inputs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px 0;
}

    .fieldset .form-fields .inputs > *:nth-child(2), fieldset .form-fields .inputs > *:nth-child(2) {
        display: flex;
    }

.page .title {
    display: flex;
    align-items: center;
    color: black;
    text-wrap: nowrap;
}

    .page .title h2 {
        font-size: 2.5rem;
        padding-left: 1rem;
    }

    .page .title:after {
        content: "";
        height: 1px;
        border: 2px solid;
        width: 100%;
        display: inline-block;
    }

.input-group-quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid var(--bs-gray-400);
    padding: 0 7px;
    border-radius: 7px;
    max-width: 90px;
    min-width: 70px;
}

    .input-group-quantity .quantity {
        text-align: center;
    }

        .input-group-quantity .quantity:focus, .input-group-quantity .quantit:active {
            box-shadow: none;
        }

    .input-group-quantity input {
        pointer-events: none;
    }

.table tr td {
    display: table-cell;
    vertical-align: middle;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.checkout #newaddress-container {
    display: none;
}

.success .toast-header {
    background-color: var(--bs-success);
}

.error .toast-header {
    background-color: var(--bs-danger);
}
/*#endregion common */
/*#region card */
.product .card {
    min-height: 425px;
}

    .product .card .card-body {
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .product .card ul li {
        overflow: hidden;
        text-overflow: ellipsis;
        text-wrap: nowrap;
    }

    .product .card > .image {
        width: 90%;
        align-self: center;
        padding: 10px 0;
    }

    .product .card .card-body .buttons .btn {
        width: 100%;
    }

    .product .card .card-body .button {
        text-wrap: nowrap;
    }

    .product .card .card-body .price-wrap .old-price {
        display: inline-block;
        position: relative;
        color: var(--bs-gray-500);
    }

        .product .card .card-body .price-wrap .old-price:before {
            content: "";
            color: var(--c-red);
            width: 100%;
            height: 1px;
            border: 1px solid;
            display: block;
            transform: rotate(-10deg);
            position: absolute;
            top: 12px;
        }

    .product .card .card-body .link-title {
        color: black;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin: 0 0 10px 0;
    }
/*#endregion card */
/*#region header */
.header-top {
    background-color: var(--c-red);
    justify-content: space-between;
    flex-direction: row;
}

    .header-top > div > div > div {
        margin: 10px 0;
    }

.header-logo {
    display: flex;
    justify-content: end;
}

    .header-logo h1 {
        display: none;
    }

    .header-logo img {
        max-width: 80px;
    }

.admin-header-links {
    background-color: #333;
    text-align: center;
    color: #eee;
}

    .admin-header-links * {
        display: inline-block;
        margin: 0 10px;
        line-height: 35px;
        font-size: 12px;
        font-weight: bold;
    }

    .admin-header-links .impersonate {
        display: inline-block;
    }

        .admin-header-links .impersonate a {
            background-color: #555;
            padding: 0 15px;
        }

            .admin-header-links .impersonate a:hover {
                background-color: #666;
            }

.header-links ul {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .header-links ul li {
        list-style: none;
    }

        .header-links ul li .user {
            border-radius: var(--bs-border-radius-pill);
            background-color: white;
            display: flex;
            flex-direction: row;
            padding: 0.4rem 0.7rem;
            white-space: nowrap;
            align-items: center;
        }

        .header-links ul li i {
            margin: 0 0.3rem 0 1rem;
            font-size: 1.3rem;
            color: black;
        }

.header-links .ico-cart {
    min-width: 70px;
    padding: 0.3rem 0.7rem;
}

    .header-links .ico-cart .cart-qty {
        background-color: #FCC425;
        padding: 0.2rem 0.7rem;
        border-radius: 50%;
    }

.search-box {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: var(--bs-border-radius-pill);
    background-color: white;
    padding: 0.5rem 0.5rem;
    position: relative;
}

    .search-box .search-box-text {
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .search-box .search-box-button {
        border: none;
        box-shadow: none;
        background-color: white;
    }

    .search-box .spinner-grow {
        display: none;
    }

#searchbox-autocomplete ul {
    position: absolute;
    z-index: 99;
    background: white;
    width: 100%;
    top: 43px;
    left: 0px;
    padding: 0;
    height: 400px;
    overflow: auto;
    border-radius: var(--bs-border-radius);
    box-shadow: 1px 2px 5px rgba(0,0,0,.5);
}

    #searchbox-autocomplete ul li {
        padding: 2px;
        border-bottom:1px solid var(--bs-border-color);
    }

        #searchbox-autocomplete ul li:hover {
            background: var(--bs-gray-300);
        }

        #searchbox-autocomplete ul li a {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

            #searchbox-autocomplete ul li a img {
                width: 13%;
                padding: 5px;
            }

.header-bottom {
}

    .header-bottom ul li {
    }
/*#endregion header */
/*#region topmenu desktop */

.top-menu .desktop > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    .top-menu .desktop > ul > li {
        padding: 1rem;
    }

.top-menu .desktop ul {
    margin: 0;
    padding: 0;
}

    .top-menu .desktop ul li {
        position: relative;
        cursor: pointer;
    }

        .top-menu .desktop ul li:hover {
            background-color: var(--bs-gray-400);
        }

        .top-menu .desktop ul li a {
            color: black;
            text-wrap: nowrap;
        }

        .top-menu .desktop ul li:hover > .sublist {
            opacity: 1;
            visibility: visible;
        }

    .top-menu .desktop ul.sublist li {
        padding: 0.5rem;
        min-width: max-content
    }

.top-menu .desktop .sublist {
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    background-color: white;
    position: absolute;
    z-index: 99;
    border: 1px solid var(--bs-border-color);
}

    .top-menu .desktop .sublist .sublist {
        right: 100%;
        top: 0;
    }

    .top-menu .desktop .sublist.first-level {
        right: 0;
        top: 56px;
    }

    .top-menu .desktop .sublist .sublist-toggle {
        font-family: fontawesome;
        float: left;
        margin-right: 10px;
    }

        .top-menu .desktop .sublist .sublist-toggle:after {
            content: "\f104";
        }

.top-menu .mobile-menu .first-level {
    display: none;
}



.top-menu .mobile-menu > ul {
    display: none;
}
/*#endregion topmenu */
/*#region topmenu mobile */


/*endregion topmenu mobile */
/*#region vertical slider */
.slider-vertical {
    background-color: #ADCFE5;
}

    .slider-vertical .products {
        display: none;
    }
/*#endregion vertical slider */
/*#region tab categories */

.category-carousel .owl-title {
    display: none;
}

.tab-categories {
    padding: 2rem;
    border-color: var(--c-green-light) !important;
}

    .tab-categories .nav-tabs {
        justify-content: center;
        border: none;
    }

        .tab-categories .nav-tabs .nav-link {
            border: 1px solid var(--c-red);
            border-radius: var(--bs-border-radius) !important;
            color: black;
            min-width: 10vw;
            margin: 0 1rem;
        }

            .tab-categories .nav-tabs .nav-link.active, .tab-categories .nav-tabs .nav-link:hover {
                background-color: var(--c-red);
                color: white;
            }

    .tab-categories .tab-content .owl-title {
        display: none;
    }

    .tab-categories .card {
        border: none;
    }
/*#endregion tab categories */
/*#region homepage */
.home-page {
}

    .home-page .content-up {
        margin: 3rem 0;
    }

        .home-page .content-up .cu-title {
            display: flex;
            flex-direction: row;
            align-items: center;
            text-wrap: nowrap;
            margin-bottom: 2rem;
        }

            .home-page .content-up .cu-title:before, .home-page .content-up .cu-title:after {
                content: "";
                height: 1px;
                border: 2px solid;
                width: 100%;
            }

        .home-page .content-up .cu-body {
            background-color: var(--c-green);
            position: relative;
            padding: 4rem 0;
        }

            .home-page .content-up .cu-body .cu-body-button {
                position: absolute;
                top: 50%;
            }
/*#endregion homepage */
/* #region OWLCAROUSEL */
.categories-bottom {
    margin-bottom: 1.5rem;
}

.owl-carousel-wrapper {
    position: relative;
}

    .owl-carousel-wrapper .owl-title {
        display: flex;
        width: 100%;
        align-items: center;
    }

        .owl-carousel-wrapper .owl-title a {
            color: black;
        }

        .owl-carousel-wrapper .owl-title .title {
            display: flex;
            width: 79vw;
            align-items: center;
            color: black;
            padding-left: 15px;
            text-wrap: nowrap;
        }

            .owl-carousel-wrapper .owl-title .title:before {
                content: "";
                height: 1px;
                border: 2px solid;
                width: 30%;
                display: inline-block;
            }

            .owl-carousel-wrapper .owl-title .title:after {
                content: "";
                height: 1px;
                border: 2px solid;
                width: 100%;
                display: inline-block;
            }

    .owl-carousel-wrapper .title > * {
    }


.owl-nav i {
    color: black !important;
    font-size: 2em !important;
    border: none !important;
}

    .owl-nav i:active, .owl-nav i:hover {
        color: var(--c-green-light) !important;
    }


.owl-carousel .owl-stage-outer {
    padding: 0 1px;
}

.owl-carousel {
    display: none;
    width: 100%;
    position: relative;
    direction: ltr !important;
}

    .owl-carousel .owl-item {
        direction: rtl;
    }

        .owl-carousel .owl-item .thumbnail {
            min-height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

            .owl-carousel .owl-item .thumbnail .old-price {
                color: red;
                text-decoration: line-through;
            }

            .owl-carousel .owl-item .thumbnail .price {
            }

        .owl-carousel .owl-item .caption a.book_link_title {
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            display: block;
            color: #000;
        }

        .owl-carousel .owl-item .header {
            height: 300px;
        }

        .owl-carousel .owl-item img {
            max-height: 300px;
        }

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        -moz-backface-visibility: hidden
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            line-height: 0;
            height: 0
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden
    }

    .owl-carousel .owl-item, .owl-carousel .owl-wrapper {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0)
    }

    .owl-carousel .owl-item {
        position: relative;
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        transition: all 1s;
    }

        .owl-carousel .owl-item .card > a {
            overflow: hidden;
        }

            .owl-carousel .owl-item .card > a img {
                transition: all .4s;
            }

        .owl-carousel .owl-item:hover .card > a img {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
        }

    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
        display: none
    }

    .no-js .owl-carousel, .owl-carousel.owl-loaded {
        display: block
    }

    .owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block
    }

    .owl-carousel.owl-hidden {
        opacity: 0
    }

    .owl-carousel.owl-drag .owl-item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: grab
    }

    .owl-carousel.owl-rtl {
        direction: rtl
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right
        }

    .owl-carousel .animated {
        animation-duration: 1s;
        animation-fill-mode: both
    }

    .owl-carousel .owl-animated-in {
        z-index: 0
    }

    .owl-carousel .owl-animated-out {
        z-index: 1
    }

    .owl-carousel .fadeOut {
        animation-name: fadeOut
    }

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}


.owl-carousel .owl-next, .owl-carousel .owl-prev {
    position: absolute;
    display: inline-block;
    top: 43%
}

.tm-category-panel .tm-category-panel-menu > li, .tm-search-block .tm-list-toggle {
    position: relative
}

.owl-carousel .owl-next {
    left: 15px
}

.owl-carousel .owl-prev {
    right: 15px
}

    .owl-carousel .owl-next.disabled, .owl-carousel .owl-prev.disabled {
        display: none
    }

.owl-nav i {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-size: 20px;
    color: #d6d6d6;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    border: 1px solid #d6d6d6
}

    .owl-nav i:active, .owl-nav i:hover {
        color: #ff5252
    }
/*#endregion owlcarousel */
/*#region hotdeals */
.hot-deals .owl-title .title {
    width: 84vw !important;
}

.hot-deals .owl-title .fa-percentage {
    background-color: var(--c-green-light);
    padding: 0.5rem;
    color: white;
    margin: 0 10px 0 0;
}

@media only screen and (max-width: 430px) {
    .hot-deals .owl-title .title {
        width: 100vw !important;
    }
}

.hot-deals .link {
    position: relative;
}

    .hot-deals .link .sale, .product .card .link .sale {
        background-color: var(--c-green-light);
        position: absolute;
        top: 10px;
        right: 4px;
        display: flex;
        z-index: 99;
        color: white;
        padding: 0.5rem;
        border-radius: var(--bs-border-radius) !important;
    }

        .hot-deals .link .sale span, .product .card .link .sale span {
            margin-left: 10px;
        }
/*#endregion hotdeals */
/*#region NOTIFICATIONS & POPUPS */
.bar-notification {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 15px 10px 15px 25px;
    line-height: 16px;
    color: #fff;
    opacity: 0.95;
}

    .bar-notification.success {
        background-color: #4bb07a;
    }

    .bar-notification.error {
        background-color: #e4444c;
    }

    .bar-notification .content {
        margin: 0 0 0 10px;
    }

        .bar-notification .content a {
            color: #fff;
            text-decoration: underline;
        }

    .bar-notification .close {
        position: absolute;
        top: 0;
        left: 0;
        width: 32px;
        height: 32px;
        margin: 7px;
        background: #fff url('../images/close.png') center no-repeat;
        cursor: pointer;
    }

.noscript {
    border-bottom: 1px solid #333;
    background-color: #ff9;
    padding: 30px 15px;
    text-align: center;
    line-height: 22px;
    color: #444;
}

.ajax-loading-block-window {
    position: fixed;
    top: 50%;
    right: 50%;
    z-index: 999;
    width: 32px;
    height: 32px;
    margin: -16px -16px 0 0;
    background: url('../images/loading.gif') center no-repeat;
}

.please-wait {
    background: url('../images/ajax-loader-small.gif') no-repeat;
    padding-right: 20px;
    font-size: 14px;
}
/*#endregion NOTIFICATIONS & POPUPS */
/*#region searchpage */
.search-page .product .card {
    background-color: #f1f1f1;
    border: none;
    min-height: 37rem;
}

    .search-page .product .card .card-header {
        background-color: transparent !important;
        border: none;
        height: 400px;
    }

    .search-page .product .card .product-title, .related-products-grid .product .card .title {
        color: black;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .search-page .product .card .price-wrap, .related-products-grid .product.card .price-wrap {
        display: flex;
        flex-direction: column;
        text-align: right;
        min-height: 50px;
    }

    .search-page .product .card .card-body .buttons, .related-products-grid .card .card-body .buttons {
        min-height: 38px;
    }

    .search-page .product .card img.card-img-top {
        max-height: 400px;
    }

    .search-page .product .card ul li {
        min-height: 24px;
    }

.related-products-grid .product .card {
    background-color: #f1f1f1;
    border: none;
    min-height: 30rem;
}

.sorting-catalog .sort-item.active {
    color: var(--bs-gray-900);
}

.sorting-catalog a {
    color: var(--bs-gray-500);
    margin: 0 8px;
}

    .sorting-catalog a:hover {
        color: var(--bs-gray-900);
    }

.category-nav ul li a {
    color: black;
}

    .category-nav ul li a.active {
        color: var(--c-green-light);
    }

.category-nav .close {
    display: inline-flex;
    float: right;
    margin: 0 0 0 10px;
    cursor: pointer;
}

    .category-nav .close:after {
        font-family: fontawesome;
        content: "\f0fe";
    }

    .category-nav .close.expanded:after {
        font-family: fontawesome;
        content: "\f146";
    }
/*#region pagination */
.pagination {
    justify-content: center;
}

    .pagination .page-link {
        color: black;
        border: 1px solid var(--c-red) !important;
        border-radius: var(--bs-border-radius) !important;
        padding: 0.3rem .7rem !important;
    }

        .pagination .active > .page-link, .pagination .page-link.active {
            color: white;
            background-color: var(--c-red);
            border-color: var(--c-red);
        }

        .pagination .page-link:focus {
            box-shadow: none;
        }
/*#endregion pagination */
.breadcrumb-wrapper {
    background-color: var(--c-green);
}

    .breadcrumb-wrapper .breadcrumb a {
        color: white;
    }
/*#endregion searchpage */
/* #region product detail */
.product-detail {
}

    .product-detail .images-wrapper .big-img-wrap {
        width: 40% !important;
        margin: 0 auto;
    }

    .product-detail .detail {
        display: flex;
        flex-direction: column;
        border-radius: var(--bs-border-radius) !important;
        border: 3px solid var(--c-red);
        padding: 1.5rem;
    }

        .product-detail .detail > div {
            margin: 0 0 1rem 0;
        }

        .product-detail .detail .pd-d-middle ul li {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }

        .product-detail .detail .pd-d-middle h3 {
            border-bottom: 3px solid black;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .product-detail .detail .price-wrap {
            display: flex;
            font-size: 2rem;
        }

    .product-detail .tab-content, .account-page > fieldset {
        border: 3px solid var(--c-green-light);
        min-height: 20vh;
        border-top-left-radius: var(--bs-border-radius) !important;
        border-bottom-left-radius: var(--bs-border-radius) !important;
        border-bottom-right-radius: var(--bs-border-radius) !important;
    }

    .product-detail .comments-wrapper {
        padding: 1.5rem;
        overflow-y: hidden;
    }

        .product-detail .comments-wrapper:hover {
            overflow-y: scroll;
        }

    .product-detail .nav-tabs, .account-page .nav-tabs {
        border-bottom: none;
    }

        .product-detail .nav-tabs .nav-item.show .nav-link, .product-detail .nav-tabs .nav-link.active, .account-page .nav-tabs .nav-item.show .nav-link, .account-page .nav-tabs .nav-link.active {
            color: white;
            background-color: var(--c-green-light);
            border-color: var(--c-green-light);
        }

        .product-detail .nav-tabs .nav-link:focus, .product-detail .nav-tabs .nav-link:hover, .account-page .nav-tabs .nav-link:focus, .account-page .nav-tabs .nav-link:hover {
            color: white;
            background-color: var(--c-green-light);
        }

        .product-detail .nav-tabs .nav-link, .account-page .nav-tabs .nav-link {
            margin-bottom: calc(var(--bs-nav-tabs-border-width)* -1);
            background: 0 0;
            border: var(--bs-nav-tabs-border-width) solid var(--c-green-light);
            border-top-right-radius: 0;
            border-top-left-radius: 1rem;
            color: var(--c-green-light);
            font-weight: bold;
        }

.related-products-grid > .title {
    border-bottom: 3px solid;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}
/* product review */
.product-review {
}

    .product-review p.stars {
        margin: 10px 30px 10px 0;
    }

    .product-review .comment-reply-title {
        display: block;
        background-color: var(--c-red);
        color: white;
        padding: 1rem;
        font-size: 1.5rem;
    }

    .product-review .comment-form-comment {
        display: flex;
        flex-direction: row;
        text-wrap: nowrap;
        align-items: center;
    }

        .product-review .comment-form-comment > label {
            min-width: 20%;
        }

    .product-review .btn.submit {
        font-size: 1.5rem !important;
        border-radius: 0;
    }

.woocommerce p.stars a {
    position: relative;
    height: 2em;
    width: 1.5em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none
}

    .woocommerce p.stars a::before {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 2em;
        height: 2em;
        line-height: 1;
        font-family: WooCommerce;
        font-size: 1.7em;
        content: '\e021';
        text-indent: 0
    }

    .woocommerce p.stars a:hover ~ a::before {
        content: '\e021'
    }

.woocommerce p.stars:hover a::before {
    content: '\e020'
}

.woocommerce p.stars.selected a.active::before {
    content: '\e020'
}

.woocommerce p.stars.selected a.active ~ a::before {
    content: '\e021'
}

.woocommerce p.stars.selected a:not(.active)::before {
    content: '\e020'
}

#review_form_wrapper .comment-form .stars a {
    border: none;
    color: #fed700;
    line-height: 14px
}

    #review_form_wrapper .comment-form .stars a:after {
        color: #afafaf;
        font-family: FontAwesome;
        font-weight: 400
    }

    #review_form_wrapper .comment-form .stars a.star-1:after {
        content: '\f006'
    }

    #review_form_wrapper .comment-form .stars a.star-2:after {
        content: '\f006\f006'
    }

    #review_form_wrapper .comment-form .stars a.star-3:after {
        content: '\f006\f006\f006'
    }

    #review_form_wrapper .comment-form .stars a.star-4:after {
        content: '\f006\f006\f006\f006'
    }

    #review_form_wrapper .comment-form .stars a.star-5:after {
        content: '\f006\f006\f006\f006\f006'
    }

    #review_form_wrapper .comment-form .stars a.active:after,
    #review_form_wrapper .comment-form .stars a:hover:after {
        color: #fed700
    }
/* #endregion product detail */
/* #region blogs */
.blog-page {
    margin: 2rem auto;
}

.blog-posts {
    width: 100%;
    margin: 0 auto 2rem auto;
    -moz-column-count: 2;
    -moz-column-gap: 3%;
    /*-moz-column-width:30%;*/
    -webkit-column-count: 2;
    -webkit-column-gap: 3%;
    /*-webkit-column-width: 30%;*/
    column-count: 2;
    column-gap: 3%;
    /*column-width: 30%;*/
}

    .blog-posts .post {
        margin-bottom: 20px;
        /*height:400px;*/
        background-color: var(--c-green);
        padding: 1rem;
    }

        .blog-posts .post img {
            width: 100%;
            border-radius: 1rem;
            -webkit-border-radius: 1rem;
            -moz-border-radius: 1rem;
        }

        .blog-posts .post .post-head {
            display: flex;
            flex-direction: column;
        }

            .blog-posts .post .post-head .post-date {
                color: var(--bs-gray-600);
            }
/*#endregion blogs */
/*#region footer */
.footer-upper {
    background-color: var(--c-green-light);
}

    .footer-upper .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        padding: 10px 0;
    }

.footer-bottom {
    background-color: var(--c-red);
    color: white;
}

    .footer-bottom a {
        color: white;
    }

    .footer-bottom ul.list {
        padding: 0;
        margin: 0;
    }

    .footer-bottom .title strong {
        border-bottom: 1px solid;
        margin: 0 0 10px 0;
        display: inline-block;
    }

.enamad-wrapper, .samandehi {
    text-align: center;
}

    .enamad-wrapper img, .samandehi img {
        width: 70%;
        background-color: white;
    }

.footer-lower {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    justify-content: center;
    padding: 2rem 0;
}

#back-top {
    display: flex;
    background: var(--bs-gray-600);
    align-items: center;
    width: 3rem;
    justify-content: center;
    height: 3rem;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 0px 1px 1px rgba(255,255,255,.1);
}
/*#endregion footer */

@media only screen and (max-width: 576px) {
    .search-page .product .card .card-header {
        height: 230px;
    }

    .search-page .product .card img.card-img-top {
        max-height: 230px;
    }

    .search-page .product .card, .related-products-grid .product .card {
        min-height: 27rem;
    }

    .header-top .header-logo a {
        margin: auto;
    }

    .owl-carousel .owl-item .header {
        height: 260px;
    }

    .owl-carousel .owl-item img {
        max-height: 260px;
    }
}

@media only screen and (max-width: 390px) {
    .product .card {
        min-height: inherit;
    }

    .header-logo {
        text-align: center;
    }

    .newsletter-email {
        width: 300px;
    }

    .tab-categories .nav-tabs .nav-link {
        margin: 0 .2rem;
    }
}

.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
    padding-left: 30px;
}

    .btn-loading::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 15px;
        width: 18px;
        height: 18px;
        margin: -9px 0 0 -9px;
        border: 2px solid transparent;
        border-radius: 50%;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        animation: spin 0.8s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*********** skeleton & captcha *************/
.captcha-skeleton {
    /* width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;*/
}

.skeleton-header {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-body {
    height: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-footer {
    height: 30px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.captcha-skeleton-body {
    width: 304px;
    height: 78px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.captcha-skeleton.captcha-loaded {
    display: none;
}
/* #region autocomplete searchbox */

#search {
    display: flex;
    position: relative;
    width: 100%;
}

    #search input[type=text] {
        width: 90%;
        padding-right: 2em;
    }

    #search .search-spinner {
        padding-right: 1em;
    }

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 4px 4px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    width: 90%;
}

.autocomplete-item {
    padding: 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s;
}

    .autocomplete-item:last-child {
        border-bottom: none;
    }

.autocomplete-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.autocomplete-image {
    width: 50px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-left: 15px;
    border: 1px solid #eee;
}

.autocomplete-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.autocomplete-item-active,
.autocomplete-item:hover {
    background-color: #f8f9fa;
}

    .autocomplete-item-active .autocomplete-text,
    .autocomplete-item:hover .autocomplete-text {
        color: #4a90e2;
    }

.search-spinner {
    position: absolute;
    right: .5em;
    top: 19px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50% !important;
    border-top-color: #4a90e2;
    animation: spin 1s ease-in-out infinite;
    /*display: none;*/
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .search-spinner.visible {
        opacity: 1;
    }

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.autocomplete-results::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.autocomplete-results::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

    .autocomplete-results::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

/* #endregion autocomplete searchbox */
/*#region shopping-cart */
.shopping-cart-page .header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}
/*#endregion*/