
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

html {
    scroll-behavior: smooth;

}
body{
    font-family: 'Bahij_TheSansArabic-Plain', sans-serif;
    overflow-x: hidden!important;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
*{
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
@font-face {
    font-family: 'Bahij_TheSansArabic-Plain';
    font-style: normal;
    font-weight: normal;
    src: local('Bahij_TheSansArabic-Plain'), url('../fonts/Bahij_TheSansArabic-Plain.woff') format('woff');
}
@font-face {
    font-family: 'icomoon';
    src:  url('fonts/icomoon.eot?kj17f0');
    src:  url('../fonts/icomoon.eot?kj17f0#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?kj17f0') format('truetype'),
        url('../fonts/icomoon.woff?kj17f0') format('woff'),
        url('../fonts/icomoon.svg?kj17f0#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-bag:before {
    content: "\e901";
    color: #505070;
    font-weight: bold;
}
.icon-cart:before {
    content: "\e900";
}

.menu-logo {
    background: #fff !important;
}
body::-webkit-scrollbar {
    width: 8px;
}
body.thin::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #f6f6f6;
}
::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: #8b8b8b;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #8b8b8b;
}


.form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn {
    outline: none;
}

.main-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
@media(max-width: 992px) {
    .main-section {
        padding: 30px 0;
    }
}

a {
    text-decoration: none !important;
}

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

button:focus,
button:active,
input:active,
input:focus,
select:active,
select:focus,
textarea:focus,
textarea:active {
    box-shadow: none;
    outline: 0;
}

.main-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #100d0e;
    text-transform: capitalize;
    font-weight: bold;
    max-width: 380px;
    position: relative;
    padding-inline-start: 20px;
}
.main-title::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 100%;
    background-color: #f02022;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.main-center-title {
    font-size: 40px;
    margin-bottom: 70px;
    color: #333;
    text-transform: capitalize;
    font-weight: bold;
    text-align: center;
    position: relative;
}
@media(max-width:576px) {
    .main-center-title {
        font-size: 30px;
    }
}
.main-des {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}
.main-center-des {
    font-size: 14px;
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

p{
    color: #555;
}

/*start header navbar */

.mob-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #88c5f7;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 2900;
}
.mob-overlay.active {
    opacity: .85;
    visibility: visible;
    transition: all .3s;
}
.sidebar-wrapper {
    display: none;
}
@media(max-width: 992px) {
    .sidebar-wrapper {
        padding-top: 20px;
        position: fixed;
        display: block;
        background-color: #f02022;
        color: #cddce8;
        right: 20px;
        top: 20px;
        width: 100%;
        height: 100vh;
        max-height: calc(100% - 40px);
        max-width: calc(100% - 40px);
        box-shadow: 0 0 15px rgb(0 0 0 / 10%);
        overflow: hidden;
        z-index: 3000;
        transition: transform 0.5s ease-in-out;
        -webkit-transition: transform 0.5s ease-in-out;
        -moz-transition: transform 0.5s ease-in-out;
        -ms-transition: transform 0.5s ease-in-out;
        -o-transition: transform 0.5s ease-in-out;
        transform: translateY(150%);
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }
    .sidebar-wrapper .m-head {
        padding: 20px;
        border-bottom: 2px dotted #666161;
        margin-bottom: 30px;
    }
    .sidebar-wrapper .m-head h3 {
        font-size: 20px;
    }
    .sidebar-show{
        transition: transform 0.5s ease-in-out;
        -webkit-transition: transform 0.5s ease-in-out;
        -moz-transition: transform 0.5s ease-in-out;
        -ms-transition: transform 0.5s ease-in-out;
        -o-transition: transform 0.5s ease-in-out;
        transform:translateY(0);
        -webkit-transform:translateY(0);
        -moz-transform:translateY(0);
        -ms-transform:translateY(0);
        -o-transform:translateY(0);
    }
    .sidebar-wrapper .nav-link {
        color: #fff !important;
        text-decoration: none;
        border-bottom: 1px solid #585555;
        font-weight: lighter;
        padding: 14px 0;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }
    .sidebar-wrapper .nav-link:hover {
        background-color: #fff;
        color: #E77E49;
    }
    .sidebar-wrapper .dropdown-menu {
        width: 100%;
        position: static !important;
        transform: translate3d(0,0,0) !important;
        background-color: transparent;
        text-align: center;
    }
    .sidebar-wrapper .dropdown-menu .dropdown-item {
        display: block;
        width: 100%;
        padding: .25rem 1.5rem;
        clear: both;
        font-weight: 400;
        color: #fff;
    }
    .navbar-nav .sub-collapse .dropdown-item {
        color: #fff;
    }
    #burgerBtn {
        border-top: none;
        height: 25px;
        width: 30px;
        box-sizing: border-box;
        position: absolute;
        z-index: 3000;
        top: 30px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -khtml-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }
    #burgerBtn:before {
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        width: 33px;
        background: #fff;
        top: 10px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -khtml-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }
    #burgerBtn:after {
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        width: 33px;
        bottom: 11px;
        background: #fff;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -khtml-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
    }
    .navbar-nav {
        text-align: center;
    }
}
.navbar-nav .sub-collapse .dropdown-item{
    padding: 5px 0;
}

@media(min-width: 992px) {
    .navbar-nav .sub-collapse {
        position: absolute;
        right: 0;
        width: 100%;
        background-color: #fff;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        z-index: 10000;
    }
    .navbar-nav .sub-collapse .dropdown-item{
        padding: 10px;
        color: #136776;
    }
}
.navbar-nav .sub-collapse .dropdown-item:hover {
    background-color: #333;
    color: #fff;
}
/*page*/

.top-bar {
    background-color: #f6f6f6;
    color: #545454;
}
.top-bar .lang-des{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.welcome-to{
    font-size: 16px;
    color: #545454;
}
.lang-des .lang-item > a {
    color: #555;
    font-size: 16px;
}
.lang-des .lang-item > a i{
    font-size: 20px;
}
.lang-des .dropdown-menu {
    padding: 0;
    border: 1px solid #fff;
}
.lang-des .dropdown-item {
    padding: 10px;
    background-color: #f02022;
    color: #fff;
}
.lang-des .dropdown-item:hover{
    background-color:#e9bbb9;
    color: #fff;
}
.lang-divider {
    width: 2px;
    height: 16px;
    background-color: #555;
    margin-left: 5px;
    margin-right: 5px;
}

@media(min-width: 992px) {
    .top-bar {
        padding: 10px 0;
    }
    .top-bar > .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .top-bar .lang-des{
        width: 100%;
    }
}
/*headerSearch*/

.headerSearch{
    padding: 14px 0;
}
.logo img {
    max-width: 114px;
}
@media(max-width: 992px){
    .top-bar .lang-des {
        justify-content: flex-end;
    }
    .lang-divider {
        margin: 0 16px;
    }
    .lang-des .lang-item > a {
        font-size: 15px;
    }
    .call-center {
        font-size: 15px !important;
    }

    .mob-mb-10 {
        margin-bottom: 10px;
    }
    .d_mob_none {
        display: none;
    }
    .only_search_btn {
        background-color: transparent;
        border: none;
        outline: none;
        font-size: 22px;
        color: #f02022;
    }
}
@media(min-width: 992px) {
    .only_search_btn{
        display: none;
    }
}

.headerSearch .search-form {
    width: 80%;
}


.search-form .input-group {
    position: relative;
    height: 50px;
    text-transform: capitalize;
    color: #545454;
    font-size: 14px;
}
.search-form .nice-select {
    height: 40px;
    width: 120px;
    border: 1px solid #f6f6f6;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-start-end-radius: 0px;
    border-end-end-radius: 0px;
    font-weight: 600;
}
.nice-select:after {
    width: 8px;
    height: 8px;
}
.search-form .form-control {
    height: 40px;
    border: 1px solid #f6f6f6;
    padding-inline-start: 40px;
    color: #545454;
}
.search-form .form-control:focus {
    border: 1px solid #f02022;
    border-inline: none;
}
.search-form .search_btn {
    background: #f02022;;
    color: #fff;
    border: none;
    box-shadow: none;
    outline: none;
    height: 40px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-start-end-radius: 20px;
    border-end-end-radius: 20px;
}
#searchModal {
    background-color: rgb(44 45 148 / 60%);
    padding-right: 0 !important;
}
@media (min-width: 576px){
    .modal-dialog {
        max-width: 700px;
    }
}
.modal-open {
    padding-right: 0 !important;
}
#searchModal .modal-content {
    background: transparent;
    border: none;
}
#searchModal .close {
    color: #fff;
    position: absolute;
    top: 20px;
    opacity: 1;
}


.call-center {
    color: #555555;
    font-size: 24px;
}
.call-center a {
    color: #555555;
    margin-inline-end: 6px;
}
.grey_btn {
    color: #545454;
    font-size: 24px;
    width: 24px;
    position: relative;
}
.grey_btn .num-cart {
    background-color: #f00;
    color: #fff;
    font-size: 14px;
    position: absolute;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    left: -10px;
}

/* headerNav*/
.navbar{
    padding: 0;
    width: 100%;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        height: 60px;
        width: 100%;
        justify-content: space-between;
    }
}
.navbar-toggler {
    background-color: transparent;
    border: none;
    font-size: 26px;
}
.bars-toggler-icon {
    color: #f02022;
}
@media(min-width: 992px) {
    .navbar-toggler{
        display: none;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        width: fit-content;
        padding: 0 5px;
    }
    .navbar-nav .nav-link {
        line-height: 46px;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }
    .navbar-nav .nav-item {
        transition: 0.3;
        -webkit-transition: 0.3;
        -moz-transition: 0.3;
        -ms-transition: 0.3;
        -o-transition: 0.3;
    }
    .navbar-nav .nav-item:hover {
        background-color: #fff;
    }

}

.headerNav {
    background-color: #f02022;
}
.navbar-nav .nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
    color: #f02022;
}
.navbar-nav>.nav-item {
    position: relative;
}

/* sliders */
.slick-prev, .slick-next {
    display: none !important;
}
.slick-slide {
    margin: 0 10px;
}
.slick-dots{
    bottom: -50px;
}
.slick-dots li button:before {
    content: '';
    width: 24px;
    height: 5px;
    background: #CCCCCC;
    border-radius: 3px;
    opacity: 1;
}
.slick-dots li button:hover::before, .slick-dots li button:focus::before {
    background: #62B2F5;
}
li.slick-active button:before{
    background: #62B2F5;
}
/* Start header*/
.header-section{
    color: #fff;
    position: relative;
}
@media(min-width: 992px) {
    .header-section{
        min-height: 470px;
    }
}

.carousel-control-next, .carousel-control-prev {
    display: none;
}

.carousel-indicators {
    bottom: -60px;
}
.carousel-indicators li {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #ababab;
}
.header-section .top-img {
    width: 100%;
    object-fit: cover;
}
.top-section {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.top-section h5 {
    font-size: 40px;
    color: #000;
    font-weight: bold;
}
.top-section h4 {
    font-size: 40px;
    color: #f02022;
    font-weight: bold;
    margin-bottom: 30px;
}
.top-section p {
    font-size: 18px;
    color: #100d0e;
    max-width: 560px;
    line-height: 2;
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.shop_now_btn {
    min-width: 160px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: #fff;
    border: 1px solid #f02022;
    background: #f02022;
    text-transform: capitalize;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.shop_now_btn:hover {
    background: transparent;
    color: #067CC5;
}
.hvr-sweep-to-right:before {
    background: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #067CC5;
}
@media(max-width: 992px) {
    .top-section h5, .top-section h4 {
        font-size: 30px;
    }
    .carousel-indicators {
        display: none;
    }
}
.header-section::after {
    position: absolute;
    display: block;
    content: '';
    height: 8px;
    width: 36%;
    bottom: -8px;
    left: 0;
    background-color: #ed1c24;
}

/* start products section */
.product-card {
    align-items: center;
    background-color: #fcfcfc;
    border: 1px solid rgb(225 219 219);
    padding: 14px;
    margin-bottom: 20px;
    text-align: center;
}
.product-card .add_to_fav {
    position: absolute;
    top: 20px;
}
.product-card .card-img-top {
    background-color: #fff;
    border: 1px solid rgb(225 219 219);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-card .product-img {
    max-height: 100%;
    max-width: 100%;
}
.product-card .card-body {
    width: 100%;
    padding: 1.25rem 0;
}
.product-card .card-title {
    font-size: 20px;
    font-weight: 600;
    color: #f02022;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card .card-title a {
    color: #f02022;
}
.hvr-shutter-out-vertical:before {
    background-color: #f6f6f6;
}
.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
    color: #fba114;
}
.product-card .add_to_cart{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: #f02022;
    border: 1px solid #f02022;
}
.add_to_cart:hover {
    background: transparent;
    border: 1px solid #2098d1;
}
.add_to_cart .fa-shopping-basket {
    margin-inline-start: 30px;
}
.add_to_cart .fa-map-marker{
    margin-inline-start: 30px;
}
.fa-refresh , .fa-star-half-o{
    margin-inline-end: 10px;
}
.hvr-shutter-out-horizontal:before {
    background: #2098d1;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.show_more_btn {
    width: 160px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

/*** start banners section ***/
.main-banner {
    width: 100%;
    max-height: 226px;
}
.main-banner img{
    width: 100%;
    height: 100%;
}
.members-wrapper {
    background-color: #fcfcfc;
    border: 1px solid rgb(225 219 219);
    padding: 22px;
    padding-bottom: 14px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.font-26 {
    font-size: 26px;
}
.depart-title {
    font-size: 22px;
    color: #ed1c24;
}
.depart-des {
    font-size: 16px;
    margin-bottom: 10px;
}
@media(max-width: 768px) {
    .main-banner {
        margin-bottom: 20px;
    }
}

/*** start offers section ***/
.offers-section {
    position: relative;
}
.offers-section::after {
    position: absolute;
    display: block;
    content: '';
    height: 8px;
    width: 36%;
    bottom: 0;
    right: 0;
    background-color: #f02022;
}
.main-offer {
    width: 100%;
    padding-bottom: 20px;
}
.main-offer img{
    max-height: 426px;
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.offer-title {
    margin-top: 20px;
    color: #100d0e;
    font-size: 20px;
    font-weight: 600;
}
.small_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.small-offer {
    width: 47.1%;
    padding-bottom: 20px;
}
.small-offer img{
    width: 100%;
    max-height: 178px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
@media(max-width: 576px) {
    .small-offer {
        width: 100%;
    }
}

/*** start best-seller section***/
.best-seller {
    background-color: #fbfbfb;
}

/*** start application section ***/
.application-section {
    padding-top: 100px;
    overflow: hidden;
    position: relative;
}
.application-section::after {
    position: absolute;
    display: block;
    content: '';
    height: 8px;
    width: 30%;
    bottom: 0;
    left: 0;
    background-color: #ed1c24;
}
.phones_wrapper{
    display: flex;
    width: 100%;
    align-items: flex-end;
}
.phones_wrapper .first-img{
    width: 60%;
    z-index: 2;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
}
.phones_wrapper .first-img img {
    max-height: 407px;
    box-shadow: 10px 10px 10px #ebe9e9, -10px 10px 10px #ebe9e9;
}
.phones_wrapper .second-img{
    width: 40%;
    max-height: 320px;
    position: relative;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
}
.phones_wrapper .second-img img {
    max-height: 320px;
    box-shadow: 10px 10px 10px #ebe9e9, -10px 10px 10px #ebe9e9;
}
.download-app{
    padding-top: 30px;
}
.application-title {
    font-size: 30px;
    color: #f02022;
    margin-bottom: 30px;
    font-weight: 600;
}
.apps_btns_wrapper {
    display: flex;
    margin-top: 30px;
}
.download_btn_app {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #030706;
    border: 1px solid #030706;
    color: #fff;
    text-transform: capitalize;
    height: 60px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.download_btn_app:hover {
    background-color: #000;
}
.download_btn_app .apple-icon {
    width: 40px;
    height: 40px;
}
.download_btn_app .google-icon {
    width: 30px;
    height: 26px;
}
.download_btn_app .app_name {
    font-size: 20px;
}
.app_store_btn {
    margin-inline-end: 30px;
}
@media(min-width: 768px) {
    .download-app{
        padding-inline-start: 100px;
        padding-top: 60px;
    }
}
@media(max-width: 576px) {
    .download-app {
        text-align: center;
    }
    .apps_btns_wrapper {
        display: block;
    }
    .app_store_btn {
        margin-inline-end: 0;
    }
    .download_btn_app{
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    .phones_wrapper .first-img img, .phones_wrapper .second-img img {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .download-app {
        padding-bottom: 40px;
    }
}
/* start footer*/
.footer  {
    background-color: #100d0e;
    position: relative;
    color: #fff;
    padding-top: 100px;
}
.mail_wrapper {
    padding-bottom: 60px;
}
.footer .mail-title {
    font-size: 28px;
    font-weight: 600;
}
.footer .form-control {
    height: 46px;
    background-color: #393637;
    border: 1px solid #393637;
    color: #fff;
    padding-inline-start: 40px;
}
.footer .form-control::placeholder {
    color: #fff;
}
.subscribe_now {
    background-color: #f8f8f8;
    border: 1px solid #f8f8f8;
    color: #100d0e;
    height: 46px;
    font-weight: 600;
    margin-inline-start: auto;
    display: block;
}
.all_links_wrapper {
    padding-bottom: 80px;
}

.footer-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}
.footer-sub-title {
    font-size: 16px;
    color: #eb1c25;
    position: relative;
}
.footer-sub-title::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 3px;
    background-color: #fff;
    top: -10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.footer_menu li {
    margin-bottom: 20px;
}

.footer-link {
    color: #fff;
    font-size: 15px;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}
.footer .social-link {
    font-size: 24px;
    color: #fff;
    margin-inline-end: 30px;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}
.footer a:hover {
    color: #2098d1;
}
.copyrights {
    padding: 30px 0;
    border-top: 1px solid #555;
    color: #fff;
    text-align: center;
    font-size: 14px;
}
.copyrights p , .copyrights a {
    color: #fff;
    padding-bottom: 0;
}
@media(min-width: 769px) {
    .subscribe_now  {
        width: 200px;
    }
}
@media(max-width: 576px) {
    .footer {
        padding-top: 40px;
    }
    .footer .mail-title, .footer .form-control, .subscribe_now {
        margin-bottom: 20px;
    }
}

@media(max-width: 768px) {
    .mail_wrapper, .all_links_wrapper {
        padding-bottom: 20px;
    }
    .all_links_wrapper .col-12{
        margin-bottom: 20px;
    }
}



.go-top {
    position: fixed;
    display: none;
    width: 50px;
    height: 50px;
    background: rgb(221, 213, 213);
    color: #2b2d94;
    bottom: 140px;
    z-index: 2500;
    -webkit-box-shadow: 0 4px 18px 0px #00000085;
    box-shadow: 0 4px 18px 0px #00000085;
    text-align: center;
    line-height: 46px;
    transition: all 0.3s !important;
    -webkit-transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    -ms-transition: all 0.3s !important;
    -o-transition: all 0.3s !important;
}
.go-top:hover {
    background-color: #2b2d94;
    color: #fff;
}

/* call us section */

.call-us-now {
    position: fixed;
    width: 300px;
    height: 50px;
    color: #fff;
    border-radius: 50%;
    bottom: 40px;
    z-index: 1040;
    transition: all 0.3s !important;
    -webkit-transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    -ms-transition: all 0.3s !important;
    -o-transition: all 0.3s !important;
}
.call-us-now .call-list {
    display: none;
}
.call-us-now .call-link {
    font-size: 22px;
    text-decoration: none;
    color: #fff;
    background-color: #f02022;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    height: 50px;
    width: 50px;
    text-align:center;
    line-height: 50px;
}
.call-us-now .call-link:hover {
    color: #e9b9b7;
}
.toggle-call-list {
    cursor: pointer;
}
.toggle-call-list .fa {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media(max-width: 992px) {
    .go-top {
        bottom: 90px;
    }
    .call-us-now {
        bottom: 20px;
    }
}


.main-title-white {
    color: #fff !important;
}

.main-title-grey {
    color: #ddd !important;
}


/** products page ***/

.pt-30 {
    padding-top: 30px ;
}

.breadcrumb {
    background-color: #f6f6f6;
    margin-bottom: 40px;
    color: #100d0e;
    font-size: 16px;
    font-weight: 600;
}
.breadcrumb a {
    color: #100d0e;
}
.breadcrumb-item.active {
    color: #100d0e;
}
.breadcrumb-item+.breadcrumb-item {
    padding-inline-start: 0;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    width: 2px;
    height: 20px;
    background-color: #100d0e;
    padding-right: 0;
    margin: 0 12px;
}


/*** login page***/

.login-form {
    background-color: #f6f6f6;
    padding: 40px 90px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    color: #100d0e;
}
.login-form .form-control, .account-form .form-control, .checkout-form .form-control, .login-form-2 .form-control {
    height: 60px;
    border: 1px solid #100d0e;
    background-color: #fff;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 20px;
}
.login-form .form-control:focus, .account-form .form-control:focus, .checkout-form .form-control:focus, .login-form-2 .form-control:focus {
    border: 1x solid #033ddc;
    color: #033ddc;
}
.login-form label, .account-form label, .checkout-form label, .login-form-2 label {
    font-size: 16px;
    color: #100d0e;
    margin-bottom: 20px;
}
.login-form-2 {
    background-color: #f6f6f6;
    padding: 40px 90px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    color: #100d0e;
}
.forget_link {
    display: block;
    color: #100d0e;
    font-size: 16px;
}
.main_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    width: 100%;
    height: 60px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #f02022;
    border: 1px solid #f02022;
    margin-top: 50px;
}
.main_btn:hover {
    background-color: transparent;
    border: 1px solid #2098d1;
}

@media(max-width: 768px) {
    .breadcrumb {
        margin-bottom: 40px;
    }
    .login-form, .login-form-2 {
        padding: 20px 30px;
        width: 100%;
    }
}

.lang-link.dropdown-toggle::after {
    display: none;
}

/*** account page ***/
.profile_menu .profile_link {
    height: 40px;
    display: flex;
    align-items: center;
    padding-inline-start: 20px;
    font-size: 20px;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.profile_menu .profile_link:hover{
    color: #fff;
    background-color: #f02022;
}
.profile_menu .profile_link.active_link {
    color: #fff;
    background-color: #f02022;
}
.save_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 160px;
    margin-top: 50px;
    background-color: #f02022;
    border: 1px solid #f02022;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.save_btn:hover {
    background: transparent;
    border: 1px solid #2098d1;
}

@media(min-width: 769px) {
    .account-form .form-row>.col, .account-form .form-row>[class*=col-] {
        padding-inline-start: 40px;
    }
    .account-form .save_btn {
        margin-inline-start: 40px;
    }
}
@media(max-width: 576px) {
    .profile_menu {
        margin-bottom: 40px;
    }
    .account-form {
        padding: 30px 20px;
    }
}


/*** orders page  ***/
.order_one {
    border: 1px solid rgb(225 219 219);
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.order_header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f6f6f6;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.order_number {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}
.order_body {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}
.order_body .order_sec {
    width: 50%;
    padding: 15px 0;
}
.order_body .order_sec span{
    display: block;
}
.order_body .order_sec .o_title {
    font-size: 16px;
    color: #100d0e;
    margin-bottom: 10px;
}
.order_body .order_sec .o_info {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}
.details_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 130px;
    background-color: #f02022;
    border: 1px solid #f02022;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-size: 18px;
}
.details_btn:hover {
    background: transparent;
    border: 1px solid #2098d1;
}

@media(min-width: 769px) {
    .orders_wrapper {
        display: contents;
    }
}


/*** order details page ***/
.details_header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f02022;
    color: #fff;
    min-height: 78px;
    margin-bottom: 70px;
}
.details_header div{
    width: 25%;
    padding: 30px;
}

.products_wrapper {
    border: 1px solid rgb(225 219 219);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 20px;
}
.products_header {
    margin-bottom: 40px;
}
.product_row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.pro_title {
    font-size: 24px;
    color: #f02022;
    font-weight: 600;
}
.products_info {
    display: flex;
}
.product_table thead th:first-of-type {
    width: 40%;
}
.product_table thead th+th {
    width: 20%;
}
.products_wrapper td {
    width: 20%;
    position: relative;
}
.remove_product {
    position: absolute;
    background: transparent;
    color: #a19f9f;
    border: none;
    outline: none;
    top: 26px;
    font-size: 22px;
}
.products_info .pro_img {
    width: 120px;
    height: 120px;
    border: 1px solid rgb(225 219 219);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.products_info .pro_img img{
    max-width: 100px;
    max-height: 80px;
}
.products_info .pro_name {
    font-size: 16px;
    color: #000;
    padding: 20px;
    font-weight: 600;
}
.products_count, .products_price, .products_sum {
    text-align: center;
}
.pt-20 {
    padding-top: 20px;
}
.products_price, .products_sum {
    color: #100d0e;
    font-size: 16px;
}
.products_price p, .products_sum p {
    color: #100d0e;
}
.number-spinner {
    max-width: 120px;
    line-height: 40px;
    padding: 0;
    margin: 0;
    display: flex;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid #ccc;
    margin: auto;
}
.number-spinner .ns-btn a {
    height: 25px;
    min-height: 25px;
    width: 25px;
    padding: 0;
    max-width: 25px;
    line-height: 24px;
    font-size: 14px;
    text-align: center;
    position: relative;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}
.number-spinner .ns-btn a:hover {
    color: #f02022;
}
.number-spinner input {
    height: 40px;
    max-height: 40px;
    line-height: 40px;
    font-size: 20px;
    padding: 0;
    margin: 0;
    border: none;
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    color: #575757;
}
.number-spinner .ns-btn {
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
    display: table-cell;
    cursor: pointer;
}
.sidebar_info_wrapper {
    background-color: #000;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: #fff;
    padding: 20px;
    font-size: 18px;
}
.sidebar_info_wrapper .sidebar_row {
    display: flex;
    padding: 20px 0;
}
.w-70 {
    width: 70%;
}
.w-30 {
    width: 30%;
}
.mt-20 {
    margin-top: 20px;
}

@media(max-width: 576px) {
    .details_header div{
        width: 50%;
        padding: 30px 20px;
    }
}

@media(max-width: 768px) {
    .products_wrapper {
        margin-bottom: 20px;
    }
}

/*** cart empty page***/
.cart_empty_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.cart_empty_wrapper .cart_empty_img {
    margin-bottom: 40px;
}
.cart_empty_wrapper .cart_title {
    color: #100d0e;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}
.cart_empty_wrapper .cart_des {
    max-width: 270px;
    color: #434343;
    font-size: 18px;
}

/*** checkout page ***/
@media(min-width: 769px) {
    .checkout-form{
        padding-inline-end: 40px;
    }
    .checkout-form .form-row>[class*=col-]:nth-of-type(even) {
        padding-inline-start: 40px;
    }
}
.checkout_form_title {
    font-size: 24px;
    color: #f02022;
    font-weight: 600;
    margin-bottom: 30px;
}
.checkout-form .nice-select {
    padding-top: 20px;
}

.discount_wrapper {
    padding: 30px 20px;
    background-color: #f6f6f6;
    border-radius: 10px;
    margin-bottom: 20px;
}
.discount_title {
    color: #100d0e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}
.discount_wrapper .form-control {
    height: 70px;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: #100d0e;
    margin-bottom: 30px;
}
.discount_wrapper .form-control::placeholder {
    color: #100d0e;
}
.discount_wrapper .form-group {
    position: relative;
}
.discount_wrapper .form-group .add_cobon{
    position: absolute;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    background-color: #f02022;
    border: 1px solid #f02022;
}
.discount_wrapper .form-group .add_cobon:hover {
    background-color: transparent;
    border: 1px solid #2098d1;
}
.code_msg {
    font-size: 18px;
    line-height: 30px;
    color: #f02022;
    font-weight: 600;
}
.discount_wrapper label {
    font-size: 16px;
    color: #100d0e;
}


/*** product details page ***/

.product-details-section {
    background-color: #fdfdfd;
}
.product_main_img {
    background-color: #fff;
    box-shadow: 10px 10px 10px #f6f6f6, -10px 10px 10px #f6f6f6;
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f3f0f0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.add_to_cart_wrapper {
    margin-bottom: 40px;
}
.add_to_cart_wrapper .number-spinner {
    width: 160px;
    max-width: 160px;
    margin: unset;
}
.add_to_cart {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f02022;
    border: 1px solid #f02022;
    width: 160px;
}
.add_to_cart:hover {
    background-color: transparent;
    border: 1px solid #2098d1;
}
.add_to_fav {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #f02022;
    font-size: 22px;
    border-width: 1px;
    background-color: transparent;
}

.product_main_info .product_title {
    font-size: 32px;
    color: #000;
    margin-bottom: 50px;
    font-weight: 600;
}
.product_main_info .product_price {
    font-size: 28px;
    color: #033ddc;
    font-weight: 600;
    margin-bottom: 40px;
}
.product_main_info .product_count {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
}
.product_main_info .product_des_title {
    font-size: 32px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

@media(min-width: 769px) {
    .product_main_img {
        width: 90%;
    }
    .product_main_info {
        width: 80%;
    }
    .add_to_cart_wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 100px;
    }
}
@media(max-width: 576px) {
    .product_main_img {
        height: 400px;
        margin-bottom: 40px;
    }
    .product_main_info .product_title , .product_main_info .product_price {
        margin-bottom: 20px;
    }
}
@media(max-width: 768px) {
    .add_to_cart_wrapper .number-spinner, .add_to_cart {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .add_to_fav {
        display: block;
        margin: auto;
    }
}

.loader-container{
    background-color: #2c2c54;
    position: fixed;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 10000;
    text-align: center;
    overflow: hidden;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 64px;
    width: 64px;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    animation: rotate 2s linear infinite;
    -webkit-animation: rotate 2s linear infinite;
}

.loader div {
    transform-origin:  32px 32px;
    animation: load 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    -webkit-animation: load 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.loader div::after {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.loader div:nth-child(1){
    animation-delay: -0.035s;
}
.loader div:nth-child(2){
    animation-delay: -0.070s;
}
.loader div:nth-child(3){
    animation-delay: -0.105s;
}
.loader div:nth-child(4){
    animation-delay: -0.140s;
}
.loader div:nth-child(5){
    animation-delay: -0.175s;
}
.loader div:nth-child(6){
    animation-delay: -0.2s;
}
.loader div:nth-child(7){
    animation-delay: -0.235s;
}
.loader div:nth-child(8){
    animation-delay: -0.270s;
}
.loader div:nth-child(1)::after {
    top: 50px;
    left: 50px;
}
.loader div:nth-child(2)::after {
    top: 54px;
    left: 45px;
}
.loader div:nth-child(3)::after {
    top: 57px;
    left: 39px;
}
.loader div:nth-child(4)::after {
    top: 58px;
    left: 32px;
}
.loader div:nth-child(5)::after {
    top: 57px;
    left: 25px;
}
.loader div:nth-child(6)::after {
    top: 54px;
    left: 19px;
}
.loader div:nth-child(7)::after {
    top: 50px;
    left: 14px;
}
.loader div:nth-child(8)::after {
    top: 45px;
    left: 10px;
}

@keyframes load {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}


/*** start addresses page ***/
@media(min-width: 769px) {
    .addresses_wrapper {
        display: flex;
    }
    .address_one {
        width: 40%;
        margin-inline-end: 30px;
    }
}
.copyrights p , .copyrights a {
    text-align: center !important;
}
.address_one {
    border: 1px solid rgb(225 219 219);
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}
.address_city {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}
.address_details {
    font-size: 16px;
}
.address_btns {
    margin-top: 40px;
}
.edit_btn {
    background-color: #f02022;
    border: 1px solid #f02022;
    margin-inline-end: 10px;
    width: 100px;
}
.delete_btn {
    background-color: #f1afaf;
    border: 1px solid #f1afaf;
    width: 100px;
}

.nice-select .option{
    text-align: right;
}
.page-item.active .page-link{
    background-color:#f02022;
    border-color:#f02022;
}
.page-link{
    color:#f02022;
}
.tab-item{
    width:50%;
    border: 1px solid #f6f6f6;
}
.nav-pills .nav-link{
    color:#000;
    background-color:#f6f6f6;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color:#f02022;
    border-color:#f02022;
}
.map-position{
    position: absolute;
    bottom: 0px;
    right: 0;
}
.small_img_one {
    width: 80px;
    height: 80px;
    margin: auto;
}
.small_imgs_carousel {
    margin-top: 20px;
}
.small_imgs_carousel .product-item {
    border: 1px solid #f3f0f0;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 10px 10px 10px #f6f6f6, -10px 10px 10px #f6f6f6;
}

.sl-overlay {
    background: #f02022;
    opacity: 0.8;
}
.sl-wrapper .sl-navigation button, .sl-wrapper .sl-close, .sl-wrapper .sl-counter {
    color: #fff;
}
.small_imgs_carousel .slick-dots {
    display: none !important;
}

@media(max-width: 768px) {
    .pro_img{
        display: none !important;
    }
    .pro_title{
        font-size: 14px !important;
    }
    .pro_name , .products_price , .products_sum , .products_count{
        font-size: 12px !important;
        padding: 0 !important;
        ine-height: 32px !important;
    }
    .product_table thead th:first-of-type{
        width: 20%;
    }
    .number-spinner{
        min-width: 75px;
    }
}
