#loader_overlay {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 1s 0.4s;
  opacity: 0.7;
}

.my-masonry-grid {
  display: -webkit-box; /* Not needed if autoprefixing */
  display: -ms-flexbox; /* Not needed if autoprefixing */
  display: flex;
  margin-left: -30px; /* gutter size offset */
  width: auto;
}
.my-masonry-grid_column {
  padding-left: 30px; /* gutter size */
  background-clip: padding-box;
}

/* Style your items */
.my-masonry-grid_column > div {
  /* change div to reference your elements you put in <Masonry> */
  background: grey;
  margin-bottom: 30px;
}

.photos-tab .img-box {
  display: initial !important;
}

.list-item {
  display: initial !important;
}

/*
.fade {
  background-color: #ffffff !important;
}*/

#__next-build-watcher {
  display: none;
}

/* offerbar css */
.available-offers .offerbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.available-offers .offerbar .offer {
  border: 2px dashed #ee7b00;
  padding: 5px 3px;
  color: #ee7b00;
}
.available-offers .offerbar + .offerbar {
  margin-top: 15px;
}
.available-offers .offerbar .qr-with-discount {
  display: flex;
  align-items: center;
}
.available-offers .offerbar .qr-with-discount .img-container {
  height: 50px;
  width: 50px;
  cursor: pointer;
}
.available-offers .review-btn {
  background-color: #33988d;
  padding: 10px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}
.claimedOffers-section {
  padding: 50px 0;
}
.claimedOffers-section .claimedOffers-container{
  max-width: 800px;
  padding: 0 15px;
  margin: 0 auto;
}
.claimedOffers-section .claimedOffer-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.claimedOffers-section .claimedOffer-content .offer-info{
  background: #fff;
    padding: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    max-width: 340px;
    width: 100%;
}
.claimedOffers-section .claimedOffer-content .offer-img{
  height: 250px;
  width: 250px;
  margin: 0 auto;
}
.claimedOffers-section .claimedOffer-content .offer-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.claimedOffers-section .qr-img {
  height: 300px;
  width: 300px;
  margin: 0 auto;
}
.claimedOffers-section .qr-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  width: 100%; /* Ensures the image fills its container */
  transition: transform 0.1s ease; /* Smooth transition effect */
}
.claimedOffers-section .qr-img.scalable {
  animation: scaleAnimation 3s infinite alternate; /* Apply the animation */
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* Scale up by 10% */
  }
}
.claimedOffers-section h5 {
  text-align: center;
  font-size: 15px;
  margin-top: 20px;
}
.validateOffer-section {
  padding: 50px;
}
.validateOffer-section .validate-offer-box {
  max-width: 400px;
  margin: 0 auto;
}
.validateOffer-section .validate-offer-box button {
  background-color: #33988d;
  padding: 10px 18px;
  border: 0;
  color: #fff;
}
@media screen and (max-width:700px){
  .claimedOffers-section .claimedOffer-content{
    flex-direction: column;
    justify-content: center;
  }
  .claimedOffers-section .claimedOffer-content .offer-info{
     margin-bottom: 30px;
  }
}

/* review component css */
.review-component-section {
  padding: 40px 0;
}
.review-component-section .review-point .rw-star {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 25px;
  align-items: center;
}
.review-component-section .review-point .usr-star span {
  color: #ffaa00;
}
.review-component-section .review-point .usr-act {
  display: flex;
  align-items: center;
}
.review-component-section .review-point .usr-act .rw-icon {
  margin-right: 10px;
}
.review-component-section .review-point .btn-clear {
  font-size: 20px;
  color: #33988d;
  font-weight: 500;
}

.verification-prompt .verification-status {
  flex-direction: column;
  display: flex;
  text-align: center;
  padding: 50px;
}
.verification-prompt .verification-status .verification-img {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.verification-prompt .verification-status .verification-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* css for restaurant-details payment images */
.card-img ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 10px; 
}

.card-img ul li {
  flex: 1 1 calc(20% - 10px); 
  max-width: calc(20% - 10px);
  box-sizing: border-box;
}

.card-img ul li img {
  width: 48px; 
  height: auto; 
  display: block;
}

/* .card-img ul li {
  flex: 1 1 calc(16.66% - 10px); 
  max-width: calc(16.66% - 10px);
  box-sizing: border-box;
} */
/* added style for inquiry button */
.inquiry-btn{
  margin-bottom: 30px;
}
.btn-section{
  display: flex;
  justify-content: flex-end;
  gap: 20px;

}
.btn-filled2{
  color: #ffffff;
  border: 1px solid #188478;
  border-radius: 50px;
  font-family: "Montserrat-SemiBold";
  font-size: 14px;
  padding: 8px 18px;
  text-transform: uppercase;
  transition: all 0.4s ease-out 0s;
  background: -webkit-linear-gradient(left, #188478 0%, #33988d 50%, #188478 100%);
  background: -o-linear-gradient(left, #188478 0%, #33988d 50%, #188478 100%);
  background: linear-gradient(to right, #188478 0%, #33988d 50%, #188478 100%);
  background-size: 200% auto;
  /* margin-left: 92%;
  margin-top: 10px; */
}
.dlt-btn{
  display: flex;
}
.carousel-item2{
  position: relative;
/* display: none; */
float: left;
width: 100%;
/* margin-right: -100%; */
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: -webkit-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.container2 {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.header2 {
  background-color: #f8f8f8;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}

.nav2 {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav2 li a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
}

.hero2 {
  background-color: #f0f4f8;
  text-align: center;
  padding: 50px 20px;
}

.hero2 h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero2 p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.ctaButtons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cta {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cta:hover {
  background-color: #0056b3;
}

.section2 {
  padding: 40px 20px;
  text-align: center;
}

.section2 h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.cityGrid, .categoryGrid, .featuredGrid, .whyGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cityCard, .categoryCard, .featuredCard, .whyItem {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: #333;
}

.cityImage, .featuredImage {
  height: 100px;
  background-color: #e0e0e0;
  margin-bottom: 10px;
}

.categoryIcon {
  font-size: 2em;
  margin-bottom: 10px;
}

.featuredCard h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.readMore {
  color: #007bff;
  text-decoration: none;
}

.readMore:hover {
  text-decoration: underline;
}

.newsletter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.emailInput {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 250px;
}

.subscribe {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.subscribe:hover {
  background-color: #218838;
}

.footer2 {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ddd;
}
