
.bg_overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222222;
    opacity: 0.2;
}

.slider-center-aligned-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.languageColour{
    color: #E98C81 !important;
}

#quantityPicker{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

#quantityPicker span{
    padding: 0.2rem 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 30px;
    display: none;
}

.active_quantityPicker{
    border: 1px solid transparent;
    background: #E98C81;
    color: white;
}

#quantityDropdown{
    border: 1px solid #e1e1e1;
    height: 45px;
    width: 150px;
    background: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    /* font-family: "Oswald", sans-serif; */
    letter-spacing: 0.025em;
    line-height: 45px;
    padding: 0 30px;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    margin-right: 5px;
}

.home-shop_btn_container{
    display: flex; 
    align-items: center; 
    justify-content: space-around;
}

.modalBtnContainer{
    display: flex;
    align-items: center;
    gap: 20px;
}

/* empty cart page */

#emptyCart{
    display: block;
}

#cart{
    display: none;
}

.empty-cart-conatainer{
    margin: 60px 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.empty-cart{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.empty-cart-image{
    width: 300px;
    height: auto;
    object-fit: fill;
}

.product-image-1, .product-image-2{
    width: 300px;
    height: 300px;
}

.footerlogo{
    width: 100px;
    height: auto;
    object-fit: contain;
}

.footer_contact_info{
    line-height: 2;
    color: #D8D8D8;
    font-weight: 300;
}

/* policy pages */

.info-content{
    margin: 50px 8vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-list{
    list-style: disc;
    margin-left: 50px;
}

.active_header{
    color: #E98C81;
}

.active-menu{
    color: #E98C81 !important;
}

.product-details-shipping{
    font-weight: 400;
}

/* home page */

.home-sub-banner-container{
    position: relative;
}

.home-sub-banner-overlay{
    position: absolute; 
    top: 0; bottom: 0; 
    left: 0; right: 0; 
    background:#222222; 
    opacity: 0.3;
}

.home-sub-banner-text{
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    color: white; 
    font-size: 1.6rem; 
    line-height: 2rem;
    font-weight: 500;
    text-align: center;
}

.home_sub_banner_para{
    color: black; 
    font-size: 1.2rem; 
    line-height: 2rem;
    font-weight: 500;
    text-align: center;
}

.cart-buttons{
    display: flex;
    align-items: center;
    justify-content: space-around;
  font-weight: 600;
  /* font-family: "Oswald", sans-serif; */
  height: 45px;
  letter-spacing: 0.025em;
  padding: 10px 30px;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  width: auto;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 25px;
  background-color: #d8d8d8;
  color: #1b1b1c;
}

.cart-shipping-text-container{
    width: 100%; 
    display: flex;  
    justify-content:flex-end;
    margin: 10px 0px;

}

/* cart page */



.cart_quantity_counter_container{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.cart_quantity_counter{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cart_qtyBtn{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.cart_quantityText{
    margin: 0 10px;
}

/* Floating whatsapp icon */

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alert styles */


.alert-container{
    display: none;
    position: fixed;
    left: 20px;
    bottom: 80px;
    pointer-events: none;
    z-index: 999999;
  }
  
  #alertContent{
    margin: 0 16px;
  }
  

@media screen and (max-width: 600px) {
   
    .float{
      width: 30px;
      height: 30px;
      font-size: 16px;
      right: 20px;
    }
  }