/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #D10024
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

@font-face {
    font-family: 'noto';
    src: url('../fonts/noto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'noto', sans-serif;
    font-weight: 400;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2B2D42;
    font-weight: 700;
    margin: 0 0 10px;
}

a {
    color: #2B2D42;
    font-weight: 500;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #D10024;
    border: none;
    border-radius: 40px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.primary-btn:hover,
.primary-btn:focus {
    opacity: 0.9;
    color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    width: 100%;
}

textarea.input {
    padding: 15px;
    min-height: 90px;
}

/*-- Number input --*/

.input-number {
    position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button,
.input-number input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-number input[type="number"] {
    -moz-appearance: textfield;
    height: 40px;
    width: 100%;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    padding: 0px 35px 0px 15px;
}

.input-number .qty-up,
.input-number .qty-down {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-number .qty-up {
    right: 0;
    top: 0;
    border-bottom: 0px;
}

.input-number .qty-down {
    right: 0;
    bottom: 0;
}

.input-number .qty-up:hover,
.input-number .qty-down:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

/*-- Select input --*/

.input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio,
.input-checkbox {
    position: relative;
    display: block;
}

.input-radio input[type="radio"]:not(:checked),
.input-radio input[type="radio"]:checked,
.input-checkbox input[type="checkbox"]:not(:checked),
.input-checkbox input[type="checkbox"]:checked {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.input-radio label,
.input-checkbox label {
    font-weight: 500;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 5px;
    cursor: pointer;
}

.input-radio input[type="radio"]+label span,
.input-checkbox input[type="checkbox"]+label span {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 2px solid #E4E7ED;
    background: #FFF;
}

.input-radio input[type="radio"]+label span {
    border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background-color: #FFF;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
    content: '✔';
    position: absolute;
    top: -2px;
    left: 1px;
    font-size: 10px;
    color: #FFF;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span,
.input-checkbox input[type="checkbox"]:checked+label span {
    background-color: #D10024;
    border-color: #D10024;
}

.input-radio input[type="radio"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.input-radio .caption,
.input-checkbox .caption {
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s max-height;
    transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption,
.input-checkbox input[type="checkbox"]:checked~.caption {
    max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
}

.section-title .title {
    display: inline-block;
    text-transform: uppercase;
    margin: 0px;
}

.section-title .section-nav {
    float: right;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

#cat-con-x {
    overflow: scroll;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
}

#cat-con-x::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}


#sub-con-x {
    overflow: scroll;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
}

#sub-con-x::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

#city-con-x {
    overflow: scroll;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
}

#city-con-x::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

#region-con-x {
    overflow: scroll;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
}

#region-con-x::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}


.section-title .section-nav .section-tab-nav {
    display: inline-block;

}


.section-title .section-nav:-webkit-scrollbar {
    display: none;
}

.section-tab-nav li:lang(ar) {
    margin-right: 0px;
    margin-left: 15px;
    margin-bottom: 6px;
}

.section-tab-nav li {
    display: inline-block;
    margin-right: 15px;
    border-style: solid;
    margin-top: 10px;
    border-width: 2px;
    border-radius: 23px;
    box-shadow: 0px 0 9px rgb(1 41 112 / 12%);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    /* border-color: #d10024; */
    border: none;
}

.section-tab-nav .active {
    background-color: #d10024;
    color: white;

}

.section-tab-nav li:last-child {
    margin-right: 0px;
}

.section-tab-nav li a {
    font-weight: 700;
    color: #D10024;
}

.section-tab-nav li a:after {
    content: "";
    display: none;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.section-tab-nav li.active a {
    color: #ffffff;
}

.section-tab-nav li a:hover:after,
.section-tab-nav li a:focus:after,
.section-tab-nav li.active a:after {
    width: 100%;
}

.section-title .section-nav .products-slick-nav {
    top: 0px;
    right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
    padding: 30px 0px;
    background: #FBFBFC;
    border-bottom: 1px solid #E4E7ED;
    margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 15px;
    text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
    display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
    margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
    content: '/';
    display: inline-block;
    color: #8D99AE;
    margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
    color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
    color: #D10024;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #1E1F29;
}

.header-links li {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

.header-links li:last-child {
    margin-right: 0px;
}

.header-links li a {
    color: #FFF;
}

.header-links li a:hover {
    color: #D10024;
}

.header-links li i {
    color: #D10024;
    margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
    background-color: #d10024;
}

.header-logo {
    float: left;
}

.header-logo .logo img {
    display: block;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
    padding: 15px 0px;
}

.header-search form {
    position: relative;
}

.header-search form .input-select:lang(ar) {
    border-radius: 0px 40px 40px 0px;
}

.header-search form .input-select {
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
    width: 120px;
    font-size: 13px;
    position: relative;
    bottom: 0.5px;
}

.header-search form .input {
    width: calc(100% - 223px);
    margin-right: -4px;
}

.header-search form .search-btn:lang(ar) {
    border-radius: 40px 0px 0px 40px;
    margin-right: -4px;
    top: -1px;
}

.header-search form .search-btn {
    height: 40px;
    width: 100px;
    background: #15161D;
    color: #FFF;
    font-weight: 700;
    border: none;
    border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
    float: right;
    padding: 15px 0px;
}

.header-ctn>div {
    display: inline-block;
}

.header-ctn>div+div {
    margin-left: 15px;
}

.header-ctn>div>a {
    display: block;
    position: relative;
    width: 55px;
    text-align: center;
}

.header-ctn>div>a>i {
    display: block;
    font-size: 18px;
}

.header-ctn>div>a>span {
    font-size: 12px;
}

.header-ctn>div>a>.qty {
    position: absolute;
    right: 5px;
    top: -10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
    color: #FFF;
    background-color: #15161D;
}

.header-ctn .menu-toggle {
    display: none;
}

.cart-dropdown {
    position: absolute;
    width: 300px;
    background: #FFF;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
    box-shadow: 0px 0px 0px 2px #E4E7ED;
    z-index: 99;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.dropdown.open>.cart-dropdown {
    opacity: 1;
    visibility: visible;
}

.cart-dropdown .cart-list {
    max-height: 180px;
    overflow-y: scroll;
    margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
    padding: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
    margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
    left: 0px;
    top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
    color: #2B2D42;
}

.cart-dropdown .cart-btns {
    margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
    display: inline-block;
    width: calc(50% - 0px);
    padding: 12px;
    background-color: #D10024;
    color: #FFF;
    text-align: center;
    font-weight: 700;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
    margin-right: -4px;
    background-color: #1e1f29;
}

.cart-dropdown .cart-btns>a:hover {
    opacity: 0.9;
}

.cart-dropdown .cart-summary {
    border-top: 1px solid #E4E7ED;
    padding-top: 15px;
    padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
    background: #FFF;
    border-bottom: 2px solid #E4E7ED;
    border-top: 3px solid #15161D;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li:lang(ar) {
    margin-left: 0px;
    margin-right: 30px;
}

.main-nav>li+li {
    margin-left: 30px
}

.main-nav>li>a {
    padding: 11px 0px;
}

.main-nav>li>a:hover,
.main-nav>li>a:focus,
.main-nav>li.active>a {
    color: #D10024;
    background-color: transparent;
}

.main-nav>li>a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.main-nav>li>a:hover:after,
.main-nav>li>a:focus:after,
.main-nav>li.active>a:after {
    width: 100%;
}

.header-ctn li.nav-toggle {
    display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
    
    .header-ctn .menu-toggle{
        display: inline-block;
    }

    .nav-close {
        display: block !important;
    }

    #responsive-nav {
        position: fixed;
        left: 0;
        top: 0;
        background: #15161D;
        height: 100vh;
        max-width: 250px;
        width: 0%;
        overflow: hidden;
        z-index: 22;
        padding-top: 60px;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    #responsive-nav.active {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        width: 100%;
    }

    .main-nav {
        margin: 0px;
        float: none;
    }

    .main-nav>li {
        display: block;
        float: none;
        margin-right: 25px;
    }

    .main-nav>li+li {
        margin-left: 0px;
    }

    .main-nav>li>a {
        padding: 15px;
        color: #FFF;
    }

}

@media only screen and (max-width: 440px) {
    .product {
        max-width: 95% !important;
    }
}

@media (max-width: 992px) {
    .header-icons {
        width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .search-con {
        width: 100% !important;
    }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
}

.shop:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    width: 60%;
    background: #D10024;
    opacity: 0.9;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
}

.shop:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 100%;
    background: #D10024;
    opacity: 0.9;
    -webkit-transform: skewX(-45deg) translateX(-100%);
    -ms-transform: skewX(-45deg) translateX(-100%);
    transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
    position: relative;
    background-color: #E4E7ED;
    z-index: -1;
}

.shop .shop-img>img {
    width: 100%;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.shop:hover .shop-img>img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.shop .shop-body {
    position: absolute;
    top: 0;
    width: 75%;
    padding: 30px;
    z-index: 10;
}

.shop .shop-body h3 {
    color: #FFF;
}

.shop .shop-body .cta-btn {
    color: #FFF;
    text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
    padding: 95px 0px;
    margin: 0px 0px;
    background-color: #E4E7ED;
    background-image: url('../img/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
}

.hot-deal {
    text-align: center;
}

.hot-deal .hot-deal-countdown {
    margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    background: #D10024e6;
    text-align: center;
    border-radius: 50%;
    margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
    color: #FFF;
    margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #FFF;
}

.hot-deal p {
    text-transform: uppercase;
    font-size: 24px;
}

.hot-deal .cta-btn {
    margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
    position: relative;
    margin: 15px 10px;
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    max-width: 23%;
    min-width: 223px;
    padding-left: 0px !important;
    padding-right: 0px !important;
    border-radius: 10px;
    overflow: hidden;
}

.product:hover {
    -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #D10024;
    box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #D10024;
}

.product .product-img {
    position: relative;
    height: 49%;
}

.product .product-img>img {
    width: 100%;
    max-height: 258px;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.product .product-img .product-label {
    position: absolute;
    top: 15px;
    right: 15px;
}

.product .product-img .product-label>span {
    border: 2px solid;
    padding: 2px 10px;
    font-size: 12px;
}

.product .product-img .product-label>span.sale {
    background-color: #FFF;
    border-color: #D10024;
    color: #D10024;
}

.product .product-img .product-label>span.new {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
}

#store-section .product .product-body,
#store-con .product .product-body {
    height: inherit;
}

.product .product-body {
    position: relative;
    padding: 15px;
    background-color: #FFF;
    text-align: center;
    z-index: 20;
    /*height: 160px;*/
    height: 195px;

}

.product .product-body .product-category {
    text-transform: uppercase;
    font-size: 12px;
    color: #8D99AE;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product .product-body .product-name {
    text-transform: uppercase;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

#store-con .product .product-body .product-name>a,
#store-section .product .product-body .product-name>a {
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
}

.product .product-body .product-name>a {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product .product-body .product-name>a:hover,
.product .product-body .product-name>a:focus {
    color: #D10024;
}

.product .product-body .product-price {
    color: #D10024;
    font-size: 18px;
    direction: ltr;
}

.product .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
}

.product .product-body .product-rating {

    position: relative;
    margin: 15px 0px 10px;
    height: 20px;
}

.product .product-body .product-rating>i {
    position: relative;
    width: 14px;
    margin-right: -4px;
    background: #FFF;
    color: #E4E7ED;
    z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
    color: #ef233c;
    margin-right: 1px;
}

.product .product-body .product-rating:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
    position: relative;
    height: 30px;
    width: 30px;
    line-height: 40px;
    background: transparent;
    border: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
    background-color: #E4E7ED;
    color: #D10024;
    border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    width: 150px;
    padding: 10px;
    font-size: 12px;
    line-height: 10px;
    background: #1e1f29;
    color: #FFF;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
}

.product .add-to-cart {
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    padding: 15px;
    background: #1e1f29;
    text-align: center;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 2;
}

.product:hover .add-to-cart {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #ef233c;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #D10024;
    opacity: 0;
    visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
    background-color: #FFF;
    color: #D10024;
    border-color: #D10024;
    padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
    opacity: 1;
    visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
    position: relative;
    /* -webkit-box-shadow: 0px 0px 0px 0px #e4e7ed, 0px 0px 0px 1px #e4e7ed;
  box-shadow: 0px 0px 0px 0px #e4e7ed, 0px 0px 0px 1px #e4e7ed;*/
    margin: 6px 10px !important;
    padding: 10px 10px;
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    border-radius: 10px;

}

#wall-section .product-widget {
    -webkit-box-shadow: 0px 0 10px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 10px rgb(1 41 112 / 8%);
}

#company-section .product-widget {
    -webkit-box-shadow: 0px 0 10px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 10px rgb(1 41 112 / 8%);
    min-height: 92px;
}

.product-widget+.product-widget {
    margin: 30px 0px;
}

.product-widget .product-img:lang(ar) {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;

}

.product-widget .product-img:lang(en) {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50px;
}

.product-widget .product-img>img {
    width: 100%;
}

.comment-con .product-widget .product-body:lang(ar) {
    padding-left: 0px;
    padding-right: 60px;
}

.comment-con .product-widget .product-body {
    padding-left: 60px;
}

.product-widget .product-body:lang(ar) {
    padding-left: 0px;
    padding-right: 75px;
}

.product-widget .product-body {
    padding-left: 75px;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
}

.product-widget .product-body .product-category {
    text-transform: uppercase;
    font-size: 10px;
    color: #8D99AE;
}

.product-widget .product-body .product-name {
    text-transform: uppercase;
    font-size: 12px;
}

.product-widget .product-body .product-name>a {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-widget .product-body .product-name>a:hover,
.product-widget .product-body .product-name>a:focus {
    color: #D10024;
}

.product-widget .product-body .product-price {
    font-size: 14px;
    color: #D10024;
}

.product-widget .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
}

.product-widget .product-body .product-price .qty {
    font-weight: 400;
    margin-right: 10px;
}

.product-widget .delete {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 14px;
    text-align: center;
    font-size: 10px;
    padding: 0;
    background: #1e1f29;
    border: none;
    color: #FFF;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
    padding-bottom: 60px;
    margin-bottom: -60px;
    z-index: 2;
}

.products-slick .product.slick-slide {
    margin: 15px;
}

.products-tabs>.tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: hidden;
    padding-bottom: 60px;
    margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.products-slick-nav {
    position: absolute;
    right: 15px;
    z-index: 10;
}

.products-slick-nav .slick-prev,
.products-slick-nav .slick-next {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 20px;
    height: 20px;
    display: inline-block !important;
    margin: 0px 2px;
}

.products-slick-nav .slick-prev:before,
.products-slick-nav .slick-next:before {
    font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
    margin-top: 30px;
}

.aside>.aside-title {
    text-transform: uppercase;
    font-size: 18px;
    margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
    margin-top: 10px;
}

.checkbox-filter .input-radio label,
.checkbox-filter .input-checkbox label {
    font-size: 12px;
}

.checkbox-filter .input-radio label small,
.checkbox-filter .input-checkbox label small {
    color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
    margin-bottom: 15px;
}

.noUi-target {
    background-color: #FFF;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #E4E7ED;
    border-radius: 0px;
}

.noUi-connect {
    background-color: #D10024;
}

.noUi-horizontal {
    height: 6px;
}

.noUi-horizontal .noUi-handle {
    width: 12px;
    height: 12px;
    left: -6px;
    top: -4px;
    border: none;
    background: #D10024;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

.price-filter .input-number {
    display: inline-block;
    width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
    margin-bottom: 15px;
    margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
    display: inline-block;
}

.store-sort label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
    float: right;
}

.store-grid li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #FFF;
    border: 1px solid #E4E7ED;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.store-grid li+li {
    margin-left: 5px;
}

.store-grid li:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

.store-grid li.active {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
    cursor: default;
}

.store-grid li a {
    display: block;
}

/*-- Store Pagination --*/

.store-pagination {
    float: right;
}

.store-pagination li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #FFF;
    border: 1px solid #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.store-pagination li+li {
    margin-left: 5px;
}

.store-pagination li:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

.store-pagination li.active {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
    font-weight: 500;
    cursor: default;
}

.store-pagination li a {
    display: block;
}

.store-qty {
    margin-right: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-imgs .slick-list.draggable {
    border-radius: 10px;
    height: fit-content !important;
    max-height: 393px;
}

#product-main-img {
    border-radius: 10px;
    overflow: hidden;
}


#product-main-img .slick-prev {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    left: 15px;
}

#product-main-img .slick-next {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    right: 15px;
}

#product-main-img .slick-prev,
#product-main-img .slick-next {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-main-img:hover .slick-prev,
#product-main-img:hover .slick-next {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

#product-main-img .zoomImg {
    background-color: #FFF;
}

#product-imgs .product-preview {
    margin: 0px 5px;
    border: 1px solid #E4E7ED;
    border-radius: 10px;
    height: 131px;
    overflow: hidden;
}

#product-imgs .product-preview.slick-current {
    border-color: #D10024;
    border-radius: 10px;
}

#product-imgs .slick-prev {
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-next {
    top: calc(100% - 20px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
    content: "\f106";
}

#product-imgs .slick-next:before {
    content: "\f107";
}

.product-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
    text-transform: uppercase;
    font-size: 18px;
}

.product-details .product-rating {
    display: inline-block;
    margin-right: 15px;
}

.product-details .product-rating>i {
    color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
    color: #D10024;
}

.product-details .review-link {
    font-size: 12px;
}

.product-details .product-price {
    display: inline-block;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #D10024;
}

.product-details .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
}

.product-details .product-available {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 30px;
    color: #D10024;
}

.product-details .product-options {
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-details .product-options label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0px;
}

.product-details .product-options .input-select {
    width: 90px;
}

.product-details .add-to-cart {
    margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #ef233c;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #D10024;
    opacity: 0;
    visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
    background-color: #FFF;
    color: #D10024;
    border-color: #D10024;
    padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
    opacity: 1;
    visibility: visible;
}

.product-details .add-to-cart .qty-label {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
    width: 90px;
    display: inline-block;
}

.product-details .product-btns li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

.product-details .product-btns li+li {
    margin-left: 15px;
}

.product-details .product-links {
    margin-top: 15px;
}

.product-details .product-links li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

.product-details .product-links li+li {
    margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
    margin-top: 60px;
}

#product-tab .tab-nav {
    position: relative;
    text-align: center;
    padding: 15px 0px;
    margin-bottom: 30px;
}

#product-tab .tab-nav:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: #E4E7ED;
    z-index: -1;
}

#product-tab .tab-nav li {
    display: inline-block;
    background: #FFF;
    padding: 0px 15px;
}

#product-tab .tab-nav li+li {
    margin-left: 15px;
}

#product-tab .tab-nav li a {
    display: block;
    font-weight: 700;
    color: #8D99AE;
}

#product-tab .tab-nav li.active a {
    color: #D10024;
}

#product-tab .tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after,
#product-tab .tab-nav li a:focus:after,
#product-tab .tab-nav li.active a:after {
    width: 100%;
}

/*-- Rating --*/

.rating-avg {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.rating-avg .rating-stars {
    margin-left: 10px;
}

.rating-avg .rating-stars,
.rating .rating-stars {
    display: inline-block;
}

.rating-avg .rating-stars>i,
.rating .rating-stars>i {
    color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star,
.rating .rating-stars>i.fa-star {
    color: #D10024;
}

.rating li {
    margin: 5px 0px;
}

.rating .rating-progress {
    position: relative;
    display: inline-block;
    height: 9px;
    background-color: #E4E7ED;
    width: 120px;
    margin: 0px 10px;
    border-radius: 5px;
}

.rating .rating-progress>div {
    background-color: #D10024;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}

.rating .sum {
    display: inline-block;
    font-size: 12px;
    color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
    position: relative;
    padding-left: 145px;
    margin-bottom: 30px;
}

.reviews .review-heading {
    position: absolute;
    width: 130px;
    left: 0;
    top: 0;
    height: 70px;
}

.reviews .review-body {
    min-height: 70px;
}

.reviews .review-heading .name {
    margin-bottom: 5px;
    margin-top: 0px;
}

.reviews .review-heading .date {
    color: #8D99AE;
    font-size: 10px;
    margin: 0;
}

.reviews .review-heading .review-rating {
    margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
    color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
    color: #D10024;
}

.reviews-pagination {
    text-align: center;
}

.reviews-pagination li {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #FFF;
    border: 1px solid #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.reviews-pagination li:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

.reviews-pagination li.active {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
    cursor: default;
}

.reviews-pagination li a {
    display: block;
}

/*-- Review Form --*/

.review-form .input {
    margin-bottom: 15px;
}

.review-form .input-rating {
    margin-bottom: 15px;
}

.review-form .input-rating .stars {
    display: inline-block;
    vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
    display: none;
}

.review-form .input-rating .stars>label {
    float: right;
    cursor: pointer;
    padding: 0px 3px;
    margin: 0px;
}

.review-form .input-rating .stars>label:before {
    content: "\f006";
    font-family: FontAwesome;
    color: #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before,
.review-form .input-rating .stars>label:hover~label:before {
    color: #D10024;
}

.review-form .input-rating .stars>input:checked label:before,
.review-form .input-rating .stars>input:checked~label:before {
    content: "\f005";
    color: #D10024;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
    margin-bottom: 30px;
}

.shiping-details {
    margin-bottom: 30px;
}

.order-details {
    position: relative;
    padding: 0px 30px 30px;
    border-right: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: -15px;
    height: 30px;
    border-top: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-right: 1px solid #E4E7ED;
}

.order-summary {
    margin: 15px 0px;
}

.order-summary .order-col {
    display: table;
    width: 100%;
}

.order-summary .order-col:after {
    content: "";
    display: block;
    clear: both;
}

.order-summary .order-col>div {
    display: table-cell;
    padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
    width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
    width: 150px;
    text-align: right;
}

.order-summary .order-col .order-total {
    font-size: 24px;
    color: #D10024;
}

.order-details .payment-method {
    margin: 30px 0px;
}

.order-details .order-submit {
    display: block;
    margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
    border-top: 2px solid #E4E7ED;
    border-bottom: 3px solid #D10024;
    margin-top: 30px;
}

.newsletter {
    text-align: center;
}

.newsletter p {
    font-size: 24px;
}

.newsletter form {
    position: relative;
    max-width: 520px;
    margin: 30px auto;
}

.newsletter form:after {
    content: "\f003";
    font-family: FontAwesome;
    position: absolute;
    font-size: 160px;
    color: #E4E7ED;
    top: 15px;
    -webkit-transform: translateY(-50%) rotate(15deg);
    -ms-transform: translateY(-50%) rotate(15deg);
    transform: translateY(-50%) rotate(15deg);
    z-index: -1;
    left: -90px;
}

.newsletter form .input {
    width: calc(100% - 160px);
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
    width: 160px;
    height: 40px;
    font-weight: 700;
    background: #D10024;
    color: #FFF;
    border: none;
    border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
    text-align: center;
}

.newsletter .newsletter-follow li {
    display: inline-block;
    margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
    margin-right: 0px;
}

.newsletter .newsletter-follow li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover,
.newsletter .newsletter-follow li a:focus {
    background-color: #E4E7ED;
    color: #D10024;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
    margin-top: 100px;
    background: #15161D;
    color: #B9BABC;
}

#bottom-footer {
    background: #1E1F29;
}

.footer {
    margin: 30px 0px;
}

.footer .footer-title {
    color: #FFF;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0px 0px 30px;
}

.footer-links li+li {
    margin-top: 15px;
}

.footer-links li a {
    color: #B9BABC;
}

.footer-links li i {
    margin-right: 15px;
    color: #D10024;
    width: 14px;
    text-align: center;
}

.footer-links li a:hover {
    color: #D10024;
}

.copyright {
    margin-top: 30px;
    display: block;
    font-size: 12px;
}

.footer-payments li {
    display: inline-block;
    margin-right: 5px;
}

.footer-payments li a {
    color: #15161D;
    font-size: 36px;
    display: block;
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    border-radius: 50%;
    z-index: 22;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: #D10024;
    border-color: #D10024;
}

.slick-prev:before,
.slick-next:before {
    font-family: FontAwesome;
    color: #2B2D42;
}

.slick-prev:before {
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    color: #FFF;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
    width: 10px;
    height: 10px;
}

.slick-dots li button:before {
    content: "";
    opacity: 1;
    background: #E4E7ED;
    border-radius: 50%;
}

.slick-dots li.slick-active button:before {
    background-color: #D10024;
}

.custom-dots .slick-dots {
    position: static;
    margin: 15px 0px;
}

.top-menu {
    display: none;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {



    #top-header .header-links.pull-left {
        float: none !important;
    }

    #top-header .header-links.pull-right {
        float: none !important;
        margin-top: 5px;
    }

    .header-logo {
        float: none;
        text-align: center;
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .header-logo .menu-toggle {
        font-size: 20px;
        margin-top: 5px;
    }

    .header-logo .logo {
        display: inline-block;
    }

    #product-imgs {
        margin-bottom: 60px;
        margin-top: 15px;
    }

    #rating {
        text-align: center;
    }

    #reviews {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .section-nav {
        float: none;
        margin-top: 10px;
        overflow: scroll;
    }

    .section-tab-nav li {
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    .navbar-nav:lang(ar) {
        float: right;

    }
}

@media only screen and (max-width: 480px) {
    [class*='col-xs'] {
        width: 100%;
    }

    .store-grid {
        float: none;
        margin-top: 10px;
    }

    .store-pagination {
        float: none;
        margin-top: 10px;
    }
}

.company-logo {
    border-radius: 50px;
    margin: 10px;
    width: 60px !important;
    height: 60px !important;
}

.custom-spinner {
    width: 30px !important;
    height: 30px !important;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
}

.pagination {
    display: flex !important;
}



.page-item.active .page-link {
    height: 29px;
    width: 33px;
    z-index: 3;
    color: #fff;
    background-color: #D10024;
    border-color: #D10024;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-link {
    color: #D10024;
}

::-webkit-scrollbar {
    width: 10px;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
}

/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 23px;
}

.section-nav {
    width: 100%;
    overflow: hidden;
    /*height: 60px;*/
    margin-top: 10px;
    padding-bottom: 10px;
}

.city-select {
    border-radius: 10px !important;
}

.city-select {
    font-size: 15px;
}

.bg-image {
    filter: blur(8px);
    -webkit-filter: blur(7px);
    height: 180px;
    width: 102%;
    position: relative;
    left: -13px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-con {
    position: relative;
    border-bottom: 3px solid #D10024;
    overflow: hidden;
}

.store-con {
    position: relative;
    border-bottom: 3px solid #3988ff;
    overflow: hidden;
}

.profile-con {
    position: relative;
    border-bottom: 3px solid #000000;
    overflow: hidden;
}

.product-con {
    position: relative;
    border-bottom: 3px solid #00d123;
    overflow: hidden;
}

.bg-text {
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/opacity/see-through */
    color: white !important;
    font-weight: bold;
    border: 0px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.bg-text h1 {
    color: #ffffff !important;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-style: solid;
    border-radius: 100px;
    border-color: #D10024;
    border-width: 3px;
    position: relative;
    left: 15%;
    top: -72px;
    z-index: 5;
    background: #ffffff;
}

.store-img {
    border-color: #3988ff;
}

.profile-img {
    border-color: #000000;
}

.image-con {
    position: relative;
    direction: ltr;
}

.custom-card .col-sm-4{
    width: 115px !important;
}

.nav>li{
    display: block;
}

.nav>li.nav-acc,.nav>li.nav-cart,.nav>li.nav-chat{
    display: none;
}

#mob-name{
    display: none;
}

@media (max-width: 480px) {

    #mob-name{
        display: block;
    }

    .edit-name-con input{
        margin-right:-6px !important;
    }

    .nav-acc,.nav-cart,.nav-chat{
        display: block !important;
    }

    .header-ctn{
        display: none;
    }
    .header-ctn .menu-toggle {
        display: inline-block !important;
    }
    .top-menu {
        display: block;
    }

    .top-menu a{
        color:#fff;
    }
    
    .bg-con,.store-con,.product-con,.profile-con {
        display: none;
    }

    .profile-img {
        left: 0px;
        top: -35px !important;
        margin-top: 55px;
    }

    .profile-img {
        left: 0px;
        top: -57px;
    }

    .image-con {
        display: flex;
        justify-content: center;
    }

    .rate-comp-con {
        margin-top: 10px !important;
    }



}

.custom-card {
    padding: 20px;
    /*-webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #E4E7ED;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #E4E7ED;*/
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    border-radius: 10px;
}

.profile-icon:lang(ar) {
    margin-right: 0px;
    margin-left: 10px;
}

.profile-icon {
    background-color: #D10024;
    color: #ffffff;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    min-width: 30px;

}

.text-secondary {
    overflow-wrap: break-word;
}

.social-title {
    margin-right: -25px;
}

@media (max-width: 992px) {
    .col-sm-4 {
        width: 41.333333%;

    }

}

.content-load {
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-spinner {
    width: 50px !important;
    height: 50px !important;
}

.product-prev {
    min-width: 170px !important;
    max-width: none !important;
}

.img-prev {
    height: 176px !important;
    overflow: hidden;
}

.notice {
    background-color: #d1002438;
    /* padding: 7px 20px; */
    margin-bottom: 20px;
    border-radius: 10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
    display: none;
}

.qty-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter {
    box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px #e4e7ed;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 23px;
}

.counter#qty-plus {
    background-color: #d10024;
    color: #ffffff;
}

.counter-plus {
    background-color: #d10024;
    color: #ffffff;
}

.count {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px
}

.counters {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

#profile-total {
    color: #D10024;
    margin-right: 5px;
}

#offer-quantity {
    padding: 10px 20px;
}

#profile-currency {
    color: #d10024;
}

#product-total,
#product-currency {
    color: #d10024;

}

.profile-notes {
    width: 100%;
    height: 130px;
    -webkit-box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px #e4e7ed;
    box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px #e4e7ed;
    outline: none;
    border: none;
    padding: 10px;
}

.add-cart-con {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#out-of-stock h2 {
    text-align: center;
    color: #D10024;
}

.product-rating i {
    margin-right: 3px;
}

.cart-con {
    /*-webkit-box-shadow: 0px 0px 0px 0px #e4e7ed, 0px 0px 0px 1px #e4e7ed;
  box-shadow: 0px 0px 0px 0px #e4e7ed, 0px 0px 0px 1px #e4e7ed;*/
    border-radius: 10px;
    padding: 20px 20px !important;
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
}


#cart-section .product-widget {
    margin: 0px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#cart-section hr {
    margin-bottom: 10px;
}

#comments-section .product-img {
    overflow: hidden;
    border-radius: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

#cart-section .product-img {
    overflow: hidden;
    border-radius: 50px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.cart-con .primary-btn {
    padding: 5px 10px;
}

#offer-comments {
    margin-top: 30px;
}

#cart-section .product-img a {
    width: 100%;
    height: 100%;
}

#cart-section .product-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#comments-section .product-img a {
    width: 100%;
    height: 100%;
}

#comments-section .product-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#comments-section .product-widget {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.comment-reply .product-img {
    height: 40px !important;
    width: 40px !important;
}

.comment-reply .product-body {
    padding-left: 40px !important;
    min-height: 0px !important;
}


.comment-con {
    /*overflow: scroll;*/
    width: 100%;
    height: 100%;
    /*max-height: 342px;*/
}

.comment-con hr {
    margin-bottom: 0px;
    opacity: 0.1;
}

.reply textarea {
    width: 100%;
    height: 100px;
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 15px;
}

.rating-note textarea {
    width: 100%;
    height: 100px;
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 15px;

}

.custom-card h3 {
    /*margin-left: 14px;*/
}

.products-tabs .tab-pan.active {
    overflow: visible;
}

#product-main-img .slick-list.draggable {
    max-height: 581px;
}

#cart-section .product-widget .product-img {
    width: 60px;
}

.product-footer {
    height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

button i {
    display: flex !important;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.product-details {
    height: 110px;
}

.contact-row {
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 30px;
}

.contact-sec .footer-links li a {
    color: inherit;
}

#loginCode {
    text-align: center;
}

#login-section input {
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    direction: ltr;
    padding: 10px 52px;
    margin-top: 1px;

}

#login-section select {
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    padding: 0px 15px;

}



.contact-sec input {
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.contact-sec textarea {
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 10px;
    width: 100%;
    height: 140px;
}

.gmap_canvas {
    width: 100%;
}

.gmap_canvas iframe {
    width: 100%;
    border-radius: 10px;
}

.mapouter {
    margin-bottom: 15px;
}

.branch-details {
    margin-top: 10px;
}

.branch-details h6 {
    display: inline;
}

.spinner-con {
    height: 134px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-slider:lang(ar) {
    direction: ltr;
}

.page-item:first-child .page-link:lang(ar) {
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item:last-child .page-link:lang(ar) {
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

#store-section .product-prev {
    max-width: 160px !important;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
}


.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-btns {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.about-btns a {
    margin-right: 10px;
}


#login-section .about-img {
    height: 490px;
}

.login-form {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    height: 490px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.no-pad {
    padding: 0px !important;
}

.login-form .primary-btn {
    width: 50%;
    margin-top: 10px;
}

.login-form h3 {
    margin-bottom: 90px;
    width: 100%;

}


.social-login .google {
    background-color: #dd4a39;
    /* padding: 15px; */
    border-radius: 50px;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.social-login .fb {
    background-color: #5170a9;
    /* padding: 15px; */
    border-radius: 50px;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.social-login .tw {
    background-color: #55acef;
    /* padding: 15px; */
    border-radius: 50px;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.social-login {
    display: flex;
    flex-direction: row-reverse;
}

.social-login i {
    color: #fff;
    font-size: 25px;
    margin-top: 2px;
}

.login-form hr {
    width: 100%;
}

.login-num-con {
    width: 100%;
    position: relative;
}

.login-num-con p {
    position: absolute;
    left: 13px;
    top: 11px;
    direction: ltr;
}

.login-form .notice {
    margin-top: -61px;
    width: 100%;
}

.code-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
}

.code-back {
    background-color: #ededed;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: 800;
    font-size: 21px;
    padding-right: 2px;
    cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#code h5 {
    width: 100%;
    margin-top: -66px;
    margin-bottom: 100px;
}

#codeNoticeText {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

#codeNotice {
    margin-top: -79px !important;
    width: 100% !important;
    padding: 21px 10px !important;
}

.form-check-input {
    width: 45px !important;
    height: 20px !important;
}

input:focus {
    border: none;
    outline: none;
}

.form-switch .form-check-input:checked,
.form-switch .form-check-input:not(:checked) {
    outline: none !important;
}

.image-edit {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #ffffff;
    color: #000000;
    bottom: 6px;
    right: 4px;
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding-left: 3px;
    padding-top: 2px;
    cursor: pointer;
    border: 2px solid;
}

#sign-in-button,
#code-button {
    display: flex;
    justify-content: center;
}

#login-spinner,
#code-spinner {
    width: 20px !important;
    height: 20px !important;
    color: #ffffff !important;
}

.flavors-con {
    overflow: auto;
    max-height: 324px;
}

.checkout-dim {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000091;
    z-index: 25;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.checkout-main {
    position: relative;
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    border-radius: 10px;
    background-color: #fff;
    width: 375px;
    height: 500px;
}

.close-btn {
    width: 25px;
    height: 25px;
    border-radius: 50px;
    background: #D10024;
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 17px;
    cursor: pointer;
}

.checkout-main textarea,
.order-cancel-main textarea {
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 10px;
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    resize: none;
}

.checkout-main input {
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.checkout-main select {
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    padding: 0px 15px;
}

.checkout-row {
    margin: 20px 10px;
}

#purchase-button {
    margin-top: 20px;
}

.order-card {
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    margin-left: 0px;
    margin-right: 0px;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;

}

#orders-section {
    overflow: auto;
    max-height: 355px;
    padding: 15px;
}

#order-products .product-img {
    overflow: hidden;
    border-radius: 50px;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

#order-products .product-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#order-products .product-img a {
    width: 100%;
    height: 100%;
}

#order-products .product-widget {
    padding: 0px;
}

#order-products hr {
    width: 91%;
    margin-right: 10px;

    background-color: #9f9f9f;
}

.order-bg {
    background-image: linear-gradient(90deg,
            hsl(350deg 100% 41%) 0%,
            hsl(352deg 84% 45%) 11%,
            hsl(352deg 76% 49%) 22%,
            hsl(353deg 73% 51%) 33%,
            hsl(352deg 75% 54%) 44%,
            hsl(352deg 77% 56%) 56%,
            hsl(352deg 79% 58%) 67%,
            hsl(351deg 81% 60%) 78%,
            hsl(350deg 83% 62%) 89%,
            hsl(350deg 85% 64%) 100%);
}

.order-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-btns button {
    width: 70%;
    margin-bottom: 10px;
}

#order-products .product-widget {
    -webkit-box-shadow: none;
    box-shadow: none;

}


#order-products .product-widget .product-img:lang(ar) {
    right: inherit;
    top: inherit;
}

.profile-img form,
.profile-img form label {
    width: 100%;
    height: 100%;
}

.profile-img form label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.order-cancel-main {
    position: relative;
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    border-radius: 10px;
    background-color: #fff;
    width: 375px;
    height: 300px;

}

.cancel-con {
    position: absolute;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;

}

.chat-img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

.chat-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.chat-con {
    cursor: pointer;
}

.chat-tabs {
    display: flex;
    justify-content: space-around;
}

.chat-tab-active {
    background-color: #d10024;
    color: #fff;
    padding: 6px 10px;
    width: 100%;
    text-align: center;
    border-radius: 23px;
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    cursor: pointer;
}

.chat-tab {
    background-color: #fff;
    cursor: pointer;
    padding: 6px 10px;
    width: 100%;
    text-align: center;
    border-radius: 23px;
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
}

.chat img {
    width: 40px;
    height: 40px;
}

.chat .chat-time {
    font-size: 10px;
    margin: 0px;
}

.chat .message {
    margin-bottom: 0px;
    font-size: 14px;
    color: #000000;
}

.chat .sender {
    margin-bottom: 0px;
    font-size: 12px;
}

.chat-incoming {
    margin-top: 10px;
    direction: ltr;
    margin-left: 0px;
    margin-right: 0px;
}

.chat-outgoing {
    margin-top: 10px;
    direction: rtl;
    margin-left: 0px;
    margin-right: 0px;
}

.messages {
    /*height: 35vh;*/
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column-reverse;
    height: 270px;
    background-color: #fff;
    position: relative;
}

.group-owner {
    -webkit-box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
}

.select-chat h3 {
    text-align: center;
}

.select-chat {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin-top: 21%;
    background-color: #fff;
    position: relative;
    z-index: 10;

}

.select-chat img {
    width: 120px;
    margin-bottom: 13px;
}

.main-comment-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.del-con i {
    color: #d10024;
    font-size: 20px;
    cursor: pointer;
}

.offer-header .row {
    margin-left: 0px;
    margin-right: 0px;

}

.offer-header {
    margin-top: 10px;
}

.offer-header i {
    margin-right: 8px;
    font-size: 19px;
    cursor: pointer;
    margin-left: 15px;
}

.offer-header h6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;

}

.pro-title {
    color: #d10024;

}

.pro-cat-title {
    color: #d10024;
}

.comp-rating {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.comp-rating i {
    font-size: 35px;
}

#search-section {
    margin-right: 8px;
    margin-left: 8px;
}

#filter-open {
    cursor: pointer;
}

.section-tab-nav li {
    cursor: pointer;
}

.edit-name {
    cursor: pointer;
}

.edit-name h6 {
    color: #3988ff;
}

.edit-name-submit {
    display: inline;
    padding: 3px 19px;
    margin-right: 5px;
    height: 28px;
}



.edit-name-con input {
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 4px 10px;
    margin-bottom: 10px;
    margin-right: -25px;
}

#wall-section img {
    margin: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.section-title a h3:hover {
    color: #d10024;
}

.notif-settings-con {
    display: flex;
    flex-direction: column;
    padding: 30px 8px;
}

.notif-sub-con {
    padding: 15px 50px;
}

.notif-more {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.notif-more i {
    margin-right: 10px;
    font-size: 25px;
}

.shop-btn {
    position: absolute;
    bottom: 10px;
    left: 5px;
}

.shop-btn .primary-btn {
    padding: 5px 13px;
}

.views-btn {
    position: absolute;
    bottom: 10px;
    right: 5px;
    background-color: #0000009c;
    border-radius: 50px;
    padding: 4px 8px;
    color: #fff;
}

.nav-close {
    position: absolute;
    left: 229px;
    color: red;
    top: 5px;
    z-index: 30;
    font-weight: 700;
    display: none;
}

#fav-section,
#int-section {
    margin-right: 8px;
    margin-left: 8px;
}


.complete-order-con {
    position: fixed;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 50;
}

.add-to-interests {
    width: 20px;
    height: 20px;
    cursor: pointer;
}


.rate-comp-con .custom-card .row{
    flex-wrap: nowrap;
}


.notif-cities-col{
    display: flex;
    justify-content: space-between;
    padding: 25px 10px
}



#search-form-store input {
    border: none;
    background: #ededed;
    border-radius: 23px;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}

#search-form-store{
    display: none;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 10px;

}