@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #21b354;
  --secondary-color: #f58634;
  --white-color: #ffffff;
  --black-color: #000000;
  --pink-color: rgba(236, 38, 143, 0.5);
  --gray-color: #a0a0a0;
}
body {
  background-color: #fff !important;
  font-family: "Inter", serif;
}

.primary_color {
  color: var(--primary-color) !important;
}

.secondary_color {
  color: var(--secondary-color) !important;
}

.white_color {
  color: var(--white-color) !important;
}

.pink_color {
  color: var(--pink-color) !important;
}

.gray_color {
  color: var(--gray-color) !important;
}

.bg-green {
  background-color: var(--primary-color) !important;
}

.bg-gray {
  background-color: rgba(86, 172, 89, 0.1) !important;
}

.bg-orange {
  background-color: var(--secondary-color) !important;
}
.lite_black{
  color: #333;
}
.black_color {
  color: #000000 !important;
}
.red_color {
  color: red !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-32 {
  font-size: 32px !important;
}
.fs-28 {
  font-size: 28px !important;
}
.fs-26 {
  font-size: 26px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.py-100 {
  padding: 100px 0px;
}

.cursor-pointer {
  cursor: pointer;
}
.btn-close {
  font-size: 18px;
  border: 1px solid red;
  border-radius: 50%;
  width: 10px !important;
  height: 10px !important;
}

hr {
  border-top: 1px solid #000000;
  opacity: 1;
  margin: 30px 0px;
}

.line-clamp{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.br-16 {
  border-radius: 16px;
}

.bg-none {
  background: none;
}

.bg-grey {
  background-color: rgba(240, 237, 255, 0.8);
}

.w-fit {
  width: fit-content;
}
.white-space-nowrap{
  white-space: nowrap;
}
.search_list{
  height: 400px;
  overflow: scroll;
}
.about_us{
  text-align: justify;
}
.cart-list{
  background: #21b354;
  text-align: center;
  border-radius: 100%;
  right: -11px;
  top: -10px;
  color: white;
  font-size: 12px;
  width: 20px;
  padding: 2px;

}
/* about pages css */
.about-page-logo{
  
    object-fit: contain;
  
}

@media only screen and (max-width: 992px) {
  .py-100 {
    padding: 30px 0px;
  }
  .fs-40 {
    font-size: 28px !important;
  }

  .fs-32 {
    font-size: 22px !important;
  }
  .fs-28 {
    font-size: 18px !important;
  }
  .fs-26 {
    font-size: 18px !important;
  }

  .fs-24 {
    font-size: 18px !important;
  }

  .fs-22 {
    font-size: 16px !important;
  }

  .fs-20 {
    font-size: 16px !important;
  }
  .fs-18 {
    font-size: 16px !important;
  }

  .fs-16 {
    font-size: 14px !important;
  }

  .fs-15 {
    font-size: 14px !important;
  }

  .fs-14 {
    font-size: 12px !important;
  }
}

.custom-toast .toast-close {
  color: white !important; 
  font-weight: bold !important;
  /* font-size: 18px !important;
  opacity: 1 !important; */
  margin-left: 10px;
}
@media only screen and (max-width: 450px) {
  .py-100 {
    padding: 75px 0px;
  }
}
@media (min-width: 451px) and (max-width: 992px) {
 .breadcrum-tab{
margin-top: 30px;
 }
}
 

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  width: 5px;
  height: 5px;
}
 

::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
  min-height: 20px;
}


::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
  height: 5px;
 }


 @keyframes fadeText {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.4;
  }
}



