/* 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: 8rem;
  width: 8rem;
  padding: 1rem;
}
#brand-text{
  color: var(--mainColor);
  font-weight: bolder;
  font-size: 2rem;
}
.signIcon{
  height: 4rem;
  width: 4rem;
}
.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(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 >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;
}
#searchDisplay{
  width: 30rem;
  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: 30rem;
  height: 3rem;
  border: 0;
  list-style: none;
}
#searchDisplay>ul>li>a{
  width: 30;
  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;
}
#itemSearchBox{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  border: .1rem solid var(--mainColor);
  border-radius: .5rem;

}

#itemSearchBox input{
  height: 3.5rem;
  padding: .5rem;  
}
#itemSearch{
  font-size: 1.6rem;
  width: 50rem;
  height: 3.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: 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);
  text-decoration: none;
  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(-23.5rem);
  }
  40%{
      transform: translateX(-23.5rem); 
  }
  41%{
      transform: translateX(-47rem);
  }
  60%{
      transform: translateX(-47rem);
  }
  61%{
    transform: translateX(-70.5rem);
  }
  80%{
      transform: translateX(-70.5rem);
  }
  81%{
    transform: translateX(-94rem);
  }
  99%{
    transform: translateX(-94rem);
  }
  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: 40rem;
}
#carouselExampleCaptions > #carousel-inner >div >img{
  height: inherit;
  background-size: contain;
  background-repeat: no-repeat;
}
/* card style starts here */
.cardContainer{
  width: 672px;
  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: 27rem;
  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: 30rem;
  width: 27rem;
  background-size: contain;
  background-repeat: no-repeat;
} 
.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(--mainColor), #ffffff);
}
/* x axis scroller container starts here */
.x-scroll-container{
  border-radius: 1rem;
  margin-top: 2rem;
  width: 672px;
  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:672px;
  font-size: 1.5rem;
}
.all-side-photo{
  width: 20rem;
  height: 2rem;
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: left;
}
.all-side-photo>ul{
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.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: 672px;
  height: 40rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
}
.cart-detail-view>.main-view>img{
  width: 672px;
  height: 40rem;
  border-radius: 1rem;
}
.item-description{
  font-size: 1.5rem;
  width: 672px;
  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: 672px;
  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: 672px;
}
.product-details>div{
  width: 24rem;
  margin-right: 5rem;
}

.add-to-cart-box{
  width: 672px;
  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: 672px;
}
 /* 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: .05rem solid var(--mainColor);
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;
}
.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;
}
.para1 h1{
margin-top: 2rem;
margin-bottom: 3rem;
font-size: 4rem;
font-weight: bold;
}
.para2 h1{
margin-top: 2rem;
margin-bottom: 3rem;
font-size: 4rem;
font-weight: bold;
}
.para2 p{
font-size: 1.6rem;
text-indent: 10rem;
text-align: justify;
}
.para1 p{
font-size: 1.6rem;
text-indent: 10rem;
text-align: justify;
}

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

}
.para1 img{
height: 60rem;
width: 80rem;
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;
}
/* cart page starts here */
#cart-item-main-cont{
width: 662px;
padding: 1rem;
display: flex;
}
.cartBox>h2{
font-weight: bolder;
}
.cartBox>small:first-of-type{
color: var(--mainColor);
}
.product-description-container{
margin-bottom: 2rem;
display: flex;
width: 400px;
}
.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-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{

margin-left: 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{
margin-top: 10rem;
background-image: url('transactionSuccess.svg');
height: 70rem;
width: 50rem;
background-repeat: no-repeat;
background-size: contain;
}


/* all types of 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;
margin-bottom: 15rem;
margin-top: 2rem;

}
.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: .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;
}
.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;
  }

