/** Shopify CDN: Minification failed

Line 81:0 Unexpected "/"
Line 87:0 Unexpected "/"
Line 93:0 Unexpected "/"

**/
#mainac {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  display: none;  
}
#mainac2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:999;
  overflow: hidden;
  display: none;
}


.maincard {
  position: fixed;
  width:500px;
height:400px;
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
  box-shadow: 2px 2px 10px gray;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:99999;
}
.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom:2px solid #00000080;
}
.head-title{
  font-size:1.2rem;
  margin-top:1rem;
  height:30px;
  display:flex;
  align-items:center;
  font-weight:900;
}
.heading h3{
  font-size:1.2rem;
  font-weight:900;
}
.closeIcon {
  cursor: pointer;
  user-select: none;
}
.productList-container {
  width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    list-style: none;
    overflow-y: scroll;
    /* background-color: red; */
    overflow: hidden;
    overflow-y: auto
  padding:2rem,0rem; 
  
}
.productList-container::-webkit-scrollbar {
  width: 10px;
}

/ Track /
.productList-container::-webkit-scrollbar-track {
  background: #bfbcbc;
  border-radius: 100px;
}

/ Handle /
.productList-container::-webkit-scrollbar-thumb {
  background: #5fc668;
  border-radius: 100px;
}

/ Handle on hover /
.productList-container::-webkit-scrollbar-thumb:hover {
  background: #011403;
}
.productcard {
  position: relative;
  width: 100%;
  /* height:100%; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.productcard .anncodeleft {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.productcard .img-cntr {
  height: 6rem;
  width: 6rem;
  border: 1px solid gray;
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}
.productcard .img-cntr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.desc-cntr {
  line-height: 1;
}
.desc-cntr h3 a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  font-size: 1.2rem;
}
.desc-cntr p {
  font-size: 1rem;
  font-weight: 500;
}
.anncodebtn button {
  padding: 1rem 2rem;
  background: rgb(19, 62, 19);
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  font-size: 1.2rem;
  cursor: pointer;
}
.order-link {
text-align: end;
    background-color: white;
    position: fixed;
    bottom: 0;
    right: 3%;

}
.order-link a {
  color: red;
  font-weight: 800;
    text-decoration: underline;
}
.learn-here {
  /* font-weight: 500; */
  color: red;
}
.learn-here a {
  color: red;
  margin-left: 4px;
  text-decoration: underline;
    font-weight: 900;

}

@media only screen and (max-width: 400px) {
  .maincard {
    width: 350px;
    height:310px;
  }
   .heading h3{
  font-size:1rem;
}
  .productList-container {
    padding: 1rem 0.5rem;
  gap:2rem;
}
  .productcard .img-cntr {
    height: 4rem;
    width: 4rem;
   
}
  .desc-cntr h3 a {
    font-size: 1rem;
}
  .anncodebtn button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}
}


@media only screen and (min-width: 401px) and (max-width: 600px) {
  .maincard {
    width: 90vw;
    height:310px;
    
  }
  .heading h3{
  font-size:1rem;
}
  .productList-container{
    gap:2rem;
     height:300px;
    /* padding-top:2rem; */
    
  }
   .desc-cntr h3 a {
    font-size: 1rem;
}
 .anncodebtn button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}
   .productcard .img-cntr {
    height: 4rem;
    width: 4rem;
  
}
}

/* / Small devices (portrait tablets and large phones, 600px and up) / */
@media only screen and (min-width: 601px) and (max-width: 767px){
 .maincard {
    width: 600px;
    height:350px;
    
  }
  .heading h3{
  font-size:1.5rem;
}
}

/* / Medium devices (landscape tablets, 768px and up) / */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maincard {
   width: 600px;
   height:310px;
    
  }
   
}

/* / Large devices (laptops/desktops, 992px and up) / */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .maincard {
    width: 600px;
    height:310px;
  
    
  }
  
}
/* / Large devices (laptops/desktops, 992px and up) / */
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .maincard {
   width: 600px;
   height:330px;
   
    
  }
   
}

@media only screen and (min-width: 1200px)  and (max-width: 1499px){
  .maincard {
  width: 600px;
  height:270px;
    
  }
    
}


@media only screen and (min-width: 1500px) {
  .maincard {
   width: 600px;
   height:300px;
   
  }
  .productList-container{
    gap:3rem !important;
  }
    
}