/*
Created on : Jan 06, 2021
Author     : Webiknows IT Solutions Pvt Ltd
Version: 1.2
*/
/*============================
 [Table of CSS]
 	1. Global variable css
	2. Background Color
	3. Color and Font
	4. Headings and Typographic Classes / .title, .uppercase etc
	5. Button
	6. Margins and Paddings
	7. Position
	8. Custom Checkbox and radio
	9. Reset Css
	10. Cus Scroll
	11. Ellipsis
  12. Animation
  13. FLOATING LABEL
  14. ACCORDION
========================================*/
/*-----------------
1. Global variable css
-----------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;900&display=swap');

@font-face {
    font-family: 'rupeeregular';
    src: url('../Fonts/rupee-webfont.woff2') format('woff2'),
         url('../Fonts/rupee-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: 'roboto-bold';
  src: url('../fonts/roboto-bold/roboto-bold-webfont.woff2') format('woff2'),
       url('../fonts/roboto-bold/roboto-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'roboto-regular';
  src: url('../fonts/roboto-regular/roboto-regular-webfont.woff2') format('woff2'),
       url('../fonts/roboto-regular/roboto-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/*<span class="ruppee-f">`</span>*/
.ruppee-f {font-family: 'rupeeregular';font-weight: 600;}
/*-----------------
2. Background Color 232323
-----------------------*/
.bg-primary {background: var(--primary-clr);}̥̥
.bg-primary2 {background: #232323 !important;}
.bg-secondary {background: var(--secondary-clr) !important;}
.bg-lightgrey {background: var(--lightgrey-clr);}
.bg-lightgrey2 {background: #fbfbfb;}
.bg-lightgrey3 {background: #f7f7f7;}
.bg-white {background: #fff !important;}
.bg-t {background: transparent !important;}
.bg-yellow {background: #ffa727 !important}
.bg-lightwhite {background: #f9f8f8 !important;}
/*-----------------
3. Color and Fonts 
-----------------------*/
.primary-clr {color: var(--primary-clr) !important;opacity:0.9;}
.secondary-clr {color: var(--secondary-clr) !important;}
.white {color: #fff !important;}
.black {color: #000 !important;}
.gray {color: #838382 !important;}

.text-clr {color: #333 !important;}
.green{color:#38BC68;}
.yellow {color:#ffa727 !important}
.f-headind {font-family: var(--ff-heading);}
.f-para {font-family: var(--ff-para);}
/*-----------------
4. Headings and Typographic Classes / .title, .uppercase etc
-----------------------*/
/* - Font size classes - */
.big {font-size: 3.6rem;line-height: 4.8;}
.bigger {font-size: 4.8rem;line-height: 1.2;}
.super {font-size: 6rem;line-height: 1.2;margin-bottom: 0;}

.f-12 {font-size: clamp(0.7rem, 0.7615rem + -0.0513vw, 0.75rem);}
.f-13 {font-size: clamp(0.7rem, 0.8391rem + -0.1159vw, 0.813rem);}
.f-14 {font-size: clamp(0.7rem, 0.6596rem + 0.1795vw, 0.875rem);}
.f-16 {font-size: clamp(0.8rem, 0.7538rem + 0.2051vw, 1rem) !important;}
.f-18 {font-size: clamp(0.8rem, 0.7077rem + 0.4103vw, 1.2rem);}
.f-20 {font-size: clamp(0.8rem, 0.6962rem + 0.4615vw, 1.25rem);}
.f-22 {font-size: clamp(0.8rem, 0.6673rem + 0.5897vw, 1.375rem) !important;}
.f-24 {font-size: clamp(0.8rem, 0.6385rem + 0.7179vw, 1.5rem);}
.f-26 {font-size: clamp(0.8rem, 0.5692rem + 1.0256vw, 1.8rem);}
.f-28 {font-size: clamp(0.8rem, 0.5808rem + 0.9744vw, 1.75rem) !important;}
.f-32 {font-size: clamp(0.8rem, 0.5231rem + 1.2308vw, 2rem);}
.f-36 {font-size: clamp(0.8rem, 0.2923rem + 2.2564vw, 3rem);} 
.f-48 {font-size: clamp(0.8rem, 0.0615rem + 3.2821vw, 4rem);}

.f-28px {font-size: 28px !important}
 
/* - Font weight classes - */
.bold {font-weight: bold;}
.regular {font-weight: normal;}
.bold-500 {font-weight: 500;}
.bold-600 {font-weight: 600;}
.bold-700 {font-weight: 700;}
.opacity-25 {opacity: 0.25;}
.opacity-half {opacity: 0.5;}
.opacity-75 {opacity: 0.75;}
.opacity-85 {opacity: 0.85;}
.opacity-1 {opacity: 1;}
/* - Text transform classes - */
.txt-upper {text-transform: uppercase;}
.txt-lower {text-transform: lowercase;}
.txt-capital {text-transform: capitalize;}
.l-h-1 {line-height: 1;}
.l-h-2 {line-height: 1.2;}
.l-h-3 {line-height: 1.3;}
.l-h-4 {line-height: 1.4;}
.l-h-5 {line-height: 1.5;}
.l-h-6 {line-height: 1.6;}
.l-h-7 {line-height: 1.7;}
.l-h-8 {line-height: 1.8;}
.l-h-9 {line-height: 1.9;}
.l-h2 {line-height: 2;}
/*-----------------
5. Button  
-----------------------*/
button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}
.cus_btn2 {
  display: inline-block;
  background: #ffb74d;
  border: none;
  color: var(--primary-clr);
  margin-top: 10px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: none !important;
}
.cus_btn2:hover {
    color: #fff;
    background: var(--secondary-clr) !important;
    border: 0px solid var(--secondary-clr) !important;
}

.cus-primary-btn {
    text-transform: capitalize;
    display: inline-block;
    color: #fff;
    background-size: 200% auto;
    text-align: center;
    border: none;
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 40px;
    transition: all 0.3s;
    box-shadow: none !important;
    border-radius: 40px !important;
    background-color: var(--secondary-clr) !important;
}
.cus-primary-btn:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}
.cus-primary-btn-outline {
    text-transform: capitalize; 
    display: inline-block;
    color: #000;
    background: transparent;
    text-align: center;
    border: 1px solid #000;
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 40px;
    transition: all 0.3s;
}
.cus-primary-btn-outline:hover {
    color: #fff !important;
    background: var(--secondary-clr) ;
    border: 1px solid var(--secondary-clr);
}
.AddToCartBtn {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray);
    padding: 0 14px !important;
    border-radius: 8px !important;
    text-transform: capitalize;
    font-weight: 600;
    & img { height: 20px !important;width: auto !important;margin-left: 10px;}
}
.AddToCartBtn:hover {
    border: 1px solid var(--secondary-clr);
    color: var(--secondary-clr);
    box-shadow: 0px 2px 12px 0px #FDC89B;
    & img {filter: brightness(0) saturate(100%) invert(45%) sepia(95%) saturate(570%) hue-rotate(342deg) brightness(97%) contrast(97%);}
}
/*-----------------
6. Margins and Paddings
-----------------------*/
/*-----------------
7. Position
-----------------------*/
.top-left {position: absolute;top: 8px;left: 16px;}
.top-right {position: absolute;top: 8px;right: 16px;}
.top-center {position: absolute;top: 0;left: 50%;transform: translate(-50%, 0);}  
.bottom-right {position: absolute;bottom: 8px;right: 16px;}
.bottom-left {position: absolute;bottom: 8px;left: 16px;}
.bottom-center {position: absolute;bottom: 0;left: 50%;transform: translate(-50%, 0%);}  
.middle-left {position: absolute;top: 50%;left: 0%;transform: translate(0%, -50%);}
.p-centered {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
.v-center {-webkit-transform: translate(0,-50%);-o-transform: translate(0,-50%);transform: translate(0,-50%);top: 50%;margin: 0 auto;}
.modal-dialog-bottom {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: flex-end; min-height: calc(100% - 0rem);}
.modal-rounded {border-radius: 8px 8px 0 0;}
/*-----------------
8. Custom Checkbox
-----------------------*/
.cus-checkbox [type="checkbox"]:checked,
.cus-checkbox [type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.cus-checkbox [type="checkbox"]:checked + label,
.cus-checkbox [type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.cus-checkbox [type="checkbox"]:checked + label:before,
.cus-checkbox [type="checkbox"]:not(:checked) + label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
}
.cus-checkbox [type="checkbox"]:checked + label:after,
.cus-checkbox [type="checkbox"]:not(:checked) + label:after {
  content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--primary-clr);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg) !important;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cus-checkbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.cus-checkbox [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/*############custom radio start here########*/
.cus-radio [type="radio"]:checked,
.cus-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.cus-radio [type="radio"]:checked + label,
.cus-radio [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.cus-radio [type="radio"]:checked + label:before,
.cus-radio [type="radio"]:not(:checked) + label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.cus-radio [type="radio"]:checked + label:after,
.cus-radio [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--primary-clr);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cus-radio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.cus-radio [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.custom-select {
    background: transparent;
    background-image: url(../../images/icons/arrowDownWhite.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center right 4px !important;
    min-width: 100px;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
}
/*-----------------
9. Reset Css
-----------------------*/
/* @media screen and (min-width: 320px) {
  html {font-size: calc(16px + 6 * ((100vw - 320px) / 680));}
}
@media screen and (min-width: 1000px) {
  html {font-size: 22px;}
}
html{font-size: 62.5%;}
*/
::selection {
  background-color: var(--primary-clr);
  color: #fff;
} 
body, .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
}
a:hover {
  color: var(--secondary-clr);
}
/*-----------------
10. Custom Scrollbar
-----------------------*/
.cus-scrollbar {
	margin-left: 30px;
	float: left;
	height: 200px;
	background: #F5F5F5;
	overflow-y: scroll;
	margin-bottom: 25px;
}
/* * STYLE 1 */
.style-1::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}
.style-1::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}
.style-1::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}
/** STYLE 2 **/
.style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.style-2::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}
.style-2::-webkit-scrollbar-thumb
{
	background-color: #000000;
}
/** STYLE 3 **/
.style-3::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.style-3::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}
.style-3::-webkit-scrollbar-thumb
{
	background-color: var(--gray);
}
/*-----------------
11.Ellipsis
-----------------------*/
.ellipsis-line1 {  
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-line2 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsis-line3 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis-line4 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.ellipsis-line5 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
/*-----------------
12.Animation
-----------------------*/
/* Ripple effect */
.ripple {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    transform: scale(0);
    animation: ripple 0.6s linear;
}
@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}
/*------------------------------
13.FLOATING LABEL
-------------------------------*/
.float-labels .form-group {
   position: relative;
   margin-bottom: 10px;
}
.float-labels input,
.float-labels textarea {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #999;
    padding: 10px 0;  
    box-sizing: border-box;
}
.float-labels label {
    position: absolute;
    top: 15px;
    left: 0px;
    transition: .5s;
    pointer-events: none;
}
.float-labels  input:focus ~ label,
.float-labels textarea:focus ~ label, 
.float-labels input:read-only ~ label,
.float-labels input[disabled] ~ label,
.float-labels  input:valid ~ label,
.float-labels textarea:valid ~ label {
    top: -6px;
    left: 0;
    font-size: 11px;
}
.float-labels  input:focus,
.float-labels textarea:focus{
    box-shadow:none;
    border-bottom: 1px solid var(--primary-clr);
}
/****  floating-Lable style 2 placeholder=" " ****/
.floating-label { 
  position:relative; 
  margin-bottom:20px; 
}
.floating-select {
  font-size: 14px;
    padding: 4px 0;
    display: block;
    width: 100%;
    height: 30px;
    min-height: 50px;
    line-height: 30px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.floating-select:focus {
     outline:none;
     border-bottom:1px solid var(--primary-clr); 
}
.select-label {
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:5px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.floating-select:focus ~ label ,
.floating-select:not([value=""]):valid ~ label {
    top: -8px;
    font-size: 11px;
}
/* active state */
.floating-select:focus ~ .bar:before,
.floating-select:focus ~ .bar:after {
  width:50%;
}
/* highlighter */
.highlight {
  position:absolute;
  height:50%; 
  width:100%; 
  top:15%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}
/* active state */
.floating-input:focus ~ .highlight , .floating-select:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}
/* animation */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
/****  floating-Lable style end ****/
/*------------------------------
14. ACCORDION
-------------------------------*/
.accordion-plus:before {
    content: "\f107";
    position: absolute;
    right: 14px;
    font-family: FontAwesome;
    background: #F4F2F6;
    border-radius: 50px;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
}
.accordion-plus[aria-expanded="true"]:before {
    transform: rotateZ(180deg);
}
/*------------------------------
COMMON CSS
-------------------------------*/
  /* csss for success msg */
  .success-message {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 13px 7px 30px;
    gap: 20px;
    /*  position: relative; */
    width: 300px;
    height: 52px;
    background: #EAFFE3;
    border-radius: 37.8351px;

    position: fixed;
    z-index: 999;
    top: 120px;
    right: -60px;
    transform: translate(-50%, -50%);
}

.auto-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.material-symbol {
    width: 38px;
    height: 38px;
    /* background: #15BD5C;
    Add additional styling for symbol or icon */
}

.product-added-text {
    width: 199px;
    height: 22px;
    font-family: 'Sora', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 17.6564px;
    line-height: 22px;
    text-align: right;
    color: #108541;
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* csss for success msg  end*/

.outOfStock{
    position: absolute;
        left: 0;
        top: 0;
        background: #000000b5;
        width: 100%;
        height: 100%;
        z-index: 9;
        color: #fff;
        vertical-align: middle;
        display: flex;
        justify-content: center;
        align-items: center;
        text-transform: uppercase;
        cursor: disabled;
    }
.categoryPageBanner {
    max-height: 200px;
    object-fit: cover;
}
/* for bootstrap 5  */
a {text-decoration: none;}
.btn-close {display: flex;justify-content: center;align-items: center;}
.btn-block {display: block;width: 100%;}
.form-group {margin-bottom: 1rem;}
/* END for bootstrap 5  */
.gap10px {gap :10px}
.cursorPointer {cursor: pointer;}
input[type="radio"],input[type="checkbox"] {transform: scale(1.2);margin-right: 4px;}
.md .form-group label {font-size: clamp(1rem, 0.7538rem + 0.2051vw, 1rem);}
label {color:#000;font-size: clamp(1rem, 0.7538rem + 0.2051vw, 1rem);}
.fa-eye:before {
    content: "\f06e" !important;
}

.categorysidebar label {font-size: 14px}

.mobileNum91 {
    &::after {
        content: "+91";
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 99;
    }
    & input {padding-left: 50px !important;}
}

input[type=checkbox] {
    -moz-appearance:initial; 
}

.btn {
    min-width: 100px;
    padding: 0px;
    border-radius: 2px;
}
.modal-header .close {
    outline: none;
}
.z-index-2 {
    z-index: 2;
}
/*a .material-icons {
 transition: all 0.3s;
}
a:hover .material-icons {
  margin-left: 20px !important;
}*/
.pl-14 {
  padding-left: 14px;
}
.vw-100 {width: 100vw;}
.vh-100 {height: 100vh;}
.vh-48 {height: 48vh;}
.w-120px {width: 120px}
.w-250px {width: 250px}
.w-100px {width: 100px}
.h-60px {height: 60px}
.h-120px {height: 120px}
.h-130px {height: 130px}
.h-150px {height: 150px}
.h-160px {height: 160px}
.h-180px {height:180px;}
.h-200px {height: 200px;}
.h-210px {height: 210px;}
.h-230px {height: 230px;}
.h-250px {height: 250px} 
.z-index-99 {
  z-index: 99;
}
.fit-image {
    object-fit: cover;
}
.grayscale{
    filter: grayscale(100%);
}
.shadow-light {
    box-shadow: 0 0 10px rgba(0,0,0,.05);
}
.zoom-hover {
    transition: all .5s ease;
}
.zoom-hover:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
.img-hover-color {
      filter:grayscale(1);
      -webkit-filter: grayscale(1);
      -webkit-transition: all .8s ease-in-out;  
}
.img-hover-color:hover {
      filter: none;
      -webkit-filter: grayscale(0);
      -webkit-transform: scale(1.01);
}
.on_hover_show .show_div {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
    text-align: center;
    width: 100%;
    visibility: hidden;
    display: table;
    opacity: 0;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.on_hover_show:hover .show_div {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
}
.rotated_180 {
    transform: rotate(180deg);
}
.opacity-1 {opacity: 1;}
.opacity-75 {opacity: 0.75;}
.opacity-50 {opacity: 0.5;}
.opacity-25 {opacity: 0.25;}
.b-r-4 {border-radius: 4px !important;}
.b-r-5 {border-radius: 5px;}
.b-r-6 {border-radius: 6px;}
.b-r-8 {border-radius: 8px;}
.b-r-10{border-radius: 10px;}
.b-r-20{border-radius: 20px;}
.b-r-50{border-radius: 50px;}
.image-upload > label {pointer-events: inherit;}
.image-upload > input {display: none;}
.image-upload img {width: 40px;cursor: pointer;}
.grid-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.grid-2 .grid-item {
  width: 100%;
  padding: 7px 0;
  display: inline-block;
}
.grid-item-2 {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto auto;
}
.grids-3 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto;
}
.grids-4 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto auto;
}
html, body {
    height: inherit;
    overflow: inherit;
}
.page {
    box-shadow: none;
    z-index: 4;
}
a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover {
  background-color: var(--primary-clr) !important;
  color: #fff;
}
/*-----------------
7. HEADER
-----------------------*/
header.fixed-header~.page-content {
  padding-top: 120px;
  background:#F1F1F1;;
}
header.fixed-header {
  position: fixed;
  -webkit-box-shadow: 0 4px 10px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 4px 10px 0 rgb(0 0 0 / 10%);
  z-index: 999;
}
.web_menu li > a {
    color: #333232;
    font-size: 1.2vw;
    padding: 1.5vw 1.5vw;
}
.ios .color-theme-yellow .sidebar, .ios .color-theme-yellow .fullscreen-menu, .md .color-theme-yellow .sidebar,
.md .color-theme-yellow .fullscreen-menu, .md .color-theme-yellow header, .color-theme-yellow .circle-background:before {
	background: #fff;
}
.useraccount.dropdown-menu {
    position: absolute;
    min-width: 20rem;
    right: -11rem;
    left: auto;
    top: 50px;
    background: #fff !important;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
}
.top_menu {
    width: 100%;
    display: flex;
    padding: 0;
    margin: 5px 0 10px 0;
}
.top_menu .navbar-nav {
    width: 100%;
    display: flex;
    align-items: center;
}

.top_menu #mainMenu .navbar-nav {
    padding-right: 20px;
}
.top_menu #mainMenu .navbar-nav li {
    padding: 0 14px;
}
.top_menu .navbar-nav li .dropdown-menu a.dropdown-item {
    padding-left: 14px;
    color: #312d2e;
    background: #fff;
    transition: all 0.3s;
    text-align: left;
}
.top_menu .navbar-nav li .dropdown-menu a.dropdown-item:hover {
	color: #312d2e;
    padding-left: 20px;
    background: #fff;
}
.top_menu .navbar-nav li > a:hover,
.top_menu .navbar-nav li > a:focus {
    background: transparent;
}
.navbar .navbar-nav li > a:focus {
    color: initial;
}
.top_menu .navbar-nav li a.dropdown-toggle::after {
	font-size: 0;
    position: absolute;
    right: -4px;
    top: 10px;
    background: url(../images/icons/arrow_up_primary.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    transform-origin: center;
    height: 10px;
    width: 10px;
    transition: all 0.3s;
}
.top_menu .navbar-nav li a[aria-expanded="true"].dropdown-toggle::after {
    /*display: none;*/
    transform: rotate(0deg);
    transform-origin: center;
	top: 12px;
}
.top_menu_right li a.dropdown-toggle::after {
    display: none;
} 
header {
  height: 74px;
}
.header_search {
    border-radius: 50px !important;
    background: #fff;
    min-width: 350px;
}
.header_search input {
    height: 44px !important;
    min-height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    border: 1px solid var(--gray2) !important;
    border-radius: 44px !important;
}
.header_search input:-webkit-autofill,
.header_search input:-webkit-autofill:hover,
.header_search input:-webkit-autofill:focus,
.header_search input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #efefef inset !important;
}
.logo figure img {
    width: auto;
    max-height: 50px;
    vertical-align: middle;
    object-fit: cover;
}
.navbar .navbar-nav li > a { /* use direct child selectors for overlap  */
    width: 100%;
    display: block;
    line-height: 28px;
    padding: 2px 15px;
    font-size: 15px;
    color: #ffffff;
    vertical-align: middle;
    text-align: center;
}
.navbar-expand-lg .navbar-nav .nav-link {
    color: #191612;
}
.top_menu_right {
    flex-direction: row;
    & li {
        flex-basis: content;
    }
} 
.md .sidebar-left {
    background: var(--primary-clr) !important;
}
.profile-link {
    background: #ffb74d;
}
#footer .container {
    /* padding-top: 80px; */
}
#footer {
    background-color: var(--primary-clr);
}
#navbarNavDropdown .demo_btn {
    background: linear-gradient(270deg, rgba(197, 41, 35, 1) 0%, rgba(232, 129, 15, 1) 100%);
    border: none;
    color: #fff;
    text-align: center;
    transition: all 0.3s;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
}
#navbarNavDropdown .demo_btn:hover {
    background: linear-gradient(270deg, rgba(232, 129, 15, 1) 0%, rgba(197, 41, 35, 1) 100%);
}
.footer_logo img {
  max-width: 100px;
}
.header_on_scroll {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0px 14px;
  box-shadow: 0 5px 9px 0 rgb(201 201 201 / 50%);
  background-color: #ffffff;
  transform: translateY(-150px);
  transition: all 0.3s;
}
.fixed_header_on_scroll {
  position: fixed;
  top: 0px;
  z-index: 99;
  transform: translateY(0);
}
.header_on_scroll_btn {
margin-right: 20px;
  line-height: 34px;
  height: 46px;
  background: #ffb74d;
  border: none;
  color: var(--primary-clr);
}
.menu-left-open .backdrop,
.menu-right-open .backdrop-right {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.banner_title_left img {
  height: 90px;
  width: 100px;
  position: absolute;
  left: 0;
  margin-bottom: -30px;
}
.banner_title_right img {
  height: 177px;
  width: 164px;
  position: absolute;
  right: 0;
  margin-bottom: -76px;
}
.bannerText {
    color:#242424;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    min-width: 25vw;
    & h4 {
        font-family: "Poppins", sans-serif;
        font-weight: 900;
        color:#242424;
        font-size: 60px;
        font-style: italic;
        text-transform: uppercase;
        margin:0;
    }
    & p { font-family: "Poppins", sans-serif;color: #525150;font-weight: 500;}
}
#footer ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

#footer h3 {
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
}
#footer ul li a {
    font-weight: 500;
    color: #c5c5c5;
    font-size: clamp(0.8rem, 0.7538rem + 0.2051vw, 1rem);
    transition: all 0.3s;
}
#footer ul li a:hover {
    opacity: 0.8;
}
#footer p,
#footer h3 {
    font-weight: 500;
    color: #c5c5c5;
}
#footer .footer_link_developer li {
    margin-bottom: 5px;
    width: 100%;
    display: inline-block;
    float: none;
}
.newsLatters {
    flex-basis: 50%;
}
.newsLatters input {
    border: none !important;
    background: #00000054;
    transition: all 0.3s;
}
.newsLatters input:active,
.newsLatters input:focus {
    border: none !important;
    background: #00000078;
    border: 1px solid #f68f29 !important;
    border-radius: 4px;
}
.newsLatters button {
    background: var(--secondary-clr) !important;
    outline: none !important;
    box-shadow: none !important;
    border: none;
}
.newsLatters input.form-control {
    border: 2px solid var(--secondary-clr) !important;
    border-radius: 5px;
	color: #c3c1c0;
}
.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f39e";
}
.navbar .navbar-nav li > a span {
  position: relative;
  overflow: hidden;
}
.navbar .navbar-nav li > a span::after {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}
.navbar .navbar-nav li:hover > a span::after {
  width: 100%;
  left: 0;
  right: auto;
}
.navbar .navbar-nav li.active > a span::after {
  width: 100%;
  left: 0;
  right: auto;
}
.navbar .navbar-nav li {
  position: relative;
  border: none;
}
/*######  Mincart CSS Start Here #######*/
/* .minicartSidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 400px;
    z-index: 9;
    padding: 20px;
    overflow-x: hidden;
    background: #F8F8FA;
    box-shadow: -6px 0 15px 0 rgb(0 0 0 / 30%);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translateX(110%);
    opacity: 0;
}
.minicartSidebar.open {
    opacity: 1;
    transform: translateX(0);
} */
.minicartSidebar{position: relative;}
.miniCartBtn.close span {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin-top: -6px;
    display: inline-block;
}
.cartCount {
   display: inline-block;
    background-color: #FFC107;
    color: white;
    font-size: 11px;
    height: 18px;
    width: 18px;
    line-height: 16px;
    border-radius: 50px;
    top: 4px;
}
.minicartSidebar .cart-middle {
    float: left;
    width: 100%;
    height: calc(40vh);
    overflow: auto;
}
/* .minicartSidebar .cart-bottom {
    position: absolute;
    bottom: 20px;
    left: 0;
} */
.minicartSidebar .itemContainer-base-itemRight {
    min-height: 100px;
}

/* new cart */
.cart-dropdown-wrap {
    position: absolute;
    right: 0;
    top: calc(100% + 20px);
    z-index: 99;
    width: 320px;
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    padding: 12px 20px 27px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    border: 1px solid #ececec;
}
.cart-dropdown-wrap.open {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}
body.cartOpen {
    overflow: hidden;
}
body.cartOpen::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    background: rgba(0, 0, 0, 0.32);
}











/*###### END Mincart CSS #######*/
/*-----------------
    LOGIN
-----------------------*/
@media only screen and (min-width: 992px) {
  .CATEGORIES-List-desktop {
    position: relative;
    padding: 15px !important;
    background: #f6f6f6;
    border: 1px solid #c1c1c1;
    max-width: 600px;
    margin: 0 auto;
    margin-top: -280px;
    margin-bottom: 70px;
}
.lg-loginbox {
    max-width: 500px !important;
    box-shadow: 0 8px 10px 1px rgb(0 0 0 / 7%), 0 3px 14px 2px rgb(0 0 0 / 8%), 0 5px 5px -3px rgb(0 0 0 / 15%);
    border-radius: 2px;
    border: 0px solid #c1c1c1 !important;
}
.top_menu #mainMenu {
    justify-content: space-between;    
}
.top_menu .navbar-nav li .dropdown-menu a:hover {
    background: #e6e3e3;
}
#mainMenu .navbar-nav {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: auto;
    padding-right: 0 !important;
}
#mainMenu .navbar-nav li {
    display: inline-block;
    float: left;
    width: auto;
}
.top_menu .navbar-nav li .dropdown-menu {
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
}
.PersonalDetailsSec {
    border-right: 10px solid #efefef;
}
.OrderSummarySec {
    border-left: 10px solid #efefef;
}
.bannerText {
    max-width: 40vw;
}
} /*end min-width: 992px*/


.login-title {
    font-size: clamp(0.8rem, 0.2923rem + 2.2564vw, 3rem);
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}
.login-title small {
    font-size: clamp(0.8rem, 0.7077rem + 0.4103vw, 1.2rem);
    font-weight: 300;
}
.md .login-input-content {
    box-shadow: none !important;
}
.txt1 {
    font-size: 14px;
    color: #999;
    line-height: 1.4;
}
/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*-----------------
7. Homepage 
-----------------------*/
.homepage-restaurant {
    margin-top: 0;
    padding-bottom: 30px;
    margin-bottom: 0px;
}
.homepage-restaurant .swiper-wrapper .swiper-slide {
    padding: 0;
    height: 450px;
}
.homepage-restaurant .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
	object-fit: cover;
    object-position: center;
}
.homepage-restaurant .banners_data .btn {
    background: #fff;
    border: none;
    color: #272B5F;
}
.homepage-restaurant .banners_data .btn:hover {
  color: #fff !important;
}
.homepage-restaurant .swiper-pagination {
    bottom: 60px;
    right: 6%;
}
.homepage-restaurant .swiper-wrapper .swiper-slide figure {
    border-radius: 0;
    height: 550px;
}
.header-margin {
  margin-bottom: 30px !important;
}
.payments {
    color: #FF8400 !important;
}
.banners-text {
   color : #272B5F !important;
}
.know-more-link {
    position: relative;
    color: black;
}
.know-more-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 20px;
    background: #000;
    transition: all 0.3s;
}
.know-more-link:hover:after {
    width: 100%;
}
.know-more-link.yellow:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 20px;
    background: #FF8400;
    transition: all 0.3s;
}
.navigation {
    width: 100%;
    position: absolute;
    top: 44%;
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 99;
}
.slidePrev-btn img {
    transform: rotate(180deg);
}
.swiper-pagination-bullet {
    opacity: 1;
    background: var(--gray2);
    height: 11px;
    width: 11px;
    margin-right: 20px;
}
.swiper-pagination-bullet:last-child {
    margin-right: 0px;
}
.swiper-pagination-bullet-active {
    background: var(--dark);
    outline: 1px solid var(--gray2);
    outline-offset: 4px;
}
.homepageGategoryGrid > div > .card {
    height: 14rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.homepageGategoryGrid .card img {
    max-width: 100%;
    height: 100%;
    max-height: 14rem;
    transition: all 0.3s;
}
.shadow_from_bottom:after {
    content: "";
    background: linear-gradient(180deg, rgba(182, 182, 182, 0), rgba(0, 0, 0, 0.83));
    position: absolute;
    bottom: 0px;
    left: 0;
    padding: 45px 0px;
    z-index: 1;
    width: 100%;
    border-radius: 0px 0px 5px 5px;
    height: 100px;
}
.shadow_from_bottom_2:before {
    content: "";
    background: linear-gradient(180deg, rgba(182, 182, 182, 0), rgba(0, 0, 0, 0.83));
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 45px 0px;
    z-index: 0;
    width: 100%;
    height: 100px;
}
.product-grid {
    & .card {
        overflow: hidden;
        & .card-body {
            text-align: left;
        }
    }
}
.categoriesListBox .product-grid {
    & .card {
        & .card-body {
            min-height: 220px;
        }
    }
}

strike {opacity: 0.5;}

.product-grid img {
    width: 100%;
    height: 224px;
    object-fit: cover;
    transition: all 0.3s;
    border-radius: 0;
} 
.product-grid img:hover {
   transform: scale(1.02);
}
.product-grid img.card-img-top {
    border-bottom: 1px solid #f4f4f4;
}
.product-grid .QuickViewModal img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    transition: all 0.3s;
}
.product-grid .onsale {
    position: absolute;
    padding: 0 4px;
    left: 8px;
    top: 8px;
    text-shadow: none;
    height: 25px;
    line-height: 25px;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    z-index: 1;
    box-shadow: none;
    font-size: 0.7em;
    color: #FFF;
    background: #98d898;
}
.product-grid .price del {
    color: rgba(145, 145, 145, 0.5);
    font-size: 0.7em;
    margin-left: 10px;
}
.product-grid .price i.fa-inr {
    font-size: 90%;
}
.section-title {
    font-size: clamp(0.8rem, 0.5692rem + 1.0256vw, 1.8rem);
    margin-bottom: 14px;
    font-weight: 700;
}
/*-----------------
Category Listing Page
-----------------------*/
.page-breadcrumb {
    padding: 0px;
    margin: 0px;
    text-transform: capitalize;
    display: inline-block;
}
.page-breadcrumb > li {
    float: left;
    padding-left: 15px;
    list-style: none;
}
.page-breadcrumb > li:after {
    content: ">";
    position: relative;
    left: 8px;
    color: var(--gray);
}
.page-breadcrumb > li:last-child:after {
    content: "";
}
.page-breadcrumb > li a {
    color: var(--gray);
}
.page-breadcrumb > li.active {
    color: var(--text-clr);
}
.price-list {
    list-style-type: none;
    padding: 0;
}
.vertical-filters-filters {
    background: #fff;
    padding: 6px 14px;
    border-bottom: 1px solid #E5E5E5;
}
.sidepanel_Filter ul.nav-list li {
    position: relative;
}
.sidepanel_Filter ul.nav-list li a:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f054";
    font-weight: 900;
    position: absolute;
    top: 13px;
    font-size: 7.2px;
    font-size: 0.45rem;
    opacity: 0.7;
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
    left: 6px;
}
aside ul.nav-list > li > a {
    color: #666;
    font-size: 0.9em;
    padding: 8px 0 8px 22px;
}
aside ul.nav-list > li > a:hover {
    color: var(--primary-clr);
}
.filterTagsHeading {
    display: inline-block;
    position: relative;
}
.filterTagsHeading::before {
    right: -40px;
    top: 4px;
}
.clearfilter a.filters {
    height: 40px;
    line-height: 40px;
    border: 1px solid #d1dbef;
    text-align: center;
    background: #fff;
    border-radius: 6px;
    color: #000;
    font-size: 16px;
    margin-bottom: 14px;
}
.clearfilter a.clearfilters {
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #ebf2ff;
    border-radius: 50px;
    border: 1px solid #d1dbef;
    color: #000;
    font-size: 16px;
    margin-bottom: 14px;
}
.clearfilter a.filters:hover,
.clearfilter a.clearfilters:hover {
    color: var(--primary-clr);
}
/* Price Filter */
/* new  */
.PriceFilter .range-slider {
	width: 100%;
	margin: auto;
	text-align: center;
	position: relative;
	height: 6em;
}
.PriceFilter .range-slider svg,
.PriceFilter .range-slider input[type=range] {
	position: absolute;
	left: 0;
	top: 0;
}
.PriceFilter input[type=number] {
	border: 1px solid #ddd;
    border-radius: 4px;
	text-align: center;
	font-size: 14px;
    margin-top: 30px;
	-moz-appearance: textfield;
}
.PriceFilter input[type=number]::-webkit-outer-spin-button,
.PriceFilter input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
.PriceFilter input[type=number]:invalid,
.PriceFilter input[type=number]:out-of-range {
	border: 2px solid #ff6347;
}
.PriceFilter input[type=range] {
	-webkit-appearance: none;
	width: 100%;
}
.PriceFilter input[type=range]:focus {
	outline: none;
}
.PriceFilter input[type=range]:focus::-webkit-slider-runnable-track {
	background: var(--primary-clr);
}
.PriceFilter input[type=range]:focus::-ms-fill-lower {
	background: var(--primary-clr);
}
.PriceFilter input[type=range]:focus::-ms-fill-upper {
	background: var(--primary-clr);
}
.PriceFilter input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: var(--primary-clr);
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}
.PriceFilter input[type=range]::-webkit-slider-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1.5px solid var(--gray);
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #fff;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -7px;
}
.PriceFilter input[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: var(--primary-clr);
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}
.PriceFilter input[type=range]::-moz-range-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid var(--primary-clr);
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
}
.PriceFilter input[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: transparent;
	border-color: transparent;
	color: transparent;
}
.PriceFilter input[type=range]::-ms-fill-lower,
.PriceFilter input[type=range]::-ms-fill-upper {
	background: var(--primary-clr);
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}
.PriceFilter input[type=range]::-ms-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid var(--primary-clr);
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
}
.PriceFilter .range-slider span {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.PriceFilter .range-slider span > input::after {
    content: "₹";
    font-size: 10px;
    color: #000;
    position: absolute;
    top:10px;
    left: 4px;
    z-index: 99;
    display: block;
}
  /* Price Filter */ 

.listGridView {
    & a {opacity: 0.8;}
    & a.active {opacity: 1;}
    & img {height: 14px;}
}
/*-----------------
Product Page
-----------------------*/
.product_page_gallery {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px !important;
}
.slider-for-product img {
    height: 480px;
    max-height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    object-fit: cover;
    border: 1.4px solid #B5B5B5;
    border-radius: 8px;
}
.slider-for-product .slick-slide {
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.slider-for-product .slick-slide .magnify {
    height: 480px;
    width:100% !important; 
    align-items: center;
}
.slider-nav-product {
    margin:0 auto;
    max-width: 540px;
}
.slider-nav-product .slick-slide {
    height: 80px;
    margin-bottom: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-right:8px;
    margin-left:8px;
}
/* .slider-nav-product .slick-slide:last-child {
    margin:0;
}
.slider-nav-product .slick-slide:first-child {
    margin:0;
} */
.slider-nav-product .slick-slide img {
   border-radius: 8px;
   height: 80px;
   width: 80px;
   object-fit: cover;
   border: 1px solid #ddd;
}
.slider-nav-product .slick-slide.slick-current img {
    border: 1px solid var(--primary-clr);
}
.slider-nav-product .slick-prev:before,
.slider-nav-product .slick-next:before {
    color: var(--primary-clr);
}
 .slider-nav-product .slick-next {
    right: 0;
}
.slider-nav-product .slick-prev {
    left: 0;
}
/*
.slider-nav-product .slick-next:before {
    content: '→';
    transform: rotate(-90deg);
    display: inline-block;
}

.slider-nav-product .slick-prev:before {
    content: '→';
    transform: rotate(90deg);
    display: inline-block;
} */
.product_in_stock {
    font-size: 13px;
    padding-top: 3px;
    padding-right: 15px;
    font-weight: bold;
}
.product_in_stock > span {
    color: #999;
    padding-left: 15px;
}
.star_ratings .fa.fa-star.checked {
    color: #FFDA40;
}
.star_ratings + span {
    padding-left: 8px;
}
.flex {
    display: flex;
}
.no_padding {
    padding: 0px;
}
.product_description_div .gap_between_div > .col-md-12 {
    margin-bottom: 16px;
    padding-right: 15px;
    padding-left: 15px;
}
.product_description_div .cart-quantity {
    padding-left: 10px;
}
.cart-quantity button {
    background-color: #fff;
    padding: 0px;
    cursor: pointer;
    border: 1px solid #777;
    border-radius: 3px;
}
.cart-quantity button:focus,
.cart-quantity input:focus {
    outline: none;
}
.cart-quantity button:hover {
    border-radius: 3px;
}
.cart-quantity button > i {
    font-size: 12px !important;
    margin: 0px !important;
    font-weight: bold;
    color: #333333 !important;
}
.cart-quantity input {
    color: var(--text-clr);
    width: 40px;
    text-align: center;
    border: none;
    font-size: 14px;
}
.cart-quantity input[type="number"]::-webkit-outer-spin-button,
.cart-quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-quantity input[type="number"] {
    -moz-appearance: textfield;
}
.product_page_label {
    text-transform: capitalize;
    font-weight: bold;
    color: #000;
}
.product_description_div .product-item-size .btn {
    padding: 5px;
    display: inline-block;
    width: auto;
    min-width: 60px;
    max-width: 100px;
    line-height: normal;
    background: #ddd;
    margin-right: 10px;
    font-size: 12px;
}
.product_description_div .product-item-size .btn.active {
    background: var(--primary-clr);
    color: #fff;
}
.product_description_div .product-item-size .btn:active,
.product_description_div .product-item-size .btn:focus {
    outline: none;
    box-shadow: none;
}
.product-item-size input[type="checkbox"],
.product-item-size input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.Selectcolor .custom-radios div {
  display: inline-block;
}
.Selectcolor .custom-radios input[type=radio] {
  display: none;
}
.Selectcolor .custom-radios input[type=radio] + label {
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.Selectcolor .custom-radios input[type=radio] + label span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 24px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}
.Selectcolor .custom-radios input[type=radio] + label span img {
  opacity: 0;
  transition: all 0.3s ease;
}
.Selectcolor .custom-radios input[type=radio]#color-1 + label span {
  background-color: #2ecc71;
}
.Selectcolor .custom-radios input[type=radio]#color-2 + label span {
  background-color: #3498db;
}
.Selectcolor .custom-radios input[type=radio]#color-3 + label span {
  background-color: #f1c40f;
}
.Selectcolor .custom-radios input[type=radio]#color-4 + label span {
  background-color: #e74c3c;
}
.Selectcolor .custom-radios input[type=radio]:checked + label span img {
  opacity: 1;
}
.product-description > .nav {
    border-bottom: 0px solid #333333;
    height: 36px;
    margin-bottom: 20px;
}
.product-description * {
    color: #666;
}
.product-description > .nav > li > a,
.product-description > .nav > li > a.active:hover,
.product-description > .nav > li > a.active:focus {
    text-transform: uppercase;
    font-size: 12px;
    background: transparent;
    margin: 0px 0px;
    padding: 15px;
    color: #333;
    border-bottom: 3px solid #fff;
}
.product-description > .nav > li > a.active:hover,
.product-description > .nav > li > a.active:focus {
    border-bottom: 3px solid #333333;
}
.product-description > .nav > li > a.active {
    background: transparent;
    color: #333333;
    font-weight: bold;
    border-bottom: 3px solid #333333;
}
.product-description p {
    font-size: 13px;
}
.pincodeCheck .input-group {
    border: 1px solid var(--primary-clr);
    border-radius: 4px;
    overflow: hidden;
    max-width: 80%;
}
.pincodeCheck .input-group input {
    font-size: 10px;
    height: 34px;
    min-height: 34px;
    border: none;
}
.pincodeCheck .input-group .btn {
    height: 34px;
    min-height: 34px;
    padding: 0 30px;
    border: none;
    background: var(--primary-clr);
    color: #fff;
}
.addtocartAction {
    align-items: center;
    margin-bottom: 10px;
    padding-right: 15px;
    padding-left: 15px;
}
.addtocartAction button {
    width: 50%;
    margin-left: 0 !important;
}
.social_share .social_icons > a {
    padding-right: 10px;
}
.social_share .social_icons > a > i {
    font-size: 30px;
}
.social_share .social_icons > a > .fa-whatsapp {
    color: #37b627;
}
.social_share .social_icons > a > .fa-facebook-official {
    color: #4867aa;
}
.social_share .social_icons > a > .fa-twitter-square {
    color: #1cb7eb;
}
.social_share .social_icons > a > .fa-pinterest-square {
    color: #ca2222;
}
.product_title {
    font-size: 1.5rem;
    text-transform: capitalize;
}
.product-grid .card .card-body a p {
    font-size: 11px;
    font-weight: 700;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.product_description_div button.woo_add_to_wishlist {
    position: relative;
    font-size: clamp(0.8rem, 0.7538rem + 0.2051vw, 1rem);
    width: auto;
    color: var(--gray);
    & i {
        padding: 6px;
        border: 1px solid var(--gray);
        border-radius: 2px;
    }
}
.woo_add_to_wishlist:hover .fa-heart-o {
    opacity: 0;
}
.product_description_div .woo_add_to_wishlist > .fa-heart {
    bottom: 7px;
    right: 10px;
}
.woo_add_to_wishlist > .fa-heart {
    position: absolute;
    opacity: 0;
}
.woo_add_to_wishlist:hover .fa-heart {
    opacity: 1;
    left: 0;
    bottom: inherit !important;
    right: inherit !important;
}
.zoomContainer {
    z-index: 9999;
}

.homepageCategorySlider .swiper-slide .card img {
    min-height: 290px;
}
/*######### MEDIA QUERY START HERE ########*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 768px) {
.page-breadcrumb {display: none;}
.top_menu .navbar-nav {margin-top: -10px;}
.c-addressbook {padding-bottom: 14px;
}
.m-w-100 {
    width: 100%;
}
.m-p-0 {padding: 0;}
.m-mx-0 {margin-left: 0;margin-right: 0;
}
.login-title {
    font-size: 30px;
    line-height: 1.3;
    & small {
        display: inline-block;
        font-size: 20px;
        line-height: 1.5;
    }
}
 
 .m_mr_4 {
  	    margin-right: 1.5rem!important;
  }	
  .f-48 {
    font-size: 28px;
  }
  .m_mt_14 {
    margin-top: 14px;
  }
  .m_mb_14 {
    margin-bottom: 14px;
  }
  .m_mb_8 {
    margin-bottom: 8px;
  }
  .m_mb_24 {
    margin-bottom: 24px !important;
  }
  .m_mt_24 {
    margin-top: 24px;
  }
  .m_pl_14 {
    padding-left: 14px !important;
  }
  .m_pl_0 {
    padding-left: 0px;
  }
  .m_pr_0 {
    padding-right: 0px;
  } 
 .f-36 {
    font-size: 26px;
  }
/*header*/
.logo figure img {
    width: auto;
    max-height: 30px;
    vertical-align: middle;
    margin-left: 0;
    object-fit: cover;
}
.navbar .top_menu_right li a {
    padding: 10px 6px;
}
.navbar .top_menu_right li a i {
    font-size: 20px;
    vertical-align: middle;
    width: 30px;
    text-align: center;
}
.top_menu>.col,
.top_menu>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}
.top_menu {
    margin: 0;
}
header {
    height: 60px;
}
header.fixed-header~.page-content {
    padding-top: 142px !important;
}
#mainMenu {
    position: fixed;
    background: var(--white);
    width: 80%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    display: block;
    overflow-y: auto;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s;
}
#mainMenu.show {
    transform: translateX(0);
    opacity: 1;
}
#mainMenu ul {
    margin: 0 !important;
    padding-right: 0 !important;
    &  li {
        padding: 0 !important;
    }
}

#mainMenu .navbar-nav li a {
    color: var(--text-clr);
    text-align: left;
    padding: 10px 20px;
    border-bottom: 1px solid #EBEBEB;
}
.top_menu .navbar-nav li .dropdown-menu a {
    background: inherit;
}
#mainMenu .navbar-nav li a.dropdown-toggle::after {
    font-size: 0;
    position: absolute;
    right: 14px;
    top: 20px;
    background: url(../images/icons/arrow_up_primary.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    transform-origin: center;
    height: 10px;
    width: 10px;
    transition: all 0.3s;
}
#mainMenu .navbar-nav li a[aria-expanded="true"].dropdown-toggle::after {
    transform: rotate(0deg);
    transform-origin: center;
}
#mainMenu .navbar-nav li .dropdown-menu a {
    background: #EDEDED;
    padding: 10px 24px !important;
    white-space: break-spaces;
    border-bottom: 1px solid #fff;
}
.header_search {
    margin: 14px 10px;
    min-width: 75vw;
    & button {
        padding: 0.5px 30px !important;
        font-size: 14px;
    }
}
.useraccount.dropdown-menu {
    right: -9rem;
}
.LoginSignUpBTopMenu {
    flex-direction: column;
    & a {
        display: block;
        width: 100%;
    }
}
.cart-dropdown-wrap {
    right: -64px;
    width: 100vw;
}

.mobilemenuBg {
    width: 100%;
    height: 100vh;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 72%);
    z-index: 7;
    transition: all 0.3s;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: none;
}
#mainMenu {
    display: flex;
    flex-direction: column-reverse;
    align-items: baseline;
    justify-content: flex-end;
}
.minicartSidebar {
    width: 100%;
}
/* .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    left: -80px;
    padding-right: 20px !important;
} */
.navbar-toggler {
    padding: 0 8px;
    border: none;
}
.mobile-menu-icons {
    width: 32px;
}
.sticky_filter_panel {
    top: 140px !important;
    z-index: 5 !important;
}
/*footer*/
/*.footer_logo {
  display: flex;
  align-items: center;
}*/
.footer_logo img {
    margin-bottom: 10px;
    margin-right: 0;
}
/*HOMEPAGE*/
.homepageCategorySlider {
    & .main-slider__nav {
        display: none;
    }
}
.homepage-restaurant .swiper-pagination {
    bottom: 10px;
}
.homepage-restaurant .swiper-wrapper .swiper-slide {
    height: auto;
}
.homepage-restaurant .navigation {
    position: absolute;
    top: 28%;
    left: 0;
}
.homepage-restaurant .swiper-wrapper .swiper-slide figure {
    border-radius: 0;
    height: auto;
}
.homepage-restaurant .swiper-wrapper .swiper-slide img {
    min-height: 170px;
}
.slideNext-btn img,
.slidePrev-btn img {
    height: 20px;
    width: auto;
}
.bannerText {
    max-width: 36vw;
    & h4 {font-size: 20px;}
    & p {font-size: 12px;}
}
.bannerText::after {
    display: none;
}
.text-block {
    padding: 14px 20px;
}
.text-block h4 {
    font-size: 1rem;
    margin: 0;
    color: #fff;
}
.homepageGategoryGrid > div > .card {
    height: 10rem;
}
.homepageGategoryGrid .card img {
    height: 10rem;
}
.homepageGategoryGrid .card p {
    font-size: 14px;
}
.product-grid .card .card-body a p {
    font-size: 14px !important;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-grid .price {
    font-size: 16px;
}
.product-grid .onsale {
    padding: 0 4px;
    left: 6px;
    top: 8px;    
    font-size: 0.6em;
}
.pincodeCheck {
    padding-left: 0 !important;
    margin-top: 6px;
}
.section-title {
    font-size: 18px;
}
.product-grid img {
    height: 180px;
}
/* PRODUCT PAGE */
.pincodeCheck .input-group .btn {
    padding: 0 14px;
}
.product_description_div {
    padding: 14px;
    background: #fff;
    border-radius: 10px;
}
.product_description_div .gap_between_div > .col-md-12 {
    margin-bottom: 8px;
    padding: 0;
}
.pincodeCheck .input-group {
    max-width: 100%;
}
h1.product_title {
    font-size: 18px !important;
    margin-top: 10px;
    text-transform: capitalize;
}
.addtocartAction {
    margin-top: 40px !important;
}
.addtocartAction button,
.addtocartAction a {
    width: 100%;
    margin-bottom: 16px;
    justify-content: center;
}
.product-description > .nav.nav-tabs {
    border-bottom: 0px solid #333333;
    height: 36px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}
/* start product Gallary */
/* .product_page_gallery_box {
    flex-direction: column-reverse;
} */
/* .slider-for-product .slick-slide {
    height: 280px;
} */
.slider-nav-product .slick-next {
    right: 4px;
    top: 50%;
    background: transparent;
    width: 20px;
}
.slider-nav-product .slick-prev {
    left: 4px;
    top: 50%;
    bottom: inherit;
    background: transparent;
    width: 20px;
    z-index: 5;
}
.slider-nav-product .slick-prev:before {
    content: '→';
    transform: rotate(180deg);
    display: inline-block;
}
.slider-nav-product .slick-next:before {
    content: '→';
    transform: rotate(0deg);
}
.slider-nav-product {
    margin-top: 10px;
}
.slider-nav-product .slick-slide {
    height: 70px;
    margin-bottom: 0px;
    margin-right: 4px;
}
.product_page_gallery_box {
    margin-bottom: 20px;
}
.slider-for-product .slick-slide {
    height: 400px;
    border-radius: 10px;
    & .magnify {
        height: 400px;
    }
    & img {
        max-height: 400px;
    }
}

.product_page_gallery {
    height: 71vh;
    max-height: 520px;
    padding-right: 0 !important;
}
/* END product Gallary */
.cart-quantity {
    text-align: left !important;
    margin: 10px 0 !important;
}
.extraInfoProductDetailsMobile {
    & .card {
        border-radius: 10px !important;
    }

}
.addressModalAction {
    margin-bottom: 0;
    flex-direction: column;
    display: flex;
    & > button {
        flex: 1;
        margin: 0 !important;
        margin-bottom: 10px !important;
        width: 100%;
    }
}
.orders_btn_position_ {
    display: flex;
    flex-wrap: wrap;
    padding-left: 8px;
}
.orderDetailInfo {
    font-size: 12px;
}
.DisplayCount {
    padding-inline: 2px;
}


} /* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 320px) {
} 
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

} 


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
/*background*/
.lg-bg-primary {background: var(--primary-clr) !important;}
.lg-bg-secondary {background: var(--secondary-clr) !important;}
.lg-bg-white {background: #fff !important;}
.lg-bg-greylight {background: #f3f3f3 !important;}
.lg-bg-t {background: transparent !important;}   
.navbar-expand-lg .navbar-nav .nav-link {
    color: #525150;
}
.navbar .navbar-nav li a i {
    font-size: 20px;
    vertical-align: middle;
    width: 30px;
    text-align: center;
}
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav li.active .nav-link {
  opacity: 0.8;
  color: #525150;
} 
#mainMenu .nav-link {
    padding-right: 0;
    padding-left: 0;
    color: #191612;
    font-size: 1.3vw;
    text-align: center;
    width: auto;
}
#mainMenu .dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}
.homepage-restaurant .swiper-wrapper .swiper-slide img {
    height: 555px;
}
.homepageCategorySliderContainer {
    padding-left: 100px;
    padding-right: 0;

    & .swiper-button-next{right: 34px;}
}


}/* end min-992 */


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .container, .container-lg, .container-md,
    .container-sm, .container-xl {
        max-width: 90%;
    }


    .dashed-timeline {
        display: flex;
        align-items: start;
    }
    .dashed-timeline {
        display: flex;
        align-items: start;
    }
}



/* ========== Order Details --- START ============ */
.productTitle a {
    font-size: 16px;
    color: #333;
}
.productImage {
    max-height: 150px;
    width: auto;
}
.fa-inr {
    font-size: 16px;
}
/*---------------Mobile----------*/
@media only screen and (min-width : 300px){
    .milestone{
        display: block;
        width:calc(100%);
    }
    .dashed-timeline .milestone:first-child {
        text-align: center;
    }
    .dashed-timeline .milestone:last-child {
        text-align: center;
    }
    .dashed-timeline:before {
        border-top: 0px dashed #000;
    }
    .milestone.current {
        border: 2px dashed #008000;
        padding: 10px;
        margin: 5px;
    }
    .od_top_{
        margin-top: 30%;
    }
}
/*-----------In Tab View-----------*/
@media only screen and (min-width : 425px){
    .milestone{
        display: block;
        width:calc(100%);
    }
    .dashed-timeline .milestone:first-child {
        text-align: center;
    }
    .dashed-timeline .milestone:last-child {
        text-align: center;
    }
    .dashed-timeline:before {
        border-top: 0px dashed #000;
    }
    .milestone.current {
        border: 2px dashed #008000;
        padding: 10px;
        margin: 5px;
    }
    .od_top_{
        margin-top: 30%;
    }
}
/*-----------Desktops and laptops computers-----------*/
@media only screen and (min-width : 1224px) {
    .milestone{
        display: inline-block;
        width:calc(100%/4);
    }
    .dashed-timeline .milestone:first-child {
        text-align: left;
    }
    .dashed-timeline .milestone:last-child {
        text-align: right;
    }
    .dashed-timeline:before {
        border-top: 4px dashed #EDEDED;
        border-radius: 2px;
    }
    .milestone.current {
        border: 0px dashed #008000;
        padding: initial;
        margin: initial;
    }
    .od_top_{
        margin-top: 0%;
    }
}
.order-detail {
    margin-bottom: 0;
}
.info_msg_ {
    vertical-align: middle;
    padding: 10px;
}
.o_m_{
    padding: 5px;
}
.dashed-timeline .milestone:last-child {
    position: absolute;
    right: 0;
}
.dashed-timeline:before {
    content: '';
    height: 2px;
    position: absolute;
    width: 94%;
    top: .8em;
    z-index: 0;
    margin-left: 1%;
    right: 1.5%;
    display: block;
}
.milestone{
    position:relative;
    z-index:1;
    text-align:center;
    font-size: 11px;
}
.milestone i{
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    margin-top: auto;
    margin-right: auto;
}
.milestone.current i{
    color:var(--primary-clr);
    background-color: #fff;
}
.current > .fa-circle:before {
    color: green;
}
.orderDetailInfo {
    width: 100%;
    & > div {
    display: flex;
    margin-bottom: 2px;
    & span {flex: 1;}
    & span:nth-child(1) {flex-basis: 46%;font-weight: 600;}
    & span:nth-child(2) {flex-basis: 4%;}
    & span:nth-child(3) {flex-basis: 50%;}
}
}


/* ========== Order Details --- END ============ */



/*=================================
Checkout CSS - START
================================= */
.steps_div > ul {
    display: flex;
    list-style: none;
    justify-content: center;
}
.steps_div > ul > li {
    flex: 1;
    position: relative;
}
.steps_div {
    position: relative;
    top: 15px;
}
.steps_div > ul > li> i {
    display: block;
    border-top: 2px solid #ccc;
	padding-bottom: 10px;
	color: #ccc;
}
.steps_div > ul > li> i:before {
    top: -5px !important;
    position: absolute;
}
.steps_div > ul > li:last-child,
.steps_div > ul > li:last-child > i {
    text-align: right;
    margin-left: -14px;
}
.steps_div > ul > li:nth-child(1) > span {
    margin-left: -50px;
}
.steps_div > ul > li:nth-child(2) > span {
    margin-left: -34px;
}
.steps_div > ul > li.active > i,
.steps_div > ul > li.active > span {
    color: var(--primary-clr);
    font-weight: bold;
}
.steps_div > ul > li > .step_icons {
    & img {
        padding: 8px;
        border-radius: 30px;
        background-color: #D7D7D7;
        height: 40px;
        margin-top: -18px;
        z-index: 999;
        position: relative;  
    }  
}
.steps_div > ul > li > .step_icons::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #ccc;  
}
.steps_div > ul > li.active > .step_icons {
    & img {
        background-color: var(--primary-clr);
    }  
}

.steps_div > ul > li.active > .step_icons::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #ccc;  
}
/* new steps csss */
.step-indicator {
    display: flex;
    align-items: center;
    padding: 0 40px;
  }
  .step {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  
  .step-indicator .step-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #c2c2c2;
    font-size: 10px;
    text-align: center;
    color: #ffffff;
    position: relative;
    line-height: 50px;
    font-size: 20px;
    & img {filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7481%) hue-rotate(261deg) brightness(107%) contrast(97%);height: 30px;}
  }
  
  .step.active .step-icon {
    background: var(--primary-clr);
  }
  
  .step p {
    text-align: center;
    position: absolute;
    bottom: -40px;
    color: #c2c2c2;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
  }
  .step.active p {
    color: var(--primary-clr);
  }
  
  .step.step2 p,
  .step.step3 p {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .indicator-line {
    width: 100%;
    height: 3px;
    background: #c2c2c2;
    flex: 1;
  }
  
  .indicator-line.active {
    background: var(--primary-clr);
  }
  
  @media screen and (max-width: 500px) {
    .step p {
      font-size: 10px;
    }
  }
/* new steps csss */



.float-labels label {
    color: #9b9b9b;
}
.float-labels .form-group input + label.stay {
    top: -6px;
    left: 0;
}
.fix_rate input:checked~label {
    border: 1px solid #324b98;
    background-image: linear-gradient(45deg,#f79921 0%,#ed3669 100%);
}
.shipping_rate_radio {
    height: 100px;
    position: relative;
}
.shipping_rate_radio input+label {
    padding-left: 15%;
    font-size: 16px;
	width: 100%;
}
.shipping_rate_radio input[type="radio"] {
	height: 0px;
    width: 0px;
    float: left;
}
.shipping_rate_radio input[type="radio"]:before {
    content: "";
    background: white;
    height: 20px;
    width: 20px;
    position: absolute;
    border: 1px solid var(--primary-clr);
    margin-top: 8px;
    margin-left: 2px;
}
.shipping_rate_radio input[type="radio"]:checked:after {
	content: "";
    background: var(--primary-clr);
    height: 20px;
    width: 20px;
    position: absolute;
    margin-top: 8px;
    margin-left: 2px;
    border: 1px solid var(--primary-clr);
    background-image: linear-gradient(45deg,#f79921 0%,#ed3669 100%);
}
.shipping_rate_radio input[type="checkbox"] {
	height: 0px;
    width: 0px;
    float: left;
}
.shipping_rate_radio input[type="checkbox"]:before {
    content: "";
    background: white;
    height: 20px;
    width: 20px;
    position: absolute;
    border: 1px solid var(--primary-clr);
    margin-top: 8px;
    margin-left: 2px;
}
.shipping_rate_radio input[type="checkbox"]:checked:after {
    content: "\f00c";
    font-family: FontAwesome;
    color: white;
    background: var(--primary-clr);
    height: 20px;
    width: 20px;
    position: absolute;
    margin-top: 8px;
    margin-left: 2px;
    padding-left: 2px;
    border: 1px solid var(--primary-clr);
    background-image: linear-gradient(45deg,#f79921 0%,#ed3669 100%);
}
.summary_div {
	background: #fafafa;
}
.item_list_div > .row {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}
.item_list_div > .row:last-child {
    border: 0px;
}
.item_list_div .img_box > img {
    max-height: 100%;
	border-radius: 5px;
}
.item_list_div .img_box {
    height: 75px;
    text-align: center;
    width: 100%;
}
.tool_tip_div .tool_tip + input {
    width: 90%;
}
.tool_tip {
    float: right;
    position: absolute;
    right: 0;
    top: 13px;
    font-size: 22px;
    color: #ccc;
}
.tool_tip:hover {
    color: var(--primary-clr);
}
.tooltip {
    font-size: 14px;
}
.tooltip > .tooltip-inner {
    background: var(--primary-clr);
}
.bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before {
    right: 0;
    border-width: .4rem .4rem .4rem 0;
    border-right-color: var(--primary-clr);
}
.user_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    border: solid 2px #ed3567;
    margin-right: 10px;
    float: left;
}
.item_list_div {
    max-height: 290px;
    overflow-y: auto;
}
.checkoutPage .shipping_rate_radio {
    height: auto;
}

/*=================================
Checkout CSS - END
================================= */
/* ------------- Product Details -- START ------------- */
/*color*/
.swatch-opt .swatch-attribute .swatch-attribute-options {
    display: inline-block;
    vertical-align: top;
}
.swatch-opt .swatch-attribute .swatch-attribute-options:after, .swatch-opt .swatch-attribute .swatch-attribute-options:before {
    content: "";
    display: table;
}
.swatch-opt .swatch-attribute .swatch-attribute-options .swatch-option.selected,
.swatch-opt .swatch-attribute .swatch-attribute-options .swatch-option:hover {
    outline: 1.5px solid var(--primary-clr) !important;
    outline-offset: 2px;
}
.swatch-opt .swatch-attribute .swatch-attribute-options .swatch-option {
    width: 25px;
    min-width: auto;
    height: 25px !important;
    border: 0px solid #eee;
    border-radius: 50px;
    float: left;
    margin-right: 9px;
    margin-bottom: 6px;
    padding: 0 !important;
    cursor: pointer;
}
.categoryList .swatch-opt .swatch-attribute .swatch-attribute-options .swatch-option {
    height: 1rem !important;
    width: 1rem;
    outline: 1px solid #ddd;
    outline-offset: 2px;
}
.swatch-option {
    display: inline-block;
    height: 30px !important;
    min-width: 32px;
    line-height: 30px;
    cursor: pointer !important;
    border: 1px solid #999;
    margin-right: 4px;
}
.attr_selection {
    margin: auto;
    margin-bottom: 22px;
    margin-top: 16px;
}
.attr_selection a.Size {
    border: 1px solid #B5B5B4;
    border-radius: 4px;
    background-color: #ffffff;
    color: #838382;
    padding: 0;
    text-align: center;
}
.attr_selection a.Size.attractive {
    background-color: var(--primary-clr);
    color: #fff;
}
.attr_selection a.selected {
    border: 2px solid var(--primary-clr);
    background-color: var(--primary-clr);
    color: #fff;
}
#testimonials {
    display: flex;
    /* justify-content: center;
    align-items: center; */
    flex-direction: column;
    width:100%;
}
.testimonial-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonial-heading span {
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.testimonial-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width:100%;
}
.testimonial-box{
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}
.profile-img {
    width:50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.profile{
    display: flex;
    align-items: center;
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.name-user span{
    color: #979797;
    font-size: 0.8rem;
}
.reviews{
    color: #f9d71c;
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment p{
    font-size: 0.9rem;
    color: #4b4b4b;
}
.reviews i {
    color: #f9d71c;
}
.testimonial-box:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
}
@media(max-width:1060px){
    .testimonial-box{
        width:45%;
        padding: 10px;
    }
}
@media(max-width:790px){
    .testimonial-box{
        width:100%;
    }
    .testimonial-heading h1{
        font-size: 1.4rem;
    }
}
@media(max-width:340px){
    .box-top{
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .reviews{
        margin-top: 10px;
    }
}
.woo_add_to_wishlist.added .fa-heart {
    opacity: 1;
}
.woo_add_to_wishlist.added .fa-heart-o {
    opacity: 0;
}
/* ------------- Product Details -- END ------------- */
/* ===================== Category Details --- START =====================  */
.vertical-filters-filters {
    position: relative;
}
.vertical-filters-filters .vertical-filters-label {
    display: block;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    min-height: 30px;
    min-width: 30px;
    line-height: 20px;
    color: #282c3f;
    margin-right: 8px;
}
.common-customCheckbox {
    position: relative;
}
.common-customCheckbox input {
    margin: 0 10px 0 0;
    visibility: hidden;
}
.common-checkboxIndicator {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    outline: 1.5px solid var(--gray2);
    outline-offset: 3px;
}
.common-customCheckbox input:checked ~ .common-checkboxIndicator {
    border: none;
    background: #00a0e3;
    outline: 1.5px solid #000;
}

/* .common-customCheckbox input:checked ~ .common-checkboxIndicator:after {
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 1;
    width: 12px;
    height: 6px;
    border: 2px solid #fff;
    border-color: #fff;
    border-top-style: none;
    border-right-style: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
} */
.sidepanel_Filter  h5 {
    text-transform: capitalize;
	font-size: 16px;
    font-weight: 600;
}
.color_filter .price-list li {
    display: inline-flex;
}
/* ===================== Category Details --- END =====================  */
/* --------------------- Product Details Page - Reviews CSS - START --------------------- */
.modal_stars .rating{
	overflow: hidden;
	vertical-align: bottom;
	display: inline-block;
	width: auto;
	height: 30px;
}
.modal_stars .rating > input{
	opacity: 0;
	display: none;
}
.modal_stars .rating > label{
	position: relative;
	display: block;
	float: right;
	background: url('/images/icons/star-off-big.png');
	background-size: 30px 30px;
}
.modal_stars .rating > label:before{
	display: block;
	opacity: 0;
	content: '';
	width: 30px;
	height: 30px;
	background: url('/images/icons/star-on-big.png');
	background-size: 30px 30px;
	transition: opacity 0.2s linear;
}
.modal_stars .rating > label:hover:before,
.modal_stars .rating > label:hover ~ label:before,
.modal_stars .rating:not(:hover) > :checked ~ label:before{
	opacity: 1;
}
/* --------------------- Product Details Page - Reviews CSS - END --------------------- */

/*whatsapp start*/
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    border-radius: 50%;
    padding: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.floating-button a {
    display: block;
}