
@import url('../css/color.css');
@import url('../css/button.css');
@import url('../css/top-navbar.css');
@import url('../css/footer.css');
@import url('../css/rangeslider.css');
@import url('../css/policies.css');
@import url('../css/products.css');

*
{
    box-sizing: border-box;    
}
html
{
  scroll-behavior: smooth;
}
body
{
    font-family: var(--primary_font);
    overflow-x: hidden;
    background: #fff;
}

/* 
  .container, .container-lg, .container-md, .container-sm, .container-xl 
  {
      max-width: 90%;
  } */


 
  .bkg_card {
      background: #fff;
      padding: 20px;
      margin-top: -50px;
      border-radius: 10px;
      box-shadow: 0px 0px 20px rgb(0 0 0 / 4%);
  }




.light
{
  color: var(--color_white) !important;
}
a
{
   text-decoration: none !important;
}
.text_primary
{
  color: var(--color_primary);
}

.section_padding
{
  padding: 60px 15px;
}

.title_h2 {
  font-weight: 600;
  font-size: 30px;
  text-align: left;
}
.subtitle
{
  margin-bottom: 0;
  color: var(--color_arrow);
  text-align: left;
}

.banner-section img
{
  width: 100%;
}

.bg_card {
  width: 100%;
  min-height: auto;
  background: #fff;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 6%);
  /* border-radius: 10px; */
 /* padding: 6px; */
 border-radius: 15px;
}


.bg_card img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  border-radius: 15px;

} 



.nmk_mt_01
{
  margin-top: -50px;
}



.action_btn
{
  display: flex;
  justify-content: end;
}

.categorylist
{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.catlink {
    width: 20%;
}
.category_card {
  /* width: 20%; */
  height: 180px;
  /* padding: 0 10px; */
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  border-radius: 10px;
} 

.category_card img
{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.category_card h4 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color_white);
  font-weight: 500;
  font-size: 22px;
  transition: all .4s ease-in-out;
  text-align: center;
  width: 80%;
}

.category_card:before {
  content: '';
  width: calc(100%);
  height: 100%;
  background: rgba(0,0,0,.3);
  bottom: -0;
  left: 50%;
  position: absolute;
  padding: 0 10px !important;
  transform: translateX(-50%);
  transition: all .4s ease-in-out;
  border-radius: 10px;
}

.category_card:hover:before
{
    /* background: rgba(0,0,0,.6); */
    background: var(--color_primary);
    opacity: .9;
}

.category_card:hover h4
{
    color: var(--color_white);
    bottom: 40%;
    
}

@media (max-width:1199px)
{
  .category_card {
      width: 100%;
  }
  .container, .container-md, .container-sm {
    max-width: 96%;
  }
  .category_card h4
  {
    font-size: 18px;
  }
}

@media (max-width:991px)
{
  .category_card {
      width: 100%;
  }
  .container, .container-md, .container-sm {
    max-width: 96%;
  }
  .category_card h4
  {
    font-size: 16px;
  }
}

@media (max-width:767px)
{
  .category_card {
      width: 100%;
  }
  .category_card
  {
    height: 150px;
  }
  .category_card,
  .category_card:before,
  .category_card img {
   border-radius: 10px;
  }
  
}


/** Embergency***/
.emergency_service
{
    background-color: var(--color_orange);
}

.emergency_img_card img {
  width: 100%;
}

.emergency_img_card {
  width: 70%;
  height: 150px;
}

.emergency_content_card {
  padding: 10px 30px;
  color: #a97f14;
}

.emergency_content_card h2 span {
    color: var(--color_black) !important;
}
.emergency_content_card p {
  color: var(--color_menu) !important;
}



/***** Product Card****/

.product_card {
  border: 1px solid var(--color_arrow);
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 20px;
}

.product_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product_thumbnail {
  width: 100%;
  background: var(--color_card_bg);
  padding: 10px;
  text-align: center;
  height: 250px;
  border-radius: 8px;
}
.product_content {
  padding: 15px;
}
.product_title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color_navy);
  display: -webkit-inline-box;
  overflow: hidden;
  -webkit-line-clamp:1;
  -webkit-box-orient: vertical;
}

.product_rating {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 6px;
  color: var(--color_arrow);
}
.rated
{
  color: var(--color_rating);
}


.product_brand,
.product_seller {
  font-size: 14px;
  color: var(--color_menu);
}
.product_price {
  font-size: 20px;
  font-weight: 700;

}
.product_delivery
{
  font-size: 13px;
  color: var(--color_rating);
}

.product_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.product_card_btn {
  height: 35px;
  background: var(--color_primary);
  line-height: 35px;
  text-align: center;
  border-radius: 30px;
  color: var(--color_white);
  padding: 0px 11px;
}
.sm_visible
{
  display: flex;
  align-items: center;
  justify-content: center;
}
.xs_visible
{
    display: none;
}
@media (max-width:1199px)
{
  .product_thumbnail {
      height: 150px;
      border-radius:5px;
  }
}



@media (max-width:991px)
{
  .product_thumbnail {
      height: 150px;
      border-radius:5px;
  }
}


@media (max-width:767px)
{
  .product_card {
    margin-bottom: 25px;
}
  .product_thumbnail {
      height: 150px;
      border-radius:5px;
  }
  .product_content {
    padding: 3px;
      text-align: left;
  }
  .product_delivery,.product_brand, .product_seller {
      font-size: 12px;
  }
  .product_title {
      font-size: 14px;
      -webkit-line-clamp: 1;
  }
  .product_rating {
    font-size: 10px;
      gap: 2px;
  }
  .product_price {
      font-size: 18px;
  }
  .product_card_btn {
    height: 30px;
    line-height: 30px;
    width: 100%;
    margin-top: 10px;
    background: var(--color_navy);
    border-radius: 45px;
    padding: 0px 10px;
    font-size: 13px;
  }

  .product_foot {
    flex-wrap: wrap;
  }
  .xs_visible
  {
      display: block;
  }
}

/*** WHY ***/



.why_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  margin-top: 40px;
  gap:15px;
}

/* .why_list li {
  padding-right: 30px;
  opacity: 0.5;
  transition: all .4s ease-in-out;
} */

.why_list li {
  padding-right: 30px;
  opacity: 0.5;
  transition: all .4s ease-in-out;
  padding: 17px;
  background: #fdfdfd;
  width: 19%;
  min-height: 130px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid #dfdfdf;
}
.why_list li:hover {
  opacity: 1;
}

.why_icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.why_icon img {
  width: 100%;
  height: 100%;
}
.why_list li p
{
  font-size: 16px;
    text-transform: uppercase;
    font-weight: 700; 
    margin-bottom: 0;
}



/** Breadcrum**/

.breadcrum {
  padding: 10px 0;
}
.breadcrum .breadcrumb
{
  margin-bottom: 0;
}

.breadcrumb-item a
{
  color: var(--color_menu);
}

.breadcrumb-item
{
  color: var(--color_menu);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
}
.breadcrumb-item.active
{
  color: var(--color_primary);
}



/** Filters **/

.filter_card {
  /* border: 1px solid rgb(240, 240, 240); */
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 15px;
}
.filter_header
{
  border-bottom: 1px solid rgb(240, 240, 240);
  margin-bottom: 5px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;

}

.filter_header h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color_navy);
  margin-bottom: 0;;
}

.filter_search {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: var(--color_lightgray);
  text-align: center;
  line-height: 30px;
  font-size: 15px;
  cursor: pointer;
} 

.searchbox,
.cat_search {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: none;
  transition: all .6s ease-in-out;
}

.searchbox input,
.cat_search input  {
  width: 100%;
  min-height: 30px;
  border-radius: 20px;
  border: 0;
  background: var( --color_lightgray);
  transition: all .6s ease-in-out;
  outline: 0 !important;
  padding: 0 10px;
  box-shadow: none !important;
  font-size: 14px;
}
.searchbox .cross_icon ,
.cat_search .cross_icon{
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color_navy);
  cursor: pointer;
  transition: all .6s ease-in-out;
}

.showsearchinput
{
  display: block;
  transition: all .6s ease-in-out;
}

.filter_body {
  max-height: 190px;
  overflow-y: auto;
  padding-bottom: 10px;
}
.filter_body::-webkit-scrollbar
{
  display: none;
}

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

.filter_body {
    max-height: 190px;
    overflow-y: auto;
    padding-bottom: 10px;
}
.filter_body li{
  font-size: 14px;
}
.filter_body li , .filter_body li  a{
  font-size: 14px;
  padding: 5px 0;
  color: var(--color_menu);
  cursor: pointer;
}
.filter_body li  a
{
  padding-left: 12px;
}

.filter_body li span {
  font-size: 12px;
  color: var(--color_subgray)
}
.parent_categories li
{
  position: relative;

}
.sub_categories, 
.child_categories
{
  margin-left: 10px !important;
}
.sub_categories li  {
  position: relative;
  display: none;
}

.child_categories li {
 
  position: relative;
  display: none;
}

.parent_categories li:before ,
.sub_categories li:before 
 {
  content: '+';
  position: absolute;
  top: 4px;
}
li.open_parent:before,
li.open_sublist:before
{
  content: '-';
  position: absolute;
  top: 4px;
}
.filter_body .show
{
  display: block;
}
.child_listitem:before
{
  content: '' !important;
}
.li-group {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: normal;
}
.li-group p
{
  margin-bottom: 0;
  line-height: normal;
}
.li-group input
{
  width: 15px;
  height: 15px;
}

/**** Product list**/

.sortby select {
  outline: 0;
  min-width: 190px;
  height: 40px;
  background: #FBFBFB;
  border: 0.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  padding: 0 10px;
}

.sortby {
  position: relative;
  width: 200px;
}
.applied_filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 15px;
  width: calc(100% - 200px);
}


.nmk_badge em, .nmk_badge svg {
  line-height: normal;
  margin-top: 3px;
}

.nmk_badge {
  background: var(--color_lightgray);
  padding: 3px 15px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
}
.products_view_head
{
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

/***** CART CSS******/

.page_title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color_navy);
}
.cartlist_card {
  display: flex;
  gap: 20px;
  border: 1px solid var(--color_cartbox);
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
}

.cartlist_img {
  width: 150px;
  height: 160px;
  background: var(--color_lightgray);
  text-align: center;
  line-height: 160px;
}

.cartlist_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.remove_cart_item {
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--color_lightgray);
  text-align: center;
  line-height: 26px;
  right: 10px;
  border-radius: 35px;
  color: var(--color_navy);
}

.cartproduct_title {
  font-weight: 500;
  color: var(--color_navy);
  font-size: 16px;
}

.cartproduct_category {
  font-size: 14px;
  color: var(--color_gray);
  font-weight: 300;
}

.cartproduct_vendor {
  font-size: 14px;
  color: var(--color_gray);
  font-weight: 300;
}
.cartproduct_price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.offer_price,
.base_price {
  margin: 0;
}
.base_price
{
  color: var(--color_gray);
  font-weight: 300;
  text-decoration: line-through;
}
.offer_price
{
  font-weight: 600;
}


span {cursor:pointer; }

.number {
  display: flex;
  align-items: center;
  margin-top: 10px;
} 

.minus, .plus {
  width: 24px;
  height: 24px;
  background: #ffeaea;
  border-radius: 82px;
  padding: 0px;
  border: 0px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 26px;
  font-size: 13px;
  color: var(--color_primary);
}
input{
  height:34px;
  width: 50px;
  text-align: center;
  font-size: 18px;
  border:1px solid transparent;
  border-radius:4px;
  display: inline-block;
  outline: 0 !important;
  vertical-align: middle;
}

.row.wellcome-offer h3 {
    color: #c2183d;
    text-transform: uppercase;
    margin: 10px 0px;
    font-weight: 700;
}
.row.wellcome-offer form {
    text-align: center;
}
/* .offer_message { */
  /* background: #fff1ec; */
  /* padding: 12px 12px 12px 63px; */
  /* font-size: 12px; */
  /* position: relative; */
  /* border-radius: 4px; */
  /* line-height: 16px; */
/* } */
/* .offer_message:before { */
  /* content: ''; */
  /* width: 9px; */
  /* height: 100%; */
  /* background: var(--color_primary); */
  /* left: 30px; */
  /* top: 0px; */
  /* position: absolute; */
/* } */



/* .offer_code { */
  /* text-transform: uppercase; */
  /* font-size: 20px; */
  /* letter-spacing: 2px; */
  /* font-family: 'Lato'; */
  /* color: var(--color_primary); */
  /* opacity: 0.7; */
  /* border: 1px dashed; */
  /* padding: 10px; */
  /* display: inline-block; */

  /* margin-bottom: 10px; */
/* } */
.offer_message p {
  margin-bottom: 10px;
  font-size: 14px;
}

.coupon_box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
  background: #f5f5f69c;
  padding: 15px;
}
.coupon_icon {
  font-size: 25px;
  color: #7f7f7f;
  width: 30px;
  text-align: center;
}
/* .coupon_input */
/* { */
  /* width: calc(100% - 30px ); */
  /* position: relative; */
/* } */
.coupon_input input {
  width: 100%;
  height: 50px;
  position: relative;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--color_navy);
  padding: 0 10px;
} 
/* .coupon_input button { */
  /* position: absolute; */
  /* background: transparent; */
  /* color: var(--color_primary); */
  /* border: 1px solid var(--color_primary); */
  /* padding: 0 20px; */
  /* height: 40px; */
  /* line-height: 40px;; */
  /* font-size: 15px; */
  /* text-transform: uppercase; */
  /* right: 7px; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
/* } */

.label_text {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.dividerline {
  width: 100%;
  height: 1px;
  background: var(--color_lightgray);
  margin: 15px 0;
}


.subtotal,.coupon_discount,
.delivery_charges, .gst_charges , .total_amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.subtotal p, .coupon_discount p, .delivery_charges p, .gst_charges p , .total_amount p{
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 4px;
}
.gst_charges small {
  display: block;
  font-size: 11px;
}
.total_amount p
{
  font-weight: 600 !important;
  color: var(--color_primary);
}
.coupon_discount {
  color: #3aaf3a;
}
.address_action
{
    position: absolute;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 10px;  
    top: 20px;
}
.remove_address, .edit_address {
  
  width: 26px;
  height: 26px;
  background: var(--color_lightgray);
  text-align: center;
  line-height: 26px;
  
  border-radius: 35px;
  color: var(--color_gray);
}
.edit_address
{
  color: var(-- );
}

.est_delivery_box
{
  font-size: 13px;;
  margin-top: 10px;
  color: var(--color_arrow);
}
.est_delivery_box strong
{

  color: var(--color_menu);
}

.foraddress_list
{
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}


.foraddress_card {
  position: relative;
}
.foraddress_box {
  height: 32px;
  border: 1px solid var(--color_arrow);
  padding: 0 15px;
  display: inline-block;
  font-size: 13px;
  line-height: 30px;
  cursor: pointer;
}
.foraddress_card input,
.primary_checkbox input{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.foraddress_card input:checked + .foraddress_box
{
  background: #c112391c;
  border-color: var(--color_primary);
  color: var(--color_primary);
  font-weight: 500;
}

.primary_checkbox
{
  position: relative;
}
.nmk_custom_checkboox {
  width: 22px;
  height: 22px;
  background: transparent;
  text-align: center;
  line-height: 22px;
  color: transparent;
  border: 1px solid var(--color_arrow);
}

.primary_checkbox input:checked + .nmk_custom_checkboox
{
  background: var(--color_navy);
  border-color: var(--color_navy);
  color: var(--color_white);
}
.primary_addr_label
{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

/****** Address Card ******/

.address_formbox {
  padding: 20px;
  border: 1px solid var(--color_light_gray);
}



.address_main_title {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}


.address_card {
  display: flex;
  gap: 15px;
  border: 1px solid var(--color_cartbox);
  padding: 15px 20px;
  margin-bottom: 10px;
  position: relative;
}
.address_card.default_address {
  border-color: #c1123952;
  border-width: 2px;
}
.address_card input {
  height: 20px;
  width: 20px;
  margin-top: 4px;
}

.address_title {
  font-weight: 600;
  color: var(--color_navy);
  font-size: 15px;
}

.address_desc {
  font-size: 14px;
  color: var(--color_gray);
  font-weight: 400;
  margin-bottom: 10px;
}
.address_desc p
{
  margin-bottom: 0;
}
.address_call {
  font-size: 13px;
  color: var(--color_gray);
  font-weight: 400;
}
.address_call strong
{
  color: var(--color_navy);
}
.new_address {
  padding: 10px;
  color: var(--color_primary);
  border: 1px dashed var(--color_gray);
  text-align: center;
  background: #f6f6f6;
  margin-top: 15px;
  cursor: pointer;
}

/****** MODALS MD *****/

.modal_title
{
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 15px;
   color: var(--color_primary);
}






/**** ABOUT ***/
.nmk_card {
  background: #fff;
  padding: 50px 50px;
  border-radius: 20px;
  margin-bottom: 40px;
  margin-top: 20px;
 
}
.about-section h4, .nmk_card .title_h2
{
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600 ;
  margin-bottom: 10px;   
}

.about-section p
{
  font-size: 14px;
  color: var(--color_navy); 
  line-height: 25px; 
  margin-bottom: 40px; 
}
.nmk_card .why_list li {
  width: 18%;
}
.nmk_card .why_list li p {
  font-size: 13px;
}


.aboutfeature {
  width: 75%;
  margin: 0 auto;
}

.aboutfeature img {
  width: 100%;
}


.aboutlogo {
  width: 320px;
  margin: 0 auto;
}

.aboutlogo img {
  width: 100%;
}







/******Contact us ****/
.contact_spacing
{
  padding-top: 80px;
}
.gray_bg {
  background: var(--graycolor);
  padding-bottom: 100px;
}
.contact-section h3
{
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600 ;
  margin-bottom: 10px;   
  text-align: center;
}
.contact-section h3 span
{
 color: var(--color_primary);
}
.contact-section p
{
  font-size: 14px;
  color: var(--color_navy); 
  line-height: 25px; 
  margin-bottom: 40px; 
  text-align: center;
}
.contact_form_card
{
  background: var(--color_white);
   box-shadow: 0px 10px 35px rgb(0 0 0 / 4%);
    margin-top: -170px;
    position: relative;
    /* margin-bottom: 60px; */
    padding: 50px;
    border-radius: 10px;
}



.contactuspolicy
{
  font-size: 12px !important;;
  color: var(--color_arrow) !important;
}
.contactuspolicy a
{
  color: var(--color_navy);
}

.contact_card {
  text-align: center;
  /* margin-bottom: 100px; */
}

.contact_icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  background: rgba(4,4,56,6%);
  /* background: var(--color_white); */
  border-radius: 16px;
  line-height: 64px;
  margin-bottom: 25px;
}

.contact_icon img {
  border: 1px dashed rgba(4,4,56,.3);
}
.contact_card_data h3 {
  color: var(--color_navy);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.contact_card_data p {
  font-weight: 400 !important;
  font-size: 14px;
  color: var(--color_greengray);
  padding: 0px 40px;
  margin-bottom: 15px;
}
.contact_card_data h5, 
.contact_card_data h5 a {
  font-weight: bold !important;
  font-size: 14px;
  color: var(--color_navy);
  margin-bottom: 20px;
}
.priceaction,.brandaction
{
  font-size: 12px;
  font-weight: 600;
  color: var(--color_primary);
}


/**USER DASHBOARD**/

.userac_sidebar {
  background: #f8f8f8;
 
  border-radius: 5px;
  margin-bottom: 50px;
}
.head_box {
  background: #e5e5e5;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
 
  text-align: center;
  min-height: 80px;
}
.userac_profileimg {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: -50px ;
}
.userac_profiledata
{
  text-align: center;
  padding: 15px;
}
.userac_profiledata h4
{
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.userac_profiledata p
{
  font-size: 13px;
  text-transform: capitalize;
  padding-bottom: 20px;
 
  border-bottom: 1px solid rgb(207, 207, 207);
   margin-bottom: 0px;
}

.userac__sidebar_body {
  margin: 0;
  padding: 0px;
  list-style: none;
  padding-bottom: 20px;
}

.userac__sidebar_body li a {
  color: #4a5568;
  font-weight: 400;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-left: 3px solid transparent;

}
.userac__sidebar_body li a em
{
  width: 30px;
}
.userac__sidebar_body li a span
{
  width: calc(100% - 30px);
  line-height: normal;
}
.cd_active {
  background: #c1123912;
  border-left: 3px solid  #c11239 !important;
}
.cd_active span, .cd_active em, .cd_active svg  {
  color: #c11239;
}
.userac_wrapper
{
  background: #f8f8f8;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 20px;
}

.listitems
{
  display: flex;
  gap: 20px;
}

.listitems b
{
  width: 15%;
  font-size: 15px;
  font-weight: 400;
  color: #4a5568;
}
.listitems p
{
  width: calc(100% - 15%);
  font-size: 15px;
  font-weight: 400;
}
.profile_card
{
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}
.profile_card_title
{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #4a5568; 
}

.cd_title
{
  font-weight: 700;
  color: #222;
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}
.cd_paragraph
{
  font-size: 14px;
  font-weight: 400;
  color: #4a5568;
}

.share-box {
    width: 350px;
    height: 150px;
    display: none;
}

.share-box.show {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
/* variation div scroler */

.variation_box {
    position: relative;
    /* z-index: 1; */
}

.vector-icon-left {
    position: absolute;
    top: 0%;
    width: 50px;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
}
.vector-icon-right {
    position: absolute;
    top: 0%;
    right: 0;
    width: 50px;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
}

.arrow-left {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: #fff;
    border-radius: 100%;
}

.arrow-right {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: #fff;
    border-radius: 100%;
}

/* .variation_box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(arrow-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}
.variation_box::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(arrow-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.variation_box:hover::before,
.variation_box:hover::after {
    opacity: 1;
} */

/******COMMON MEDIA QUERY ****/


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



@media (max-width:767px)
{
  .section_padding {
      padding: 30px 6px;
  }

  .nmk_mt_01 {
    margin-top: 10px;
  }
  /****Category Section ***/
  .subtitle {
      font-size: 14px;
      line-height: normal;
  }
  .title_h2 {
      font-weight: 700;
      font-size: 21px;
  }
  .emergency_img_card {
    width: 100%;
    height: auto;
    margin-bottom: -60px;
}
  .product-section {
    margin-top: 70px;
  }
  .emergency_content_card {
    padding: 10px 15px;
    color: #a97f14;
  }
  .emergency_content_card .title_h2 {
      font-weight: 800;
      font-size: 24px;
  }
  .category_card h4 {
      font-weight: 500;
      font-size: 15px;
  }
  .category_card:before 
  {
    background: rgba(0,0,0,.4);
  }

  .why-section .title_h2 {
      font-weight: 800;
      font-size: 25px;
  }
  .why_list li {
    width: 33%;
    min-height: 130px;
}
}


@media (max-width:576px)
  {
    .why_list li {
      width: 47%;
      min-height: 104px;
  }
  .why_list li p {
    font-size: 12px;
  }
  .why_icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .product_col:nth-child(even) {
    padding-left: 5px;
  }
  .product_col:nth-child(odd) {
    padding-right: 5px;
  }
  .emergency_img_card img {
    width: 90%;
  }

  /*******Care Page*****/
  .cartlist_card 
  {      
      gap: 10px;      
      padding: 4px;
      margin-bottom: 10px;
  }
  .cartlist_img 
  {
      width: 90px;
      height: 130px;
      line-height: 130px;
  }
  .cartproduct_category 
  {
      font-size: 14px;
  }
  .cartproduct_title 
  {   
      font-size: 14px;
      padding-right: 36px;
  }
  .cartproduct_vendor 
  {
      font-size: 13px;
  }
  .number input {
    height: 34px;
    width: 33px;
    font-size: 16px;
  }
  .cartproduct_price {
      gap: 10px;
      margin-top: 6px;
      font-size: 14px;
  }
  .minus, .plus {
    width: 22px;
    height: 22px;
    line-height: 22px;
  }
  .cartproduct_category
  {
    display: none;

  }
  .cart_section .bkg_card {
    padding: 12px;
  }
  .coupon_input button {
      height: 34px;
      line-height: 34px;
  }
  .coupon_box {
      padding: 5px;
  }
  .coupon_icon {
    height: 25px;
  }
  .brand_nav {
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .help_link {
      text-align: center;
  }
  /** checkout page****/
  .address_desc {
      font-size: 13px;
      margin-top: 10px;
  }
  .address_action {
      top: 15px;
  }
}



/* ========================================================================
  Responsive css
 ========================================================================== */

.carousel-item img {
    height: 570px;
    object-fit: cover;
}
.slider_nmk_content {
   height: 275px;
    padding: 20px;
}
p.subtitle {
    margin-bottom: 25px;
}
	a.top {
    padding: 0px;
}
.slider_nmk_images {
    /* width: 150px; */
    /* height: 150px; */
    overflow: hidden;
    /* margin: 20px auto; */
}
.slider_nmk_images img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
}
@media only screen and (min-width: 1600px) {
.carousel-item img {
    height: 450px;
}
}
@media only screen and (max-width: 425px) {

.slider_nmk_content {
    height: 300px;
}
.closesidemenu {
    padding: 5px;
}

}


@media (min-width: 426px) and (max-width: 580px) {
.carousel-item img {
    height: 280px;
}
.slider_nmk_content {
    height: 270px;
    padding: 20px;
}
.closesidemenu {
    padding: 5px;
}
}
@media (min-width: 581px) and (max-width: 768px) {
.carousel-item img {
    height: 320px;
}
.slider_nmk_content {
    height: 270px;
    padding: 20px;
}
.closesidemenu {
    padding: 5px;
}
}
@media (min-width: 769px) and (max-width: 1040px) {
.carousel-item img {
    height: 420px;
}
.slider_nmk_content {
    height: 270px;
    padding: 20px;
}
.closesidemenu {
    padding: 5px;
}
}