@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 */

* {
    margin: 0;
    outline: none;
    padding: 0;
    text-decoration: none;
    --c: #009fe3; /* common color */
    --c-dark: #006895;
    --c-medium: #0084bc;
    --c-light: #5acdff;
    --c-extra-light: #E6F5FB; /* rgb(230,248,251);*/
    --tc: #495057; /* text color */
    --tc-medium: #818b95;
    --tc-light: #b6bcc2;
}

    *, *:before, *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

html {
    font-size: 14px;
}

body {
    color: var(--tc);
    font-family: IRANYekanXFaNum, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

dl, ol, ul {
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--c);
}
/* 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;
}

.required, .message-failure, .message-error {
    color: red;
}

.center-1 {
    min-height: 50vh;
}

.btn-default {
    color: var(--c);
    background-color: #fff;
    border-color: var(--c);
}

    .btn-default.active, .btn-default:active, .show > .btn-default.dropdown-toggle {
        color: #fff;
        background-color: var(--c);
        border-color: var(--c);
    }

    .btn-default:hover {
        color: #fff;
        background-color: var(--c);
        border-color: var(--c);
    }

    .btn-default:focus {
        color: #fff;
        background-color: var(--c);
        border-color: var(--c);
        box-shadow: 0 0 0 0.25rem rgb(0, 159, 227, 50%);
    }

    .btn-default:focus, .btn-default.active:focus, .btn-default:active:focus, .show > .btn-default.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.25rem rgb(0, 159, 227, 50%);
    }

.btn-default-2 {
    color: var(--bs-gray);
    background-color: var(--bs-gray-300);
    border-color: var(--bs-gray-300);
}

    .btn-default-2:hover {
        background-color: var(--bs-gray-500);
        border-color: var(--bs-gray-500);
    }

.btn-default-3 {
    color: #fff;
    background-color: var(--c);
    border-color: var(--c);
}

    .btn-default-3.active, .btn-default-3:active, .show > .btn-default-3.dropdown-toggle {
        color: #fff;
        background-color: var(--c-medium);
        border-color: var(--c-medium);
    }

    .btn-default-3:hover {
        color: #fff;
        background-color: var(--c-medium);
        border-color: var(--c-medium);
    }

    .btn-default-3:focus {
        color: #fff;
        background-color: var(--c);
        border-color: var(--c);
        box-shadow: 0 0 0 0.25rem rgb(0, 159, 227, 50%);
    }

    .btn-default-3:focus, .btn-default-3.active:focus, .btn-default-3:active:focus, .show > .btn-default-3.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.25rem rgb(0, 159, 227, 50%);
    }

.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;
    }


.page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 5vh 0;
}

    .page .header {
        color: var(--c);
        margin: 2rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
    }

        .page .header:before, .page .header:after {
            content: "";
            border: 1px dashed var(--c);
            width: 100px;
            height: 0;
            margin: 0 10px;
        }

        .page .header h1 {
            font-size: 1.2rem;
        }

.fieldset h1, fieldset h1, fieldset legend {
    font-size: 1.2rem;
    line-height: 1.2;
}

.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;
    }

.table > thead {
    background-color: var(--c-extra-light);
}

    .table > thead tr th {
        padding: 1.5rem 0.5rem;
    }

.table tr td {
    display: table-cell;
    vertical-align: middle;
}

.text-c {
    color: var(--c);
}

.text-c-light {
    color: var(--c-light);
}

.text-c-extralight {
    color: var(--c-extra-light);
}

.text-c-medium {
    color: var(--c-medium);
}

.text-tc-medium {
    color: var(--tc-medium)
}

.text-tc-light {
    color: var(--tc-light)
}

.bg-card {
    background-color: #f7f7f7;
}

.bg-extralight {
    background-color: var(--c-extra-light)
}
/*#region borders */
.gradient-box {
    margin: auto;
    max-width: 22em;
    position: relative;
    padding: 8px;
    box-sizing: border-box;
    --border: 5px;
    color: #FFF;
    background-clip: padding-box; /* !importanté */
    border: solid var(--border) transparent; /* !importanté */
    border-radius: 5px;
}

    .gradient-box:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: var(--border); /* !importanté */
        border-radius: inherit; /* !importanté */
        background: linear-gradient(to bottom right, #029FD9 0, transparent 30%);
    }

    .gradient-box:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: var(--border); /* !importanté */
        border-radius: inherit; /* !importanté */
        background: linear-gradient(to top left, #029FD9 0, transparent 30%);
    }

    .gradient-box * {
        border-radius: 5px;
    }
/*#endregion borders */
/*#endregion*/
/*#region form validation */
.field-validation-error {
    color: red;
}

.input-validation-error {
    border-color: #dc3545;
    padding-left: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.valid {
    border-color: #198754;
    padding-left: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .form-control.valid:focus {
        border-color: #198754;
        box-shadow: 0 0 0 0.25rem rgba(25,135,84,.25);
    }
/*#endregion form validation */
/*#region Header */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    padding: 0 10px;
    background: white;
    z-index: 999;
    border-bottom: 1px solid var(--bs-border-color);
    display: flex;
    align-items: center;
    height: 80px;
}

.master-wrapper-content {
    margin-top: 100px;
}
/* Logo */
.main-header .logo-wrapper h1 {
    font-size: 1rem;
    display: none;
}

.main-header .logo-wrapper img {
    max-width: 80px;
    max-height: 50px;
}
/*#region searchbox */
.search-wrap {
    min-width: 300px;
}

#searchbox_searchterms:focus {
    box-shadow: none;
}

#searchbox_Button {
    background: transparent;
    color: var(--c);
}

#searchbox-dropdown {
    min-width: 600px;
    left: 0px !important;
    right: auto !important;
}

.search-history {
    padding: 1rem;
}

    .search-history .term {
        background-color: var(--bs-gray-200);
        display: block;
        margin: 5px;
        text-align: center;
        padding: 3px;
        overflow: hidden;
        text-overflow: ellipsis;
        text-wrap: nowrap;
    }
/*#endregion searchbox */
/*#region headerlinks */
.header-links-wrapper > div > div {
    margin: 0 20px 0 0;
}

.header-links ul li {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    text-align: right;
    padding: 1rem;
    width: 100%;
}

    .header-links ul li i {
        color: var(--bs-gray-600);
        margin-left: 3px;
    }

.flyout-cart {
    min-width: 20vw;
    padding: 0;
    z-index: 1055;
    left: 20vw;
    top: 63px;
    position: fixed;
}

    .flyout-cart .fc-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .flyout-cart .fc-cart-items {
        max-height: 50vh;
        overflow-y: scroll;
        /*-ms-overflow-style:none;
        scrollbar-width:none;*/
    }

        /*.flyout-cart .fc-cart-items::-webkit-scrollbar{
            display:none;
        }*/
        .flyout-cart .fc-cart-items .edit-item, .flyout-cart .fc-cart-items .info-item {
            height: 160px;
            display: flex;
            flex-direction: column;
            align-items: end;
            justify-content: space-evenly;
        }

        .flyout-cart .fc-cart-items .info-item {
            text-wrap: wrap;
        }

    .flyout-cart .ti-close {
        cursor: pointer;
    }
/*#endregion headerlinks */
/*#region scrollbar */

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }

/*#endregion scrollbar */
/*#region topmenu */
.top-menu .desktop > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    .top-menu .desktop > ul > li > a {
        padding: 2rem 1rem;
    }

.top-menu .desktop ul {
    margin: 0;
    padding: 0;
}

    .top-menu .desktop ul li {
        position: relative;
        cursor: pointer;
    }

.top-menu .desktop > ul > li > a {
    border-bottom: 2px solid transparent;
    transition: all .3s;
}

    .top-menu .desktop > ul > li > a:hover {
        background: none;
        border-bottom: 2px solid var(--c);
        color: var(--c);
    }

.top-menu .desktop > ul > li.category-wrapper:hover > a {
    border-bottom: 2px solid var(--c);
    color: var(--c);
}

.top-menu .desktop > ul > li.category-wrapper > a i {
    transition: all .5s;
}

.top-menu .desktop > ul > li.category-wrapper:hover > a i {
    transform: rotate(180deg);
}

.top-menu .desktop ul li a {
    color: black;
    text-wrap: nowrap;
    width: 100%;
}

.top-menu .desktop > ul > li ul li:hover {
    background-color: var(--bs-gray-400);
}

.top-menu .desktop ul li:hover > .sublist {
    opacity: 1;
    visibility: visible;
}

.top-menu .desktop ul.sublist li {
    padding: .8rem .5rem;
    min-width: 150px;
    display: flex;
    justify-content: space-between;
}

.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.level-0 {
        right: 0;
        top: 51px;
    }

    .top-menu .desktop .sublist .sublist-toggle {
        font-family: fontawesome;
        float: left;
    }

        .top-menu .desktop .sublist .sublist-toggle:after {
            content: "\f104";
        }

.top-menu {
    position: relative;
}

    .top-menu ul {
        list-style: none;
    }

        .top-menu ul li a {
            color: black;
        }

.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;
            }

/*#endregion topmenu */
/*#region topmenu mobile */
/* MOBILE MENU */
.top-menu.mobile {
    display: none;
    overflow-y: scroll;
    max-height: 400px;
}

.mobile-menu {
    background: linear-gradient(90deg, rgba(0,159,227,1) 0%, rgba(255,255,255,1) 100%);
}

    .mobile-menu ul li {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f5f5f5;
    }

        .mobile-menu ul li:last-child {
            border-bottom: none;
        }

    .mobile-menu ul.sublist li:last-child {
        border-bottom: none;
    }

    .mobile-menu .sublist-toggle {
        display: inline-block;
        font-size: 1.5em;
        line-height: 0;
        margin: 10px 0 0 10px;
        float: left;
    }

        .mobile-menu .sublist-toggle.plus:after {
            font-family: fontawesome;
            content: "\f0fe";
        }

        .mobile-menu .sublist-toggle.minus:after {
            font-family: fontawesome;
            content: "\f146";
        }

    .mobile-menu .sublist {
        display: none;
    }

    .mobile-menu .menu-toggle {
        display: block;
    }

        .mobile-menu .menu-toggle:after {
            font-family: fontawesome;
            content: "\f0c9";
            font-size: 2em;
            border: 1px solid #fff;
            padding: 5px;
            margin: 5px;
        }
/*#endregion topmenu mobile */
/*#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;
}

.please-wait {
    background: url(../images/ajax-loader-small.gif) no-repeat;
    padding-right: 20px;
    background-position-x: right;
    background-position-y: center;
    margin: 3px 0 0 0;
    display: block;
}
/*#endregion NOTIFICATIONS & POPUPS */
/*#region notification and toasts */
.success .toast-header {
    background-color: var(--bs-success);
}

.error .toast-header {
    background-color: var(--bs-danger);
}
/*#endregion notification and toasts */
/*#endregion*/
/*#region filters */
.price-filter {
    margin-bottom: 4rem !important;
}

.ui-widget {
    font-family: inherit;
    font-size: .9rem;
}

.ui-widget-header {
    background: var(--c);
}

.ui-widget-content {
    border: 1px solid transparent;
    background: var(--bs-gray-400);
}

    .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
        border: 1px solid var(--c-light);
        background: var(--c);
        border-radius: 50%;
    }
/*.ui-slider-float .ui-slider-tip, .ui-slider-float .ui-slider-tip-label {
    margin-left: -20px !important;
}

    .ui-slider-float .ui-slider-tip:before, .ui-slider-float .ui-slider-pip .ui-slider-tip-label:before, .ui-slider-float .ui-slider-tip:after, .ui-slider-float .ui-slider-pip .ui-slider-tip-label:after {
        left: 26% !important;
    }*/
/*#endregion filters */
/*#region category navigation */
.category-navigation a:hover {
    font-weight: bold;
}

.category-navigation ul:not(.level-0) {
    border-top: 1px solid var(--bs-border-color);
    margin: 15px 0;
}

.category-navigation ul li {
    list-style: none;
    margin: 10px 0;
}

.category-navigation ul.level-0 li a {
    color: var(--tc);
}

.category-navigation ul.level-1 li a {
    color: var(--tc-medium);
}

.category-navigation a.active {
    color: var(--c) !important;
}

.category-navigation .close {
    font-family: "FontAwesome";
    font-size: 1.2rem;
    float: left;
    cursor: pointer;
}

    .category-navigation .close:before {
        content: "\f107";
    }

    .category-navigation .close.expanded:before {
        content: "\f106";
    }

/*#endregion category navigation */
/*#region customer navugarion */
.block-account-navigation a.active {
    font-weight: bold;
    border-bottom: 1px solid;
}
/*#endregion customer navigation */
/*#region breadcrumb */
.breadcrumbs-wrap {
    background: linear-gradient(90deg, rgba(0,159,227,1) 0%, rgba(255,255,255,1) 100%);
    padding: 2rem 0;
    margin: 2rem 0;
}

.breadcrumb {
    justify-content: center;
    margin: 0;
}

    .breadcrumb li {
        margin: 0 6px;
    }

        .breadcrumb li a {
            color: var(--tc);
            margin: 0 0 0 6px;
        }

            .breadcrumb li a:hover {
                font-weight: bold;
            }
/*#endregion breadcrumb */
/*#region pagination */
.pagination {
    justify-content: center;
}

    .pagination .page-link {
        border: none;
        border-radius: 50rem !important;
        padding: 0.5rem 1rem !important;
        margin: 0 5px;
        color: var(--tc);
    }

        .pagination .active > .page-link, .pagination .page-link.active {
            color: white;
            background-color: var(--c);
            border-color: var(--c);
        }

        .pagination .page-link:focus {
            box-shadow: 0 0 0 0.25rem var(--c-extra-light);
        }
/*#endregion pagination */
/*#region card */
.products .card {
    border: none;
    position: relative;
    margin:5px 1px;
}

    .products .card .card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;
    }

        .products .card .card-body .title {
            color: var(--tc);
        }

            .products .card .card-body .title:hover {
                color: var(--c);
            }

        .products .card .card-body .price-wrap .old-price, .old-price {
            color: #ccc;
            text-decoration: line-through;
            direction: rtl;
        }

        .products .card .card-body .price-wrap .price {
            color: var(--c);
        }

        .products .card .card-body .price-wrap .final_item_price, .products .card .card-body .price-wrap .item_price {
            direction: rtl;
        }

    .products .card .add-to-wishlist-button {
        visibility: hidden;
        background: transparent;
        border: none;
        position: absolute;
        left: 1rem;
        top: 1rem;
        display: block;
        z-index: 9;
        font-size: 1.5rem;
    }

        .products .card .add-to-wishlist-button svg {
            fill: red;
        }

    .products .card .buttons {
        visibility: hidden;
        width: 100%;
    }

        .products .card .buttons .no-stack {
            background: var(--bs-gray-400);
            padding: 0.6rem 0;
            color: var(--tc);
            display: block;
            text-align: center;
        }

        .products .card .buttons .reserve {
            background: orange;
            padding: 0.6rem 0;
            color: var(--tc);
            display: block;
            text-align: center;
        }

        .products .card .buttons .btn-addto-cart {
            color: white;
            background: var(--c);
            border: 0;
            width: 100%;
            padding: 0.6rem 0;
        }

            .products .card .buttons .btn-addto-cart:hover {
                background: var(--c-medium);
            }

    .products .card:hover {
        box-shadow: 0 0 4px 2px lightgray;
    }

        .products .card:hover .buttons {
            visibility: visible;
        }

        .products .card:hover .add-to-wishlist-button {
            visibility: visible;
        }

    .products .card .btnAddToCart:hover, .products .card .add-to-wishlist-button:hover {
        border: none;
    }
/*#endregion card */
/*#region owlcarousel panel */
.panel-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 4rem 0;
}

    .panel-header a {
        color: var(--tc);
    }

    .panel-header:before, .panel-header:after {
        content: "";
        border: 1px solid #ccc;
        width: 100px;
        height: 0;
        margin: 0 10px;
    }

.owl-carousel-wrapper {
    margin: 4vh 0 10vh 0;
}

.owl-carousel {
    position: relative;
}

    .owl-carousel .owl-next, .owl-carousel .owl-prev {
        position: absolute;
        display: inline-block;
        top: 43%
    }


    .owl-carousel .owl-next {
        left: -70px
    }

    .owl-carousel .owl-prev {
        right: -70px
    }

        .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: var(--c);
    border-radius: 50%;
    text-align: center;
    background: #fff;
    border: 1px solid var(--c)
}

    .owl-nav i:active, .owl-nav i:hover {
        font-weight: bold;
    }

.owl-carousel .owl-item img, .products .card .card-img-top {
    width: 70% !important;
    padding: 5px 0;
    margin: 0 auto;
    display: block;
}
/*#endregion owlcarousel panel */
/*#region blogs */

.blog-items .create-time {
    display: flex;
    flex-direction: row;
    justify-content: start;
    margin: 1rem 0;
}

    .blog-items .create-time > * {
        display: flex;
        align-items: center;
    }
/*#endregion blogs */
/*#region sorting catalog */
.sorting-catalog .sort-item.active {
    color: var(--c);
}

.sorting-catalog a {
    color: var(--tc-medium);
    margin: 0 8px;
}

    .sorting-catalog a:hover {
        color: var(--tc);
    }
/*#endregion sorting catalog */
/*#region product detail */
.product-detail ul.ul-description li {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 20px 0;
}

.product-detail .nav-tabs .nav-item.show .nav-link, .product-detail .nav-tabs .nav-link.active {
    color: var(--c);
    border-bottom: 1px solid var(--c);
    border-top: none;
    border-right: none;
    border-left: none;
}

.product-detail .nav-link {
    color: var(--tc-medium)
}

.product-detail .pd-description .tab-content {
    min-height: 25vh;
    padding: 3rem 0;
}

.rp-panel-header {
    display: flex;
    align-items: center;
    text-wrap: nowrap;
}

    .rp-panel-header:after {
        content: "";
        border: 1px solid #ccc;
        height: 0;
        margin: 0 10px;
        width: 100%;
    }
/* product review */
.woocommerce p.stars a {
    position: relative;
    height: 2em;
    width: 1.5em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    color: var(--bs-yellow);
}

    .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 .comment-form .comment-form-comment {
    display: flex;
}

.woocommerce .comment-form textarea {
    min-height: 200px;
}

.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
    }

.commentlist {
    padding: 0;
}

    .commentlist .comment {
        list-style: none;
        border: 1px solid var(--bs-gray-300);
        padding: 20px;
        border-radius: 0.5rem;
        margin: 0 0 10px 0;
    }

        .commentlist .comment .description {
            margin: 10px 0;
        }

        .commentlist .comment .avatar {
            margin: 0 0 0 10px;
        }

.product-review-helpfulness .vote-options {
    display: flex;
    flex-direction: row;
    margin: 10px 0 0 0;
}

    .product-review-helpfulness .vote-options > span {
        margin: 0 5px;
    }

    .product-review-helpfulness .vote-options .vote {
        cursor: pointer;
        color: var(--bs-gray-600);
    }

.product-review-helpfulness .result {
    display: none;
}
/*#endregion product detail */
/*#region shopping cart and checkout */

.checkout #newaddress-container {
    display: none;
}

.shopping-cart-page .notices-wrapper {
    min-height: 400px;
    display: flex;
    align-items: center;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
/*#endregion shopping cart and checkout */
/*#region account page */
.account-page {
}

    .account-page .order-list .order-item {
        border-bottom: 1px solid var(--bs-border-color);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

        .account-page .order-list .order-item .order-status {
            border-radius: 5px;
            padding: 0 10px;
        }

        .account-page .order-list .order-item .pending {
            background-color: var(--bs-warning);
        }

        .account-page .order-list .order-item .cancelled {
            background-color: var(--bs-danger);
            color: white;
        }

        .account-page .order-list .order-item .complete {
            background-color: var(--bs-success);
            color: white;
        }

        .account-page .order-list .order-item .processing {
            background-color: var(--bs-info);
            color: white;
        }
/*#endregion account page */
/*#region waiting animation */
/* HTML: <div class="loader"></div> */
.loader {
    color: var(--c);
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
    transform: translateX(-38px);
    animation: l21 .5s infinite alternate linear;
    position: fixed;
    top: 50%;
    right: 50%;
    z-index: 999;
    display: none;
}

@keyframes l21 {
    50% {
        box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px
    }

    100% {
        box-shadow: 19px 0 0 0, 38px 0 0 3px, 57px 0 0 7px
    }
}


/*#endregion waiting animation */
/*#region footer*/
.footer-up {
    background-color: var(--c-extra-light);
    min-height: 150px;
    align-items: center;
    display: flex;
    margin: 20px 0;
}

    .footer-up .col {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

        .footer-up .col .icon {
            position: relative;
            margin: 0 0 10px 0;
        }

            .footer-up .col .icon .fa-percent {
                position: absolute;
                top: -8px;
                left: 46%;
                font-size: 1.4rem;
                border: 1px solid;
                padding: 5px;
                border-radius: 50%;
            }

    .footer-up i {
        font-size: 3rem;
    }

.footer {
    text-align: right;
    font-size: 1rem;
    padding: 3rem 0;
}

    .footer ul {
        list-style: none;
        padding: 0
    }

        .footer ul li {
            margin: 7px 0;
        }

    .footer .title {
        font-size: 1.1rem;
        font-weight: 400;
    }

.footer-lower {
    text-align: center !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.social .networks {
    display: flex;
    justify-content: start;
}

    .social .networks a {
        font-size: 1.7rem;
        margin: 0 1rem;
    }
/*#endregion footer */


/*#region mobile */

@media only screen and (max-width: 576px) {
    .master-wrapper-content {
        margin-top: 175px;
    }

    .main-header {
        padding: 10px;
        height: inherit;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .flyout-cart {
        top: 0;
        left: 8px;
        width: 95vw;
    }

        .flyout-cart .fc-cart-items > * {
            flex-wrap: nowrap;
            text-wrap: nowrap;
        }

    #searchbox-dropdown {
        width: 100vw !important;
        right: 0 !important;
        min-width: auto;
        left: 0 !important;
    }

    .owl-carousel .owl-next {
        left: 15px
    }

    .owl-carousel .owl-prev {
        right: 15px
    }
}

/*#endregion mobile */
