/* success message box  */
.success_message_box {
  position: fixed;
  bottom: 100px;
  z-index: 9999999999;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  transition: 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.success_message_box.show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease-in-out;
}

.error_message_box p {
  box-shadow: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 16px;
  background-color: red;
  padding: 14px 20px;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success_message_box p {
  box-shadow: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 16px;
  background-color: rgb(46, 125, 50);
  padding: 14px 20px;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width:540px) {
  .success_message_box {
    width: 100% !important;
    padding: 0px 20px;
    display: unset;
  }

  .error_message_box {
    width: 100% !important;
    padding: 0px 20px;
    display: unset;
  }
}

/* success message box end */

small.original_price {
  margin: 0px 3px;
}

.inner_option_validation_message {
  border: unset !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.029px;
  padding: 0px !important;
  background: unset !important;
  width: 100%;
  display: block !important;
  text-align: left !important;
}

.inner_optionset_validation_box {
  width: 100%;
  display: flex;
  padding: 10px 10px 0px 10px !important;
  align-items: center;
}

small.inner_optionset {
  color: #3B3B3B;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.029px;
}

.option_set_section {
  display: flex;
  flex-direction: column;
}

.inner_option_validation {
  display: none !important;
}

input.inner_option_set {
  display: none;
}

.inner_optionset_listing {
  margin: 0px -10px;
  flex-wrap: wrap;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
}

.single_inner_option {
  padding: 10px 10px;
  flex: 0 0 33.333%;
}

.single_inner_option label {
  border-radius: 6px;
  border: 1px solid #E4E4E4;
  background: #FFF;
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  text-align: center;
  height: 100%;
}

.option_set_section span {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.029px;
}

@media (max-width: 540px) {
  .single_inner_option {
    padding: 6px 6px;
  }
}

* {
  -web-kit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0px;

}

:root {

  /* header color theme */
  --header-bg-color: #fff;
  --location-tab-color: #3b3b3b;
  --location-tab-text-color: #3D3D3D;
  --location-tab-text-color-two: #fff;
  --location-tab-border-color: #E0E0E0;

  --header-icons-color: #3B3B3B;
  --header-cart-bg-color: #F7F7F7;
  --header-cart-text-color: #8F8F8F;

  --disable-bg-color: #A09E9E;

  /* hours bar color theme */
  --hours-bar-bg-color: #F7F7F7;
  --hours-bar-icon-color: #3B3B3B;
  --hours-bar-text-color: #000000;

  /* category tabs slider theme */
  --cat-bg-color: #fff;
  --cat-tab-text-color: #6C6C6C;
  --cat-tab-text-active-color: #3b3b3b;
  --cat-tab-border-color: #6c6c6c24;

}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.cursor-pointer {
  cursor: pointer;
}

.custom_container {
  max-width: 1140px;
  margin: 0 auto;
}

.focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: unset !important;
}

/* .popup_counter_item_parent {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    position: sticky;
    bottom: 0px;
    z-index: 9999999999999;
    background: #fff;
} */

/* ticker style */
.ticker_text_parent {
  padding: 10px 10px;
}

.ticker_text {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

/* header style  */

header {
  background-color: var(--header-bg-color);
  z-index: 999;
}

.desk_header_content {
  padding: 20px 15px;
}

.header_current_loc {
  padding-left: 50px;
}

.header_logo {
  width: 80px;
}

.header_current_loc>i {
  color: var(--location-tab-color);
  font-size: 18px;
  line-height: 20px;
  padding-right: 8px;
}

.current_loc_data span {
  color: var(--location-tab-text-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}

.current_loc_data small {
  color: var(--location-tab-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  padding-top: 5px;
  height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
}

.current_loc_data i {
  color: var(--location-tab-color);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  padding-left: 5px;
}

.header_icon i {
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  color: var(--header-icons-color);
}

.header_cart_icon {
  border-radius: 6px;
  background: var(--header-cart-bg-color);
  padding: 12px 13.25px 12px 13.55px;
  color: var(--header-cart-text-color);
  cursor: pointer;
}

.header_cart_icon i {
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.header_cart_icon small {
  font-size: 15.375px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.029px;
  padding-left: 6px;
}

.header_cart_icon.qty_increased {
  cursor: pointer;
  background: #000 ;
}

.header_cart_icon.qty_increased * {
  color: #fff;
}
.res_cart_btn{
  box-shadow: 0 -5px 5px -5px #3333336d;
  padding: 10px 19px;
  display: none;
  position: sticky;
  z-index: 999;
  left: 0px;
  bottom: 0px;
  background: #fff;
}
@media (max-width:992px) {
  .header_logo {
    width: 60px;
  }

  .desk_header_content {
    padding: 15px 15px;
  }

  .header_current_loc {
    padding-left: 16px;
  }
}

@media (max-width:768px) {

  .header_current_loc>i {
    font-size: 14px;
  }

  .current_loc_data small {
    font-size: 11px;
    line-height: 14px;
    padding-top: 3px;
    height: 33px;
    width: 110px;
    font-weight: 500;

  }

  .current_loc_data span {
    font-size: 11px;
    line-height: 12px;
  }

  .header_cart_icon i {
    font-size: 14px;
  }

  .header_cart_icon small {
    font-size: 12px;
  }

  .header_cart_icon span {
    font-size: 12px;
  }

  .header_cart_icon {
    padding: 8px 8px 8px 8px;
  }
}
@media (max-width:540px) {
  .header_cart_btn{
    display: none !important;
  }
  .res_cart_btn{
    display: flex;
  }
  .res_cart_btn a {
    background-color: #3F89E2 !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 10px;
    font-size: 15px !important;
}
  span#total_quantity_display {
    margin-left: 10px;
}
  .desk_header{
position: unset !important;
  }
  .cart_navigation.active {
    transform: translate(0%);
    transition: 0.2s;
    transition-delay: 0.2s, 0s;
    z-index: 9999;
}

  .header_cart_icon.qty_increased *{
    font-size: 20px;
  }
 



}

/* current location popup style  */

.current_loc_tabs {
  border-bottom: 1px solid var(--location-tab-border-color);
}

.current_loc_tabs a {
  top: 28px;
  left: 20px;

}

.current_loc_tabs a i {
  color: var(--location-tab-color);
  font-size: 22px;
  font-weight: 500;

}

.current_loc_tabs ul {
  border: 1px solid var(--location-tab-color);
  border-radius: 6px;
  width: 228px;
  height: 44px;
  margin: 0 auto;
}

.current_loc_tabs ul li a {
  color: var(--location-tab-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

.current_loc_tabs ul li a:hover {
  color: var(--location-tab-color);
}

.current_loc_tabs ul li:nth-child(1) a {
  border-radius: 6px 0px 0px 6px;
}

.current_loc_tabs ul li:nth-child(2) a {
  border-radius: 0px 6px 6px 0px;
}

.current_loc_tabs ul li a.active {
  color: var(--location-tab-text-color-two) !important;
  background-color: var(--location-tab-color) !important;
}

.current_loc_form_field label {
  color: var(--location-tab-color);
  padding-bottom: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.current_loc_form_field select {
  border: 1px solid var(--location-tab-border-color) !important;
  color: var(--location-tab-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  height: 40px;
  border-radius: 6px;
}

.current_loc_pop_btn {
  border-top: 1px solid var(--location-tab-border-color);
}

.current_loc_pop_btn a {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--location-tab-text-color-two) !important;
  background-color: var(--location-tab-color);
  border-radius: 6px;
  height: 48px;
}

.current_loc_pop_btn a.disabled,
a.minus_item_qty.disabled,
.minus.disabled,
.cart_navigation_checkout_btn.disabled {
  background-color: var(--disable-bg-color);
  cursor: not-allowed;
  border: unset;
  pointer-events: none;
}

@media (max-width:540px) {
  .current_loc_tabs a {
    top: 5px;
    left: 12px;
  }
}

/* banner css */
@media(max-width:768px) {
  .banner_dots {
    margin-bottom: 0px !important;
  }
}

/* hours bar css */
.hours_bar {
  background-color: var(--hours-bar-bg-color);
  padding: 17px 15px;
  margin-bottom: 20px;
}

.hours_bar_content span {
  color: var(--hours-bar-text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.hours_bar_content small {
  color: var(--hours-bar-text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  padding: 0px 10px 0px 8px;
}

.hours_bar_content i {
  color: var(--hours-bar-icon-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

/* tab slider css start */
.cat_tab_slider_main {
  background: var(--cat-bg-color);
  padding: 0px 10px;
  z-index: 99;
  margin-bottom: 20px;
  box-shadow: 0 5px 5px -5px #d7d7d78f;
}

.cat_tab_slider_parent {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 95px 1fr;
  border-bottom: 1px solid var(--cat-tab-border-color);
  gap: 0px 30px;
  align-items: center;
}
.search_text {
  display: flex;
  align-items: center;
position: relative;
z-index: 999;
}
.search_text i {
  color: #3B3B3B;
  font-size: 20px;
  padding-right: 20px;
}
.search_text span {
  font-size: 16px;
font-weight: 400;
line-height: 20px;
color:#6C6C6C;
}

.cat_tab_slider {
  scroll-behavior: smooth;
  z-index: 999;
}

.cat_tab_slider::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
  display: none;
}

.cat_tab_slider::-webkit-scrollbar-thumb {
  background-color: black;
  display: none;
}

.cat_tab_slider li {
  margin: 0px 30px 0px 0px !important;
}

.cat_tab_slider a {
  white-space: nowrap;
  color: var(--cat-tab-text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  position: relative;
}

.cat_tab_slider a.active {
  color: var(--cat-tab-text-active-color);
  font-weight: 600;
}

.cat_tab_slider a.active::before {
  content: "";
  width: 100%;
  border-bottom: 2px solid var(--cat-tab-text-active-color);
  position: absolute;
  bottom: -22px;
}

.scrolling_tabs_arrows {
  left: 0px;
  top: 0px;
}

.scrolling_tabs_arrows button {
  background: unset;
  border: unset;
}

.scrolling_tabs_arrows button i {
  color: var(--cat-tab-text-color);
  cursor: pointer;
}

.scrolling_tabs_arrows button i:hover {
  color: var(--cat-tab-text-active-color);
}
.res_cat_dropdown{
  display: none;
}

@media(max-width:992px) {}

@media(max-width:768px) {
  .cat_tab_slider_parent {
    padding: 20px 20px;
  }
}

@media(max-width:540px) {
  .res_cat_dropdown{
    display: flex;
  }
  
  .cat_tab_slider_parent {
    padding: 15px 5px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .search_text i {
    font-size: 18px;
    padding-right: 12px;
  }
  ul.nav.cat_tab_slider {
    width: 100% !important;
    position: absolute !important;
  
    content: "";
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    background: #fff;
    
    top: 55px;
    left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  
  }
.cat_tab_slider li {
  margin: 0px 0px 0px 0px !important;
  width: 100%;
}

ul.nav.cat_tab_slider a {
  border-bottom: 1px solid #000;
  width: 100%;
  display: flex;
  padding: 20px 0px;
}
ul.nav.cat_tab_slider li:last-child a {
  border-bottom:unset;
}
ul.nav.cat_tab_slider.show {
  max-height: calc(100vh - 110px);/* Adjust this value as needed */
  opacity: 1;
  visibility: visible;
}
.cat_tab_slider a.active::before {
  position: unset !important;
}
.cat_tab_slider a { 
  color: var(--cat-tab-text-color) !important;
}
  .cat_tab_slider_main {
    top: 0px;
    box-shadow: 0px 3.4187192916870117px 3.4187192916870117px 0px #5F5F5F40;

  }
}

/* tab slider css end */

/* product listing style start */
.product_listing_section {
  padding: 0px 15px;
  margin-bottom: 40px;
}

.shop_product_list_heading {
  margin: 10px 0px;
}

.shop_product_list_heading h3 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.shop_product_listing {
  margin: 0px -10px;
}

.single_product {
  padding: 10px 10px;
}

.single_product .product_card {
  display: grid;
  grid-template-columns: 1fr 150px;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
}

.single_product .product_card.no_image_box {
  grid-template-columns: 1fr;
}

.single_product .product_card figure img {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 158px !important;
  cursor: pointer;
}

.single_product .product_card .product_content {
  padding: 15px 15px;
}

.single_product .product_content .product_name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  height: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  color: #070707;
  padding: 0px;
  margin-bottom: 10px;
}

.single_product .product_content .product_description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  color: #808080;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  height: 32px;
  margin-bottom: 10px;
  padding: 0px;
}

.price_tags {
  padding-bottom: 11px;
}


.total_and_discount_price .orignal_price {
  color: #3D3D3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-left: 5px;
}

.total_and_discount_price .discount_price {
  color: #3D3D3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-decoration: line-through;
  padding-left: 6px;
  opacity: 0.5;
}

.product_cart_btn {
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.product_cart_btn a {
  border: 1px solid #000000;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.product_cart_btn span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0px 15px;
}

.product_cart_btn span.active {
  display: block;
}

.product_cart_btn a.qty_increased {
  background-color: #000;
  color: #fff;
}

.product_cart_btn a i {
  font-weight: 600;
  font-size: 14px;
}

.stock_box p {
  font-weight: 500;
  color: #b70819;
  font-size: 14px;
}

.category_section#all {
  position: absolute;
  left: 0px;
  top: 400px;
  z-index: -1111;
  height: 200px;
}

@media(max-width: 992px) {
  .category_section#all {
    top: 0px;
  }
}

@media(max-width: 1200px) {
  .single_product .product_card {
    grid-template-columns: 1fr 130px;
  }

  .total_and_discount_price .orignal_price {
    font-size: 14px;
  }

  .total_and_discount_price .discount_price {
    font-size: 14px;
  }

  .single_product .product_card .product_content {
    padding: 12px 13px;
  }
}

@media (max-width: 768px) {

  .shop_product_listing {
    margin: 0px -6px;
  }

  .single_product {
    padding: 6px 6px;
  }

}

@media (max-width: 540px) {
  .single_product .product_card {
    grid-template-columns: 1fr 120px;
  }

  .total_and_discount_price .orignal_price {
    font-size: 12px;
  }

  .total_and_discount_price .discount_price {
    font-size: 12px;
    padding-left: 4px;
  }
}

.out_of_stock_cart {
  opacity: 0.6;
}

/* product listing style end */


/* product detail popup style */

.product_detail_head {
  padding: 16px 20px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 13px;
}

.product_detail_head div small {
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.product_detail_head div h6 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.product_detail_head a i {
  color: #000000;
  font-size: 22px;
  font-weight: 500;
}

.product_popup_detail_box>figure {
  background-color: #F7F7F7;
  margin: 0px 20px 16px 20px;
}

.product_popup_description {
  padding: 0px 20px;
}

.product_popup_description p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 10px;
}

.poup_price_tags {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.popup_total_and_discount_price .poup_orignal_price {
  color: #3D3D3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.popup_total_and_discount_price .poup_discount_price {
  color: #3D3D3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-decoration: line-through;
  padding-left: 6px;
  opacity: 0.5;
}

.poup_wish_list_btn i {
  color: #3B3B3B;
  font-size: 20px;
}

@media(max-width:540px) {
  .product_detail_poup .modal-dialog {
    margin: 0px;
  }

  .product_detail_poup .modal-content {
    border: unset;
    border-radius: unset;
  }

  .product_detail_head {
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99;

  }

  .popup_counter_item_parent {
    position: sticky;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 99;
    background-color: #fff;
  }
}

/* custom radio , checkbox input css */
.optionset_accordion_parent {
  display: grid;
  gap: 20px;
  width: 100%;
}

.optionset_listing {
  display: flex;
  margin: 0px -10px;
  flex-wrap: wrap;
}

.optionset_listing li {
  padding: 10px 10px;
  flex: 0 0 33.333%;
}

.optionset_listing label {
  border-radius: 6px;
  border: 1px solid #E4E4E4;
  background: #FFF;
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  text-align: center;
  height: 100%;
}

.optionset_listing label figure {
  margin-bottom: 5px;
  background: #f5f5f5;
  height: 115px !important;
  border-radius: 12px;
}

.optionset_listing label small {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.029px;
}

.optionset_listing label span {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.029px;
}

/* .optionset_listing label:before {
  background-color:#3B3B3B;
  color: #fff;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid #3B3B3B;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
  }
  .optionset_listing input[type="radio"]:checked + label:before {
  content: "âœ“";
  background-color: #3B3B3B;
  transform: scale(1);
  }


  */

.optionset_listing input[type="radio"][id^="input"] {
  display: none;
}

.optionset_listing input[type="checkbox"][id^="Checkbox"] {
  display: none;
}

.optionset_listing input[type="checkbox"][id^="counter"] {
  display: none;
}

.optionset_listing input[type="radio"]:checked+label {
  border-color: #000000;
}

.optionset_listing input[type="checkbox"]:checked+label {
  border-color: #000000;
}

.optionset_listing .option_selected {
  border-color: #000000;
}

@media(max-width:540px) {
  .optionset_listing li {
    padding: 6px 6px;
  }
}
@media(max-width:400px) {
  .optionset_listing label figure {
    height: 80px;
}
}
/* option set accordion design */

.optionset_header_btn {
  border-radius: 6px;
  background: #F7F7F7 !important;
  padding: 13px 10px !important;
  box-shadow: unset !important;
}

.optionset_header_data span {
  color: #3B3B3B;
  font-size: 15.375px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.029px;
}

.optionset_header_data small {
  color: #3B3B3B;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.029px;
  padding-top: 4px;
}

.accordion-button:not(.collapsed) i {
  transform: rotate(-180deg);
  transition: transform 0.4s ease;
}

.accordion-button::after {
  display: none;
}

/* popup counter button css */
.popup_counter_item_parent {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  box-shadow: 0 -5px 5px -5px #00000040;
}

.popup_counter_item_btn {
  height: 45px;
  border: 1px solid #E3E3E3;
  padding: 10px 10px;
  border-radius: 4px;
}

.popup_counter_item_btn a {
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background-color: #000;
}

.popup_counter_item_btn a i {
  font-weight: 600;
}

.popup_counter_item_btn span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.popup_item_add_btn {
  border-radius: 6px;
  border: 1px solid #3B3B3B;
  height: 45px;
  background: #282828;
  color: #FFF !important;
  cursor: pointer;
  text-align: center;
  font-size: 15.375px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.029px;
}

@media(max-width:540px) {
  .popup_counter_item_parent {
    grid-template-columns: 115px 1fr;
  }

  .popup_item_add_btn {
    font-size: 14px;
  }

  .popup_item_add_btn small {
    font-size: 14px;
  }
}

/* footer css */
footer {
  padding: 15px 15px;
  background-color: #000000;
  margin-top: auto;
}

.footer_copyright span,
.footer_copyright span a {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media(max-width:540px) {
  .footer_copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_copyright span:first-child {
    padding-bottom: 8px;
  }
}



.cart_navigation {
  position: fixed;
  right: 0px;
  background: #ffffff;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  height: 100dvh;
  width: 500px;
  z-index: 999;
  top: 0px;
  display: flex;
  flex-direction: column;
  transform: translate(100%);
  transition: 0.2s;
  justify-content: space-between;
}

.cart_navigation.active {
  transform: translate(0%);
  transition: 0.2s;
  transition-delay: 0.2s, 0s;
}

.cart_navigation_heading {
  padding: 24px 15px;
}

.cart_navigation_close_btn {
  color: #000000;
  font-size: 24px;
  margin-right: 24px;
}

.cart_navigation_heading h3 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.cart_navigation_header_detail {
  background: #F7F7F7;
  padding: 15px 15px;
}

.cart_navigation_header_detail span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.cart_navigation_header_detail strong {
  color: #212121;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 18px;
}

.cart_navigation_footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid #E3E3E3;
  padding: 20px 15px;
}

.cart_navigation_item_btn {
  color: #3B3B3B;
  font-size: 15.375px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.029px;
  border-radius: 6px;
  border: 1px solid rgba(59, 59, 59, 0.30);
  background: #FFF;
  height: 45px;
  cursor: pointer;
}

.cart_navigation_checkout_btn {
  border-radius: 6px;
  border: 1px solid #282828;
  background: #282828;
  color: #FFF !important;
  font-size: 15.375px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.029px;
  height: 45px;
  cursor: pointer;
}

.cart_navigation_content {
  display: grid;
  width: 100%;
  overflow: auto;
}

.cart_navigation_item_list {
  display: block;
  overflow: auto;
  padding: 24px 15px 0px 15px;
  height: calc(100dvh - 14.5em);
  margin-bottom: 20px;

}

.cart_navigation_item_list::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.cart_navigation_item_list::-webkit-scrollbar-track {
  background: #f1f1f1;

}

/* Handle */
.cart_navigation_item_list::-webkit-scrollbar-thumb {
  background: #FCEEDD;
}

/* Handle on hover */
.cart_navigation_item_list::-webkit-scrollbar-thumb:hover {
  background: #FCEEDD;
}

.cart_navigation_single_item {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 20px;
  display: flex;
  width: 100%;
  margin-bottom: 20px;

}

.cart_navigation_single_item:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0px;
}

.cart_navigation_single_item figure {
  width: 74px;
  height: 74px;
  margin: 0px;
  min-width: 74px !important;
  max-width: 74px !important;
  position: relative;
}

.lable_validation {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.029px;
  padding-top: 4px;
}

.cart_navigation_single_item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #F9F7F1;
  border-radius: 2px;
}

.cart_navigation_single_item_detail {
  padding-left: 10px;
}

.cart_navigation_single_item_detail h3 {
  color: #212121;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 5px;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.cart_navigation_single_item_detail p {
  color: rgba(0, 0, 0, 0.70);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  margin-bottom: 20px;
}


.cart_navigation_item_price strong {
  color: #212121;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  padding-bottom: 2px;
}

.cart_navigation_item_price span {
  color: #808080;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-decoration: line-through;
}

.cart_navigation_item_price small {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  margin: 0px;
  margin-bottom: 5px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #282828;
  background: #282828;
}

.cart_navigation_qty_plus_minu_btns a {
  border-radius: 4px;
  width: 30px;
  height: 30px;
  color: #fff !important;
  background-color: #000;
}

.cart_navigation_qty_plus_minu_btns a i {
  font-weight: 600;
}

.cart_navigation_qty_plus_minu_btns span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0px 15px;
}

.cart_navigation_del_btns {
  margin-left: 8px;
}

.cart_navigation_del_btns a {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid #D9D9D9;
}

.cart_navigation_del_btns a i {
  color: #FF0238;
  font-size: 16px;
  font-weight: 900;
  line-height: 18px;
}


@media (max-width: 540px) {
  .cart_navigation_heading {
    padding: 15px 10px;
  }

  .cart_navigation_item_list {
    height: calc(100dvh - 13.5em);
  }

  .cart_navigation {
    width: 310px;
  }

  .cart_navigation_single_item figure {
    width: 40px;
    height: 40px;
    min-width: 40px !important;
    max-width: 40px !important;
  }

  .cart_navigation_item_price small {
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
  }

  .cart_navigation_item_price strong {
    font-size: 12px;
  }

  .cart_navigation_item_price span {
    font-size: 10px;
  }

  .cart_navigation_item_price {
    min-width: 85px !important;
  }

  .drag_btn_main {
    gap: 10px 10px;
  }
}

.hide {
  display: none !important;
}

.selected {
  border: 2px solid #000 !important;
}

input.option_set_validation {
  display: none;
}


/* 404 page css */
section.error_page_main {
  width: 100%;
  background: #F6F6F6;
}

.error_page_inner_section {
  height: 100vh;
  background: #F6F6F6;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.error_page_inner_section h1 {
  font-size: 250px;
  font-weight: 800;
  line-height: 302.56px;
}

.error_page_inner_section h2 {
  font-size: 24px;
  line-height: 30.24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.inner_grid_section {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 30px;
}

.error_page_content_section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.error_page_content_section p {
  font-size: 16px !important;
  text-align: center;
}

.error_page_image_section img {
  width: 100%;
  max-width: 100%;
}

@media (max-width:992px) {
  .inner_grid_section {
    grid-template-columns: 1fr;

  }

  .error_page_inner_section h1 {
    font-size: 200px;
    line-height: 220.56px;
  }

  .error_page_inner_section h2 {
    font-size: 18px;
    line-height: 18.24px;
    margin-bottom: 15px;
  }

  .error_page_content_section p {
    font-size: 12px !important;
  }

  .error_page_image_section img {
    width: 100%;
    max-width: 100%;
  }

  @media (max-width:768px) {
    .error_page_inner_section h1 {
      font-size: 140px;
      line-height: 177.56px;
    }

  }


}

/* 404 page css end */

/* Search styling */
.search_box_section{
opacity: 0;
visibility: hidden;
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
transition: width 0.3s ease-in-out;
overflow: hidden;
height: 100%;
z-index: 9999;
}

.search_box_section.active{
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.search_box_section input{
  width: 100%;
  height: 100%;
  padding: 0px 38px;
  border: unset;
  font-size: 16px;
  color: #6C6C6C;
  font-weight: 400;
}
.search_box_section i{
  position: absolute;
  font-size: 20px;
}
.search_box_section i.searchIcon{
  left: 10px;
  top: 23px;
}
.search_box_section i.closeIcon{
  right: 10px;
  top: 22px;
  color: #6C6C6C;
  border: 1px solid #6C6C6C;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.search_box_section input:focus,
.search_box_section input:focus-visible {
  outline: unset;
}


@media (max-width:540px) {
  .scrolling_tabs_arrows {
    display: none !important;
}
.search_box_section i.closeIcon{
  top: 18px;
}
.search_box_section i.searchIcon {
  top: 18px;
}



}

.no_product_found_box {
  display: none;
  width: 100%;
  padding: 50px 15px;
}

.no_product_found_section img {
  margin-bottom: 30px;
}

.no_product_found_section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.no_product_found_section h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 15px;
}

.no_product_found_section p {
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
}

li.search_box {
  margin-right: 25px !important;
}

/* Search styling end*/

/* li.search_box {
  position: absolute;
  z-index: 99999999;
} */


/* image popup */
img.popup_imge {
  width: 100% !important;
  height: auto !important;
}

div#images_pop button.close span {
  height: 100%;
  padding: 0px !important;
  font-size: 22px !important;
}

div#images_pop .modal-header a {
  position: absolute;
  z-index: 9999;
  right: 15px !important;
  top: 15px;
  font-size: 30px !important;
  color: #000;
  border: unset !important;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

}

div#images_pop .modal-dialog {
  width: 100%;
  max-width: 600px !important;
}

div#images_pop .modal-dialog {
  width: 100%;
  max-width: 500px !important;
}

div#images_pop .modal-content {
  position: relative;
}

div#images_pop .modal-header {
  height: 0px !important;
  border: unset !important;
  padding: 0px !important;
}

div#images_pop .modal-header a i {
  font-size: 22px;
  font-weight: 700;
}

.modal-body {
  padding: 0px !important;
}


/* empty cart  */

.no_item_exist {
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no_item_exist p {
  font-size: 16px;
  color: #0000006e;
  margin-bottom: 6px;
}

/* empty cart  */

.Not_allowed{
  pointer-events: none;
}