@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@100;400;700&display=swap");
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background-color: #fff;
}

section {
  padding: 0px;
  font-family: "Inter", sans-serif;
}

.orderID {
  padding: 12px;
  color: #001967;
  font-size: 14px;
  font-weight: normal;
  border: 1px solid #9AC1FB;
  border-radius: 6px;
}

ol.order-track {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s height 0.3s;
  transform-origin: top center;
  font-family: "Inter", sans-serif;
  counter-reset: section;
}

li.order-track-step {
  display: flex;
  min-height: 70px;
  align-items: stretch;
  position: relative;
}
li.order-track-step::before {
  counter-increment: section;
  content: "" counters(section, ".") "";
  color: #979797;
  position: absolute;
  z-index: 9;
  background: #fff;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  border-radius: 50%;
  border: 3px solid #fff;
  outline: 1px solid #979797;
}
li.order-track-step:last-child {
  height: 70px;
}
li.order-track-step:last-child .order-track-status span:last-of-type {
  display: none;
}
li.order-track-step .order-track-text {
  color: #666666;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 6px;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 30px;
}
li.order-track-step .order-track-text .flxCol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
li.order-track-step .order-track-status {
  margin-right: 1rem;
  position: relative;
}
li.order-track-step .order-track-status-dot {
  display: block;
  width: 28px;
  height: 29px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
li.order-track-step .order-track-status-dot:before {
  content: "\f010";
  font-family: "icomoon" !important;
}
li.order-track-step.complete::after {
  border-radius: 50%;
  background: #00c62b;
  border: 3px solid #fff;
  outline: 1px solid #00c62b;
  display: block;
  width: 28px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
}
li.order-track-step.complete:before {
  content: "\f010";
  font-family: "icomoon" !important;
}
li.order-track-step.complete .order-track-status {
  margin-right: 1rem;
  position: relative;
  display: flex;
  align-items: stretch;
}
li.order-track-step.complete .order-track-status-dot {
  display: block;
  width: 28px;
  height: 29px;
  border-radius: 50%;
  background: #00c62b;
  border: 3px solid #fff;
  outline: 1px solid #00c62b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
}
li.order-track-step.complete .order-track-status-dot:before {
  content: "\f010";
  font-family: "icomoon" !important;
}
li.order-track-step.complete .order-track-status-line {
  background: #00c62b;
  position: relative;
  left: -15px;
}
li.order-track-step.complete.active .order-track-status-line {
  background: #979797;
}
li.order-track-step.complete.active .order-track-status-dot {
  box-shadow: 0 0 0 0 rgba(80, 155, 22, 0.7);
  background-color: #00c62b;
  animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
  margin-top: 0;
}
li.order-track-step.rejected::after {
  border-radius: 50%;
  background: #ffc107;
  border: 3px solid #fff;
  outline: 1px solid #ffc107;
  display: block;
  width: 28px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
}
li.order-track-step.rejected .order-track-status-dot {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffc107;
  border: 3px solid #fff;
  outline: 1px solid #ffc107;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
}
li.order-track-step.rejected .order-track-status-dot:before {
  content: "\f00d";
  font-family: "icomoon" !important;
}
li.order-track-step.cancel::after {
  border-radius: 50%;
  background: #ed1c24;
  border: 3px solid #fff;
  outline: 1px solid #ed1c24;
  display: block;
  width: 28px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
}
li.order-track-step.cancel .order-track-status-dot {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ed1c24;
  border: 3px solid #fff;
  outline: 1px solid #ed1c24;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
}
li.order-track-step.cancel .order-track-status-dot:before {
  content: "\f00d";
  font-family: "icomoon" !important;
}

.order-track-status-line {
  display: block;
  margin: 0 auto;
  width: 1px;
  min-height: 70px;
  background: #979797;
}

.order-track-text p {
  font-size: 12px;
  font-weight: 400;
  color: #808080;
}

.order-track-text-stat {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1px;
  color: #444444;
}

.order-track-text-sub {
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  color: #666666;
}

main.containtSec section .manufacturerDetails {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif !important;
}

main.containtSec section .manufacturerDetails ul {
  display: grid;
  grid-template-columns: 48% 48%;
  row-gap: 18px;
  -moz-column-gap: 4%;
       column-gap: 4%;
  padding: 0;
  margin: 0;
  list-style: none;
}

main.containtSec section .manufacturerDetails ul li {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  color: #667085;
}

main.containtSec section .manufacturerDetails ul li strong {
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #344054;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}/*# sourceMappingURL=main.css.map */


















































  .details-img {
    padding: 0;
    margin: 0;
    position: relative
  }
  .details-img span {
    position: absolute;
    text-align: center;
    left: 50%;
    bottom: 50%;
    background-color: rgba(255, 255, 255, .9);
    text-transform: capitalize;
    font-size: 11px;
    color: #333;
    padding: 2px 5px;
    z-index: 200
  }
  .easyzoom {
    position: relative;
    display: inline-block
  }
  .easyzoom-flyout, .easyzoom-notice {
    position: absolute;
    background: #fff
  }
  .easyzoom img {
    vertical-align: bottom
  }
  .easyzoom.is-loading img {
    cursor: progress
  }
  .easyzoom.is-ready img {
    cursor: crosshair
  }
  .easyzoom.is-error img {
    cursor: not-allowed
  }
  .easyzoom-notice {
    top: 50%;
    left: 50%;
    z-index: 150;
    width: 10em;
    margin: -1em 0 0 -5em;
    line-height: 2em;
    text-align: center
  }
  .easyzoom-flyout {
    z-index: 100;
    overflow: hidden
  }
  .easyzoom--overlay .easyzoom-flyout {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
  }
  .easyzoom--adjacent .easyzoom-flyout {
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    margin-left: 20px
  }

  /* Newly added 7/7/2025 */
  .easyzoom .veg {

    position: absolute;

    top: 0;

    right: 0;

    width: 20px;

    height: 40px;

    background: url(../images/veg.png) no-repeat center center;

    background-size: contain;

    z-index: 999;

  }

   .easyzoom .nonveg {

    position: absolute;

    top: 0;

    right: 0;

    width: 34px;

    height: 40px;

    background: url(../images/non-veg.png) no-repeat center center;

    background-size: contain;

    z-index: 999;

  }
  /* Newly added 7/7/2025 */

  .nav-psr > li, .noRadiusBtnBuynow {
    text-transform: none
  }
  .brd1_dashed ul, .prod_des, .thumbelina, .thumbelina li, .thumbelina ul {
    list-style: none
  }
  .margin-none {
    margin: 0
  }
  .border-radius-none {
    border-radius: 0
  }
  .border-top-none {
    margin-top: -1px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd
  }
  

  
  .prodetailspop span {
    font-size: 48px !important;
    right: 0 !important;
    top: 50% !important;
    margin-top: -10px !important;
    cursor: pointer;
    opacity: 9
  }
  .product_quick-view {
    background-color: rgba(228, 228, 228, .8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: left;
    color: #000;
    text-align: center;
    font-size: 10px;
    position: absolute;
    top: -80px;
    left: 40%;
    z-index: 10;
    visibility: hidden
  }
  .product_quick-view a i {
    top: 18px;
    font-size: 14px;
    position: relative
  }
  .product-serch-box:hover .product_quick-view {
    visibility: visible
  }
  .pricesec {
    font-size: 27px !important
  }
  .brd1_dashed {
    border: 1px dashed #d3d3d3;
    min-height: 150px;
    border-radius: 7px
  }
  .padbot0 {
    padding-bottom: 0;
    padding-top: 0
  }
  .padbot0 h4 {
    padding: 0 0 3px;
    margin: 0;
    font-size: 16px;
    color: #000;
    font-style: italic
  }
  .padbot0 span.removeh4 {
    padding: 0 0 3px;
    margin: 0;
    font-size: 16px;
    color: #000;
    font-style: italic;
    display: block
  }
  .brd1_dashed h2 {
    padding: 10px;
    margin: 0;
    font-size: 13px;
    color: #000;
    background: #fcfcfc
  }
  .brd1_dashed span.removeh2 {
    padding: 10px;
    margin: 0;
    font-size: 13px;
    color: #000;
    background: #fcfcfc;
    display: block
  }
  .dispblock {
    display: block
  }
  .fontsize30 {
    font-size: 30px
  }
  .brd1_dashed ul {
    padding: 0;
    margin: 0
  }
  .brd1_dashed ul li {
    padding: 5px 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #f2f2f2;
    color: #474747;
    font-size: 13px
  }
  .pad7 {
    padding: 7px !important
  }
  .cusdetailssec .btn-range {
    border: 0;
    margin: 0 10px 0 0;
    padding: 0;
    color: #0f84ce;
    background: 0 0;
    white-space: inherit
  }
  .cusdetailssec .total_ordered {
    border: 1px solid #e2e2e2;
    border-color: #e2e2e2 !important;
    margin: 0;
    padding: 2px 15px;
    font-size: 12px;
    color: #000
  }
  .cusdetailssec .btn-range:hover {
    background-color: transparent
  }
  .cusdetailssec .btn-default:active {
    box-shadow: none;
    background-color: transparent
  }
  .cusdetailssec .btn:active, .cusdetailssec .btn:focus {
    box-shadow: none !important;
    background-color: none !important;
    outline: 0
  }
  #slider3 ul {
    padding: 0;
    margin: 0
  }
  #slider3 img {
    width: 100% !important;
    padding: 5px
  }
  .proimg {
    border: 1px solid #fff
  }
  .proimg.active {
    border: 1px solid #1879b7
  }
  .boxgrid {
    width: 100%;
    margin: 0;
    background: #fff;
    border: 0 solid #8399af;
    overflow: hidden;
    position: relative;
    text-align: center
  }
  .productArticles .total_view {
    width: auto;
    display: table;
    padding: 5px 10px 5px 5px;
    background-color: #f9da5e;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    color: #000;
    position: absolute;
    right: 1px;
    bottom: 1px;
    z-index: 2
  }
  .productArticles .total_view:before {
    content: '';
    position: absolute;
    border-bottom: 24px solid #f9da5e;
    border-left: 20px solid transparent;
    border-right: 20px solid transprant;
    right: 100%;
    bottom: 0;
    z-index: 0
  }
  .productArticles h4 {
    padding: 5px 0 0;
    margin: 0;
    color: #3a9bd8;
    font-size: 14px;
    text-align: center;
    min-height: 45px
  }
  .productArticles p {
    padding: 5px 0;
    margin: 0;
    color: #000;
    font-size: 12px;
    text-align: center
  }
  .productArticles .owl-prev {
    position: absolute;
    width: 40px;
    height: 80px;
    border-radius: 0;
    font-size: 0;
    padding: 0;
    margin: 0;
    left: -5px;
    top: 50%;
    margin-top: -40px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 3px 2px 8px -1px rgba(0, 0, 0, .3);
    background-color: hsla(0, 0%, 100%, .98);
    cursor: pointer;
    transition: box-shadow .2s ease
  }
  .productArticles .owl-prev.disabled {
    background: #fff;
    cursor: not-allowed !important;
    box-shadow: 5px 2px 10px -1px rgba(0, 0, 0, .4)
  }
  .productArticles .owl-prev.disabled:after {
    color: #d0d0d0;
    cursor: not-allowed !important
  }
  .productArticles .owl-next {
    position: absolute;
    width: 40px;
    height: 80px;
    font-size: 0;
    padding: 0;
    margin: 0;
    right: -5px;
    top: 50%;
    margin-top: -40px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: -3px 2px 8px -1px rgba(0, 0, 0, .3);
    background-color: hsla(0, 0%, 100%, .98);
    cursor: pointer;
    transition: box-shadow .2s ease
  }
  .productArticles .owl-next.disabled {
    background: #fff;
    cursor: not-allowed !important;
    box-shadow: -5px 2px 10px -1px rgba(0, 0, 0, .4)
  }
  .productArticles .owl-next.disabled:after {
    color: #d0d0d0;
    cursor: not-allowed !important
  }
  .productArticles .owl-prev:after {
    content: "\f104";
    color: #000;
    font-size: 32px;
    line-height: 20px;
    width: 12px;
    font-family: icomoon !important;
    left: 50%;
    position: absolute;
    margin-left: -6px;
    top: 50%;
    margin-top: -10px
  }
  .productArticles .owl-next:after {
    content: "\f105";
    color: #000;
    font-size: 32px;
    line-height: 20px;
    width: 12px;
    font-family: icomoon !important;
    left: 50%;
    position: absolute;
    margin-left: -6px;
    top: 50%;
    margin-top: -10px
  }
  .productArticles .owl-next:hover {
    box-shadow: -5px 2px 10px -1px rgba(0, 0, 0, .4)
  }
  .productArticles .owl-prev:hover {
    box-shadow: 5px 2px 10px -1px rgba(0, 0, 0, .4)
  }
  .productArticles .shadow {
    box-shadow: 0 0 5px #eaeaea;
    border: 1px solid #eaeaea;
    border-radius: 0;
    
  }


  


















  .thumbelina {
    padding: 0;
    margin: 0;
    position: absolute;
    white-space: nowrap;
    font-size: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none
  }
  .thumbelina li {
    padding: 0;
    line-height: 0;
    margin: 0;
    border: 1px solid #fff;
    border-bottom: 1px solid #f1f1f1
  }
  .thumbelina li img {
    padding: 10px
  }
  .thumbelina li:hover {
    border-bottom: 1px solid #f1f1f1
  }
  .thumbelina-but {
    position: absolute;
    background-color: #fff;
    border: 0 solid #aaa;
    box-shadow: none;
    z-index: 1;
    cursor: pointer;
    color: #000;
    text-align: center;
    vertical-align: middle;
    font-size: 22px;
    font-weight: 700;
    font-family: monospace
  }
  .thumbelina-but:hover {
    color: #000;
    box-shadow: none;
    background-color: rgba(255, 255, 255, .7)
  }
  .thumbelina-but.disabled, .thumbelina-but.disabled:hover {
    background-color: #efefef;
    color: #ccc;
    cursor: default;
    box-shadow: none
  }
  .thumbelina-but.horiz {
    width: 20px;
    height: 119px;
    line-height: 119px;
    top: -1px
  }
  .thumbelina-but.horiz.left {
    left: -20px;
    border-radius: 0
  }
  .thumbelina-but.horiz.right {
    right: -20px;
    border-radius: 0
  }
  .thumbelina-but.vert {
    left: 0;
    height: 16px;
    line-height: 26px;
    width: 100%
  }
  .thumbelina-but.vert.top {
    top: 0;
    border-radius: 0;
    border-bottom: 1px solid #e6e6e6
  }
  .thumbelina-but.vert.bottom {
    bottom: 0;
    border-radius: 0;
    border-top: 1px solid #e6e6e6
  }

ul.thumbelina li:first-child {padding-top: 18px !important;}
ul.thumbelina li:last-child {padding-bottom: 18px !important;} 