#headerLogo {
  width: 150px;
  height: 75px;
  object-fit: fill;
  margin: 0 0 0 15px!important;

}

#offerHeaderContent{
  color: #fff;
  text-align: center;
}

.bottom_header_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

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

.language_selecter {
  border: none;
  outline: none;
  margin: 0 10px;
  font-family: 'Open Sans', sans-serif;
}

.banner_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.25;
}

.avatar{
  width: 30px;
  height: 30px;
}

/* home page */

.home_sub_banner {
  height: 360px;
  position: relative;
}

.home_sub_banner_overlay {
  position: absolute;
  background-color: black;
  opacity: 0.3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* header language dropdown */

.item_deatils h6 {
  width: 140px;
}

.dropbtn {
  color: black;
  /* padding: 16px; */
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.dropdown-content span {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content span:hover {
  background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
  display: block;
}

.arrow {
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  vertical-align: middle;
  border-left: 0.15em solid black;
  border-bottom: 0.15em solid black;
  transform: rotate(-45deg);
  margin-left: 0.38em;
  margin-top: -0.25em;
  transition: transform 100ms ease-in-out;
}

/* product details */

#quantityDropdown span {
  line-height: 10px;
}

.quantityDropdownValue {
  background-color: white !important;
}

.product_top_section{
  display: flex !important;
  flex-direction: row !important;
  width: 80%;
}

/* Why choose us section - index.html */

.why_choose_us_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.why_choose_us_container h2 {
  color: white;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.why_choose_us_container img {
  width: 10rem;
  height: 10px;
}

.why_choose_us_container p {
  color: antiquewhite;
  font-style: italic;
  font-size: 18px;
  text-align: center;
}

/* product card */

.productInfoContainer{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 15px;
}

.productBtnContainer{
  display: flex; 
  flex-direction:column; 
  gap:10px;
}

.productInfo{
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.product_addCartBtn{
  border: 1px solid #7fb401; 
  color: #7fb401; 
  font-size: 12px; 
  padding: 5px 10px;
}

.product_buyNowBtn{
  border: 1px solid #7fb401; 
  background-color: #7fb401; 
  color: #fff; 
  font-size: 12px;
  padding: 5px 10px;
}

/* product_details.html */


.item_quantity_container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 3rem;
}

.item_quantity_container span {
  border: 1px solid #333;
  padding: 0px 20px;
  line-height: 30px !important;
  border-radius: 50px;
}

.active_quantity {
  border: 1px solid transparent !important;
  color: white;
  background-color: #7fb401;
}

#stars i {
  color: #7fb401;
  font-size: 20px;
}

#removeicons i {
  /* color: black; */
  font-size: 20px;
}

/* sidebar section - cart */

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

.sidebar_btn {
  display: inline-block !important;
  outline: none;
  border: none;
}

.fa-times-circle-o {
  color: white;
  font-size: 20px;
}

/* empty cart page */

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

.empty_cart_heading {
  color: #272727;
  font-size: 30px;
}

.empty_cart_subheading {
  font-size: 16px;
}

.empty_cart_button {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  height: 45px;
  letter-spacing: 0.025em;
  line-height: 45px;
  padding: 0 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: #7fb401;
  color: #f9f9f9;
}

.cart_note {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: right;
  margin-bottom: 20px;
}

.cart_total_section {
  margin-top: 5vw;
  width: 500px;
  height: fit-content;
}

.cart_total_price {
  padding-top: 5vh;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.cart_price_section {
  background-color: #f8f8f8;
  padding: 1.5vw;

}

.cart_total_btn {
  width: 100%;
}

td {
  padding-bottom: 10px !important;
}

.cart_name_quantity_container {
  display: flex;
  flex-direction: row;
  min-width: 350px !important;
}

.cart_name_quantity_container img{
  width: 120px !important;
  margin-left: 16px !important;
}

.price_container{
  margin-top: 30px;
  min-width: 80px;
}

.quantity_container{
  margin-top: 30px;
  min-width: 200px;
}

.cart_name_quantity {
  margin-left: 25px;
}

.cart_name_quantity h6 {
  line-height: 40px;
}

/* footer link */

#footerLogo {
  width: 200px;
  height: auto;
  margin-bottom: 50px;
}

.footer_logo_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2vw;
}

.footer_logo_container p {
  text-align: center;
}

.footer_social_links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer_social_links a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 0.5px solid #9c9c9c;
  border-radius: 50%;
}

.footer_social_links a:hover {
  color: black;
  border-color: white;
  background-color: white;
}

.footer_working_hours {
  display: flex;
  gap: 10px;
}

/* fkndfksnafklamfkl */

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

.info-list {
  list-style: disc;
  margin-left: 50px;
  color: #9c9c9c;
}

/* common */

td {
  padding: 15px 0 !important;
}

.quantity_counter_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.add_to_cart_btn {
  color: #fff;
  background: #7fb401;
  line-height: 45px;
  width: 120px;
  font-weight: 700;
  text-align: center;
}

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

.qtyBtn {
  height: 40px !important;
  width: 40px !important;
  border-radius: 50%;
  color: black !important;
  background: #f7f7f7 !important;
  line-height: normal !important;
}


/* Modal - popup */

#modal {
  display: none;
}

.modal_container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.175);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 200;
}

.modal_content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  /* border: 1px solid rgba(0, 0, 0, 0.175); */
  border-radius: 0.5rem;
  outline: 0;
  max-width: 900px;
}

.close-button {
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 99;
  opacity: 1;
  color: #1B1B1C;
  font-weight: 400 !important;
}

.modal_body {
  padding: 20px 15px;
}

.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

.modal_product {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  /* margin-bottom: 30px; */
}

.modal_image_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.img-fluid {
  width: 480px;
  height: 480px;
  object-fit: cover;
}

/* contact page */

.contact_main_heading {
  color: #333;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin: 0px 0 30px 0 !important;
}

/* shop page */

.shop_sidebar_margin{
  margin-top: 30vh !important;
}


/* Alert styles */

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

#alertContent{
  margin: 0 16px;
}

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



@media screen and (max-width: 992px) {
  .modal_content {
    width: 600px;
  }

  .modal_body {
    padding: 30px 20px;
  }

  .shop_sidebar_margin{
    margin-top: 5vh !important;
  }

  .product_top_section{
    width: 100% !important;
    padding: 0 16px;
  }
}

@media screen and (max-width: 768px){
  .product_top_section{
    display: flex !important;
    flex-direction: column !important;
  }
}

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

@media screen and (max-width: 450px) {
  .cart_total_section{
    width: 280px;
  }
}