/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */

/*   01 - General & Basic Styles   */
/*   02 - Header Styles   		   */
/*   03 - Footer Styles            */


@font-face {
    font-family: 'DinNextLight';
    src: url('../fonts/din-next/light/DinNextLight.eot');
    src: url('../fonts/din-next/light/DinNextLight.eot') format('embedded-opentype'), url('fonts/din-next/light/DinNextLight.woff2') format('woff2'), url('fonts/din-next/light/DinNextLight.woff') format('woff'), url('fonts/din-next/light/DinNextLight.ttf') format('truetype'), url('fonts/din-next/light/DinNextLight.svg#DinNextLight') format('svg');
}
@font-face {
    font-family: 'DinNextRegular';
    src: url('../fonts/din-next/regular/DinNextRegular.eot');
    src: url('../fonts/din-next/regular/DinNextRegular.eot') format('embedded-opentype'), url('fonts/din-next/regular/DinNextRegular.woff2') format('woff2'), url('fonts/din-next/regular/DinNextRegular.woff') format('woff'), url('fonts/din-next/regular/DinNextRegular.ttf') format('truetype'), url('fonts/din-next/regular/DinNextRegular.svg#DinNextRegular') format('svg');
}
@font-face {
    font-family: 'DinNextMedium';
    src: url('../fonts/din-next/medium/DinNextMedium.eot');
    src: url('../fonts/din-next/medium/DinNextMedium.eot') format('embedded-opentype'), url('fonts/din-next/medium/DinNextMedium.woff2') format('woff2'), url('fonts/din-next/medium/DinNextMedium.woff') format('woff'), url('fonts/din-next/medium/DinNextMedium.ttf') format('truetype'), url('fonts/din-next/medium/DinNextMedium.svg#DinNextMedium') format('svg');
}
@font-face {
    font-family: 'DinNextBold';
    src: url('../fonts/din-next/bold/DinNextBold.eot');
    src: url('../fonts/din-next/bold/DinNextBold.eot') format('embedded-opentype'), url('fonts/din-next/bold/DinNextBold.woff2') format('woff2'), url('fonts/din-next/bold/DinNextBold.woff') format('woff'), url('fonts/din-next/bold/DinNextBold.ttf') format('truetype'), url('fonts/din-next/bold/DinNextBold.svg#DinNextBold') format('svg');
}
:root {
  --fontFamily: 'DinNextRegular';
  --redColor: #e52420;
  --whiteColor: #ffffff;
  --blackColor: #37474f;
  --grayColor: #fafafa;
  --darkGrayColor: #646464;
  --yellowColor: #ffbb33;
  --blueColor:  #33b5e5;
  --greenColor: #00c851;
  --fontSize: 16px;
  --transition: .5s;
}
body {
  padding: 0;
  margin: 0;
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  direction: ltr;
  text-align: left;
}
*{
    font-family: var(--fontFamily);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
a {
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  color: var(--redColor);
  text-decoration: none;
}
:focus {
  outline: 0 !important;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  color: var(--blackColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 2.2;
}
p:last-child {
  margin-bottom: 0;
}

html {
    scroll-behavior: smooth;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul li{
	list-style: none;
}
b, strong {
	font-weight: 700 !important;
}
.light-font {
    font-weight: 300;
}
button:focus {
    outline: none !important;
}
.form-control:focus {
    border-color: var(--redColor);
    outline: 0;
    box-shadow: none;
}
.width-100{
    width: 100%;
}
.width-50{
    width: 50%;
}
.ml-25{
    margin-left: 25px;
}
.pad-50{
    padding: 50px 0;
}
.padb-50{
    padding-bottom: 50px;
}
.padt-50{
    padding-top: 50px;
}
.red-color{
    color: var(--redColor) !important;
}

/*   02 - Header Styles            */
.top-header {
    background: var(--blackColor);
}
.social-nav .nav-link {
    background: #fff;
    margin: 8px;
    padding: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blackColor);
}
.social-nav .nav-link:hover{
    background: var(--redColor);
    color: var(--whiteColor);
}
.social-nav .nav-item:last-child .nav-link{
    margin-left: 0;
}
.bradcrumb-sec {
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 55%) !important;
}
.breadcrumb {
    padding: 25px 0;
    margin-bottom: 0;
}
.main-content {
    padding: 50px 0;
    background: var(--grayColor);
    margin-top: 5px;
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 5px;
    content:  "|";
    padding-left: 6px;
}
.breadcrumb-item.active {
    padding-left: 0;
}
.dashed-div{
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed var(--redColor);
    display: flex;
    align-items: center;
}
.flex-div {
    display: flex;
}
.pack-name {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}
.packge-price {
    margin-left: auto;
}
p.small{
    color: var(--darkGrayColor);
}
.wallet-credit-white {
    background: #ffff;
    border: 1px solid var(--redColor);
    border-radius: 8px;
    padding: 25px 55px;
    margin-bottom: 40px;
}


/*   03 - Footer Styles            */

.main-footer {
    background: #1d1d1d;
    padding: 25px 0;
}
.copyright-footer {
    background: #101010;
    padding: 6px 0;
}
.copyright-footer p {
    color: var(--whiteColor);
}
img.footer-logo {
    margin-bottom: 10px;
}
.footer-ul{
    columns: 2;
}
.footer-ul a{
    display: block;
    color: var(--grayColor);
    padding: 10px 0;
}
.footer-ul a:hover{
    color: var(--redColor);
}
.main-footer h5{
    color: var(--whiteColor);
}
.subscribe-div{
    text-align: left;
}
.subscribe-btn{
    background: var(--redColor);
    border-color: var(--redColor);
}
.copyright-footer p a {
    color: var(--whiteColor);
}
.copyright-footer p a:hover{
    color: var(--redColor);
}
.subscribe-btn img{
    transform: rotate(180deg);
}
/* Back to top button */
.back-to-top {
    position: fixed;
    border-radius: 23%;
    right: 55px;
    bottom: 40px;
    transition: none;
    width: 38px;
    height: 38px;
    text-align: center;
    padding: 2px 0;
    background-color: var(--redColor);
    z-index: 9999;
    color: #ffffff;
    font-size: 19px;
    display: none;
}
.back-to-top:hover, .back-to-top:focus {
    background: var(--blackColor);
    color: #ffffff !important;
}



/* ------------ Content ---------------- */
.login-div {
    background: #fff;
    padding: 80px 20px 30px;
    border-radius: 10px;
    height: 100%;
}
hr.title-hr {
    opacity: 1;
    border-top: 5px solid var(--redColor);
    width: 50px;
}
.form-group {
    position: relative;
}
img.form-icon {
    position: absolute;
    bottom: 8px;
    left: 15px;
    max-height: 32px;
}
img.show-pass-icon {
    position: absolute;
    right: 15px;
    bottom: 10px;
    height: 25px;
    cursor: pointer;
}
.form-group .form-control-lg ,.form-group .form-select.form-select-lg{
    padding: 0.5rem 1rem 0.5rem 3.4rem;
    min-height: calc(1.9em + 1rem + 2px);
    font-size: 1rem;
}
.btn-div{
    padding: 10px 50px;
}
.btn-div .btn{
    display: block;
    width: 100%;
}
.red-btn {
    padding: 15px 20px;
    font-size: 20px;
    border-radius: 8px;
    background: var(--redColor);
    border: 2px solid var(--redColor);
}
.red-btn:hover{
    background: var(--whiteColor);
    color: var(--redColor);
    border-color: var(--redColor);
}
.black-btn {
    padding: 15px 20px;
    font-size: 20px;
    border-radius: 8px;
    background: var(--darkGrayColor);
    border: 2px solid var(--darkGrayColor);
}
.black-btn:hover{
    background: var(--whiteColor);
    color: var(--darkGrayColor);
    border-color: var(--darkGrayColor);
}
.dashed-btn{
    padding: 15px 20px;
    font-size: 20px;
    border-radius: 8px;
    background: var(--whiteColor);
    border: 2px dashed var(--redColor);
    color: var(--redColor);
}
.btn img{
    margin-right: 10px;
}
.dashed-btn:hover{
    border: 2px dashed var(--darkGrayColor);
    background: var(--whiteColor);
    color: var(--redColor);
}

/* ---------- home ----------  */
.home_slider {
    position: relative;
}
.item_slide {
    position: relative;
    /*background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0;
    z-index: 1;
    background-position: center;*/
    /*min-height: 600px;*/
    direction: rtl;
}
.to-animate, .to-animate1, .to-animate2 {
    opacity: 0;
}
#home_slider .owl-nav > button {
    display: inline-block;
    width: 45px;
    height: 45px;
    color: #FFFFFF;
    border-radius: 50%!important;
    text-align: center;
    font-size: 16px;
    margin-left: 10px;
    line-height: 1;
    background-color: #0000005e ;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #ffffff4a;
}
#home_slider .owl-prev{
    right: 20px;
}
#home_slider .owl-next{
    left: 20px;
}
#home_slider .owl-nav > button:hover{
    background: var(--redColor);
}

.product-item{
    margin-bottom: 25px;
}
.product-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.product-image> img{
    display: block;
    position: relative;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
    width: 100%;
    height: 100%;
}
.product-item:hover img{
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.product-title {
    background-color: var(--whiteColor);
    padding: 15px 0;
    text-align: center;
}
.product-item {
    border-radius: 20px;
    overflow: hidden;
}

.product-item:hover .product-title{
    background: #e6e6e6;
}

.wallet-credit {
    background: var(--redColor);
    border-radius: 15px;
    padding: 25px 55px;
    margin-bottom: 40px;
}
/*.ms-3 {
    margin-right: 1rem!important;
    margin-left: 0!important;
}*/
.wallet-credit h3{
    color: var(--whiteColor);
    font-size: 3rem;
    font-weight: 400;
}
.wallet-credit p{
    color: var(--whiteColor);
}
.wallet-credit .flex-grow-1{
    margin-left: 120px !important;
}
.white-bg-link {
    display: block;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 12px 40px;
    border-radius: 6px;
}
.white-bg-link:last-child{
    margin-bottom: 0;
}
.package-block {
    background: #fff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 8px;
}
.package-block:hover{
    transform: translateY(-4px);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    transition: all 0.2s;
}
.package-block .btn{
    padding: 6px 60px;
    font-size: 16px;
}
.package-desc {
    border: 1px dashed var(--redColor);
    font-weight: 300;
    line-height: 2.6;
    margin-bottom: 20px;
}
.price .no {
    font-size: 80px;
    font-weight: 900;
    color: var(--redColor);
    line-height: 1;
}
.pb-0{
    padding-bottom: 0 !important;
}
.custom-tabs{
    margin-bottom: 40px;
    background: var(--whiteColor);
    padding: 8px 0;
}
.custom-tabs .nav-link.active, .custom-tabs .show>.nav-link {
    background-color: var(--darkGrayColor);
}
.custom-tabs li{
    margin: 0 20px;
}
.custom-tabs .nav-link {
    background: var(--grayColor);
    width: fit-content !important;
    color: var(--blackColor);
    margin:  auto;
}
.payment-method .form-check {
    background: var(--whiteColor);
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 10px;
    padding-left: 50px;
}
/*.form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
    margin-left: 0;
}*/
.payment-method .form-check-input {
    width: 1.3em;
    height: 1.3em;
    margin-top: 1em;
    padding-right: 10px;
}
.payment-method .form-check-label{
    display: flex;
    align-items: center;
    padding-right: 10px;
    padding-left: 30px;
}
.payment-method .form-check-label img{
    margin-left: auto;
    height: 46px;
}
.form-check-input:checked {
    background-color: var(--redColor);
    border-color: var(--redColor);
}
.form-check-input:not(:disabled):checked {
    box-shadow: 0 2px 4px 0 rgb(229 36 32 / 24%);
}
.form-check:not(.form-switch) .form-check-input:checked {
    background-image: none !important;
}
.big-btn{
    width: 35%;
}
.wallet-credit-white .flex-grow-1{
    display: flex;
}
.mr-auto {
    margin-left: auto;
}
.wallet-credit-white .flex-grow-1 {
    display: flex;
    align-items: center;
    padding-right: 50px;
}
.credit-block {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    height: 100%;
    align-items: center;
    display: flex;
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 26%) !important;
}
.credit-block p{
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 300;
    color: var(--darkGrayColor);
}
.credit-block .credit-no{
    font-size: 40px;
}
.credit-block .flex-grow-1{
    padding-left: 60px;
}
.green-color{
    color: var(--greenColor);
}
.credit-table thead{
    background: var(--darkGrayColor);
    border-radius: 8px;
}
.credit-table thead th{
    color: #fff;
    padding: 1rem 1rem;;
}
.credit-table tbody tr{
    background: #fff;
    
}
.credit-table {
    border-collapse: separate;
    border-spacing: 0 15px;
}
.credit-table tbody tr td , .credit-table tbody tr th{
    vertical-align: middle;
}
.credit-table tbody tr th img {
    margin-right: 15px;
    width: 34px;
}
.priduct-list-block {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 26%) !important;
    margin-bottom: 20px;
}
.product-list-img{
    border-radius: 20px;
    max-width: 280px;
}
.offer-desc{
    font-size: 14px;
    color: var(--darkGrayColor);
    line-height: 1.8;
}
.priduct-list-block .flex-shrink-0{
    margin-right: 30px;
}
.small-ico{
    max-height: 20px;
    margin-right: 10px;
}
.rate-val{
    background: var(--grayColor);
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
    margin-left: 5px;
}
.rate-val img{
    width: 14px;
    margin-right: 5px;
}
.priduct-list-block p{
    margin-bottom: 0;
}
.filter-tab .nav-link.active, .filter-tab .show>.nav-link{
    background: var(--redColor);
}
.filter-tab .nav-link{
    background: #f1f1f1;
    padding: .2rem 1rem;
    color: var(--blackColor);
}
.filter-tab .nav-item{
    padding-left: 15px;
}
.filter-tab{
    margin-bottom: 20px;
}
li.nav-item.filter-icon {
    margin-right: auto;
}
li.nav-item.filter-icon a{
    background: var(--darkGrayColor);
    padding: 0.2rem 0.5rem;
}
li.nav-item.filter-icon a img{
    width: 22px;
}
.priduct-list-block.order-block {
    border-radius: 5px;
    box-shadow: none !important;
    padding: 0;
}
.order-details{
    padding: 20px 25px;
}
.order-total {
    background: var(--darkGrayColor);
    padding: 10px 25px;
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
}
.float-left{
    float: right;
}
.gray-badge{
    background: #efefef;
    padding: 0 10px;
    width: 150px;
    text-align: center;
    border-radius: 4px;
}
.green-badge{
    background: var(--greenColor);
    color: var(--whiteColor);
    padding: 0 10px 2px 10px; 
    width: 150px;
    text-align: center;
}
.red-badge{
    background: var(--redColor);
    color: var(--whiteColor);
    padding: 0 10px 2px 10px; 
    width: 150px;
    text-align: center;
}
.order-block .product-list-img {
    border-radius: 6px;
}
.page-link{
    background: var(--grayColor);
    color: var(--darkGrayColor);
    border-radius: 5px;
    margin-left: 0;
    margin-right: 10px;
}
.active>.page-link, .page-link.active {
    color: #ffffff;
    background-color: var(--redColor);
    border-color: var(--redColor);
}
.customer-info {
    display: flex;
    background: var(--grayColor);
    padding: 10px 25px;
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 55%) !important;
    margin-bottom: 5px;
    border-radius: 5px;
    align-items: center;
}
.user-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--darkGrayColor);
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    margin-right: 15px;
}
.user-icon img {
    max-width: 100%;
    max-height: 100%;
}
.user-info {
    /* font-weight: 600; */
    font-size: 18px;
}
.customer-info .red-btn{
    padding: 4px 15px;
    font-size: 16px;
    border-radius: 12px;
}
.customer-info .red-btn img{
    max-height: 20px;
}
.customer-info .red-btn i{
    margin-right: 5px;
}
.orange-btn{
    background: #f39c12;
    border-color: #f39c12;
    border-radius: 12px;
}
.orders-tab .nav-link{
    background: #efefef;
    color: var(--blackColor);
    border-radius: 0;
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 55%);
    padding: 20px;
}
.orders-tab .nav-link.active, .orders-tab .show>.nav-link{
    background: var(--darkGrayColor);
}
.orders-tab{
    margin-bottom: 25px;
}
.blue-badge{
    background: var(--blueColor);
    color: var(--whiteColor);
    padding: 0 10px 2px 10px; 
    width: 150px;
    text-align: center;
}
.orange-badge{
    background: #f39c12;
    color: var(--whiteColor);
    padding: 0 10px 2px 10px; 
    width: 150px;
    text-align: center;
}
.green-btn{
    background: var(--greenColor);
    border-color: var(--greenColor);
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 8px;
}
.green-btn:hover{
    background: var(--darkGrayColor);
    border-color: var(--darkGrayColor);
}
.w-50{
    width: 50%;
}
.green-btn img{
    width: 60px;
}
/*rating*/
.star-ratings {
    display: inline-flex;
    margin-left: auto;
}
.rating-container .rating-stars {
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    direction: ltr !important;
}
.rating-container .caption{
    display: none !important;
}
.rating-container .filled-stars {
    color: #fff023;
    -webkit-text-stroke: 0;
    text-shadow: none;
}
.rating-md {
    font-size: 15px;
}
.rating-container .star {
    margin: 0 2px;
}
.rating-container .empty-stars {
    color: #f1f2f3;
    -webkit-text-stroke: 0;
    text-shadow: none;
}
.clear-rating{
    display: none !important;
}
.inline-rate .star-ratings{
    display: inline-block;
}
/* end raitng */
.modal-footer {
    border-top: 0;
}
.modal-footer .btn{
    padding: 15px 50px;
}
.form-select {
    background-image: url(../images/icon-down.png);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 24px 24px;
}


/* ----------------- mobile view  ------------- */
.mobile-view{
    display: none;
}
.mobile-header {
    padding: 10px 0;
    background: var(--whiteColor);
    /*position: fixed;
    top: 0;
    right: 0;*/
    width: 100%;
    z-index: 9999;
}
.logo-div {
    margin-bottom: 0;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.m-logo {
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
}
.menu-button {
    margin-right: 10px;
    background: var(--redColor);
    border-radius: 5px;
    padding: 6px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
}
.mobile-menu-overlay{
    width:100%;
    left:0;
    visibility:hidden;
    background-color:rgba(51,51,51,.51);
}
.menu-mobile,.mobile-menu-overlay{
    height:100%;
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    z-index:9999;
}
.menu-mobile{
    min-width:100px;
    width:300px;
    background:var(--whiteColor);
    transform:translateX(-100%);
    transition:transform .4s ease;
    overflow:auto
}
.menu-mobile .body-menu-mobile .fa-times,.menu-mobile .header-menu-mobile .fa-times{
    cursor:pointer
}
.mobile-menu-overlay.active{
    opacity:1;
    visibility:visible;
    transition:transform .4s ease-in-out
}
.menu-mobile-active{
    transform:translateX(0);
    transition:transform .4s ease-in-out;
    z-index:99999;
    background: var(--whiteColor);
}
.close-menu {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #ffffff;
}
.header-menu-mobile .logo-opacity-bg {
    padding: 0;
    background: var(--mainColor);
    text-align: center;
}
.header-menu-mobile .logo {
    width: 85%;
}
.body-menu-mobile .fixed-menu {
    height: 100%;
    position: unset;
    width: 100%;
}
.body-menu-mobile .list-group-item.active {
    background-color: var(--whiteColor);
    /*border-color: rgba(0,0,0,.125);*/
}
.body-menu-mobile .list-group-item.active a{
    color: var(--mainColor);
}
.body-menu-mobile .list-group-item {
    padding: 1rem 1.2rem;
    border: 0;
}
.body-menu-mobile .list-group-item a img{
    margin-right: 20px;
    width: 28px;
}
.body-menu-mobile .list-group-item a span{
    font-size: 18px;
    /*font-family: 'DinNextMedium' !important;*/
    color: var(--blackColor);
}
.m-main-menu .dropdown-toggle::after {
    display: none;
}
.m-main-menu .dropdown-toggle i{
    font-size: 12px;
}
.m-main-menu .dropdown-menu a:hover{
    color: #ffffff;
    background: #2b5d6e;
}
.m-main-menu .dropdown-menu a{
    text-align: center;
}
.menu-mobile .lang-btn {
    margin-right: 15px;
    margin-top: 15px;
}
.body-menu-mobile .list-group-flush>.list-group-item:last-child {
    border-bottom-width: 1px;
}
.menu-mobile .social-nav .social-link {
    width: 26px;
    height: 26px;
    margin-left: 8px;
}
.menu-mobile .social-nav {
    align-items: center;
    padding: 15px;
}
.show-menu-mobile {
    padding-bottom: 20px;
}
.mobile-show{
    display: none;
}
.menu-mobile::-webkit-scrollbar {
  width: 5px;
}
/* Track */
.menu-mobile::-webkit-scrollbar-track {
  background: var(--grayColor); 
}
/* Handle */
.menu-mobile::-webkit-scrollbar-thumb {
  background: var(--darkGrayColor); 
}
/* Handle on hover */
.menu-mobile::-webkit-scrollbar-thumb:hover {
  background: var(--darkGrayColor);
}
/* end */
.user-dropdown-user{
    background: var(--blackColor);
    border-radius: 5px;
    padding: 12px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
}
.user-dropdown-user:after{
    display: none;
}
.dropdown-menu.user-drop {
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 55%);
    right: 0 !important;
    width: 280px;
    left: auto !important;
    border: 0;
    transform: translate3d(0px, 50px, 0px) !important;
    padding: 10px;
    text-align: right;
}
.loged-user-info{
    border-right: 5px solid var(--redColor);
    padding-right: 10px;
    margin-bottom: 10px;
}
.loged-user-info h5{
    margin-bottom: 0;
    font-size: 1.1rem;
}
.loged-user-info p{
    font-size: 14px;
    color: var(--darkGrayColor);
}
.user-package-name {
    border: 1px dashed var(--redColor);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.user-package-name .date{
    font-size: 14px;
    color: var(--darkGrayColor);
}
.pack-no{
    background: var(--redColor);
    color: var(--whiteColor);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-package-name h5{
    margin-bottom: 0;
    font-size: 1.1rem;
}
.user-drop li a img{
    width: 22px;
    margin-left: 10px;
}
.user-drop .dropdown-item {
    padding: 1rem 0.5rem;
}
.user-drop .dropdown-item:hover{
    background: var(--redColor);
    color: #ffffff;
}
.drop-icon-h{
    display: none;
}
/*.user-drop .dropdown-item:hover .drop-icon{
    display: none;
}
.user-drop .dropdown-item:hover .drop-icon-h{
    display: inline-block;
}*/
a.cart-button {
    margin-left: 10px;
    background: var(--redColor);
    border-radius: 5px;
    padding: 6px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
}
a.lang-button {
    background: var(--redColor);
    border-radius: 5px;
    padding-right: 10px;
    color: #ffffff;
    margin-right: 10px;
}
span.lang-icon {
    background: var(--blackColor);
    display: inline-block;
    padding: 5px 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-right: 10px;
}
.product-img-preview {
    position: relative;
    margin-bottom: 20px;
}
.product-preview-time {
    background: var(--redColor);
    display: block;
    position: absolute;
    bottom: 0;
    padding: 10px 15px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    left: 20px;
}
.product-preview-time img{
    display: block;
    margin: 5px auto;
}
.date-no{
    font-size: 24px;
    font-weight: 600;
}
.share-icon {
    display: block;
    position: absolute;
    top: 20px;
    right: 100px;
    width: 60px;
}
.hidden{
    display: none;
}
.fave-icon{
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
}
.product-img-preview>img{
    width: 100%;
}
.white-bg-div {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
}
button.action-btn {
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    display: inline-block;
}
button.action-btn img{
    width: 38px;
}
.amount-control-div .form-control{
    display: inline-block;
    width: 200px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
}
.amount-control-div {
    display: inline-flex;
    align-items: center;
}
.white-bg-div {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0;
    box-shadow: none !important;
}
.user-info {
    /* font-weight: 600; */
    font-size: 18px;
    display: flex;
    align-items: center;
}
.user-info p{
    line-height: 1.2;
}
.full-width-map {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
}
.white-bg-div .form-check {
    padding-right: 0;
    padding-left: 1.5em;
}
.white-bg-div .form-check-label {
    display: block;
    padding-left: 10px;
}
.form-check-input {
    width: 1.3em;
    height: 1.3em;
}
.float-right{
    float: left;
}
.success-modal .modal-content{
    background: var(--redColor);
    text-align: center;
    border-radius: 30px;
    padding: 50px;
}
.success-modal .modal-content h3, .fail-modal .modal-content h3{
    font-weight: 400;
    color: #ffffff;
}
.success-modal .modal-content img, .fail-modal .modal-content img{
    margin-bottom: 25px;
}
.accepted-order-no {
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 30px;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: var(--blackColor);
    border-color: var(--blackColor);
}
.fail-modal .modal-content {
    background: var(--redColor);
    text-align: center;
    border-radius: 30px;
    padding: 50px;
}
.paddr-20 {
    padding-left: 26px;
}
.register-tab {
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 55%) !important;
    background: var(--grayColor);
    border-radius: 8px;
    padding: 0;
}
.register-tab li a {
    padding: 10px;
    width: 110px;
    text-align: center;
    border-radius: 0;
    background: #ffff;
    color: var(--blackColor);
}
.register-tab li a.first{
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}
.register-tab li a.second{
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}
.register-tab li a.active{
    background: var(--redColor);
    color: #fff;
}
.h-auto{
    height: auto !important;
}
.paddr-30{
    padding-right: 30px;
}
.red-bg {
    background: var(--redColor);
    text-align: center;
    padding: 10px 0;
    color: #ffffff;
    margin-bottom: 20px;
}
.profile-cover {
    text-align: center;
    background: var(--redColor);
    padding-top: 50px;
}
.profile-photo-container {
    width: fit-content;
    margin: auto;
    position: relative;
    margin-bottom: -60px;
}
img.profile-img {
    border-radius: 50%;
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 55%) !important;
    width: 200px;
    height: 200px;
}
.cam-icon {
    position: absolute;
    bottom: 2px;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--darkGrayColor);
    right: 2px;
    color: #e52420;
    font-size: 26px;
}
.btr-0{
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
}
img.product-list-img.small-img {
    width: 134px;
}
.white-btn {
    padding: 10px 30px;
    font-size: 20px;
    border-radius: 8px;
    background: var(--whiteColor);
    border: 2px solid var(--whiteColor);
    color: var(--redColor);
}
.profile-info-cover {
    padding: 20px 0;
    background: var(--redColor);
    color: var(--whiteColor);
}
.profile-info-cover p{
    color: var(--whiteColor);
}
.profile-info-cover .d-flex{
    align-items: center;
}
.small-btn .btn{
    padding: 5px 20px;
    font-size: 18px;
}
.gray-btn{
    background: #efefef;
    border-color: #efefef;;
    color: var(--blackColor);
}
.gray-btn:hover{
    background: var(--darkGrayColor);
    color: var(--whiteColor);
    border-color: var(--darkGrayColor);
}
.small-btn .black-btn:hover{
    background: var(--blackColor) !important;
    color: var(--whiteColor) !important;
}
.white-badge {
    background: #fff;
    color: var(--blackColor);
    padding: 10px 20px;
}
.white-badge span{
    display: block;
    text-align: center;
}
.profile-info-cover .profile-img{
    width: 180px;
    height: 180px;
}
.warning-div {
    background: #ffafaf;
    padding: 4px 10px;
    color: var(--redColor);
    font-size: 15px;
    border-radius: 2px;
}
.warning-div img{
    margin-right: 10px;
}
.small-user-photo{
    width: 120px;
}
.ellipsis-icon{
    color: #fff;
    font-size: 30px;
}
.gray-chat-bg{
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 55%);
    background: #efefef;
}
.profile-chat-user-img{
    border-radius: 8px;
    box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 55%);
    width: 90%;
    overflow: hidden;
}
.red-chat-bg{
    padding: 20px;
    border-radius: 8px;
    /*box-shadow: 2px 2px 5px 0px rgb(127 127 127 / 55%);*/
    background: var(--redColor);
}
.red-chat-bg p{
    color: var(--whiteColor);
}
.write-chat-div{
    position: relative;
}
.write-chat-div button{
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: transparent;
    position: absolute;
    bottom: 9px;
    width: 60px;
    height: 60px;
}
.write-chat-div .form-control-lg {
    padding: 1.5rem 1rem;
    background: #efefef;
}
.send{
    right: 15px;
}
.send-pic{
    right: 90px;
}
.pt-30{
    padding-top: 30px !important;
}
.tap-icon {
    background: #efefef;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 20px;
    margin: auto;
    margin-bottom: 10px;
}
.product-add-tab a{
    color: var(--blackColor);
    text-align: center;
}
.product-add-tab a.active .tap-icon, .product-add-tab a:hover .tap-icon{
    background: var(--redColor);
}
.hover{
    display: none;
}
.product-add-tab a:hover .hover, .product-add-tab a.active .hover{
    display: block;
}
.product-add-tab a:hover .main ,.product-add-tab a.active .main{
    display: none;
}
.icon-btn{
    color: #ffffff;
    padding: 6px 12px;
}



/* Hide all steps by default: */
.tab {
  display: none;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}
input.form-control.float-left.d-inline {
    width: 200px;
}
.custom-check{
    display: flex;
    align-items: center;
}
.custom-check .form-check-label{
    display: flex;
    align-items: center;
    width: 100%;
}
.custom-check .form-control{
    width: 150px;
    display: inline-block;
}
.form-switch .form-check-label {
    display: inline-block;
    padding-right: 0;
}
.form-switch .form-check-input {
    float: left;
    margin-right: 20px;
    margin-left: 0;
}
.form-switch {
    display: inline-block;
    padding-right: 0;
}
.form-switch .form-check-input {
    width: 3em;
}
.form-check.form-switch {
    padding-left: 0;
}
.btn .hover{
    display: none;
}
.btn:hover .main{
    display: none;
}
.btn:hover .hover{
    display: block;
}
.icon-btn img{
    width: 36px;
    margin-left: 0;
}
.ml-10{
    margin-right: 10px;
}
.accordion-button{
    background: var(--grayColor);
}
.accordion-button::after {
    margin-left: auto;
    margin-right: 0;
}
.accordion-body{
    background: var(--grayColor);
}
.accordion-button:not(.collapsed){
    color: var(--blackColor);
    background: var(--grayColor);
}
.accordion-button:not(.collapsed)::after{
    background-image: var(--bs-accordion-btn-icon);
}
.relative-pos{
    position: relative;
}
.product-previe-no{
    background: var(--redColor);
    display: block;
    position: absolute;
    bottom: 0;
    padding: 10px 10px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    right: 20px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.product-previe-no span{
    display: block;
}
.alert-modal .modal-content{
    padding: 50px 100px;
    text-align: center;
}
.alert-modal .btn{
    padding: 10px;
    font-size: 18px;
    width: 50%;
}
.alert-div {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--redColor);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -115px auto 20px;
}
.alert-div img{
    width: 60px;
}
.input-group-text {
    background-color: #e52420;
    border: 1px solid #e52420;
    border-top-right-radius: .375rem!important;
    border-bottom-right-radius: .375rem!important;
    border-top-left-radius: .0!important;
    border-bottom-left-radius: .0!important;
}
.input-group .form-control{
    border-top-left-radius: .375rem!important;
    border-bottom-left-radius: .375rem!important;
    border-top-right-radius: .0!important;
    border-bottom-right-radius: .0!important;
}
.gray-badge.small{
    width: 70px;
}
.address{
    display: block;
    width: 100% !important;
    text-align: left;
    padding: 5px 10px;
    background: #efefef;
    color: var(--darkGrayColor);
}
.address img{
    margin-right: 10px;
}
.filter-icon a{
    color: #fff !important;
}

.radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.radio-toolbar label:hover {
    border: 1px solid var(--redColor);
}
.radio-toolbar input[type="radio"]:checked + label {
    border: 1px solid var(--redColor);
}
.radio-toolbar label {
    border-radius: 5px;
    display: inline-flex;
    padding: 4px 10px;
    border: 1px solid #efefef;
    background: #efefef;
    direction: ltr;
    align-items: center;
    margin-right: 10px;
}
.radio-toolbar label img{
    width: 16px;
    margin-left: 5px;
}
#amount{
    border: 0;
    font-size: 14px;
    float: right;
    text-align: right;
}
.filter-modal .modal-content{
    padding: 40px;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 2px solid #ffff;
    background: #e52420;
    font-weight: normal;
    color: #454545;
    border-radius: 50%;
}
.ui-widget-header {
    border: 0 !important;
    background: #e52420;
}
.ui-widget.ui-widget-content {
    border: 0;
    background: #efefef;
    border-radius: 10px;
}
.title-div .btn{
    padding: 10px 40px;
    font-size: 18px;
}
.transparnt-bg{
    background: transparent !important;
    padding-right: 0;
    padding-left: 0;
}
.prl-0{
    padding-right: 0;
    padding-left: 0;
}
.process-step .nav-pills .nav-link.active, .process-step .nav-pills .show>.nav-link {
    color: var(--darkGrayColor) !important;
    background-color: transparent !important;
}
.process-step .nav-pills .nav-link{
    color: var(--darkGrayColor) !important;
}
.process-step div {
    width: 85px;
    height: 85px;
    background: #efefef;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
    padding: 20px 10px;
    text-align: center;
}
.process-step div img{
    width: 42px;
}
.process-step .nav-pills .nav-link.active div{
    background: var(--redColor);
}
.process-step .nav-pills .nav-link.active div .hover{
    display: block;
    margin: auto;
}
.process-step .nav-pills .nav-link.active div .main{
    display: none;
}
.address .gray-badge{
    background: var(--grayColor);
}
.medium-btn {
    padding: 10px 20px;
    font-size: 18px;
    width: 20%;
    border: 1px;
}
a.m-logo {
    max-width: 240px;
}
.item-slider-desc {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48%;
    padding: 30px 20px;
}
img.slider-logo {
    max-width: 420px !important;
    margin-bottom: 30px;
    margin-right: auto;
}
.item-slider-desc p{
    font-size: 26px;
    font-weight: bold;
}
.item-slider-desc p {
    font-size: 48px;
    font-weight: bold;
    word-spacing: 15px;
    color: #2e2e2f;
    line-height: 2;
}
.item-slider-desc .btn {
    border-radius: 30px;
    padding: 2px 50px 5px;
    font-size: 32px;
    font-weight: bold;
    word-spacing: 10px;
    margin-left: 100px;
}
nav.nav.store-nav a {
    width: 48%;
}
span.cart-items-no {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #37474f;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.btn-close {
    float: right;
}
.modal-pad-30{
    padding: 30px;
}

.priduct-list-block .flex-shrink-0 {
    overflow: hidden;
    border-radius: 20px;
}
.product-list-img {
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}
img.product-list-img:hover {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.uneye{
    display: none;
    cursor: pointer;
}
.ui-datepicker-calendar .ui-state-default, .ui-datepicker-calendar .ui-widget-content .ui-state-default,.ui-datepicker-calendar  .ui-widget-header .ui-state-default, .ui-datepicker-calendar .ui-button, .ui-datepicker-calendar  .ui-button.ui-state-disabled:hover, .ui-datepicker-calendar  .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #454545;
    border-radius: 4px;
}
.clockpicker-popover{
    position: absolute;
    text-align: center;
}
.relative{
    position: relative;
}
.delete-item {
    position: absolute;
    right: 25px;
    width: 24px;
    top: 15px;
}
.profile-info-cover a h5{
    color: #ffffff;
}
.rating-container.rating-disabled .rating-stars{
    cursor: default;
}
.pr-20{
    padding-right: 30px;
}
.ellipsis-icon .dropdown-toggle::after{
    display: none !important;
}
.profile-info-cover {
    overflow: visible !important;
}
.send-whats {
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #25D366;
    bottom: 9px;
    width: 60px;
    height: 60px;
    color: #ffff;
    font-size: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pr-0{
    padding-right: 0 !important;
}

/* ----------- new ---------- */
.fixed-menu a:hover span{
    color: var(--redColor);
}
.dropdown-menu.user-drop {
    right: auto!important;
    left: 0!important;
    text-align: left;
}
.user-drop li a img {
    margin-left: 0;
    margin-right: 10px;
}
.user-drop .dropdown-item:hover .drop-icon {
    filter: brightness(0) invert(1);
}
.subscribe-div {
    text-align: right;
}
.mr-15{
    margin-right: 10px !important;
}

.footer.mobile {
    border-top: 1px solid #278ea8;
}
.footer .link-footer a {
    font-family: "DinNextMedium" !important;
    padding: 12px 5px;
}
span.price-lable {
    display: block;
    padding: 12px 10px;
    background: #646464;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}
span.price-txt-no {
    display: block;
    background: #fafafa;
    padding: 24px 10px;
    text-align: center;
    font-size: 20px;
}











/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) { 
    body, section{
        width: 100%;
        overflow-x: hidden !important;
    }
    p {
        font-size: 16px;
    }
    .h4, h4 {
        font-size: 1.2rem;
    }
    .h3, h3 {
        font-size: 1.4rem;
    }
    h5{
        font-size: 1.1rem;
    }
    .store-nav img{
        width: 140px;
    }
    .subscribe-div .form-control{
        height: 48px;
    }
    span.lang-icon {
        display: none;
    }
    .menu-button , .user-dropdown-user , a.cart-button{
        width: 36px;
        height: 36px;
    }
    a.lang-button {
        padding-left: 5px;
        padding-right: 5px;
        margin-left: 0;
    }
    .banner{
        margin-top: 20px;
        text-align: center;
    }
    .btn-div {
        padding: 10px 0px;
    }
    .order-details {
        padding: 20px 15px;
        flex-direction: column;
    }
    .red-btn {
        padding: 10px 15px;
        font-size: 16px;
    }
    .order-total {
        font-size: 18px;
        padding: 20px 15px;
    }
    .orders-tab .nav-link {
        padding: 20px 4px;
        font-size: 14px;
    }
    .customer-info {
        padding: 10px 15px;
    }
    .user-icon {
        width: 36px;
        height: 36px;
        margin-left: 8px;
    }
    .customer-info .red-btn, .orange-btn , .green-btn{
        padding: 4px 8px;
        font-size: 14px;
        height: 35px;
    }
    .product-preview-time {
        padding: 6px 8px;
    }
    .fave-icon {
        top: 10px;
        right: 12px;
        width: 48px;
    }
    .share-icon {
        top: 10px;
        right: 70px;
        width: 48px;
    }
    .form-check-label .gray-badge {
        width: 100px;
    }
    .custom-tabs li {
        margin: 0 4px;
    }
    .priduct-list-block>.d-flex{
        flex-direction: column;
    }
    .filter-tab .nav-item {
        padding-left: 10px;
        margin-bottom: 8px;
    }
    .priduct-list-block {
        background: #ffffff;
        padding: 20px 15px;
    }
    .priduct-list-block .ms-3 {
        /*margin-right: 0 !important;*/
        margin-left: 0!important;
    }
    img.profile-img {
        width: 175px;
        height: 175px;
    }
    .user-list .priduct-list-block>.d-flex{
        flex-direction: row;
    }
    .profile-info-cover .profile-img {
        width: 60px;
        height: 60px;
    }
    .white-btn {
        padding: 10px 10px;
        font-size: 16px;
    }
    .small-btn .btn {
        padding: 5px 6px;
        font-size: 16px;
    }
    .white-badge {
        padding: 4px 6px;
    }
    .profile-chat-user-img {
        width: 35%;
        margin-bottom: 20px;
    }
    .wallet-credit {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    .wallet-credit .flex-grow-1 {
        margin-left: 20px !important;
    }
    .wallet-credit h3 {
        font-size: 2rem;
    }
    .package-block {
        margin-bottom: 20px;
    }
    .custom-tabs .nav-link {
        font-size: 14px;
        padding: 6px;
    }
    .payment-method .form-check-label {
        padding-left: 0px;
    }
    .wallet-credit-white {
        padding: 25px 10px;
    }
    .wallet-credit-white .flex-grow-1 {
        padding-right: 0;
        flex-direction: column;
        justify-content: flex-start;
    }
    .wallet-credit-white .flex-grow-1 .mr-auto{
        margin-right: 0;
    }
    .credit-block {
        padding: 20px 15px;
        margin-top: 20px;
        height: auto;
    }
    .credit-block .flex-grow-1 {
        padding-left: 20px;
    }
    .product-list-img{
        margin-bottom: 15px;
    }
    a.m-logo {
        max-width: 100px;
    }
    a.lang-button {
        font-size: 14px;
    }
    .gray-badge {
        width: 100px;
    }
    .item-slider-desc p {
        font-size: 18px;
        line-height: 1.6;
    }
    .item-slider-desc{
        padding: 10px;
    }
    img.slider-logo {
        display: none !important;
    }
    .item-slider-desc .btn {
        padding: 2px 15px 5px;
        font-size: 14px;
        word-spacing: 2px;
        margin-right: 0;
    }
    .priduct-list-block .order-details .flex-grow-1 {
        width: 100%;
        padding-left: 15px;
    }
    .order-total {
        font-size: 14px;
        padding: 20px 10px;
    }
    .title-div .btn {
        padding: 6px 20px;
        font-size: 16px;
    }
    .login-div .white-bg-div{
        padding: 0;
        margin-bottom: 0;
    }
    input.form-control.float-left.d-inline {
        width: 80px;
        font-size: 13px;
    }
    .white-bg-div .form-check-label {
        font-size: 14px;
    }
    .custom-check .form-control {
        width: 50px;
        display: inline-block;
        font-size: 12px;
    }
    .black-btn {
        padding: 10px 15px;
        font-size: 16px;
    }
    .profile5 .priduct-list-block .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .profile5 .priduct-list-block .ms-3{
        margin-right: 0 !important;
    }
    .profile5 .priduct-list-block .star-ratings {
        margin-left: 0;
    }
    .custom-tabs .nav-link {
        font-size: 13px;
        padding: 4px;
    }
    .price .no {
        font-size: 60px;
    }
    .dropdown-menu.user-drop {
        width: 250px;
    }
    .write-chat-div button {
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
    .send-pic {
        right: 60px;
    }
    .send-whats {
        width: 40px;
        height: 40px;
        font-size: 23px;
    }
    .filter-modal .modal-content {
        padding: 25px 15px;
    }
    .radio-toolbar label{
        margin-bottom: 5px;
    }
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) { 
    p {
        font-size: 16px;
    }
    .h4, h4 {
        font-size: 1.2rem;
    }
    .order-details {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .product-list-img{
        margin-bottom: 15px;
    }
    .store-nav img{
        width: 140px;
    }
    .subscribe-div .form-control{
        height: 48px;
    }
    span.lang-icon {
        display: none;
    }
    .menu-button , .user-dropdown-user , a.cart-button{
        width: 40px;
        height: 40px;
    }
    a.lang-button {
        padding-left: 5px;
        padding-right: 5px;
        margin-left: 0;
    }
    .banner{
        margin-top: 20px;
        text-align: center;
    }
    .btn-div {
        padding: 10px 0px;
    }
    .order-details {
        padding: 20px 15px;
        flex-direction: column;
    }
    .red-btn , .black-btn{
        padding: 10px 15px;
        font-size: 18px;
    }
    .order-total {
        font-size: 18px;
        padding: 20px 15px;
    }
    .orders-tab .nav-link {
        padding: 20px 4px;
        font-size: 14px;
    }
    .customer-info {
        padding: 10px 15px;
    }
    .user-icon {
        width: 36px;
        height: 36px;
        margin-left: 8px;
    }
    .customer-info .red-btn, .orange-btn , .green-btn{
        padding: 4px 8px;
        font-size: 14px;
        height: 35px;
    }
    .product-preview-time {
        padding: 6px 8px;
    }
    .fave-icon {
        top: 10px;
        right: 12px;
        width: 48px;
    }
    .share-icon {
        top: 10px;
        right: 70px;
        width: 48px;
    }
    .form-check-label .gray-badge {
        width: 100px;
    }
    .custom-tabs li {
        margin: 0 4px;
    }
    .priduct-list-block>.d-flex{
        flex-direction: column;
    }
    .filter-tab .nav-item {
        padding-left: 10px;
        margin-bottom: 8px;
    }
    .priduct-list-block {
        background: #ffffff;
        padding: 20px 15px;
    }
    .priduct-list-block .ms-3 {
        /*margin-right: 0 !important;*/
        margin-left: 0!important;
    }
    img.profile-img {
        width: 175px;
        height: 175px;
    }
    .user-list .priduct-list-block>.d-flex{
        flex-direction: row;
    }
    .profile-info-cover .profile-img {
        width: 70px;
        height: 70px;
    }
    .white-btn {
        padding: 10px 10px;
        font-size: 18px;
    }
    .small-btn .btn {
        padding: 5px 6px;
        font-size: 16px;
    }
    .white-badge {
        padding: 4px 6px;
    }
    .profile-chat-user-img {
        width: 35%;
        margin-bottom: 20px;
    }
    .wallet-credit {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    .wallet-credit .flex-grow-1 {
        margin-left: 20px !important;
    }
    .wallet-credit h3 {
        font-size: 2rem;
    }
    .package-block {
        margin-bottom: 20px;
    }
    .custom-tabs .nav-link {
        font-size: 14px;
        padding: 6px;
    }
    .payment-method .form-check-label {
        padding-left: 0px;
    }
    .wallet-credit-white {
        padding: 25px 10px;
    }
    .wallet-credit-white .flex-grow-1 {
        padding-right: 0;
        flex-direction: column;
        justify-content: flex-start;
    }
    .wallet-credit-white .flex-grow-1 .mr-auto{
        margin-right: 0;
    }
    .credit-block {
        padding: 20px 15px;
        margin-top: 20px;
        height: auto;
    }
    .credit-block .flex-grow-1 {
        padding-left: 20px;
    }
    a.m-logo {
        max-width: 200px;
    }
    .priduct-list-block .order-details .flex-grow-1 {
        width: 100%;
        padding-left: 15px;
    }
    img.slider-logo {
        max-width: 120px !important;
        margin-bottom: 20px;
    }
    .item-slider-desc p {
        font-size: 22px;
        line-height: 1.6;
    }
    .item-slider-desc .btn {
        border-radius: 30px;
        padding: 2px 30px 5px;
        font-size: 16px;
        font-weight: bold;
        word-spacing: 10px;
        margin-right: 20px;
    }
    .priduct-list-block .d-flex{
        flex-direction: column;
        align-items: flex-start !important;
    }
    .profile5 .priduct-list-block .star-ratings {
        margin-left: 0;
    }
    .profile5 .priduct-list-block .ms-3{
        margin-right: 0 !important;
    }
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .priduct-list-block .order-details {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .product-image {
        height: auto;
    }
    .product-list-img{
        margin-bottom: 15px;
    }
    a.m-logo {
        max-width: 240px;
    }
    .priduct-list-block .order-details .flex-grow-1 {
        width: 100%;
        padding-left: 15px;
    }
    img.slider-logo {
        max-width: 220px !important;
        margin-bottom: 20px;
    }
    .item-slider-desc p {
        font-size: 24px;
        line-height: 1.6;
    }
    .item-slider-desc .btn {
        border-radius: 30px;
        padding: 2px 30px 5px;
        font-size: 16px;
        margin-right: 20px;
    }
    .item-slider-desc {
        padding: 15px 20px;
    }
    .priduct-list-block .d-flex{
        flex-direction: column;
        align-items: flex-start !important;
    }
    .user-list .priduct-list-block>.d-flex {
        flex-direction: row;
    }
    .profile-info-cover .profile-img {
        width: 100px;
        height: 100px;
    }
    .profile5 .priduct-list-block .ms-3{
        margin-right: 0 !important;
    }
    .profile5 .priduct-list-block .star-ratings {
        margin-left: 0;
    }
    .credit-block .flex-grow-1 {
        padding-left: 0px;
    }

}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 1200px) and (max-width: 1366px) { 
   
    
}
@media (min-width: 992px) and (max-width: 1199px) { 
    .item-slider-desc p {
        font-size: 52px;
        font-weight: bold;
        word-spacing: 15px;
        color: #2e2e2f;
        line-height: 1.8;
    }
    img.slider-logo {
        max-width: 52% !important;
        margin-bottom: 10px;
    }
    .item-slider-desc {
        padding: 20px 20px;
    }
    .product-list-img {
        max-width: 200px;
    }
}


/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1600px) { 
    
}