/*================================================
 [  Table of contents  ]
 ================================================
#1.  Fonts
#2.  Global css
#3.  Common Style (Pagination, Main Titles, Preloader)
#4.  Header
#5.  Home Slider
#6.  Order Type
#7.  Home Categories
#8.  Home Products
#9.  Footer
#10. Products Grid & List
#11. Filter
#12. Product Page
#16. Order Done, Empty Cart, Empty Wishlist
#17. Cart
#.18 User Side Modal
#.19 Menu Side Modal
#.20 Sarch Container
#.21 Responsive

#main color: #0b73ec
#secondary color: #ff9807
#main background: #0b73ec
#secondary bckground: #f6f9fd
 ======================================
 [ End table content ]
 ======================================*/

/* =============================================================================
#1. Fonts
============================================================================= */

/******  Google fonts ******/
@import url(https://fonts.googleapis.com/earlyaccess/notokufiarabic.css);


/* =============================================================================
#2. Global css
============================================================================= */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Kufi Arabic', sans-serif;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
    direction: rtl;
    text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
    font-weight: 600;
}

a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

p {
    line-height: 28px;
    color: #77838f;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

/* =============================================================================
#3. Common Style (Pagination, Main Titles, Preloader)
============================================================================= */
.section-block {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-weight: 400;
    font-size: 22px;
    position: relative;
    padding-right: 50px;
}

.section-title h2:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1.5px;
    background: #e4e4e4;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-title.text-center h2:before {
    display: none;
}

.section-title.text-center h2 span {
    position: relative;
}

.section-title.text-center h2 span:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1.5px;
    background: #e4e4e4;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
}

.section-title.text-center h2 span:after {
    position: absolute;
    content: "";
    width: 40px;
    height: 1.5px;
    background: #e4e4e4;
    right: -55px;
    top: 50%;
    transform: translateY(-50%);
}

.breadcrumb {
    background: transparent;
    color: #fff;
    padding: 0;
}

.title-box h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb a {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
}

.breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.6);
}

.btn {
    border-radius: 3px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.btn.focus,
.btn:focus,
.btn:hover {
    outline: none !important;
    box-shadow: none;
    color: inherit;
}

.theme-btn {
    background: #0b73ec;
    background-size: 200% auto;
    color: #fff !important;
    min-width: 150px;
    padding: 12px;
    position: relative;
}

.theme-btn:hover {
    opacity: 0.8;
}

.theme-btn-sec {
    color: #377dff;
    background: rgba(55, 125, 255, 0.1);
    padding: 13px;
}

.theme-btn-sec:hover {
    color: #fff;
    background: #377dff;
    box-shadow: 0 4px 11px rgb(55 125 255 / 35%);
}

.seemore-link {
    color: #9fa5ab;
    position: relative;
    font-weight: 500;
}

.seemore-link span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.seemore-link span:after {
    font-family: 'themify';
    content: "\e662";
    position: absolute;
    opacity: 0;
    top: 5px;
    left: -20px;
    font-size: 9px;
    transition: 0.5s;
}

.seemore-link span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.28, .38, 0, .81);
    transition: -webkit-transform .4s cubic-bezier(.28, .38, 0, .81);
    -o-transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    transition: transform .4s cubic-bezier(.28, .38, 0, .81), -webkit-transform .4s cubic-bezier(.28, .38, 0, .81);
}

.seemore-link:hover span:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.seemore-link:hover {
    color: #0b73ec;
    border-bottom: 1px transparent;
}

.seemore-link:hover span {
    padding-left: 20px;
}

.seemore-link:hover span:after {
    opacity: 1;
    left: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-control {
    height: 45px;
    padding: 0.75rem 1rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 45px;
    color: #1e2022;
    background-color: #fff;
    border: 1px solid #d5dae2;
    border-radius: 3px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0b73ec;
}

textarea.form-control {
    height: auto;
    overflow: hidden;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 45px;
    padding-right: 30px;
    padding-left: 15px;
}

.search-box .select2-container .select2-selection--single {
    height: 45px;
}

.search-box .select2 {
    margin-left: 20px;
    margin-right: 20px;
}

.search-box .select2-container--default .select2-selection--single {
    border: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #eee;
}

.select2-dropdown {
    border: none;
    box-shadow: 0 4px 11px rgb(200 205 210 / 50%);
}

.select2-container--default .select2-selection--single {
    padding: 0;
    height: 45px;
    border: 1px solid #d5dae2;
}

.select2-search__field:focus {
    outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    left: 10px;
}

.search-filter .filter-btn {
    background: rgb(105 104 172 / 12%);
    border-radius: 20px;
    margin: 15px 15px 15px 0;
    padding: 8px 25px;
    color: #111013;
    font-weight: 500;
}

.form-check-input {
    margin-right: 5px;
    flex: none;
}

.intl-tel-input {
    display: block;
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
    background-color: transparent;
}

.pagination {
    justify-content: center;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    background: transparent;
    border: none;
}

.page-item .page-link {
    -webkit-transition: all 500ms;
    transition: all 500ms;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 50%;
    color: #77838f;
    font-size: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    margin-left: 10px;
}

.page-item:not(:first-child) .page-link {
    margin-right: -1px;
    margin-left: 10px;
}

.pagination .ti-angle-left:before {
    content: "\e649";
}

.pagination .ti-angle-right:before {
    content: "\e64a";
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    font-size: 12px;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    margin-right: 0;
    font-size: 12px;
}

.page-item .page-link:hover {
    color: #0b73ec;
    background: rgb(234 242 255);
}

.page-item.active .page-link {
    background: #005fff;
    color: #fff;
}

.page-link:focus {
    outline: none;
    box-shadow: none;
}

.text-muted {
    color: #8c98a4 !important;
}

/*------------- Page Preloader --------------*/
#preloader {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    z-index: 9999;
    top: 0;
}

#preloader-circle {
    position: relative;
    width: 80px;
    height: 80px;
    top: 43%;
    margin: 0 auto;
}

#preloader-circle span {
    position: absolute;
    border: 8px solid #0d6efd;
    border-top: 8px solid transparent;
    border-radius: 999px;
}

#preloader-circle span:nth-child(1) {
    width: 80px;
    height: 80px;
    animation: spin-1 2s infinite linear;
}

#preloader-circle span:nth-child(2) {
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    animation: spin-2 1s infinite linear;
}

@keyframes spin-1 {
    0% {
        transform: rotate(360deg);
        opacity: 1;
    }

    50% {
        transform: rotate(180deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes spin-2 {
    0% {
        transform: rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: rotate(360deg);
        opacity: 0.5;
    }
}

.img-block {
    overflow: hidden;
}

.img-block img {
    width: 100%;
    height: 100%;
}

.flex-1 {
    flex: 1;
}

.inner-page {
    padding: 50px 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-10 {
    margin-top: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/*******************************
#4.  Header
*******************************/
.top-header {
    background: #f6f9fd;
    padding: 5px 0;
}

.header-lang {
    color: #fff;
    margin-left: 15px;
    font-size: 12px;
    background: #0f0f0f;
    padding: 2px 8px;
    border-radius: 4px;
}

.header-lang:hover {
    color: #fff;
}

.select-country .dropdown-toggle {
    max-width: 110px;
    font-size: 13px;
    width: 110px;
    color: #000 !important;
    font-weight: normal;
}

.select-currency .dropdown-toggle {
    max-width: 75px;
    font-size: 13px;
    width: 75px;
    color: #000 !important;
    font-weight: normal;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
}

.select-country .dropdown-menu {
    right: 0;
    left: auto;
    top: 100%;
}

.top-header .right-side {
    display: flex;
    align-items: center;
}

.top-header .header-social {
    display: flex;
    align-items: center;
}

.top-header .header-social a {
    color: #3d618b;
    padding-right: 20px;
}

.top-header .header-social a:hover {
    color: #0b73ec;
}

.bootstrap-select {
    width: auto !important;
}

.dropdown-item {
    font-size: 13px;
    padding: 5px 10px;
}

.select-country .flag {
    width: 15px;
    margin-left: 5px;
    height: auto;
}

.select-country .btn-light {
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    border: none !important;
    outline-offset: 0;
    box-shadow: none !important;
}

.select-country .bs-searchbox .form-control,
.select-currency .bs-searchbox .form-control {
    height: 25px;
    font-size: 12px;
    border: 1px solid #dedede;
}

.bootstrap-select .dropdown-menu li a span.text {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bootstrap-select .dropdown-toggle .filter-option-inner {
    padding-left: inherit;
    padding-right: 0;
    text-align: right;
}

.dropdown-toggle::after,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-bottom: 2px solid #999 !important;
    border-right: 2px solid #999 !important;
    border-left: none !important;
    border-top: none !important;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    width: 5px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.dropdown-toggle.show::after {
    border-top: 2px solid #999 !important;
    border-left: 2px solid #999 !important;
    border-right: none !important;
    border-bottom: none !important;
}

.side-menu {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
}

.side-menu i {
    margin-left: 5px;
}

.header-logo img {
    height: 100px;
}

.header-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    color: #000;
    margin-left: 25px;
    position: relative;
}

.counter {
    background: #ff9807;
    color: #ffffff;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
    text-align: center;
    border-radius: 50%;
    font-weight: 500;
    font-style: initial;
    margin-left: 2px;
}

.header-btn span {
    position: relative;
    display: flex;
    align-items: center;
}

.header-btn .btn-text:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.28, .38, 0, .81);
    transition: -webkit-transform .4s cubic-bezier(.28, .38, 0, .81);
    -o-transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    transition: transform .4s cubic-bezier(.28, .38, 0, .81), -webkit-transform .4s cubic-bezier(.28, .38, 0, .81);
}

.header-btn:hover .btn-text:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.header-btn:last-child {
    margin-left: 0;
}

.header-btn:last-child img {
    margin-left: 0;
}

.middle-header .right-side {
    display: flex;
}

.middle-header .right-side .icon-img {
    height: 22px;
    margin-left: 4px;
}

.shopping-desc {
    font-size: 13px;
    display: block !important;
}

.shopping-price {
    display: block;
    text-align: left;
    font-weight: 600;
    color: #ff9705;
}

.bottom-header {
    background: #0f0f0f;
}

.menu-responsive,
.main-menu .close-modal {
    display: none;
}

.bottom-header > .container {
    position: relative;
}

.main-menu > ul {
    text-align: center;
}

.main-menu > ul > li {
    position: initial;
    line-height: 60px;
    display: inline-block;
}

.main-menu li > a {
    color: #fff;
    margin-left: 25px;
    font-weight: 500;
}

.main-menu li:last-child a {
    margin-left: 0;
}

.main-menu .dropdown-menu {
    margin: 0;
    border-radius: 2px;
    min-width: 220px;
    border: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    -webkit-box-shadow: 0 0px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 0px 12px rgba(0, 0, 0, .175);
    position: absolute;
    text-align: right;
}

.main-menu .dropdown-menu.mega-menu {
    left: 15px;
    right: 15px;
    top: 100% !important;
}

.main-menu li:hover > .dropdown-menu {
    top: 100%;
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.categories-col {
    width: calc(100% / 5 - 25px);
    border-right: 1px solid #eee;
    padding-right: 25px;
    padding: 20px 25px 20px 0;
}

.categories-col:first-child {
    border-right: none;
}

.categories-col .col-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.categories-col .col-list:last-child {
    margin-bottom: 0;
}

.categories-col h5 {
    font-size: 15px;
    color: #3d618b;
}

.categories-col a {
    color: #444;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-right: 15px;
    margin-bottom: 12px;
    line-height: 25px;
}

.categories-col a:before {
    position: absolute;
    content: "";
    background: #eeeff0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.categories-col a:hover {
    color: #0b73ec;
}

.categories-col a:hover:before {
    background: #0b73ec;
}

.more-items {
    display: flex;
    align-items: center;
}

.more-items i {
    margin-right: 5px;
}

.nsted-menu {
    position: relative !important;
}

.nsted-menu > a:after {
    font-size: 8px;
    content: "\e64b";
    font-family: 'themify';
    margin-right: 6px;
}

.submenu {
    padding: 20px;
}

.submenu .menu-item a {
    color: #444;
}

.submenu .menu-item > .nsted {
    right: 225px;
    top: 0 !important;
}

.submenu .menu-item a {
    color: #444;
    display: block;
    padding: 10px 10px 5px 10px;
    margin: 0;
    font-weight: normal;
    font-size: 14px;
    position: relative;
}

.submenu .menu-item {
    position: relative;
    line-height: 25px;
}

.menu-item.arrowleft > a::after {
    border: none !important;
    content: "\e64a";
    font-family: 'themify';
    font-size: 9px;
    margin: 0;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
}

/*******************************
#5.  Home Slider
*******************************/
.home-slider {
    margin-bottom: 40px;
}

.slide {
    position: relative;
    /*height: 650px;*/
    /*overflow: hidden;*/
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
}

.home-slider .owl-dots {
    text-align: center;
}

.owl-dots {
    margin-top: 20px;
}

.owl-dots .owl-dot span {
    display: inline-block;
    margin-left: 10px;
    width: 13px;
    height: 13px;
    background: #e9ecef;
    border-radius: 50%;
}

.owl-dots .owl-dot.active span {
    background: #0b73ec;
}

/*******************************
#6.  Order Type
*******************************/
.order-type {
    width: 500px;
    margin: auto;
}

.order-type .nav-link {
    color: #000;
    font-size: 14px;
    margin-right: 15px;
    margin-bottom: 15px;
    background: #f6f9fd;
}

.order-type .nav-pills .nav-link.active,
.order-type .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #0b73ec;
}

.order-type .nav {
    display: flex;
    justify-content: center;
}

/*******************************
#7.  Home Categories
*******************************/
.category-block {
    text-align: center;
    color: #000;
}

.category-block .img-block {
    margin: 0 auto 10px auto;
    width: 100%;
}

.category-block .img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category-block h3 {
    font-size: 14px;
    margin-bottom: 0;
}

.home-categories .owl-nav,
.home-products .owl-nav {
    text-align: left;
    margin-top: 20px;
}

.home-categories .owl-nav button span,
.home-products .owl-nav button span {
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    background: #eef3fb;
    margin-left: 5px;
    font-size: 12px;
    transition: 0.3s;
}

.home-categories .owl-dots {
    text-align: left;
}

.home-categories .owl-nav button span:focus,
.home-categories .owl-nav button span:hover,
.home-products .owl-nav button span:focus,
.home-products .owl-nav button span:hover {
    color: #fff;
    background: #0b73ec;
}

.categories-grid .category-block {
    text-align: center;
    color: #000;
    margin-bottom: 40px;
    display: block;
}

.categories-grid.section-block {
    margin-bottom: 40px;
}

/*******************************
#8.  Home Products
*******************************/
.product-block .img-block {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    cursor: pointer;
    display: block;
    z-index: 1;
}

.product-block .img-block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.product-block .img-block:hover img {
    /*transform: scale(1.2);*/
}

.product-block {
    border: 1px solid #dedede;
    position: relative;
}

.content-block {
    padding: 10px;
}

.content-block .pro-name {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.price {
    color: #686868;
    font-weight: 600;
    font-size: 15px;
}

.discount {
    color: #dc3545;
    margin-right: 8px;
    font-weight: 600;
    font-size: 13px;
}

.product-block .addto-cart {
    width: 75%;
    padding: 8px 0;
    margin-top: 5px;
}

.quickview-modal .modal-dialog {
    width: 900px;
    max-width: 900px;
    height: 450px;
}

.modal-content {
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.quickview-modal .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.quickview-modal .owl-nav span {
    width: 40px;
    height: 40px;
    display: block;
    line-height: 40px;
    font-size: 16px;
}

.quickview-modal .owl-nav span:hover,
.quickview-modal .owl-nav span:focus {
    color: #fff;
    background: #000;
}

.quickview-modal .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.quickview-modal .owl-dots button span {
    width: 7px;
    height: 7px;
    background: #959595;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.quickview-modal .owl-dots button.active span {
    background: #000;
}

.quickview-modal .content {
    padding: 20px 20px 20px 0;
}

.btn-close {
    width: 28px;
    height: 28px;
    color: #fff;
    border-radius: 50%;
    background: rgb(192 134 14);
    opacity: 1;
    line-height: 26px;
    padding: 0 !important;
    text-align: center;
    font-size: 8px;
    margin: 0 !important;
}

.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.quickview-modal .pro-name {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.quickview-modal .price {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cat-name {
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.cat-name:hover {
    color: #000;
    font-weight: 500;
}

.quickview-modal p {
    font-size: 15px;
}

.addtowishlist {
    color: #0f0f0f;
    padding: 0;
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.addtowishlist i {
    color: #000;
    border: none;
    margin-right: 10px;
    font-size: 17px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    flex: none;
    background: transparent;
    border: 1px solid;
}

.addtowishlist.active,
.addtowishlist:hover {
    color: #ff9704;
}

.addtowishlist.active i,
.addtowishlist:hover i {
    color: rgb(255 49 50);
    background: rgb(255 49 50 / 6%);
    border-color: transparent;
}

.buttons-added {
    border: 1px solid #dee2e6;
    padding: 5px 10px;
    height: 100%;
    flex-direction: row-reverse;
}

button.sign {
    font-size: 10px;
    color: #857979;
    border: none;
    background: red;
    height: 30px;
    width: 30px;
    border-radius: 3px;
    background: #f1f1f1;
}

button.sign:focus,
button.sign:hover {
    background: #0f0f0f;
    color: #fff;
}

.qty.text {
    border: none;
    width: 15px;
    padding: 0;
    font-weight: 500;
    margin-left: 5px;
}

.qty-text {
    font-weight: 600;
}

.qty.text:focus {
    outline: none;
    border: none;
}

.qty-ops .theme-btn,
.qty-ops .quantity {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: calc(50% - 5px);
    height: 45px;
}

.sizebtn {
    position: relative;
    border-radius: 2px;
    padding: 8px 16px;
    max-width: 140px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border: 1px solid rgb(226, 229, 241);
    margin-left: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.sizebtn.disabled::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to right top, rgba(255, 255, 255, 0.75) calc(50% - 1px), rgb(241, 243, 249), rgba(255, 255, 255, 0.75) calc(50% + 1px));
}

.sizebtn.active {
    border: 1px solid rgb(11 115 236);
    color: #0b73ec;
}

.btn-guide {
    background: transparent;
    border: none;
    color: #0b73ec;
    border-bottom: 1px dashed;
    height: 20px;
}

.block {
    margin-bottom: 25px;
}

.block .inner-title {
    font-size: 14px;
    margin-bottom: 12px;
}

.product-style2 .pro-name {
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.product-style2 .img-block {
    width: 100px;
    height: 100px;
    margin-right: 10px;
    overflow: hidden;
    background: whitesmoke;
}

.product-style2 .img-block img {
    object-fit: contain;
}

.product-style2 .options li {
    margin-bottom: 8px;
    font-size: 13px;
}

.product-style2 .options li span {
    font-weight: 600;
    margin-right: 10px;
    display: inline-block;
}

.addcart-footer {
    margin-top: 25px;
}

.addcart-footer .btn {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    min-width: 180px;
    margin-right: 10px;
}

.addcart-modal .modal-content {
    padding: 20px;
}

.addcart-header {
    margin-bottom: 30px;
}

.addcart-header img {
    width: 55px;
    margin-bottom: 10px;
}

.addcart-header h5 {
    font-size: 16px;
}

.home-products.owl-carousel .owl-nav.disabled {
    display: block !important;
}

.content-block.flex {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
    padding: 0px;
    margin-bottom: 15px;
}

.sale {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #f93b3a;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 8px 2px 8px;
    font-size: 11px;
    z-index: 9;
    border-radius: 5px;
}

.product-block .heart {
    color: #999;
    border: 1px solid #999;
    font-size: 17px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    flex: none;
    background: transparent;
    z-index: 9;
    margin-top: 5px
}

.product-block .heart:hover,
.product-block .heart.active {
    color: rgb(255 49 50);
    background: rgb(255 49 50 / 6%);
    border-color: transparent;
}

.products-grid .product-block {
    margin-bottom: 30px;
}

/*******************************
#9.  Footer
*******************************/
footer {
    padding: 60px 0;
    background: #0f0f0f;
    position: relative;
    color: #fff;
}

footer > .container {
    position: relative;
}

.bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.bg-shape .shape-left {
    top: 0;
    left: 0;
}

.bg-shape img {
    position: absolute;
}

.bg-shape .shape-right {
    bottom: 0;
    right: 0;
}

.subscribtion-sec {
    background: #f6f9fd;
    text-align: center;
    padding: 50px 0;
}

.subscribe-form h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 500;
}

.subscribe-form form {
    display: flex;
    justify-content: space-between;
    height: 55px;
    width: 600px;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin: auto;
    border: 1px solid #eee;
}

.subscribe-form input {
    background: transparent;
    border: none;
    flex: 1;
    font-size: 13px;
}

.subscribe-form input:focus {
    border: none;
    outline: none;
}

.subscribe-form img {
    height: 22px;
    margin-left: 10px;
}

.subscribe-form input::placeholder {
    color: #999;
}

.subscribe-form button {
    padding-left: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #0b73ec;
    background: transparent;
    display: flex;
    align-items: center;
}

.subscribe-form button i {
    font-size: 12px;
    margin-right: 8px;
    transform: rotate(180deg);
}

.subscribe-form button:hover {
    opacity: 0.8;
    color: #0b73ec;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-download {
    display: flex;
    flex: 1;
    align-items: center;
}

.app-desc {
    flex: 1;
    text-align: center;
}

.app-download h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #fff;
}

.download-btn {
    height: 45px;
    margin-left: 10px;
    transition: all .3s ease-in-out;
}

.download-btn img {
    height: 100%;
}

.download-btn:last-child {
    margin-left: 0;
}

.download-btn:hover {
    transform: translateY(-5px);
}

.download-btn h6 {
    margin-bottom: 0;
    font-size: 15px;
    color: #fff;
}

.footer-help {
    padding-left: 130px;
}

.footer-contact {
    text-align: center;
    margin-top: 20px;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-phone {
    font-size: 18px;
    color: #fff;
    justify-content: center;
}

.contact-phone .icon-img {
    width: 40px;
    margin-left: 10px;
}

.footer-social a {
    margin-left: 10px;
    width: 38px;
    height: 38px;
    display: inline-block;
    background: rgb(255 255 255 / 17%);
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    color: #fff
}

.footer-social a:hover {
    background: #fff;
    color: #0b73ec;
}

.footer-social a:last-child {
    margin-left: 0;
}

.copyrights {
    color: #333;
    text-align: center;
    background: #f6f9fd;
    padding: 10px;
}

.copyrights a {
    color: #0b73ec;
    font-weight: 600;
}

/*******************************
#10. Products Grid & List
*******************************/
.category-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.s-list .product-block {
    display: flex;
}

.products-container .product-block {
    margin-bottom: 25px;
}

.products-container.s-list .row {
    display: flex;
    flex-direction: column;
}

.products-container.s-list .product-block .img-block {
    width: 250px;
    height: 250px;
    margin-bottom: 0;
    margin-right: 20px;
    flex: none;
}

.products-container.s-grid .left-options .quick-view,
.products-container.s-grid .left-options .heart,
.products-container.s-grid .pro-description,
.products-container.s-grid .block,
.products-container.s-grid .addtowishlist {
    display: none;
}

.products-container.s-list .left-options {
    margin-left: 30px;
    min-width: 200px;
}

.products-container.s-list .product-block .img-block .quick-view,
.products-container.s-list .content-block .heart {
    display: none;
}

.products-container.s-list .content-block .price {
    margin-bottom: 10px;
}

.products-container.s-list .left-options .quick-view {
    position: relative;
    opacity: 1;
    display: block;
    visibility: visible;
}

.products-container.s-list .left-options .btn {
    width: 100%;
    padding: 9px;
}

.products-container.s-list .addtowishlist {
    margin-top: 10px;
    padding-left: 0 !important;
}

/*******************************
#11. Filter
*******************************/
.panel.panel-default {
    margin-bottom: 20px;
    border-top: 0;
    box-shadow: none;
}

.panel-group .panel,
.panel-heading {
    border-radius: 0;
}

.panel-default > .panel-heading {
    color: #666;
    background-color: #F7F8FA;
    padding: 10px;
}

.panel-title {
    position: relative;
    font-size: 14px;
    margin-bottom: 0;
}

.panel-title span {
    color: #333;
    font-size: 10px;
}

.panel-title a {
    display: block;
    color: #000;
    font-weight: 500;
}

.maxheight300 {
    max-height: 300px;
}

.filter-options-item.filter-price {
    margin: 0 20px;
    text-align: center;
    padding-bottom: 21px;
}

.filter-price .filter-options-title {
    margin: 30px 0 0 0;
    text-align: left;
}

.filter-price .slider-range-price {
    background: #f1f1f1 none repeat scroll 0 0;
    height: 4px;
    margin-bottom: 18px;
    position: relative;
    margin-top: 26px;
}

.filter-price .slider-range-price .ui-slider-handle:focus {
    outline: none;
}

.show-sub .children .cat-item.active a {
    color: #000;
    font-weight: 500;
}

li.has-child.arrow-sub.cat-item.cat-parent.show-sub > a {
    color: #000;
    font-weight: 500;
}

.content-sidebar .has-child li a {
    color: #aeaeae;
    font-size: 12px;
}

.content-sidebar .has-child a {
    color: #555;
    font-size: 13px;
}

.panel-body {
    padding: 15px 0;
}

.checkboxes input[type=checkbox]:checked + label:before,
.checkboxes input[type=radio]:checked + label:before,
.checkboxes input:checked + label {
    color: #7ec3ed;
}

.has-child {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.has-child:last-child {
    border-bottom: none;
}

.has-child span {
    color: #000;
    margin-left: 7px;
    font-size: 11px;
    font-weight: 500;
}

.has-child .arrow-cate {
    float: left;
    margin-left: 10px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.has-child .arrow-cate:after {
    display: inline-block;
    font-family: 'themify';
    content: "\e61a";
    color: #adadad;
    font-size: 9px;
    position: absolute;
}

.has-child.show-sub .arrow-cate:after {
    content: "\e622";
}

.content-sidebar .has-child li a {
    color: #747474;
}

.has-child .children {
    display: none;
    margin-top: 10px;
    border-right: 1px solid #f0f0f0;
    padding-right: 10px;
    margin-right: 10px;
}

.has-child .children li {
    padding-bottom: 8px;
}

.has-child .children li:last-child {
    padding-bottom: 0;
}

.panel-title span {
    position: absolute;
    left: 0;
    top: -2px;
}

.colles-block:before {
    content: "\e64b";
    font-family: 'themify';
    font-size: 9px;
    color: #000;
}

.collapsed .colles-block:before {
    content: "\e648";
}

.checkboxes {
    list-style: none;
    padding: 0;
}

.checkboxes.radios input[type=radio],
.checkboxes input[type=checkbox] {
    display: none;
}

.checkboxes.one-in-row label {
    margin-bottom: 9px;
    width: 100%;
    padding-left: 40px;
}

.checkboxes label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-right: 28px;
    margin-bottom: 0;
    line-height: 24px;
    font-size: 13px;
    font-weight: normal;
}

.checkboxes label:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-left: 10px;
    position: absolute;
    right: 0;
    top: 3px;
    background-color: #fff;
    border: 1px solid #CFCFCF;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    line-height: 15px;
    border-radius: 3px;
}

.checkboxes input[type=checkbox]:checked + label:before {
    font-family: 'themify';
    content: "\e64c";
}

.checkboxes input[type=radio]:checked + label:before {
    font-family: 'themify';
    content: "\e64c";
}

.checkboxes.radios label:before {
    border-radius: 100%;
}

.checkboxes input:checked + label {
    color: #000;
}

.mCustomScrollBox > .mCSB_scrollTools {
    left: 0;
    right: auto;
}

.mCSB_container {
    margin-left: 30px;
    margin-right: 0;
}

.counter-num {
    position: absolute;
    left: 0;
    font-size: 11px;
    color: #000;
    font-weight: 500;
}

.checkboxes input[type=checkbox]:checked + label:before,
.checkboxes input[type=radio]:checked + label:before {
    background-color: #fff;
    color: #000;
}

.filter-price .slider-range-price {
    background: #e4e4e4 none repeat scroll 0 0;
    height: 4px;
    margin-bottom: 18px;
    position: relative;
    margin-top: 26px;
}

.filter-price .slider-range-price .ui-slider-range {
    background: #005fff none repeat scroll 0 0;
    height: 4px;
    left: 65px;
    position: absolute;
    top: 0;
    width: 160px;
}

.filter-price .slider-range-price .ui-slider-handle {
    background: #fff none repeat scroll 0 0;
    cursor: pointer;
    height: 15px;
    left: 25px;
    position: absolute;
    top: -6px;
    width: 15px;
    border-radius: 50%;
    border: 2px solid #005fff;
}

.price_label {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.filter-price .price_slider_amount {
    font-size: 13px;
    position: relative;
    color: #000;
    display: flex;
    justify-content: space-between;
}

.btn-save-filter {
    display: none;
}

.filter-res {
    display: none;
}

.maxheight300 {
    max-height: 300px;
}

.checkboxes.one-in-row label:last-child {
    margin-bottom: 0;
}

.panel-default > .panel-heading {
    background-color: transparent;
    border: none;
    padding: 10px;
    background: transparent;
    padding: 10px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #dedede;
}

.content-sidebar {
    padding-right: 30px;
}

/*******************************
#12.  Product Page
*******************************/
.pro-head {
    border-bottom: 1px solid #dedede;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.pro-head .pro-name {
    font-size: 24px;
    font-weight: 500;
}

.pro-head .pro-cat {
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.pro-head .price {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #686868;
}

.pro-head .discount {
    font-size: 15px;
}

.pro-desc {
    color: #333;
}

.pro-color,
.pro-size {
    flex-wrap: wrap;
}

.color-block {
    display: inline-block;
    flex: none;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border-radius: 50%;
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
    margin-right: 0;
    text-align: right;
}

.red {
    background: red;
}

.black {
    background: #000;
}

.blue {
    background: #6581a9;
}

.pink {
    background: #fbb6c4;
}

.share-pro {
    border-top: 1px solid #dedede;
    margin-top: 20px;
    padding-top: 20px;
}

.share-pro h4 {
    font-size: 15px;
    margin-left: 10px;
}

.share-btns a {
    color: #000;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.share-btns a:hover {
    background: #0b73ec;
    color: #fff;
}

.sp-wrap {
    background: transparent;
    border: none;
    width: 100%;
    margin: 0 0 15px 25px;
}

.sp-large a {
    background: #f5f5f5;
    overflow: hidden;
    height: 550px;
    text-align: center;
}

.sp-large a img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.sp-thumbs {
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.sp-thumbs a {
    flex: none;
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 5px;
    margin-left: 5px;
    background-repeat: no-repeat;
    background-size: contain !important;
}

.food .sp-large a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food .sp-thumbs a {
    background-size: cover !important;
}

/*******************************
#13.  User Pages
*******************************/
.user-menu a {
    display: flex;
    align-items: center;
    color: #000;
    margin-bottom: 25px;
}

.user-menu a.active {
    font-weight: 600;
    color: #ab946b;
}

.user-menu a img {
    width: 22px;
    margin-left: 12px;
}

.user-menu a span {
    position: relative;
}

.user-menu a span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.28, .38, 0, .81);
    transition: -webkit-transform .4s cubic-bezier(.28, .38, 0, .81);
    -o-transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    transition: transform .4s cubic-bezier(.28, .38, 0, .81), -webkit-transform .4s cubic-bezier(.28, .38, 0, .81);
}

.user-menu a:hover span:before,
.user-menu a.active span:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.address-block {
    border: 1px solid #dedede;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.address-block .flex-1 > p:last-child {
    margin-bottom: 0;
}

.previous-address .right-side {
    flex: none;
    font-weight: 600;
    min-width: 130px;
    color: #222;
}

.previous-address .left-side {
    color: #999;
}

.address-operations .btn {
    color: #999;
}

.address-operations .btn:hover {
    color: #000;
}

.address-operations .theme-btn-sec {
    padding: 5px 12px;
    color: #377dff !important;
}

.address-operations .theme-btn-sec:hover {
    color: #fff !important;
}

.mark-default:hover {
    color: #377dff !important;
    background: rgba(55, 125, 255, 0.1);
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-weight: 500;
    font-size: 18px;
}

/******************************************
#14.  Login & Sign Up & Forgot Password
******************************************/
.login {
    padding: 60px 50px;
    position: relative;
    background: #f6f9fd;
}

.login-form {
    margin-top: 30px;
}

.login-form input {
    border: none;
}

.login > h2 {
    font-size: 22px;
    font-weight: 500;
}

.login > h2 b {
    color: #ff9705;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0;
}

.login-desc a {
    color: #000;
    font-weight: 500;
}

.form-check {
    padding-right: 1.5em;
    padding-left: 0;
}

.form-check .form-check-input {
    float: right;
    /*margin-right: -1.5em;*/
    margin-left: 0;
}

#showPass,
#showPass2 {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    font-size: 12px;
}

#showPass:before,
#showPass2:before {
    content: "\f06e";
}

#showPass.active:before,
#showPass2.active:before {
    content: "\f070";
}

.login-desc a {
    color: #000;
    font-weight: 500;
}

.btn-block {
    width: 100%;
}

.link-muted {
    color: #8c98a4;
    border-bottom: 1px dashed #97a4af;
}

/*******************************
#15. Contact Us
*******************************/
.contact-block {
    color: #000;
}

.contact-block h3 {
    font-size: 16px;
    font-weight: 500;
}

.contact-block img {
    height: 48px;
    margin-bottom: 15px;
}

/*******************************************
#16. Order Done, Empty Cart, Empty Wishlist
*******************************************/
.order-done {
    width: 50%;
    margin: auto;
}

.order-done img {
    height: 100px;
    margin-bottom: 25px;
}

.order-done h1 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.order-done h1 a,
.order-done h1 a:hover {
    color: #ff9705;
}

.order-done p {
    font-size: 14px;
    margin-bottom: 20px;
}

/*******************************************
#17. Cart
*******************************************/
.cart-item {
    display: flex;
    align-content: center;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 25px;
    margin-bottom: 25px;
    justify-content: space-between;
    align-items: center;
}

.cart-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.cart-item .img-block {
    margin-left: 20px;
    width: 100px;
    overflow: hidden;
    height: 100px;
    flex: none;
}

.cart-item .img-block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item h3 a {
    color: inherit;
    font-size: 15px;
    display: block;
    font-family: inherit;
    font-weight: normal;
    font-weight: 500;
}

.pro-price {
    font-weight: 600;
    font-size: 16px;
    color: #686868;
}

.cart-item .options li {
    margin-bottom: 7px;
}

.cart-item .options li span {
    font-weight: 600;
    margin-left: 5px;
    font-size: 13px;
}

.cart-item .buttons-added {
    padding: 5px 5px;
    height: 40px;
    min-width: 140px;
}

.delete-item {
    color: #000;
    font-size: 12px;
    opacity: 0.5;
}

.delete-item:hover {
    opacity: 1;
}

.order-summery {
    background: #f6f9fd;
    padding: 20px;
    margin-left: 30px;
    margin-bottom: 30px;
}

.cart-summery-content {
    border-top: 1px solid #dedede;
    padding-top: 20px;
    margin-top: 20px;
}

.order-summery > h2 {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dedede;
}

.cartsummery-items h4 {
    font-size: 15px;
    margin-bottom: 25px;
}

.order-total li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(114, 114, 114);
    margin-bottom: 15px
}

.order-total li h5 {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
}

.total-amount h5,
.total-amount span {
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #000;
}

/*******************************************
#17. Check out
*******************************************/
.checkout-block {
    margin-bottom: 30px;
}

.checkout-block:last-child {
    margin-bottom: 0;
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dedede;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.head .btn {
    color: #0d6efd;
    padding: 0;
    font-size: 13px;
}

.checkout-block .head h3 {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 500;
}

.deliver-time {
    justify-content: space-between;
}

.time-block {
    width: calc(100% / 3 - 10px);
    background: #f6f9fd;
    color: #3d618b;
    height: 50px;
    border-radius: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.time-block:hover,
.time-block.active {
    background: #0b73ec;
    color: #fff !important;
}

.payment-method {
    display: flex;
    flex-direction: column;
}

.payment-method > .form-check {
    margin-bottom: 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.payment-method > .form-check .form-check-label {
    background: #f6f9fd;
    color: #3d618b;
    height: 45px;
    line-height: 45px;
    border-radius: 25px;
    padding: 0 20px;
    margin-right: 30px;
    min-width: 125px;
}

.payment-method img {
    margin-left: 10px;
    width: 35px;
}

.ui-widget-content {
    border: none;
    background: transparent;
    color: #333333;
}

.ui-widget.ui-widget-content {
    border: none;
    width: 100%;
}

.ui-widget-header {
    border: none;
    background: transparent;
    color: #333333;
    font-weight: bold;
}

.ui-datepicker .ui-datepicker-prev:after {
    content: "\e64a";
    font-family: 'themify';
    font-size: 16px;
}

.ui-datepicker .ui-datepicker-next:after {
    content: "\e649";
    font-family: 'themify';
    font-size: 16px;
}

.ui-icon {
    display: none !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    border: none;
    background: transparent;
    font-weight: normal;
    color: #2b2b2b;
    text-align: center;
    width: 45px;
    height: 45px;
    margin: auto;
    line-height: 45px;
    border-radius: 50%;
    font-size: 14px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
    background: #0b73ec !important;
    color: #ffffff !important;
}

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    margin-bottom: 10px;
}

.ui-datepicker th {
    padding: 20px 5px;
    text-align: center;
    font-weight: bold;
    border: 0;
    margin-bottom: 25px;
    font-size: 14px;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    border: none;
    background: transparent;
    color: #007fff;
    font-weight: 600;
}

/*.ui-state-highlight, .ui-widget-content .ui-state-highlight {
    background: transparent !important;
    color: #2b2b2b !important;
    font-weight: 400 !important;
}*/
.ui-widget-header a {
    cursor: pointer;
    font-weight: 600;
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
    display: none !important;
    background: none !important;
}

.shipped-address {
    margin-bottom: 30px;
}

.shipped-address:last-child {
    margin-bottom: 0;
}

.shipped-address h5 {
    font-size: 15px;
    margin-bottom: 20px;
}

.order-summery .cart-item .img-block {
    margin-left: 10px;
    width: 70px;
    height: 70px;
}

.order-summery .cart-item h3 a {
    font-size: 14px;
    margin-bottom: 10px;
}

.order-summery .cart-item .options li {
    font-size: 13px;
}

.order-summery .pro-price {
    font-size: 14px;
    color: #686868;
}

.order-summery .cart-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.order-summery .cart-item:last-child {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.orders-list .cart-item .img-block {
    width: 120px;
    height: 120px;
}

.order-number {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16px;
}

.order-item {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.order-item .theme-btn-sec {
    padding: 7px 15px;
}

.order-item .options {
    margin-top: 10px;
}

.order-item .options li {
    margin-bottom: 10px;
}

.order-item .options li:last-child {
    margin-bottom: 0;
}

.order-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.order-item .options li i {
    width: 22px;
    height: 22px;
    display: inline-block;
    font-size: 16px;
    color: #377dff;
}

.order-number:hover a {
    color: #0b73ec !important;
}

.order-status {
    display: inline;
    padding: 3px 10px;
    border-radius: 4px;
}

.order-status.delivered {
    color: #fff;
    background: #5bbc5f;
}

.order-status.under-processing {
    color: #fff;
    background: #efa217;
}

.order-status.loading {
    color: #fff;
    background: #03a9f4;
}

.order-status.canceled {
    color: #fff;
    background: #ee564b;
}

.orders-list .nav-pills {
    border-bottom: 1px solid #dedede;
    margin-bottom: 30px !important;
}

.orders-list .nav-pills .nav-link {
    color: #000;
    position: relative;
    margin-left: 20px;
}

.orders-list .nav-pills .nav-link.active,
.orders-list .nav-pills .show > .nav-link {
    color: #0d6efd;
    background-color: transparent;
    font-weight: 500;
    font-size: 15px;
}

.orders-list .nav-pills .nav-link.active:after {
    content: "";
    position: absolute;
    height: 2px;
    background: #0d6efd;
    left: 0;
    right: 0;
    bottom: -2px;
}

.cart-item .theme-btn-sec {
    padding: 5px 15px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    height: 30px;
    background-color: #8b5c08;
    border-radius: 10px;
}

::-webkit-scrollbar-track-piece {
    background-color: #e2e2e2;
    border-radius: 10px;
}

/*******************************************
#17. User Side Modal
*******************************************/
.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background: rgb(0 0 0 / 50%);
    z-index: 99;
    content: '';
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: opacity .2s ease-in-out, z-index .2s ease-in-out;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user-side-modal,
.delivery-modal,
.pickup-modal {
    transform: translate3d(460px, 0, 0);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.6, 1);
    width: 460px;
    height: 100%;
    right: 0;
    position: fixed;
    min-height: 100%;
    max-height: none;
    top: 0;
    display: block;
    background: #fff;
    overflow: hidden;
    z-index: 999;
}

.user-side-modal.is-open,
.delivery-modal.is-open,
.pickup-modal.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
}

.side-modal-content {
    height: calc(100% - 100px);
    justify-content: space-between;
    flex-direction: column;
}

.side-modal {
    padding: 30px;
}

.close-modal {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    color: #000;
    opacity: 0.4;
    font-size: 14px;
    margin-bottom: 20px;
    align-items: center;
    text-align: left;
    padding: 0;
}

.close-modal i {
    margin-left: 8px;
    font-size: 12px;
}

.close-modal:hover {
    opacity: 1;
}

.side-modal-title {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

.side-modal-content .cart-item {
    align-items: flex-start;
    display: flex !important;
}

.side-modal-content .cart-list {
    flex: 1;
    overflow-y: auto;
}

.side-modal-footer {
    border-top: 1px solid #dedede;
    margin-top: 15px;
    padding-top: 15px;
}

.side-modal-btns {
    display: flex;
    justify-content: space-between;
}

.side-modal-btns .btn {
    width: calc(50% - 5px);
    display: inline-block;
    min-width: calc(50% - 5px);
}

.side-apply-btns {
    display: flex;
    justify-content: space-between;
}

.side-apply-btns .btn {
    width: calc(25% - 5px);
    display: inline-block;
    min-width: calc(25% - 5px);
}

.side-modal-footer .total-amount h5 {
    font-size: 17px;
}

.side-modal .delete-item {
    color: #000;
    font-size: 15px;
    opacity: 0.5;
}

.search-modal {
    transform: translateY(-100%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.6, 1);
    width: 100%;
    right: 0;
    top: 0;
    min-height: 170px;
    position: fixed;
    max-height: none;
    display: block;
    background: #fff;
    overflow: hidden;
    z-index: 99;
    opacity: 0;
    padding: 25px 0;
}

.search-modal.is-open {
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
}

.search-form .form-group {
    border-bottom: 1px solid #dedede;
    height: 60px;
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.search-form .form-group input {
    height: 100%;
    border: none;
    flex: 1;
    position: relative;
}

.search-form .form-group input:focus {
    border: none;
    outline: none;
}

.search-form .form-group button {
    font-size: 22px;
    margin-right: 15px;
    color: #0d6efd;
    padding-left: 0;
    width: auto;
}

.menu-modal {
    transform: translate3d(460px, 0, 0);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.6, 1);
    width: 460px;
    height: 100%;
    right: 0;
    position: fixed;
    min-height: 100%;
    max-height: none;
    top: 0;
    display: block;
    background: #fff;
    overflow: hidden;
    z-index: 99;
}

.menu-modal.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
}

.menu-modal .side-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 15px;
}

.menu-modal .side-modal-head .logo {
    display: block;
    height: 50px;
}

.menu-modal .side-modal-head .logo img {
    height: 100%;
}

.menu-modal .side-modal-head .close-modal {
    width: auto;
    margin-bottom: 0;
    padding: 0;
}

.menu-modal .side-modal-head .header-lang {
    margin-right: 0;
    background: #0f0f0f;
    padding: 1px 10px;
    border-radius: 5px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 12px;
}

.help-sec {
    margin-bottom: 40px;
}

.help-sec h5 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.help-sec h5 img {
    height: 28px;
    margin-right: 10px;
}

.help-sec a {
    width: calc(100%/3 - 10px);
    flex: none;
    display: block;
    color: #3d618b;
    background: #f6f9fd;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.help-sec a:hover {
    box-shadow: 0 4px 11px rgb(72 73 75 / 9%);
}

.help-sec a img {
    height: 35px;
    display: block;
    text-align: center;
    margin: 0 auto 8px auto;
}

.list-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.list-features li img {
    margin-right: 10px;
    width: 30px;
}

.filter-btn,
.content-sidebar .close-modal {
    display: none;
}

.inner-title {
    font-size: 20px;
    margin-bottom: 25px;
}

.inner-title i {
    margin-right: 12px;
    color: #000;
}

.contact-form {
    margin-bottom: 30px;
}

.contact-form:last-child {
    margin-bottom: 0;
}

.payment-block h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.payment-block .details {
    margin-bottom: 15px;
}

.payment-block .details:last-child {
    margin-bottom: 0;
}

.payment-block .details h5 {
    font-size: 14px;
}

.payment-block .details p {
    font-size: 13px;
    margin-bottom: 5px;
    color: #555;
}

.payment-block .details p:last-child {
    margin-bottom: 0;
}

.separated {
    display: inline-block;
    margin: 0 15px;
    font-size: 15px;
    color: #000;
}

.order-details-head .order-number {
    margin-bottom: 0;
}

.order-details-head .order-number span {
    color: #999;
}

.order-details-head .theme-btn-sec {
    padding: 8px 25px;
}

.table {
    margin-bottom: 0;
}

.table tbody {
    border-top: none !important;
}

.font-600 {
    font-weight: 600;
}

.choose-time {
    display: none;
}

.choose-time.active {
    display: block;
}

.multiselection {
    width: 100% !important;
}

.multiselection > .dropdown-toggle {
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    color: #333 !important;
    font-weight: normal;
    background: transparent;
    border: 1px solid #dee2e6;
}

.multiselection .dropdown-item {
    font-size: 14px;
    height: 34px;
    line-height: 35px;
    padding: 0 15px;
    margin-bottom: 5px;
}

.multiselection .dropdown-menu .selected span.check-mark {
    color: #0b73ec;
}

.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    background: rgb(255 255 255);
    z-index: 99;
    box-shadow: 0px 0 15px rgb(156 156 156 / 15%);
    transition: transform .35s cubic-bezier(.34, .18, 0, .9), -webkit-transform .35s cubic-bezier(.34, .18, 0, .9);
}

.sticky-cart.is-open {
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
}

.sticky-cart .left h6 span,
.sticky-cart .middle span {
    width: 28px;
    height: 28px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: #ff9807;
    color: #fff;
    line-height: 28px;
    margin: 0 5px;
    font-size: 14px;
}

.sticky-cart .left h6 {
    font-size: 15px;
}

.sticky-cart .middle span {
    display: none;
}

.sticky-cart h5,
.sticky-cart h6 {
    margin-bottom: 0;
}

.sticky-cart h5 {
    font-size: 17px;
}

.sticky-cart .theme-btn {
    min-width: 120px;
    padding: 8px 10px;
}

/*.space {
    height: 69px;
}*/
.menu-social {
    margin-top: 30px;
}

.menu-social a {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
}

.eventInsForm {
    display: block;
    position: relative
}

.ui-autocomplete {
    position: absolute;
    height: 100px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.ui-menu-item {
    font-size: 13px;
    font-weight: 400;
    padding: 5px;
    cursor: pointer;
}

.ui-menu-item:hover,
.ui-menu-item.ui-state-focus {
    font-size: 13px !important;
    font-weight: 400 !important;
    outline: none !important;
    padding: 5px !important;
    border: none !important;
}

.ar-text {
    font-family: system-ui;
    display: inline-block;
    direction: rtl;
}

.whatsappbtn {
    width: 80px;
    height: 80px;
    position: fixed;
    bottom: 70px;
    /*right: 10px;*/
    z-index: 99;
}

.order-details-head .order-status {
    margin-bottom: 10px;
    display: inline-block;
}

.print {
    padding: 10px 20px;
}

.print i {
    margin-left: 5px;
}

.order-details-head {
    margin-bottom: 10px;
}

.intl-tel-input.allow-dropdown .flag-container,
.intl-tel-input.separate-dial-code .flag-container {
    right: 0;
    left: 0;
}

.intl-tel-input .country-list {
    right: 0;
    left: 0;
}

.categories-restraunt {
    margin-bottom: 20px;
    background: #f6f9fd !important;
    transition: all .5s ease 0s;
    border-radius: 5px;
}

.categories-restraunt.sticky {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 99;
    border-radius: 0;
}

.categories-restraunt .nav-link {
    color: #333;
}

.categories-restraunt .nav-link.active,
.categories-restraunt .show > .nav-link {
    background-color: #0d6efd;
}

.categories-restraunt ul.nav.nav-pills {
    flex-wrap: nowrap;
    overflow-x: scroll;
}

.categories-restraunt ul.nav.nav-pills::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.categories-restraunt ul.nav.nav-pills::-webkit-scrollbar-track-piece {
    background-color: transparent;
}

.category-re .img-block {
    height: 150px;
}

.category-re .product-block .heart {
    border: none;
    background: #dddddd;
}

.category-re .product-block .heart:hover,
.category-re .product-block .heart.active {
    background: rgb(255 151 4 / 9%);
}

.cart-summery-content {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.sticky-cart-product {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    background: rgb(255 255 255 / 100%);
    z-index: 9;
    box-shadow: 0px 0 15px rgb(156 156 156 / 15%);
    transition: transform .35s cubic-bezier(.34, .18, 0, .9), -webkit-transform .35s cubic-bezier(.34, .18, 0, .9);
}

.sticky-cart-product .qty-ops {
    width: 50%;
    margin: auto;
}

.pro-qty-desk {
    display: block;
}

.invoice-summery ul {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
}

.invoice-summery li span {
    min-width: 180px;
    display: inline-block;
    font-size: 15px;
}

.invoice-summery li {
    font-size: 15px;
    margin-bottom: 10px;
}

.invoice-summery li:last-child {
    margin-bottom: 0;
}

.invoice-summery li b {
    display: inline-block;
    min-width: 100px;
}

.table > :not(caption) > * > * {
    padding: 15px;
}

.order-payment {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 20px 0 20px 0;
    margin: 20px 0 20px 0;
}

.inv-logo img {
    height: 70px;
}

.invoice-head p {
    color: #555;
    margin-bottom: 3px;
}

.invoice-head p:last-child {
    margin-bottom: 0;
}

.payment-block {
    width: 50%;
}

.phone-cont {
    border: 1px solid #d5dae2;
    padding: 0 15px;
    display: flex;
    position: relative;
}

.phone-cont .bootstrap-select {
    position: initial;
}

.phone-cont .select-country .filter-option-inner-inner .flag {
    width: 20px;
}

.phone-cont input {
    width: 100%;
    border: none;
    height: 45px;
}

.phone-cont input:focus {
    outline: none;
    border: none;
}

.filter-option-inner-inner .country-name,
.filter-option-inner-inner .code {
    display: none;
}

.phone-cont .select-country .dropdown-toggle {
    width: 50px;
    padding: 0;
    height: 45px;
    line-height: 45px;
}

.phone-con .phone-cont input {
    width: 100%;
    border: none;
    height: 45px;
}

.phone-cont .select-country .dropdown-menu {
    transform: translate(0, 0px) !important;
    top: 47px !important;
}

.dropdown-menu {
    text-align: right;
}

.contact-form .select-country .dropdown-menu .form-control {
    height: 35px;
}

.form-check-input {
    margin-left: 5px;
    margin-right: 0;
}

.code {
    margin-left: 5px;
    margin-right: 5px;
    color: #999;
}

.selected.active .code {
    color: #fff;
}

.search-cont {
    background: #f6f9fd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    height: 45px;
    line-height: 45px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.search-cont input {
    width: 100%;
    margin-right: 13px;
    border: none;
    background: transparent;
}

.search-cont input:focus {
    border: none;
    outline: none;
}

.search-cont i {
    font-size: 16px;
}

.side-modal-content .areas-list {
    flex: 1;
    overflow-y: auto;
    padding-left: 5px;
}

.btn.d-block {
    width: 100%;
}

.display-mobile-block {
    display: none
}


@media (max-width:768px) {
    #countriesModel .select-country .dropdown-toggle {
        max-width: 100%;
        font-size: 13px;
        width: 100% !important;
        color: #000 !important;
        font-weight: normal;
    }

    #countriesModel .dropdown.bootstrap-select.select-country {
        width: 100% !important;
        border: 1px solid #ccc;
        border-radius: 14px;
        padding: 10px;
    }

    .slide-menu-static a.header-lang.c-flags {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .slide-menu-static a.header-lang.c-flags img {
        width: 15px;
        margin-left: 10px;
    }

    .slide-menu-static .right-side {
        display: flex;
        flex-direction: row;
        align-items: center;
        float: left !important;
        text-align: left !important;
    }

    .slide-menu-static .header-lang {
        padding: 10px;
        margin-left: 10px !important;
        color: #000 !important;
    }

    .display-mobile-block {
        display: flex
    }

    .top-header {
        display: none
    }

    .inv-logo img {
        height: 60px;
    }

    .header-btn {
        margin-left: 0;
        padding: 10px 8px;
    }

    .header-btn:last-child {
        padding-left: 5px;
    }

    .middle-header .left-side {
        display: flex;
    }

    .middle-header .right-side .icon-img {
        height: 22px;
        margin-left: 0;
    }

    .middle-header .right-side .icon-img {
        margin-left: 0;
    }

    .header-btn .btn-text,
    .header-btn .btn-text2 {
        display: none;
    }

    /*.slide {*/
    /*    height: 170px;*/
    /*}*/

    .home-slider .owl-dots {
        bottom: 15px;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .slide-content {
        display: none;
    }

    .home-slider .owl-nav button span {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }

    .order-type {
        width: 100%;
        margin: auto;
    }

    .section-title h2 {
        font-size: 17px;
        padding-right: 30px;
    }

    .section-title h2:before {
        width: 25px;
    }

    .product-block .heart {
        left: 10px;
        top: 10px;
    }

    .sale {
        right: 5px;
        top: 5px;
    }

    .order-type .nav-link {
        font-size: 14px;
        margin-left: 10px;
    }

    .seemore-link {
        font-size: 13px;
    }

    .category-block .img-block {
        margin: 0 auto 10px auto;
        height: 165px;
        width: 100%;
    }

    .section-block {
        margin-bottom: 30px;
    }

    .menu-modal {
        width: 300px;
    }

    .header-logo img {
        height: 45px;
    }

    .side-modal {
        padding: 20px 10px;
    }

    .help-sec a {
        width: calc(100%/3 - 5px);
        padding: 10px 8px;
        font-size: 13px;
    }

    .help-sec a img {
        height: 30px;
    }

    .top-header .header-social {
        display: none;
    }

    .side-menu {
        margin-left: 10px;
    }

    .side-menu span {
        display: none;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .subscribtion-sec {
        margin-top: 0;
    }

    .subscribe-form {
        padding-lright: 0;
        flex-direction: column;
    }

    .subscribe-form input {
        width: 100px;
        max-width: 120px;
    }

    .subscribe-form form {
        width: 100%;
        padding: 10px;
    }

    .footer-help {
        padding-right: 0;
        width: 100%;
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .copyrights {
        margin-top: 5px;
        font-size: 12px;
    }

    footer {
        margin-top: 0;
    }

    .app-download h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .subscribe-form h2 {
        font-size: 20px;
        border: none;
        margin-bottom: 15px;
        margin-left: 0;
    }

    .user-side-modal,
    .delivery-modal,
    .pickup-modal {
        width: 300px;
    }

    .category-head {
        margin-bottom: 15px;
    }

    .filter-btn {
        display: block;
        color: #555;
        padding: 0 0 0 10px;
    }

    .filter-btn i {
        margin-left: 3px;
    }

    .showing-num {
        display: none;
    }

    .content-sidebar,
    .main-menu {
        /*transform: translate3d(460px, 0, 0);*/
        /*transition: transform 300ms cubic-bezier(0.4, 0, 0.6, 1);*/
        width: 460px;
        height: 100%;
        right: 0;
        position: fixed;
        min-height: 100%;
        max-height: none;
        top: 0;
        display: block;
        background: #fff;
        overflow: hidden;
        z-index: 99;
        width: 300px;
        padding: 20px 10px;
        overflow-y: scroll;
    }

    .content-sidebar.is-open,
    .main-menu.is-open {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        opacity: 1;
    }

    .content-sidebar .close-modal,
    .main-menu .close-modal {
        display: block;
        text-align: left;
    }

    .bottom-header {
        padding: 12px 0;
    }

    .main-menu a {
        color: #555 !important;
        margin-left: 0;
        display: block;
        margin-bottom: 15px;
        margin-left: 0 !important;
        padding: 0px 10px 5px 10px;
    }

    .nsted-menu > a:after {
        position: absolute;
        left: 0;
    }

    .menu-responsive {
        background: transparent;
        border: none;
        color: #fff;
        display: block;
        float: right !important;
    }

    .menu-responsive i {
        margin-left: 3px;
    }

    .cart-item .img-block {
        margin-left: 10px;
        width: 70px;
        height: 70px;
    }

    .user-menu {
        background: #f6f9fd;
        padding: 10px;
        margin-bottom: 25px;
        display: flex;
        justify-content: space-between;
    }

    .user-menu a img {
        height: 22px;
        margin-left: 0;
        margin-bottom: 5px;
    }

    .user-menu a {
        margin-bottom: 0;
        flex-direction: column;
        font-size: 13px;
        padding: 0 3px;
        text-align: center;
    }

    .user-menu a span:before {
        bottom: -10px;
    }

    .products-container.s-list .product-block .img-block {
        width: 90px;
        height: 90px;
        margin-left: 10px;
    }

    .s-list .product-block {
        display: flex;
        flex-wrap: wrap;
    }

    .products-container.s-list .content-block {
        float: right;
        width: calc(100% - 100px);
    }

    .pro-description {
        display: none;
    }

    .products-container.s-list .left-options {
        margin-right: 100px;
        min-width: calc(100% - 110px);
        width: calc(100% - 110px);
    }

    .block {
        margin-bottom: 20px;
    }

    .quickview-modal .modal-dialog {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        overflow-y: auto;
    }

    .quickview-modal .content {
        padding: 15px;
    }

    .quickview-modal .btn-close {
        z-index: 999;
        position: fixed;
    }

    .quickview-modal {
        display: none;
    }

    .addcart-footer .btn {
        min-width: calc(50% - 10px);
        width: calc(50% - 10px);
        padding: 0 5px;
        font-size: 13px;
    }

    .addcart-modal .modal-content {
        padding: 20px 15px;
    }

    .share-pro {
        margin-bottom: 20px;
    }

    .address-block {
        display: block !important;
    }

    .address-operations {
        padding-right: 0;
        display: flex;
        justify-content: space-between !important;
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .address-operations .btn {
        padding: 3px 6px;
    }

    .cart-item {
        display: block;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .date {
        margin-left: 5px;
    }

    .order-done {
        width: 100%;
    }

    .login {
        padding: 30px 20px;
    }

    .inner-page {
        padding: 30px 0;
        border-top: 1px solid #eee;
    }

    .cart-item .quantity {
        display: inline-block !important;
        margin-right: 80px;
        margin-top: 10px;
    }

    .cart-item .cart-options.d-flex {
        display: inline-block !important;
        margin-top: 10px;
    }

    .order-summery {
        margin-left: 0;
        margin-top: 20px;
    }

    .time-block {
        width: calc(100% / 2 - 5px);
        margin-bottom: 10px;
    }

    .header-lang {
        margin-left: 12px;
    }

    .top-header .header-social a {
        padding-left: 12px;
    }

    .side-menu img {
        height: 20px;
        margin-left: 0
    }

    .product-block .img-block {
        height: 180px;
    }

    .content-block .pro-name {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .middle-header {
        padding: 5px 0;
    }

    .products-container .product-block {
        margin-bottom: 25px;
    }

    .sizebtn {
        border-radius: 2px;
        padding: 6px 12px;
        margin-left: 5px;
    }

    .seemore-link span::after {
        display: none;
    }

    .wishlit-btn .counter {
        width: 15px;
        height: 15px;
        font-size: 9px;
        margin-left: 0;
        position: absolute;
        left: 4px;
        bottom: 0px;
    }

    .cart-btn .counter {
        font-size: 9px;
        margin-left: 0;
        position: absolute;
        left: 5px;
        top: -15px;
    }

    .middle-header .right-side .search-btn .icon-img {
        height: 20px;
    }

    .middle-header .right-side .wishlit-btn .icon-img {
        height: 24px;
    }

    .category-block:hover .img-block img {
        transform: scale(1);
    }

    .download-btn h6 {
        font-size: 14px;
    }

    i.fab.fa-google-play {
        font-size: 20px;
        margin-left: 8px;
    }

    i.fab.fa-apple {
        font-size: 30px;
        margin-left: 8px;
    }

    .download-btn img {
        height: 28px;
        margin-left: 8px;
    }

    .download-btn :last-child {
        margin-left: 0;
    }

    .orders-list .cart-item .img-block {
        width: 100px;
        height: 100px;
    }

    .order-status {
        margin-bottom: 10px;
    }

    .cart-item .seemore-link {
        display: block;
        padding-right: 120px;
        margin-top: 10px;
        font-size: 14px;
    }

    .payment-block {
        width: 100%;
        margin-bottom: 20px;
    }

    .order-details-head .left-side .date {
        padding-right: 0;
        margin-left: 0;
    }

    .order-details-head .left-side .date .separated {
        margin-right: 0;
    }

    .order-details-head .order-number {
        margin-bottom: 7px;
    }

    .sticky-cart .middle span {
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        margin-right: 0;
        font-size: 12px;
        font-weight: 400;
    }

    .sticky-cart .left {
        display: none;
    }

    .sticky-cart .middle h5 {
        font-size: 14px;
    }

    .sticky-cart .theme-btn {
        min-width: auto;
        padding: 6px 12px;
    }

    .sp-thumbs a {
        width: 50px !important;
        height: 50px !important;
    }

    .pro-head .pro-name {
        font-size: 18px;
    }

    .whatsappbtn {
        width: 60px;
        height: 60px;
        position: fixed;
        bottom: 65px;
        right: 10px;
    }

    .product-block .addto-cart {
        min-width: 75%;
        font-size: 12px;
    }

    form .btn {
        width: 100%;
    }

    .subscribe-form button {
        width: auto !important;
    }

    .order-summery > h2 {
        font-size: 16px;
    }

    .sticky-cart-product .qty-ops {
        width: 100%;
        margin: auto;
    }

    .home-categories .owl-dots {
        text-align: center;
    }

    .main-menu > ul {
        text-align: right;
    }

    .main-menu > ul > li {
        display: block;
        line-height: 10px;
        border-bottom: 1px solid #f4f4f4;
        padding: 15px 0 0 0;
    }

    .main-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        background: none !important;
        box-shadow: none;
        border-right: 1px solid #dedede;
        padding-right: 10px;
    }

    .menu-item.arrowleft > a::after {
        content: "\e64b";
    }

    .mega-menu > .d-flex {
        display: block !important;
    }

    .categories-col {
        width: 100%;
        border-right: none;
        padding: 0;
    }

    .categories-col a {
        padding-right: 15px !important;
    }

    .mega-menu {
        margin-right: 10px;
    }

    .order-item .d-flex.align-items-end.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .order-item .theme-btn-sec {
        padding: 10px 15px;
        width: 100%;
        margin-top: 10px;
    }

    .table > :not(caption) > * > * {
        white-space: pre;
    }

    .sticky-cart-product {
        display: block;
    }

    /*.pro-qty-desk {*/
    /*    display: none;*/
    /*}*/
}
