/* all basics starts here */
*{
  color: #333333;
  box-sizing: border-box;
  font-family: sans-serif;
}
html {
  font-size: 62.5%;
}

:root {
  --mainColor: rgb(13,202,240);
  --mainKaFikaColor: rgba(13,202,240, 0.1);
  --afterHoverColor: #333333;
  --universalShadow: rgba(0, 0, 0, 0.5);
  --lightGrey:#fafafb;
}

.flex-item {
  display: flex;
}
.font-bold {
  font-weight: bold;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.holder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 1300px;
  transition: all 0.2s;
}
.brandLogo{
  height: 8rem;
  width: 8rem;
  padding: 1rem;
}

#brand-text{
  color: var(--mainColor);
  font-size: 2rem;
  color: var(--mainColor);
  font-weight: bolder;
}
.signIcon{
  height: 5rem;
  width: 5rem;
  padding: 1rem;
}
.cartNav{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--mainColor);
  padding-bottom: 3rem;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
#cart-container{
  list-style: none;
}
.item-in-cart{
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: var(--mainColor);
  transform: translateY(1.8rem);
}
.blankUserIcon{
  height: 4rem;
  width: 4rem;
}
/* basics ends here */
/* bootstrap modifying starts here */

#navbarNav{
  height: 8rem;
}

#logoImg{
  height: 5rem;
  width: 18rem;
}
#logoImg img{
  height: 5rem;
  width: 18rem;
}
#navbarNav{
  justify-content: center;
}
#navbarNav>ul>li>a{
  font-weight: bolder;
  font-size: 1.5rem;
  color: var(--mainColor);
}
#navbarNav>ul>li>a:hover{
  color: var(--afterHoverColor);
}
#navbar >li >a{
  font-size: 1.5rem;
}
#navbar >li >ul >li >a{
  font-size: 1.5rem;
}
#navbarNav>ul>.dropdown>a{
  color: var(--mainColor);
}
#navbarNav>ul>.dropdown>ul{
  border: none;
  box-shadow: 0 1rem 1rem var(--universalShadow);
}
#navbarNav>ul>.dropdown>ul>li>a:hover{
  background: transparent;
}
#navbarNav>ul>.dropdown>ul>li>ul>li{
  list-style: none;
}
#navbarNav>ul>.dropdown>ul>li>a{
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}
#navbarNav>ul>.dropdown>ul>li>ul>li>a{
  text-decoration: none;
  font-size: 1.5rem;
  color: #333333;
}
#navbarNav>ul>.dropdown>ul>li>ul>li>a:hover{
  color: var(--mainColor);
}
.dropdown-item-icon{
  height: 2.5rem;
  width: 2.5rem;
  padding: .5rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.myDropdown{
  width: 20rem;
}
#itemSearchBoxForm{
  width: max-content;
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#searchDisplay{
  width: 60rem;
  height: 30rem;
  display: none;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: all 0.2s;
  padding-top: 1rem;
  padding-bottom: 2rem;
  border: 0;
  border-radius: .5rem;
  transition: all 0.2s;
  box-shadow: 1rem 2rem 2rem var(--universalShadow);
}
#searchDisplay>ul>li{
  width: 60rem;
  height: 3rem;
  border: 0;
  list-style: none;
}
#searchDisplay>ul>li>a{
  width: 60;
  height: inherit;
  padding: .5rem;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: #333333;
  font-size: 1.5rem;
  transition: all 0.2s;
}
#searchDisplay>ul>li>a:hover{
  font-weight: bolder;
  color: var(--mainColor);
  cursor: pointer;
}
#itemSearchBox{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60rem;
  border: .1rem solid var(--mainColor);
  border-radius: .5rem; 
}


#itemSearchBox input{
  height: 4rem;
  padding: .5rem;  
}
#itemSearch{
  font-size: 1.6rem;
  width: 50rem;
  height: 4rem;
  border-radius: .5rem;
  outline: none;
  border: none;
}
#itemSearchBox:hover  {
border: .2rem solid var(--mainColor);
}
#itemSearchBox input:last-of-type{
  font-size: 1.5rem;
  font-weight: bold;
  width: 10rem;
  color: var(--mainColor);
  cursor: pointer;
  height: 5.3rem;
  font-weight: bold;
  background: none;
  border: none;   
}
#itemDisplayBoard{
  display: flex;
  width: 99%;
  padding: .5rem;
  height: 11rem;
  overflow: hidden;
  margin-bottom: .5rem;
  transition: all 0.2s;
  
}
#allItemContainer{
  display: flex;
  width: max-content;
  padding: .5rem;
  height: 12rem;
  transition: all 0.2s;
  animation: sliderImg 15s cubic-bezier(1, 0.0001, 0.0002, 1) 0s infinite;
}
#allItemContainer .allItemContainer-items{
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 1rem 1.5rem var(--universalShadow);
  padding-right: 1.5rem;
  padding-left: .5rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  border-radius: .5rem;
  transition: all 0.2s;
  width: 22rem;
  height: 7rem;
  overflow-x: hidden;
  overflow-y: hidden;
  margin-right: 2rem;
}
#allItemContainer .allItemContainer-items:hover{
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0rem 1rem 2rem var(--universalShadow);
  text-decoration: none;
  border-radius: .5rem;
  cursor: pointer;
}

.allItemContainer-items>img{
  width: 6rem;
  height: 6rem;
  border: none;
  border-radius: .2rem;
  transition: all 0.2s;
}
.allItemContainer-items>span{
  transition: all 0.2s;
  color: #333333;
  font-size: 1.5rem;
}
@keyframes sliderImg {
  0%{
      transform: translateX(0rem);
  }
  20%{
      transform: translateX(0rem);
  }
  21%{
      transform: translateX(-25rem);
  }
  40%{
      transform: translateX(-25rem); 
  }
  41%{
      transform: translateX(-75rem);
  }
  60%{
      transform: translateX(-75rem);
  }
  61%{
    transform: translateX(-100rem);
  }
  80%{
      transform: translateX(-100rem);
  }
  81%{
    transform: translateX(-125rem);
  }
  99%{
    transform: translateX(-125rem);
  }
  100%{
      transform: translateX(0rem);
  }
}

/* nav bar next item starts here */
#navBarNextItem{
  display: flex;
  flex-direction: row;
  height: 5rem;
  background-color: var(--universalShadow);
}
#navBarNextItem>a{
  width: max-content;
  overflow-x: scroll;
  text-decoration: none;
  color: #333333;
  font-size: 1.4rem;
}
#navBarNextItem>a:hover{
  color: var(--mainColor);
}
#navBarNextItem>a>img{
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}

#carouselExampleCaptions > #carousel-inner >div{
  height: 60rem;
}
#carouselExampleCaptions > #carousel-inner >div >img{
  height: inherit;
  background-size: contain;
  background-repeat: no-repeat;
}
   /* card style starts here */
   .cardContainer{
    width: inherit;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
    margin-top: 2rem;
    background-color: var(--lightGrey);
  }
  .card{
    text-decoration: none;
    border: 0;
    outline: 0;
    height: max-content;
    width: 32.5rem;
    border-radius: 3rem;
    transition: all 0.2s;
    margin: 3rem;
    position: absolute;
    box-shadow:0 1rem 1rem var(--universalShadow);
  } 
  .card:hover{
    box-shadow:0 2rem 2rem var(--universalShadow);
  }
  .card >img{
    height: 37rem;
    width: 32.3rem;
    background-size: contain;
    background-repeat: no-repeat;
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
  } 
  .card >h3{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--afterHoverColor);
    text-align: center;
    text-transform: capitalize;
  } 
  .card-detail{
    height: max-content;
    width: inherit;
    display: flex;
  }
  .card-detail >p{
    height: max-content;
    width: max-content;
    font-size: 1.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
  .card-detail >p:nth-child(2){
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, var(--mainKaFikaColor), #ffffff);
  }
/* x axis scroller container starts here */
.x-scroll-container{
  border-radius: 1rem;
  margin-top: 2rem;
  width: 1300px;
  background-color: var(--lightGrey);
  display: flex;
  overflow-x: scroll;
}
.x-card{
  text-decoration: none;
  border: 0;
  outline: 0;
  height: 40rem;
  width: 30rem;
  border-radius: 1rem;
  transition: all 0.2s;
  margin: 3rem;
  box-shadow:0 1rem 1rem var(--universalShadow);
}
.x-card:hover{
  box-shadow:0 2rem 4rem var(--universalShadow);
}
.x-card>img{
  width: inherit;
  height: 30rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.x-card>h2{
  text-align: center;
  font-size: 3rem;
  font-weight: bolder;
  padding-top: 2.5rem;
}

.x-scroll-container::-webkit-scrollbar {
  -webkit-box-shadow: inset 0 0 4px var(--universalShadow);
  border-radius: 1rem;
  width: 1rem;
  background-color: rgb(255, 255, 255);
}

.x-scroll-container::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

.x-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--universalShadow);
}
  /* cart brief details box starts here */
  .cart-detail-view{
    display: flex;
    flex-wrap: wrap;
    width: inherit;
    font-size: 1.5rem;
  }
  .all-side-photo{
    width: 10rem;
    height: max-content;
    display: flex;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: left;
  }
  .all-side-photo>ul>li{
    list-style: none;
    margin-bottom: 2rem;
    
  }
  .all-side-photo>ul>li>img:hover{
    box-shadow: 0rem .5rem .5rem var(--universalShadow);
    
  }
  .all-side-photo>ul>li>img{
    width: 5rem;
    height: 5rem;
    border-radius: .5rem;
    transition: 0.2s all;
  }
  .main-view{
    width: 50rem;
    height: 60rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
  }
  .cart-detail-view>.main-view>img{
    width: 50rem;
    height: 60rem;
    border-radius: 1.5rem;
  }
  .item-description{
    font-size: 1.5rem;
    width: 50rem;
    height: max-content;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
  }
  .item-description>h4{
    font-weight: bold;
    font-size: 1.7rem;
  }
.star-box{
    display: flex;
    align-items: left;
    justify-content: left;
  }
  .rating-star{
    height: 2rem;
    width: 2rem;
  }
  .star-box>span{
    padding-left: 2rem;
    padding-right: 2rem;
    border-right: .1rem solid var(--universalShadow);
  }
.price{
    font-size: 2rem;
  
  }
 .discount{
    color: red;
    font-size: 2rem;
    margin-right: .5rem;
  }
.mrp{

    text-decoration-line: line-through;
  }
  .item-description>div>div.offers{
    display: flex;
    flex-direction: row;
    width: inherit;
    height: 16rem;
    height: 16rem;
  }

  .item-description>div>.offers>div{
    height: 16rem;
    width: 16rem;
    padding: 2rem;
    transition: all 0.2s;
    border-radius: .8rem;
    box-shadow: 0 .1rem .3rem var(--universalShadow);
    line-clamp: 3;
    max-lines: 3;
    text-align: justify;
    margin-right: 1rem;
  }
  .float-container-x{
    width: 50rem;
    overflow-x: scroll;
    display: flex;
  }
  .float-container-x::-webkit-scrollbar {
    -webkit-box-shadow: inset 0 0 4px var(--mainColor);
    border-radius: 1rem;
    width: 1rem;
    background-color: rgb(255, 255, 255);
  }

  .float-container-x::-webkit-scrollbar {
      width: 10px;
      background-color: #F5F5F5;
  }

  .float-container-x::-webkit-scrollbar-thumb {
      background-color: var(--mainColor);
  }
  .float-container-x>div{
    height: 16rem;
    width: 16rem;
    padding: 2rem;
    transition: all 0.2s;
    border-radius: .8rem;
    text-align: justify;
    margin-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .float-container-x>div>.img-container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
    width: 5rem;
    padding: 3rem;
    border-radius: 50%;
    background-color: var(--lightGrey);
  }
  .float-container-x>div>div>img{
    height: 3rem;
    width: 3rem;

  }
  .float-container-x>div>a{
    font-size: 1.5rem;
    color: var(--mainColor);
    text-decoration: none;
  }
  .product-details{
    display: flex;
    justify-content: center;
  }
  .product-details>div{
    width: 24rem;
    margin-right: 5rem;
  }

  .add-to-cart-box{
    width: 20rem;
    height: max-content;
    display: flex;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    border: .1rem solid var(--universalShadow);
    border-radius: 1rem;
  }
  .add-to-cart-box .centerElem{
    margin-bottom: 3rem;
  }
  .add-to-cart-box>div:nth-child(2){
    margin-bottom: 2rem;
  }
  .add-to-cart-box .centerElem a{
    width: 15rem;
    background-color: var(--mainColor);
    border: 0;
    font-size: 1.6rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 1.5rem;
    border-radius: 3rem;
    transition: all 0.2s;
  }
  .add-to-cart-box .centerElem a:first-of-type{
    margin-top: 4rem;

  }

  .add-to-cart-box .centerElem a:hover{
    background-color: #ffffff;
    color: var(--mainColor);
    box-shadow: 0 .5rem 2rem var(--universalShadow);
    font-weight: bold;
  }
/* footer starts here */
.footer{
  width: inherit;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  margin-top: 2rem;
  height: 30rem;
  background-color: var(--mainColor);
}
.footer ul{
  display: flex;
  justify-content: space-around;
  
}
.footer ul li{
  list-style: none;
}
.footer ul li a{
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--afterhoverColor);
  transition: all 0.2s;
  font-weight: bold;
}
.footer ul li a:hover{
  color: #ffffff;
}
.footer >div{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* paragraph starts here */
.para1{
  font-size: 1.6rem;
  background-color: var(--lightGrey);
  padding: 1.95rem;
  border-radius: 2rem;
  height: max-content;
  line-height: 2.5rem;
  width: inherit;
  letter-spacing: .09rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: justify;
}
.para2{
  height: max-content;
  width: inherit;
  padding: 2rem;
  overflow: hidden;
  line-height: 2.5rem;
  font-size: 1.6rem;
  letter-spacing: .09rem;
  transition: all 0.2s;
  margin: 5rem auto auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
}
.para1 h1{
  font-size: 4rem;
  font-weight: bold;
}
.para2 h1{
  font-size: 4rem;
  font-weight: bold;
}
.para2 p{
  text-indent: 10rem;
  text-align: justify;
}
.para2 p{
  text-indent: 10rem;
  text-align: justify;
}

.para2 img{
  height: 80rem;
  width: 100rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  border-radius: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  
}
.para1 img{
  height: 80rem;
  width: 100rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  border-radius: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  
}

/*paragraph ends here */
  /* --------------------button-------------- */
  .myBtn{
    background-color: var(--mainColor);
    border: 0;
    font-size: 1.6rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 1.5rem;
    border-radius: 3rem;
  }

  .myBtn:hover{
    background-color: #ffffff;
    color: var(--busFontColor);
    box-shadow: 0 .5rem 2rem var(--universalShadow);
    font-weight: bold;
  }
  /* single form starts here */
.single-form{
  width: 60%;
  border: 0;
  box-shadow: 0 .5rem 2rem var(--universalShadow);
  padding: 2rem;
  height: max-content;
  margin-left: 20%;
  border-radius: 1rem;

}
.form-element-parent{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}
.form-element{
    width: auto;
    margin: 0 50%;    
}
.single-form .closeForm{
  text-decoration: none;
  font-size: 2rem;
  float: right;
  text-align: right;
  color: var(--mainColor);
  transition: all 0.2s;
}
.single-form .closeForm:hover{
font-weight: bold;
cursor: pointer;
}
.single-form label{
  font-size: 1.6rem;
  color: var(--mainColor);
  font-weight: bold;
  background-color: #ffffff;
  position: relative;
  left: 1.2rem;
  top: 1.5rem;
  padding: .5rem;
}
.single-form input{
  font-size: 1.6rem;
  border: .1rem solid var(--mainColor);
  border-radius: .5rem;
  height: 4.6rem;
  width: 30rem;
  transition: all 0.2s;
  padding: .4rem;
}
.captcha{
  margin-left: 2rem;
}

.single-form  input:focus{
  border: .2rem solid var(--mainColor);
  outline: none;
}
.submitContainer{
  padding-top: 1rem;
  width: inherit;
  display: flex;
  justify-content: space-between;
}
.single-form input[type="submit"]{
  background-color: var(--mainColor);
  color: #ffffff;
  border-radius: 3rem;
  height: 5rem;
  width: 12rem;
  border: 0;
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: .4rem;
}
.single-form input[type="submit"]:hover{
  background-color: #ffffff;
  color: var(--mainColor);
  box-shadow: 0 .5rem 2rem var(--universalShadow);
}
.tAndC{
  padding-top: 1rem;
  width: inherit;
  display: flex;
  justify-content: flex-start;
}
.tAndC #checkbox{
  height: 2rem;
  width: 2rem;
}
.tAndC a{
 text-decoration: none;
 margin-left: .5rem;
}
.backBtn{
  background-color: var(--mainColor);
  border-radius: 3rem;
  height:5rem;
  width: 10rem;
  border: 0;
  font-size: 1.6rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding-top: 1.4rem;
  text-align: center;
}
.backBtn:hover{
  background-color: #ffffff;
  color: var(--mainColor);
  box-shadow: 0 .5rem 2rem var(--universalShadow);
}
.errorlist{
  color: red;
}
.noneFieldErrorSpan{
  color: red;
  font-size: 1.4rem;
}
.single-form .form-bottom-btn{
  text-decoration: none;
  font-size: 1.6rem;
  color: #333333;
}
.formAdditionalLink{
  text-decoration: none;
  color: #333333;
}
/* cart page starts here */
#cart-item-main-cont{
  display: flex;
}
.cartBox>h2{
  font-weight: bolder;
}
.cartBox>small:first-of-type{
  color: var(--mainColor);
}
.product-description-container{
  margin-bottom: 2rem;
  display: flex;
}
.product-description-container>div{
  margin-left: 2rem;
  margin-top: 1rem;
}
.product-description-container>div:first-of-type{
  margin-left: 0;
}
.product-description-container>div:last-of-type{
  margin-left: 0;
  width: 20rem;
  
}
.product-description-container .cart-page-option-tag> span{
  color: var(--mainColor);
  
}
.product-description-container .cart-page-option-tag> span:first-of-type>select{
  width: 4rem;
  height: 4rem;
  border: 0;
  background-color: var(--lightGrey);
  border-radius: .5rem;
  box-shadow: 0 .5rem .5rem var(--universalShadow);
  
}


.product-small-Image{
  height: 12rem;
  width: 10rem;

}

.center-accord-height{
  display: flex;
  justify-content: center;
  align-items: center;

}
#cart-item-main-cont>.add-to-cart-box{
  width: 30rem;
}
#cart-item-main-cont>.add-to-cart-box>:nth-child(2){
  font-weight: bold;
  font-size: 1.5rem;
}
/* successfuly placed page starts here */
.successBox{
  background-image: url('transactionSuccess.svg');
  height: 90rem;
  width: 70rem;
  background-repeat: no-repeat;
  background-size: contain;
}
/* whatsapp circular floating button starts here */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 9999 !important; 
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1); /* make logo white */
}
