/* 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: 95%;
  transition: all 0.2s;
}
.brandLogo{
  height: 4rem;
  width: 4rem;
  margin-left: -1.5rem;
}
#brand-text{
  display: none;
}
.signIcon{
  height: 3rem;
  width: 3rem;
}
.cartNav{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--mainColor);
  margin-top: -1rem;
  margin-right: .5rem;
}
#cart-container{
  list-style: none;
}
.item-in-cart{
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: var(--mainColor);
  transform: translateY(1rem);
}
.blankUserIcon{
  height: 4rem;
  width: 4rem;
}
  /* basics ends here */
/* bootstrap modifying starts here */
#nav{
  height: 6rem;

}
#nav .nav-item .nav-link{
  transition: 0.2s all;
  color: var(--mainColor);
}
#nav .nav-item .nav-link:hover{
  transform: translateY(-.5rem);
}
#logoImg{
  height: 2.5rem;
  width: 2.5rem;
}
#logoImg img{
  height: 2.5rem;
  width: 2.5rem;
}
#navbar{
  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;
}
#itemSearchBoxForm{
  width: max-content;
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#itemSearchBox{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22rem;
  border: .1rem solid var(--mainColor);
  border-radius: .5rem;
  margin-left: .5rem;
}
#itemSearchBox input{
  height: 1.5rem;
  padding: .5rem;  
}
#itemSearch{
  font-size: 1.6rem;
  width: 14rem;
  height: 2.5rem;
  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: 8rem;
  color: var(--mainColor);
  cursor: pointer;
  height: 2.5em;
  font-weight: bold;
  background: none;
  border: none;
}
#submitSearch{
  width: min-content;
}

#searchDisplay{
  width: 22rem;
  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: 22rem;
  height: 3rem;
  border: 0;
  list-style: none;
}
#searchDisplay>ul>li>a{
  width: 22rem;
  height: inherit;
  padding: .2rem;
  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;
}
#itemDisplayBoard{
  display: flex;
  width: 99%;
  padding: .5rem;
  height: 11rem;
  overflow: hidden;
  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;
  border-radius:1rem;
  transition: all 0.2s;
  width: auto;
  padding-left: 2.5rem;
  padding-left: 1.5rem;
  padding-left: 1.5rem;
  padding-left: 1.5rem;
  height: max-content;
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}
#allItemContainer .allItemContainer-items:hover{
  background-color: var(--mainKaFikaColor);
  cursor: pointer;
}

.allItemContainer-items>img{
  width: 5rem;
  height: 5rem;
  border: none;
  border-radius: 50%;
  transition: all 0.2s;
}
.allItemContainer-items>span{
  transition: all 0.2s;
  font-size: 1rem;
  width: 5rem;
  overflow: hidden;
}
@keyframes sliderImg {
  0%{
      transform: translateX(0rem);
  }
  20%{
      transform: translateX(0rem);
  }
  21%{
      transform: translateX(-8rem);
  }
  40%{
      transform: translateX(-8rem); 
  }
  41%{
      transform: translateX(-16rem);
  }
  60%{
      transform: translateX(-16rem);
  }
  61%{
    transform: translateX(-24rem);
  }
  80%{
      transform: translateX(-24rem);
  }
  81%{
    transform: translateX(-31rem);
  }
  99%{
    transform: translateX(-31rem);
  }
  100%{
      transform: translateX(0rem);
  }
}
/* nav bar next item starts here */
#navBarNextItem{
display: flex;
flex-direction: row;
height: 5rem;
background-color: var(--universalShadow);
border: 0;
}
#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: 20rem;
}
#carouselExampleCaptions > #carousel-inner >div >img{
  height: inherit;
  background-size: contain;
  background-repeat: no-repeat;
}
/* card style starts here */
.cardContainer{
  width: 380px;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  border-radius: 3rem;
  margin-top: 2rem;
  background-color: var(--lightGrey);
}
.card{
  text-decoration: none;
  border: 0;
  outline: 0;
  height: max-content;
  width: 17rem;
  border-radius: 1.5rem;
  transition: all 0.2s;
  margin: 1rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow:0 1rem 1rem var(--universalShadow);
} 
.card:hover{
  box-shadow:0 2rem 2rem var(--universalShadow);
}
.card >img{
  height: 20rem;
  width: 16.5rem;
  background-size: contain;
  background-repeat: no-repeat;
} 
.card >h3{
  font-size: 2rem;
  font-weight: bold;
  color: var(--afterHoverColor);
  text-align: center;
  text-transform: capitalize;
} 
.card-detail{
  height: max-content;
  width: inherit;
  display: flex;
}
.card-detail >p{
  height: min-content;
  width: inherit;
  font-size: 1.5rem;
  padding: .5rem;
  border-radius: 1rem;
}
.card-detail >p:nth-child(2){
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, var(--mainColor), #ffffff);
  }
/* x axis scroller container starts here */
.x-scroll-container{
  border-radius: 1rem;
  margin-top: 2rem;
  width: 380px;
  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-direction: column;
  width:380px;
  font-size: 1.5rem;
}
.all-side-photo{
  width: 10rem;
  height: 2rem;
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: left;
}
.all-side-photo>ul{
  display: flex;
  justify-content: center;
  align-items: left;
  
}
.all-side-photo>ul>li{
  list-style: none;
  margin-left: .5rem;
  
}
.all-side-photo>ul>li>img:hover{
  box-shadow: 0rem .1rem .1rem var(--universalShadow);
  
}
.all-side-photo>ul>li>img{
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  transition: 0.2s all;
}
.main-view{
  width: 380px;
  height: 30rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
}
.cart-detail-view>.main-view>img{
  width: 380px;
  height: 30rem;
  border-radius: 1rem;
}
.item-description{
  font-size: 1.5rem;
  width: 380px;
  height: max-content;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
}
.item-description>h4{
  margin-top: 1rem;
  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: 380px;
  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;
  width: 380px;
}
.product-details>div{
  width: 24rem;
  margin-right: 5rem;
}

.add-to-cart-box{
  width: 380px;
  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;
}
/* coy-details starts here */
.coy-details{
  margin-top: 1rem;
  width: 380px;
}
/* footer starts here */
.footer{
width: 100vw;
display: flex;
flex-direction: column;
padding: 2rem;
margin-top: 2rem;
height: 30rem;
position: relative;
bottom: -2rem;
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;
border: 0.1rem solid var(--mainColor);
padding: 1rem;
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;
margin-top: 3rem;
}
.para1 img{
width: inherit;
height: 30rem;
border-radius: 2rem;
}
.para1 h1{
width: inherit;
font-size: 2.5rem;
font-weight: bold;
text-align: center;
}
.para1 p{
width: inherit;
font-size: 1.6rem;
text-indent: 5rem;
text-align: justify;
}
.para2{
font-size: 1.6rem;
padding: 1rem;
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;
margin-top: 3rem;
}
.para2 img{
width: inherit;
height: 30rem;
border-radius: 2rem;
}
.para2 h1{
width: inherit;
font-size: 2.5rem;
font-weight: bold;
text-align: center;
}
.para2 p{
width: inherit;
font-size: 1.6rem;
text-indent: 5rem;
text-align: justify;
}

/*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;
}
/* cart page starts here */
#cart-item-main-cont{
width: 380px;
padding: 1rem;
display: flex;
flex-direction: column;
flex-direction: column-reverse;
}
.cartBox{
width: 380px;
}
.cartBox:last-child{
width: 380px;
}
.cartBox>h2{
font-weight: bolder;
}
.cartBox>small:first-of-type{
color: var(--mainColor);
}
.product-description-container{
margin-bottom: 2rem;
display: flex;
flex-direction: column;
justify-content: left;
align-items: last baseline;
width: 380px;
}
.product-description-container>div>h3{
width: 380px;
}
.product-description-container>div{
margin-top: 1rem;
}
.product-description-container>div:first-of-type{
margin-left: 0;
}
.product-description-container>div:last-of-type{
margin-left: 0;    
}

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

}

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

}
#cart-item-main-cont>.add-to-cart-box{
width: 350px;
margin-bottom: 1rem;
}
#cart-item-main-cont>.add-to-cart-box>:nth-child(2){
font-weight: bold;
font-size: 1.5rem;
}
.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: 2.5rem;
border: 0;
background-color: var(--lightGrey);
border-radius: .5rem;
box-shadow: 0 .5rem .5rem var(--universalShadow);

}
/* successfuly placed page starts here */
.successBox{
  padding: 1rem;
  margin-top: 5rem;
  background-image: url('transactionSuccess.svg');
  height: 60rem;
  width: 36rem;
  background-repeat: no-repeat;
  background-size: contain;
}
/* single form starts here */
.single-form{
width: 90%;
border: 0;
box-shadow: 0 .5rem 2rem var(--universalShadow);
padding: 2rem;
height: max-content;
margin-left: 1rem;
border-radius: 1rem;
margin-bottom: 15rem;
margin-top: 2rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;

}
.form-element-parent{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}
.form-element{
  width: auto;
  margin-top: -8%;
  margin-left: 50%;
  margin-bottom: 0;
  margin-right: 50%;    
}
.single-form .closeForm{
text-decoration: none;
font-size: 2rem;
margin-left: 75vw;
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: 27rem;
transition: all 0.2s;
padding: .4rem;
}
.captcha{
margin-left: 2rem;
}
.single-form input:focus{
border: .1rem solid var(--mainColor);
}
.single-form  input:focus{
border: .2rem solid var(--mainColor);
outline: none;
}
.submitContainer{
padding-top: 1rem;
width: inherit;
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
}
.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: var(--mainColor);
}
.noneFieldErrorSpan{
color: var(--mainColor);
font-size: 1.4rem;
}
.formAdditionalLink{
  text-decoration: none;
  color: #333333;
}


/* 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 */
}

 .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 12px;
    right: 12px;
  }
  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
