
/*--------------  header    --------------*/

.header_mobileFilterBtn{
  display: none !important;
  @media(max-width:768px){
    display: flex !important;
    margin-left: auto;
  }
}



.header__subheader{
    background-color: #ae1a18;
    display: flex;
    justify-content: flex-end;
    padding: 5px 30px;
}

@media(max-width:768px){
  .header__subheader{
    padding: 5px 10px;
  }
}

.header__email a{
  text-decoration: none;
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 5px;
}

.header__email a span{
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 16px;
  color: white;
  
}

.main-header{
    position: sticky;
    top: 0;
    left:0;
    right:0;
    background-color:white;
    z-index:700;
}

.header {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px 0px;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  position: sticky;
  top: 0;
  z-index: 8;
  background-color: white;
  min-height: 57px;
  justify-content: space-between;
  padding-left: 100px;
  
  @media(max-width:768px){
    padding-left: 10px;
  }

}

.header__logo{
  display: inline-block;
  position: absolute;
  top:0;
  left: 0;
  animation-name: rotate_logo;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-delay: 1.5s;
  animation-timing-function: ease-in-out;
}

@keyframes rotate_logo {
  0% {
    transform: rotate(0deg) scale(1);
  }
  33% {
    transform: rotate(20deg) scale(1.2);
  }
  66% {
    transform: rotate(-20deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

.header__logo img {
  display: block;
  width: 120px;
  @media(max-width:768px){
    width:110px;
  }
}
/* header filters module */


.header__filters{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;

  @media(max-width:768px){
    display: none;
  }
}

.header__filters-container{
  background-color: #F3F3F3;
  padding: 5px 5px;
  border-radius: 10px;
  display: flex;
  flex-wrap: nowrap;
  column-gap: 0px;
  align-items: center;
}

.header__filters-container span{
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 14px;
  color: #707070;
  padding: 10px 15px;
  cursor: pointer;
}

.header__return-link{
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 14px;
  color: #741115;
  float:right;
  
}


/*--------------  footer    --------------*/
.footer{
  background-color: rgb(107, 99, 99);
  padding: 10px 20px;
}


.footer-menu {
  color: white;
}

.footer-menu ul{
  margin: 0;
}

.footer-menu-items {
  list-style-type: none;
  padding: 0;
}

.footer-menu-items li {
  display: inline-block;
  margin-right: 20px;
}

.footer-menu-items li a {
  color: white;
  text-decoration: none;
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  @media (max-width:768px) {
    font-size: 14px;
  }
}

.footer-menu-items li a:hover {
  color: #ccc;
}

/*--------------  main layout    --------------*/

.mainContent {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  min-height: calc(100vh - 114px);
}
.mainContent__center {
  width: 100%;
  max-width: 1400px;
  padding: 20px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  @media(max-width:768px){
    padding-inline: 10px;
  }
  
}

/*--------------  offer card    --------------*/

.offersCard-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  width: 100%;
}

#offersContainer{
  
}

.offersCard-container__inner{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center ;
  gap: 15px;
}

.offerCard{
  max-width: 443px;
  width:100%;
  box-shadow: rgba(0, 0, 0, 0.08) 4px 4px 16px 0px;
  display: flex;
  flex-direction: column;

  @media(max-width:962px){
    max-width: 350px;
    width: 100%;
  }

  @media(max-width:888px){
    max-width: none;
    width: 100%;
  }
}

.offerCard__imageContainer{
  position: relative;
  height: 250px;
}

.offerCard__imageContainer-mainImg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0px 0px;
}

/*label dianomh component*/
.offerCard__dianomiLabel{
  display: flex;
  flex-direction:row ;
  background-color: white;
  align-items: center;
  column-gap: 5px;
  position: absolute;
  bottom: 0px;
  right: 10px;
  padding:3px 10px;
  border-radius: 8px 6px 0 0;
}



.offerCard__dianomiLabel span:nth-child(1){
  display: flex;
  align-items: center;
}

.offerCard__dianomiLabel img{
  width:20px;
  display: block;
  transform: scaleX(-1);
}



/*store image component*/
.offerCard__storeImg{
   position: absolute;
   bottom:10px;
   left:10px;
}

.offerCard__storeImg span img{
   border-radius: 10px;
   width: 80px;
   height: 80px;
   object-fit: cover;
   object-position: center;
   border: 1px solid grey;
}

/* body componetn*/

.offerCard__body{
  padding:15px 10px;
  border-radius: 0 0 8px 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/*store name component*/
.offerCard__storeNamePrice{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.offerCard__storeName{
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 20px;
  color: #141414;
  @media(max-width:768px){
    font-size: 18px;
  }
}

.offerCard__seeOffer{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top:15px;
    flex-grow: 1;
}

.offerCard__seeOffer span{
  text-decoration: none;
  padding: 8px 30px;
  border-radius: 4px;

  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: white;

  background: #ae1a18;
  cursor: pointer;
  
  @media(max-width:768px){
    font-size: 14px;
  }

}

/*--------------  pagination    --------------*/

.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 10px;
}

.pagination img{
  width: 30px;
  display: none;
}
.pagination span{
  display: inline-block;
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  color: white;
  text-align: center;
  background: #ae1a18;;
  background-size: 300% 100%;
  padding: 8px 30px;
  cursor: pointer;
  @media(max-width:768px){
    font-size: 16px;
    margin-bottom: 40px;
  }
}


.pagination--hidden{
  display: none;
}

.pagination--loading img{
  display: inline-block !important;
}

/*--------------  loading module    --------------*/

.loading-module{
  position: fixed;
  top: 0;
  bottom:0;
  left:0;
  right:0;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.loading-module img{
  width:100px;
  @media(max-width:768px) {
    
  }
}

.loading-module span{
  margin-bottom: 20px;
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: 19px;
  line-height: 15px;
  color: white;
}

.loading-module_is-hidden{
  display: none;
}


/*--------------  filter button module    --------------*/



/* not fixed mobile button filter*/
.mobileFilterBtn{
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.mobileFilterBtn__container{
  display: flex;
  justify-content: center;
  background-color: white;
  
  border-radius: 14px; 
  column-gap: 8px;
}

.mobileFilterBtn-imgContainer{
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobileFilterBtn-imgContainer img{
  width: 25px;
}

.mobileFilterBtn__text{
  display: flex;
  align-items: center;
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 15px;
  color: black;
}

/*fixed mobile button filter*/
.mobileFilterBtn_fixed{
  position: fixed;
  z-index: 6;
  bottom: 50px;
  left:50%;
  transform: translateX(-50%);
}

.mobileFilterBtn_visibility{
  display: none !important;
  @media(max-width:768px){
    display: flex !important;
  }
}

.mobileFilterBtn_fixed .mobileFilterBtn__container{
  box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 16px 0px;
  padding: 10px 30px;
}

/*--------------  module mobile container filters    --------------*/

.filterModuleBottom{
  position: fixed;
  z-index: 7;
  display: flex;
  justify-content: center;
  padding:50px 0px;
  top:100%;
  width: 100%;
  transform: translateY(20%);
  background-color: white;
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: 0px -1px 6px 0px rgba(163,163,163,1);
  -moz-box-shadow: 0px -1px 6px 0px rgba(163,163,163,1);
  box-shadow: 0px -1px 6px 0px rgba(163,163,163,1);
  transition: transform 1s;
}

.filterModuleBottom_open{
  transform: translateY(-100%);
}

.filterModuleBottom-container{
  max-width: 360px;
  position: relative;
}

.filterModuleBottom__closeButton{
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.filterModuleBottom__closeButton img{
  width: 30px;
  height: 30px;
}
.filterModuleBottom_vertical_filters{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.filterModuleBottom_vertical_filters .filterModule__filters-container {
  margin-bottom: 10px;
}

.filterModuleBottom_horizontal_filters {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 5px;
  justify-content: center;
}

@media(max-width:768px){
  .filterModuleBottom_horizontal_filters{
    display: none;
  }
}

/*--------------  module filters     --------------*/



.filterModule__filters{
  width: 100%;
}



.filterModule__closeButton img{
  width:30px;
}

.filterModule__filters-container{
  background-color: #F3F3F3;
  padding: 5px 5px;
  border-radius: 10px;
  display: flex;
  flex-wrap: nowrap;
  column-gap: 0px;
  align-items: center;
}

.filterModule__filters-container-category{
  background-color: #F3F3F3;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  flex-wrap: nowrap;
  column-gap: 0px;
  align-items: center;
}

.filterModule__filters-container-category select{
  border: 1px solid rgb(204, 204, 204);
  border-radius: 5px;
  padding: 5px 15px;
  font-family: var(--font-family-sans);
  font-weight: 400;
  font-size: 14px;
}

.filterModule__filters-container-category select:focus-visible{
  outline: none;
  border: none;
}

.filterModule__filters-container span{
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 14px;
  color: #707070;
  padding: 10px 15px;
  cursor: pointer;
}

/*--------------  noResults    --------------*/

.noResults{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.noResults_isHidden{
  display: none;
}

.noResults p{
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: black;
  
}

@media(max-width:768px){
  .noResults p{
    font-size: 16px;
  }
}

/*--------------  general classes    --------------*/

.no-break {
  white-space: nowrap;
  overflow-wrap: normal;
  word-wrap: normal;
  word-break: keep-all;
}

.active_filter{
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(219,219,219,1);
  -moz-box-shadow: 0px 0px 6px 0px rgba(219,219,219,1);
  box-shadow: 0px 0px 6px 0px rgba(219,219,219,1);
  color: black !important;
}

.is_hidden{
  display: none !important;
}


#splash-screen {
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/splash-mobile.jpeg') no-repeat center center;
  @media (min-width:769px){
    background: url('../images/splash-desktop.png') no-repeat center center;
  }
  
  background-size: cover;
  z-index: 9999;
  animation: zoomEffect 1s ease-in-out infinite;
}

@keyframes zoomEffect {
  0% {
      transform: scale(1);
      opacity: 0.8;
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
      opacity: 0.8;
  }
}
/*--------------  simple page    --------------*/


.page__inner{
 
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 15px;
    margin-top: 60px;
}

.page__title{
  font-family: var(--font-family-sans);
  font-size: 35px;
  font-weight: 600;
  color: #444;
  @media(max-width:768px) {
   font-size: 25px;
  }
}

.page__body{

}

.content {
  font-family: var(--font-family-sans);
  line-height: 1.6;
  color: #333; /* General text color */
}

.content p{
  font-size: 1rem;
  @media (max-width:768px) {
    font-size: 0.8rem;
    margin: 5px 0px;
  }
}

/* Style for h1 inside .content */
.content h1 {
  font-family: var(--font-family-sans);
  font-size: 2.5em;
  font-weight: bold;
  color: #444;
  margin-bottom: 20px;
  @media(max-width:768px){
    font-size: 2em;
  }
}

/* Style for h2 inside .content */
.content h2 {
  font-family: var(--font-family-sans);
  font-size: 2em;
  font-weight: bold;
  color: #444;
  margin-bottom: 18px;
  @media(max-width:768px){
    font-size: 1.75em;
  }
}

/* Style for h3 inside .content */
.content h3 {
  font-family: var(--font-family-sans);
  font-size: 1.75em;
  font-weight: bold;
  color: #444;
  margin-bottom: 16px;
  @media(max-width:768px){
    font-size: 1.5em;
  }
}

/* Style for h4 inside .content */
.content h4 {
  font-family: var(--font-family-sans);
  font-size: 1.5em;
  font-weight: normal;
  color: #444;
  margin-bottom: 14px;
  @media(max-width:768px){
    font-size: 1.4em;
  }
}

/* Style for unordered list inside .content */
.content ul {
  font-family: var(--font-family-sans);
  margin: 0;
  padding-left: 20px;
  list-style-type: disc; /* You can change this to 'circle' or 'square' */
}

/* Style for ordered list inside .content */
.content ol {
  font-family: var(--font-family-sans);
  margin: 0;
  padding-left: 20px;
  list-style-type: decimal; /* Change to 'lower-alpha' or 'upper-roman' for different list styles */
}

/* Style for list items inside .content */
.content ul li,
.content ol li {
  font-family: var(--font-family-sans);
  margin-bottom: 10px; /* Space between list items */
  color: #555;
}

.popup{
  max-width: 700px;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: -1px 1px 39px -7px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px 1px 39px -7px rgba(0,0,0,0.75);
  box-shadow: -1px 1px 39px -7px rgba(0,0,0,0.75);
  border-radius: 8px;

  position: fixed;
  top:100px;
  z-index: 1000;

  @media(max-width:768px){
    width:calc(100% - 30px)
  }
  

}

.popup__header
{
  padding: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.popup__storeName{
  
  font-family: var(--font-family-sans);
  font-weight: bold;
  font-size: 20px;
  color: #141414;

  max-width: 17ch; /* Limit the content width to 13 characters */
  overflow: hidden; /* Hide overflow content */
  white-space: nowrap; /* Prevent text from wrapping to a new line */
  text-overflow: ellipsis; /* Show "..." for truncated text */
  @media (max-width:768px) {
    font-size: 16px;
    max-width: 24ch;
  }
}


.popup__iconClose::before{
 display: flex;
 justify-content: space-between;
 align-items: center;
 content: '\2716';
 color:#ae1a18;
 background-color:black;
 padding: 5px;
 border-radius: 4px;
}
.popup__iconClose{
  
}

.popup__body{
  padding: 10px;
  max-height: 60vh;
  min-height: 20vh;
  overflow-y:scroll;
  scrollbar-width: thin; /* Thin scrollbar */
  scrollbar-color: #ae1a18 #e0e0e0;
  position: relative;
  @media(max-width:768px){
    max-height: 60vh;
  }
}

.popup__body::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

.popup__body::-webkit-scrollbar-track {
  background: #ae1a18; /* Track background */
  border-radius: 10px; /* Roundness of the track */
}

.popup__body::-webkit-scrollbar-thumb {
  background: #ae1a18; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Roundness of the scrollbar thumb */
}

.popup__body::-webkit-scrollbar-thumb:hover {
  background: #ae1a18; /* Darker color on hover */
}


.popup__offers{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.popup__offer{
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.popup_offertext {
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #141414;

  @media(max-width:768px){
    font-size: 14px;
    line-height: 21px;
  }
  
}

.popup_offerLink{
  text-decoration: none;
  padding: 8px 30px;
  border-radius: 4px;
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: white;
  background: #ae1a18;
  cursor: pointer;

  @media(max-width:768px){
    font-size: 11px;
    line-height: 21px;
    padding: 4px 8px;
  }
}


.popup__footer{
  padding: 10px;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0,0,0,0.3);
}

.popup__closeBtn{
  text-decoration: none;
  padding: 8px 30px;
  border-radius: 4px;
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: white;
  background: #ae1a18;
  cursor: pointer;

  @media (max-width:768px) {
    padding: 4px 15px;
    font-size: 14px;
  }
  
}

.popup--isHidden{
  display: none;
}


.popup__loading img{
  width: 40px;
  height: 40px;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);

}

.popup__loading-hidden{
  display: none;
}

/*popup welcome*/

.popupWelcome__backkground{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 38, 38, 0.66);
    z-index: 800;
}

.popupWelcome__closeBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  color: red;
  background-color: black;
  padding: 5px;
  padding-top: 7px;
  border-radius: 3px;
}

.popupWelcome{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 768px;
    width: 100%;
    height: auto;
    z-index: 850;
}

@media(max-width:768px){
  .popupWelcome{
    max-height:none;
    height: auto;
    max-width: 95%;
  }
}

.popupWelcome__body{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}



@media(max-width:768px){
  .popupWelcome__body{
    flex-direction: column-reverse;
  }
}

.popupWelcome__leftSide{
    width: 50%;
}

@media(max-width:768px){
  .popupWelcome__leftSide{
    width: 100%;
  }
}

.popupWelcome__leftSide img{
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
   object-position: center;
}

@media(max-width:768px){
  .popupWelcome__leftSide{
    aspect-ratio: 16/9;
  }
}



.popupWelcome__rightSide{
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 20px 10px 30px 10px;
}

@media(max-width:768px){
  .popupWelcome__rightSide{
    width: 100%;
    padding: 10px  0 20px 0;
  }
}

.popupWelcome__rightSide img{
  max-width: 140px;
}

.popupWelcome__textContainer p{
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 16px;
  color: #141414;
  margin: 0;
  text-align: center;
  padding-inline: 10px;
}


.popupWelcome__textContainer p:nth-child(2){
  margin-top: 10px;
}

.popupWelcome__textContainer p:nth-child(3){
  margin-top: 10px;
}

/*headerWelcome*/

.headerWelcome{
  margin-top: 15px;
}
.headerWelcome__inner{
  max-width: 1360px;
  
  margin: 0 auto;
  padding-inline: 10px;
}

.headerWelcome__image img{
    max-width: 100%;
    width: 100%;
    height: 300px;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media(max-width:768px){
  
  .headerWelcome__image img{
    height: 200px;
    }
}

.headerWelcome__body{
 
  border: 1px solid rgba(44, 44, 44, 0.066);
  border-top: 0;
  border-radius: 0 0 8px 8px ;
  box-shadow: 0px 11px 5px 0px rgba(219,219,219,0.75);
  -webkit-box-shadow: 0px 11px 5px 0px rgba(219,219,219,0.75);
  -moz-box-shadow: 0px 11px 5px 0px rgba(219,219,219,0.75);
}

.headerWelcome__logo img{
  width: 100px;
}

.headerWelcome__text{
  padding: 15px 10px 10px 10px;
}

.headerWelcome__always-win{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;  
}

.headerWelcome__always-win div{
  text-align: center;
  font-family: var(--font-family-molivi);
  font-size: 34px;
  font-weight: 800;
  color:#ae1a18;
  word-spacing: -6px;
  margin-bottom: 20px; 
  margin-bottom: 0; 
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */ /* Adjust as needed */
  overflow: hidden;
  width: 0;
  animation: typing 5.5s steps(30, end) 1.5s forwards;
  @media (max-width:768px) {
    animation: typing 1.5s steps(22, end) 2s forwards;
  }
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}



.headerWelcome__text p{
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 16px;
  color: #141414;
}

.headerWelcome__text p:nth-child(1){
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

.headerWelcome__burger , .headerWelcome__pizza{
  font-size: 35px;
}

.headerWelcome__tazampafood{
  font-family: var(--font-family-monoton);
  font-size: 45px;
  color: #ae1a18;
}

@media(max-width:570px){
  .headerWelcome__tazampafood{
    font-size : 25px;
  }

  .headerWelcome__burger , .headerWelcome__pizza{
    font-size: 25px;
  }

  .headerWelcome__text p{
    margin: 8px 0;
  }

  .headerWelcome__always-win{
    margin-bottom: 20px;  
  }
  
}

.headerWelcome__text p{
  text-align: center;
}

@keyframes flicker {
  /* Initial state of animation */
  0%, 
  /* Final state of animation */
  100% { 
      text-shadow: 
          0 -1px 3px #fff, /* Innermost layer - intense heat (white) */
          0 -2px 6px #FF3, /* Second layer - core of flame (yellow) */
          0 -6px 12px #F90, /* Middle layer - body of flame (orange) */
          0 -10px 20px #C33; /* Outermost layer - edges of flame (red) */
  }
  /* Middle state of animation */
  50% { 
      text-shadow: 
          0 -2px 6px #fff, /* Innermost layer - intense heat (white) */
          0 -4px 12px #FF3, /* Second layer - core of flame (yellow) */
          0 -8px 16px #F90, /* Middle layer - body of flame (orange) */
          0 -12px 24px #C33; /* Outermost layer - edges of flame (red) */
  }
}

.fire {
  animation: flicker 2s infinite;
}

/*header welcome top carousel*/
.topCarousel img{
  width: 100%;
  max-height: 300px;
  height: 300px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
}

/* carousel template */

.store_category_carousel {
    
    margin-top: 10px;
    padding-inline: 10px;
}

.store_category_carousel__header{
  
  text-align: center;
  font-family: var(--font-family-molivi);
  font-size: 34px;
  font-weight: 800;
  color: #ae1a18;
  word-spacing: -6px;
  margin-bottom: 20px;
  margin: 5px 5px 5px 5px;
  @media(max-width:768px){
    font-size: 25px;
  }
}

.store_category_carousel__inner{

  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  padding: 10px 20px 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(44, 44, 44, 0.066);
  box-shadow: 0px 11px 5px 0px rgba(219, 219, 219, 0.75);
  -webkit-box-shadow: 0px 11px 5px 0px rgba(219, 219, 219, 0.75);
  -moz-box-shadow: 0px 11px 5px 0px rgba(219, 219, 219, 0.75);
}

.store_category_carousel .splide__arrow{
  background-color: white;
  opacity: 1 !important;
  -webkit-box-shadow: 0px 0px 50px -2px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 50px -2px rgba(0,0,0,0.75);
box-shadow: 0px 0px 50px -2px rgba(0,0,0,0.75);
}

.store_category_carousel .splide__arrow--prev{
  left: 5px;
  
}

.store_category_carousel .splide__arrow--next{
  right: 5px;
}

@media(max-width:768px){
    .store_category_carousel .splide__arrow--prev{
        left: 5px;
        width:20px;
        height:20px;
        
    }
    
    .store_category_carousel .splide__arrow--prev svg{
        width:15px;
        
    }

    .store_category_carousel .splide__arrow--next{
        right: 5px;
        width:20px;
        height:20px;
    }
    
    .store_category_carousel .splide__arrow--next svg{
        width:15px;
    }
}

.storCatregoryCarousel__item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.storCatregoryCarousel__item img{
  /*max-width: 100px;
  max-height: 100px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;*/
  width:100px;
  height:100px;
  display: block;
  cursor: pointer;
  
}

@media(max-width:768px){
  .storCatregoryCarousel__item img{
    max-width: 50px;
    max-height: 50px;
  }
}

.storCatregoryCarousel__item span{
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 14px;
  color: rgb(112, 112, 112);
  margin-top: 0px;

  display: inline-block;
  max-width: 100px;
  width: 100%;
  
  text-align: center;

}

@media(max-width:768px){
  .storCatregoryCarousel__item span{
    max-width: 50px;
    font-size: 10px;
  }
}

/*serch input field*/
.serchInputfield{
  background-color: #F3F3F3;
  padding: 10px 20px;
  position: relative;
  border-radius: 10px;
}


.serchInputfield input
{
  border: 1px solid rgb(204, 204, 204);
  font-family: var(--font-family-sans);
  font-weight: 400;
  font-size: 14px;
  border-radius: 5px;
  padding: 8px 15px;
  padding-left: 26px;
}

.serchInputfield input:focus{
  outline: none;
  border: 1px solid #ae1a18;
}

.serchInputfield img{
  position: absolute;
  left: 24px;
  top: 48%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.searchIcon img{
  width: 31px !important;
  margin-left:10px;
  margin-top:5px;
  cursor: pointer;
}

.searchIcon--hide_tb_ds{
  @media(min-width: 768px){
    display: none;
  }
}