/*
Theme Name: Gut Health Child
Theme URI: http://example.com/twenty-twenty-one-child/
Description: Twenty Twenty-One Child Theme
Author: Your Name
Author URI: http://example.com
Template: twentytwentyone
Version: 1.0.0
*/
/* Add your custom styles here */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color: #fdf7e8;
  --accent-color: #FC5A31;
  --text-color: #263238;
  --btn-bg-color: #004638;
  --white-color: #ffffff;
  --open-color: green;
  --veg-bg-color: #e8f5e9;
  --non-veg-bg-color: #ffebee;
  --grey-color: #868686;
  --font-poppins: "Poppins", serif;
}

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

body {
  font-family: var(--font-poppins);
  background-color: var(--white-color);
  color: var(--text-color);
  line-height: 1.6;
}

@media print {
  a {
    text-decoration: none;
    color: inherit;
    /* Retain the text color for anchor text */
  }

  a[href]:after {
    content: none;
    /* Prevent the URL from being displayed */
  }
}

/* Commman CSS Start */
::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

::-moz-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

html, .article-list, .recipe-col {
  scrollbar-width: 0px;
  scrollbar-width: none;
}

.com-btn {
  border: 1px solid var(--btn-bg-color);
  border-radius: 8px;
  background: var(--btn-bg-color);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--white-color);
  font-size: 14.68px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  height: 42px;
  font-family: 'Poppins';
  cursor: pointer;
}


.scroll-more {
  position: absolute;
  bottom: 40px;
  /* Position at the bottom */
  left: 50%;
  transform: translateX(-50%);
  display: none;
  /* Hidden by default */
  font-size: 14px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white-color);
  padding: 5px 10px;
  border-radius: 5px;
}

.restaurant-cards:hover .scroll-more {
  display: block;
  /* Show on hover */
}


/* Comman CSS End */


.header-section {
  background-color: var(--primary-color);
  z-index: 9;
  position: sticky;
  top: 0;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 96%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 12px 12px;

}

.logo a {
  display: flex;
}

.logo a svg {
  max-width: 160px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo {
  flex: 1 0 0;
}

.sitetext {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: clamp(24px, 1.75vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;

}

nav.navigation {
  display: flex;
  justify-content: flex-end;
  flex: 1 0 0;
}

.simplemenu {
  position: relative;
}

button.join-button {
  -webkit-animation: glow 1.4s ease-out infinite;
  animation: glow 1.4s ease-out infinite;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 rgb(18 70 55 / 35%);
  }

  50% {
    box-shadow: 0 0 20px 0 rgb(18 70 55 / 35%);
  }
}

.dropdown-content {
  display: none;
  position: absolute;
  overflow: hidden;
  list-style-type: none;
  margin-top: 4px;
  padding-left: 0;
  background: var(--primary-color);
  right: 0;
  border-radius: 10px;
  box-shadow: rgb(18 70 55 / 21%) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.dropdown-content a {
  color: var(--btn-bg-color);
  padding: 0.8rem 1rem;
  text-decoration: none;
  font-size: clamp(13px, 1vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: block;
  min-width: 224px;
  transition: all 0.2s ease;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

.dropdown-content a:hover {
  background-color: var(--btn-bg-color);
  color: var(--white-color);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.dropdown-content li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

span.nv-ic {
  display: flex;
}

.dropdown-content a:hover span.nv-ic svg path {
  fill: var(--white-color);
}

.show {
  display: block;
}


button.dropbtn {
  cursor: pointer;
  min-width: 124px;
}

.arrow-icon span {
  display: flex;
  height: 16px;
  width: 16px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.simplemenu:has(.show) span.arrow-icon span {
  transform: rotate(180deg);
  transition: all 0.2s ease;
}

.sitetitle {
  display: flex;
  justify-content: center;
  flex: 1 0 0;
}

.main-content {
  display: flex;
  gap: 24px;
  width: 96%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Articles Section */
.lptitle {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: clamp(18px, 1.6vw, 30px);
}

.articles-section {
  width: 25%;
  border-right: 1px solid rgba(0, 0, 0, 0.10);
  padding-right: 24px;
}

.article-list {
  list-style: none;
}

.article-item {
  display: flex;
  gap: 20px;
  padding-bottom: 1rem;
  border-bottom: none;
}

.article-item:hover .articletitle {
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.article-item:hover .article-img img {
  transition: transform 0.3s ease;
  transform: scale(1.1);
}

.article-img-col {
  position: relative;
  background-color: rgb(235 228 212);
  z-index: 4;
  overflow: hidden;

}

.activity {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to left, rgba(251, 251, 251, .05), rgba(251, 251, 251, .3), rgba(251, 251, 251, .6), rgba(251, 251, 251, .3), rgba(251, 251, 251, .05));
  animation: loading 1s infinite;
  z-index: 1;
}

@keyframes loading {
  0% {
    left: -45%;
  }

  100% {
    left: 100%;
  }
}

.article-img {
  max-width: clamp(188px, 14.5vw, 278px);
  height: clamp(126px, 9.7vw, 186px);
  width: 100%;
  display: flex;
  overflow: hidden;
  z-index: 4;
  position: relative;
}

.article-details {
  flex: 1 0 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.article-item img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-details a {
  text-decoration: none;
}

.articletitle {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: clamp(12px, 1.35vw, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.readtime-col {
  color: var(--grey-color);
  font-family: var(--font-poppins);
  font-size: clamp(9px, 0.9vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

/* Restaurants Section */
.restaurants-section {
  width: 50%;
  position: relative;
}

.speciality-cards,
.restaurant-cards {
  position: relative;
}

.filter-options {
  display: flex;
  margin-bottom: 2rem;
  gap: 0.5rem;
  position: sticky;
  top: 120px;
  z-index: 7;
  background: var(--white-color);
  transition: all 0.2s ease;
}

.filter-scroll-active:before {
  content: '';
  width: 100%;
  position: absolute;
  z-index: -1;
  top: -55px;
  padding: 60px 0;
  background: var(--white-color);
}

.filter-btn {
  border: none;
  cursor: pointer;
  display: flex;
  height: 50px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 100px;
  background: var(--black-6, #F0F0F0);
  color: var(--text-color);
  text-align: center;
  font-size: clamp(10px, 1vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.tab-link.current {
  color: var(--white-color);
  background: var(--btn-bg-color);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.tab-link.current svg path {
  fill: var(--white-color);
}

.restList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  padding-bottom: 40px;
}

.tab-content.current:has(.rest-loader) .no-more-data {
  display: none;
}

.restaurants-section:has(.rest-loader) .no-more-data {
  display: none;
}

.no-more-data {
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--accent-color);
  /* position: absolute; */
  bottom: -10px;
  width: 100%;
  left: 50%;
  /* transform: translateX(-50%); */
  padding: 0;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: block;
}

/* width */
.restList::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.speciality-card,
.restaurant-card {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.2s ease;
  border: 1px solid #eee7e7;
  padding-right: 16px;
  overflow: hidden;
}

.speciality-card:hover,
.restaurant-card:hover {
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: rgb(238 231 231 / 50%) 0px 6px 24px 0px, rgb(238 231 231 / 38%) 0px 0px 0px 1px;
}

.speciality-card:hover .specialityName,
.restaurant-card:hover .restaurantName {
  color: var(--accent-color);
  transition: all 0.2s ease;
}

.speciality-card:hover .imgcol img,
.restaurant-card:hover .imgcol img {
  transition: all 0.2s ease;
  transform: scale(1.05);
}


.specialityName,
.restaurantName {
  transition: all 0.2s ease;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: clamp(14px, 1.2vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  flex: 1 0 0;
  width: calc(100% - 90px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.imgcol {
  flex: 1 0 0;
  overflow: hidden;
  display: flex;
  max-width: clamp(188px, 14.5vw, 278px);
  height: clamp(126px, 9.7vw, 186px);
  width: 100%;
}

.imgcol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease;
}

.contact-top-col {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.cuisine-type {
  display: none;
}

.rest-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
}

span.star {
  display: flex;
  height: 21px;
}

span.score {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: clamp(14px, 0.9vw, 16px);
  font-style: normal;
  line-height: normal;
}

span.score strong {
  color: var(--accent-color);
  font-weight: 700;
}

span.star svg {
  width: 18px;
  height: 19px;
}

.speciality-details,
.restaurant-details {
  flex: 1 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}

.address {
  color: rgba(0, 0, 0, 0.50);
  font-family: var(--font-poppins);
  font-size: clamp(11px, 0.9vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;

}

.locationSvg {
  display: flex;
}

.locationSvg svg {
  width: 16px;
  height: 20px;

}

.address a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.50);
  font-family: var(--font-poppins);
  font-size: clamp(11px, 0.9vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: all 0.2s ease;
  display: flex;
  gap: 4px;
}

.address a:hover {
  color: var(--accent-color);
  transition: all 0.2s ease;
}

.speciality-card :has(.address a:hover) .restaurantName,
.restaurant-card:has(.address a:hover) .restaurantName {
  color: var(--text-color);
}

.status.open span.hours-text {
  color: #027A48;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.day-time {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.day-time .day {
  flex: 1 0 0;
  max-width: 115px;
}

.day-time.active .day {
  font-weight: 600;
  color: var(--text-color);
}

.day-time.active .time {
  color: var(--text-color);
  font-weight: 600;
}

.day-time.active .open-day {
  color: #027A48;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.status.open {
  color: rgba(0, 0, 0, 0.50);
  font-family: var(--font-poppins);
  font-size: clamp(11px, 0.9vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Recipes Section */
.recipes-section {
  width: 25%;
  border-left: 1px solid rgba(0, 0, 0, 0.10);
  padding-left: 24px;
}

/* Recipe Card */
.recipe-card {
  align-items: center;
  display: flex;
  gap: 20px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #EEE7E7;
}

.article-item:last-child,
.recipe-card:last-child {
  border: none;
}

.article-item:not(:last-of-type) {
  border-bottom: 1px solid #EEE7E7;
}

.recipe-card:hover .recipe-title {
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-image img {
  transition: transform 0.3s ease;
  transform: scale(1.1);
}

/* Image Section */
.recipe-image {
  position: relative;
  overflow: hidden;
}

.recipe-image .receipe-img-data {
  width: clamp(103px, 8.1vw, 155px);
  height: clamp(90px, 7.1vw, 135px);
  display: flex;
}

.recipe-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
}

.btn-ring {
  display: none;
  position: absolute;
  background: rgb(255 255 255 / 60%);
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-ring:after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  margin: 8px;
  border-radius: 50%;
  border: 3px solid #004638;
  border-color: #004638 transparent #004638 transparent;
  animation: ring 1.2s linear infinite;

}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Share Icon */

.share-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* Recipe Details */
.recipe-details {
  flex: 1;
}

.recipe-details a {
  text-decoration: none;
}

.article-list,
.recipe-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dot-point {
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 100px;
  background: var(--grey-color);
}



.kcal-timecol {
  font-size: clamp(8px, 1vw, 12px);
  display: flex;
  gap: 6px;
  align-items: center;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.50);
  text-overflow: ellipsis;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.kcal-timecol:has(span.cook-time:empty) span.dot-point {
  display: none;
}

span.kcal-col {
  display: block;
}

.recipe-title {
  color: #000;
  font-family: var(--font-poppins);
  font-size: clamp(12px, 1vw, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 0.3s ease;
}

/* Tags */
.tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tags li {
  padding: 4px 8px;
  white-space: nowrap;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-color);
  text-align: center;
  font-family: var(--font-poppins);
  font-size: clamp(6px, 1vw, 12px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

/* Single Post */
/* Single Page  */
.singlePost .qsm-quiz-container {
  background: #f8f8f8;
}

.singlePost {
  width: 100%;
  max-width: 980px;
  padding: 4vw 2vw;
  margin: 0 auto;
  display: flex;
  gap: 110px;
  position: relative;
}

.sidebar-section {
  display: flex;
  justify-content: center;
}

.sidebar-section .read-time::before {
  display: none;
}

.sidebar-section .audioplayer {
  justify-content: left;
}

.post-data img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: clamp(430px, 33.25vw, 580px);
  object-fit: cover;
  display: block;
}

main#main:has(.liked-section) .postContent {
  padding-bottom: 24px;
  padding-top: 0;
}

.postContent .popsoacial-wrapper-scroll {
  position: fixed;
  left: 5%;
  top: 50%;
  transform: translateX(-50%);
  display: none;
}

.postContent .popsoacial-wrapper-scroll-hide {
  display: none;
}

.postContent .popsoacial-wrapper-scroll-show {
  display: block;
}

ul.popsocial {
  list-style: none;
}

ul.social a svg {
  width: 30px;
}

ul.social li {
  list-style: none;
}

div#print-content {
  display: none;
}

.articleList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.articleCard .link-more {
  display: none;
}

.articleCard {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  text-align: left;
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.8s ease;
}

.articleCard img {
  width: 100%;
  height: auto;
}

.articleCard p {
  color: var(--Dark-blue, var(--text-color));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.articleCard:hover {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  transition: all 0.8s ease;
}

.articleCard:hover a img {
  transform: scale(1.1);
  transition: 400ms;
}

.articleCard * {
  transition: 400ms;
}

.articleCard:hover a .titleArt,
.articleCard:hover a {
  color: var(--accent-color);
}

.articleImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.articleImg a {
  display: block;
}

.liked-section {
  max-width: 100%;
  display: flex;
  width: 100%;
  padding: 48px 0px 100px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--text-color);
  gap: 48px;

}

.articleShareCol {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

.share-wrapper {
  justify-content: space-between;
  align-items: center;
}

ul.social {
  padding: 0;
  margin: 0;
  display: flex;
}

.artshortContent p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: initial;
}

.titleArt {
  color: var(--text-color);
  font-family: var(--font-family-kokoro);
  font-size: clamp(18px, 1.35vw, 24px);
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: 0.48px;
}

.single-post .liked-section .artshortContent .titleArt {
  font-size: clamp(16px, 1.25vw, 20px);
  margin-bottom: 0;

}

.single-post .liked-section .articleCard {
  display: flex;
  background: none;
  border-radius: 0;
  flex-direction: column;
  gap: 20px;
  box-shadow: none;
  position: relative;
}

.single.single-post .liked-section a {
  text-decoration: none;
  display: flex;
}

.single-post .liked-section .category-pop {
  display: flex;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.70);
  align-items: center;
  gap: 10px;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.single.single-post .liked-section .titleArt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  letter-spacing: normal;
  font-size: clamp(14px, 1.25vw, 16px);
  margin-bottom: 0;
  line-height: 130%;
  color: var(--white-color);
  margin-top: 10px;
}

.artshortContent:hover a {
  text-decoration: none;
}

.link-more a {
  color: var(--text-color);
}

.title-related h4 {
  margin-bottom: 48px;
  color: var(--White, var(--white-color));
  font-family: 'Poppins';
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%
}

.recipe-container {
  max-width: 1090px;
  width: 100%;
  padding: 0px 30px;
  margin: 0 auto;
}

.liked-recipes-section .recipe-card {
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  gap: 20px;
  border: none;
  padding: 0;
}



.liked-recipes-section .recipe-card .recipe-image .receipe-img-data,
.liked-recipes-section .recipe-card .recipe-image img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

.recipe-image img .recipe-image {
  max-width: 100%;
  height: 100%;
}

.liked-recipes-section .recipe-card .recipe-image {
  max-width: 100%;
  width: 100%;
  height: 200px;
}

.liked-recipes-section .recipe-title {
  color: var(--white-color);
}

.liked-recipes-section .kcal-timecol {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.50);

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
}

.liked-recipes-section .tags li {
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.70);
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding: 4px 8px;
}

.artLinksButton a.linkArt {
  border-radius: 79.121px;
  border: 0.791px solid var(--Dark-blue, var(--text-color));
  display: flex;
  width: 38.769px;
  height: 38.769px;
  padding: 12.66px 12.66px 11.867px 11.867px;
  justify-content: center;
  align-items: center;
}

.artLinksButton a.linkArt:hover {
  transition: all 0.5s ease;
  border-color: var(--danger);
}

.artLinksButton a.linkArt:hover svg path {
  fill: var(--portland-orange);
  transition: all 0.5s ease;
}

.socialPostShare {
  padding: 10px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease;
}

.socialPostShare .share:hover,
.socialPostShare .share:focus,
.socialPostShare .colShare:hover,
.socialPostShare .colShare:focus {
  animation: clickshare 1s ease 0s 1 normal forwards;
  -webkit-animation: clickshare 1s ease 0s 1 normal forwards;
}

@keyframes clickshare {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
    color: var(--portland-orange);
  }

  100% {
    opacity: 1;
  }
}

.socialPostShare ul.postshare .fas svg {
  transition: all 0.5s ease;
}

.socialPostShare ul.postshare .fas:hover svg {
  color: var(--portland-orange);
  transition: all 0.5s ease;
}

.socialPostShare ul.postshare {
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  left: 46px;
  gap: 8px;
  top: 6px;
}

.socialPostShare ul.postshare li a {
  display: block;
  cursor: pointer;
  color: var(--text-color);
}

.socialPostShare ul.postshare li a svg {
  width: 30px;
  height: 30px;
}

.postshare {
  display: none;
}

.mobile-details-post {
  display: none;
  opacity: 0;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  justify-content: center;
}


.mobile-details-post .sideshare-wrapper {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px;
  margin: 0;
}

.mobile-details-post .iprint-post {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px;
  margin: 0;
}

.mobile-details-post .read-time {
  border-right: 1px solid #D4D6D7;
  padding-right: 16px;
  line-height: 1;
}

.wpsisac-slick-slider .slick-arrow,
.wpsisac-slick-carousal .slick-arrow {
  background-color: transparent !important;
}

.wpsisac-slick-slider .slick-arrow svg,
.wpsisac-slick-carousal .slick-arrow svg {
  display: none;
}



.wpsisac-slick-slider.design-2 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-overlay {
  background: none;
  position: unset;
  display: block;
}

.wpsisac-slick-slider.design-2 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-content {
  position: unset;
  transform: unset;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  float: none;
}

.wpsisac-slick-slider h2.wpsisac-slide-title {
  margin: 12px 0 12px 0 !important;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--post-heading-size);
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  padding: 0 10px !important;
  color: var(--text-color) !important;
  text-shadow: none !important;
}

.wpsisac-slick-slider .wpsisac-readmore {
  display: none;
}

.content-card {
  text-align: center;
}

.slider-buttons {
  position: absolute;
  top: 35%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 99;
}

.slider-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5em;
}

.slider-buttons .slider-button.slick-next.slick-arrow:before {
  right: 0;
}

.slider-buttons a.slider-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-buttons a.slider-button.slick-prev.slick-arrow {
  left: -16px;
}

.slider-buttons a.slider-button.slick-next.slick-arrow {
  right: 28px;
}

.slider-container {
  min-height: 710px;
  position: relative;
}

.slider-buttons a.slick-prev.slick-arrow::before {
  transform: rotate(180deg) translateX(-12px);
}

.slider {
  transition: transform 0.5s ease-in-out;
  position: relative;
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
}

.slide {
  width: 100%;
  box-sizing: border-box;
  position: absolute;
}

.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.slide.slide-z-3 .post-img {
  padding: 0 40px;
}

.slide.slide-z-3 .post-img img {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -ms-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.slide.slide-z-2 .post-img {
  padding: 0 20px;
}

.slide.slide-z-2 .post-img img {
  padding: 7px 0;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -webkit-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -moz-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -ms-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -o-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.slide.slide-z-1 .post-img {
  padding: 0;
}

.slide.slide-z-1 .post-img img {
  padding: 14px 0;
}

.post-img {
  display: block;
  max-height: 100%;
  width: 100%;
}

.post-img img {

  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: clamp(190px, 41.35vw, 480px);

}

.post-data .wp-post-image {
  border-radius: 16px 16px 0 0;
}

.content-card {
  display: none;
}

.slider-active .content-card {
  display: block;
  margin-top: 40px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.slide {
  transition: opacity 0.5s ease-in-out;
}

.share-wrapper i svg {
  width: 24px;
  height: 24px;
  user-select: none;
}

.read-time,
.icon-date,
.shareCountcol {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 150%;
  font-family: 'Poppins';
}

.sideshare-wrapper {
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  overflow: visible;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6px;
  background: #F1E7DF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
  transition: all 0.5s ease;
  z-index: 6;
}

.sideshare-wrapper:hover {
  background-color: var(--white-color);
  transition: all 0.5s ease;
}

.sideshare-wrapper .colShare {
  height: 28px;
}

.iprint-post {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  cursor: pointer;
}

.popsoacial-wrapper {
  position: absolute;
  left: 0;
  top: 55px;
}

.popsoacial-wrapper .popsocial {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: absolute;
  left: -40px;
  background: #ebebeb;
  border-radius: 50px;
  padding: 6px 4px;
  z-index: 99;
  width: auto;
  top: 40%;
  transform: translateY(-50%);
  list-style: none;
}

.popsoacial-wrapper .popsocial li {
  margin-bottom: 0;
}

.popsoacial-wrapper .popsocial li i svg {
  width: 28px;
  height: 28px;
  transition: all 0.2s ease;
}

.popsoacial-wrapper .popsocial li a:hover svg path {
  /*fill: var(--portland-orange);
  */
  transition: all 0.2s ease;
}

.sidebar-section ul.popsocial {
  opacity: 1;
}

i.ireadtime,
i.ipostdate {
  line-height: normal;
  display: flex;
}

.popsocial li.side-share-nav {
  position: unset;
  background: #000000;
  box-shadow: none;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.popsocial li.side-share-nav .colShare {
  background: #000000;
  box-shadow: none;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.popsocial li.side-share-nav .colShare svg {
  padding: 8px;
}

.popsocial li.side-share-nav .colShare svg path {
  fill: var(--white-color);
}

.popsoacial-wrapper-scroll-show ul.popsocial {

  row-gap: 8px;
  display: flex;
  flex-direction: column;
}

.popsocial .playpause-single .pl svg {
  animation: pulse-animation 2s infinite;
  -webkit-animation: pulse-animation 2s infinite;
  border-radius: 50px;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(244 67 54 / 30%);
  }

  100% {
    box-shadow: 0 0 0 7px rgb(244 67 54 / 7%);
  }
}

.popsoacial-wrapper-scroll.popsoacial-wrapper-scroll-show ul.popsocial {
  animation: fadetopshare 2s ease 0s 1 normal forwards;
}

@keyframes fadetopshare {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.popsoacial-wrapper-scroll.popsoacial-wrapper-scroll-hide ul.popsocial {
  animation: fadebottshare 2s ease 0s 1 normal forwards;
  -webkit-animation: fadebottshare 2s ease 0s 1 normal forwards;
}

@keyframes fadebottshare {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.popsoacial-wrapper-scroll-show ul.popsocial li {
  margin-bottom: 0;
}

/* 
ul.popsocial {
  list-style: none;
  position: absolute;
  top: 0;
  right: -70px;
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 8px;
  background-color: var(--white-color);
  padding: 12px;
  border-radius: 16px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  animation: popclickshare 1s ease 0s 1 normal forwards;
  -webkit-animation: popclickshare 1s ease 0s 1 normal forwards;
} */

@keyframes popclickshare {
  0% {
    opacity: 0;
    transform: rotateY(100deg);
    transform-origin: left;
  }

  100% {
    opacity: 1;
    transform: rotateY(0);
    transform-origin: left;
  }
}

ul.popsocial li:last-child {
  margin-bottom: 0;
}

.mobile-play-pause {
  display: none;
}

.details-post {
  width: 100%;
  gap: 16px;
  display: flex;
  padding: 16px 20px 14px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  position: relative;
}

.details-post .read-time {
  padding-right: 16px;
  border-right: 1px solid var(--Border, #D4D6D7);
}

.details-post .sideshare-wrapper {
  background: none;
  position: unset;
  box-shadow: none;
  display: flex;
  align-items: center;
}

.details-post .sideshare-wrapper i.fas.colShare {
  height: 20px;
  display: flex;
}

.iprint-post i.iprint {
  display: flex;
}

.details-post .sideshare-wrapper .popsoacial-wrapper {
  left: unset;
  top: 70px;
}

.details-post .sideshare-wrapper .popsoacial-wrapper ul.popsocial {
  flex-direction: row;
  align-items: center;
  padding: 6px;
}

.details-post .sideshare-wrapper .popsoacial-wrapper ul.popsocial li {
  margin: 0;
  line-height: normal;
  font-size: 0;
  display: flex;
  height: 28px;
}

.col-timeread {
  display: flex;
  gap: 16px;
}

.col-share {
  display: flex;
  gap: 16px;
}

.img-post-card {
  border-radius: 0px 0px 16px 16px;
  border-right: 1px solid var(--Grey-F7, #F7F7F7);
  border-bottom: 1px solid var(--Grey-F7, #F7F7F7);
  border-left: 1px solid var(--Grey-F7, #F7F7F7);
  overflow: hidden;
}

.img-post-card:has(.details-post) {
  margin-bottom: 24px;
}

.img-post-card:not(img) {
  border-top: 1px solid var(--Grey-F7, #F7F7F7);
  border-radius: 16px;

}

.singlePost .postContent {
  margin-bottom: 24px;
}

.singlePost .postContent .conclusion-col {
  border: 2px solid #F0F4F3;
  background-color: #F0F4F3;
  padding: 1vw 3vw 1vw 2vw;
  box-shadow: 0 0 0 2px #f1faf9;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.singlePost .postContent .conclusion-col h2 {
  color: #000000;
  padding-top: 12px;
}

.faq-section-col a.elementor-accordion-title {
  text-decoration: none !important;
  border: none;
  line-height: 1.6;
}

.faq-section-col .elementor-accordion .elementor-tab-title {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.faq-section-col .elementor-accordion .elementor-accordion-item {
  border-radius: 2px;
}


.share-icon span {
  color: var(--text-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  padding-top: 3px;
}

.toolbar-share .share-icon span {
  padding: 0;
}

.share-icon a svg {
  width: 28px;
  height: auto;
  opacity: 0.9;
  transition: all 0.5s ease;
}

.share-icon a:hover svg {
  opacity: 1;
  transition: all 0.5s ease;
}

.toolbar-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #FBFBFB;
  display: flex;
  padding: 16px 20px;

}

.toolbar-share .share-icon a i.fas:before {
  display: none;
}

.toolbar-share .share-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.toolbar-share .share-icon .share-icon {
  box-shadow: none;
  position: unset;
  padding: 0;
  background: none;
}

.toolbar-share .share-icon .share-icon svg {
  width: 28px;
  height: 28px;
  background: none;
}

.toolbar-share .share-icon a {
  display: flex;
}

.popsocial i {

  display: block;
  cursor: pointer;
}

.popsocial i:before {
  display: none;
}

.popsocial i svg {
  width: 40px;
  height: 40px;
  fill: #000;
  transition: all 0.5s ease;
}

.popsocial .pl svg {
  width: 45px;
  height: 45px;
  margin-left: -2px;
  fill: #F44336;
}

.popsocial li:last-child i svg {
  transform: scale(1.1);
}

.popsocial li:last-child i:hover svg {
  transform: scale(1.2);
}

.popsocial i:hover svg {
  transform: scale(1.1);
  transition: all 0.5s ease;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);

}

.share-wrapper {
  float: left;
}

.commonshare-wrapper,
.popsoacial-wrapper {
  display: none;
}

.socialPostShare ul.postshare {
  animation: shareani 1s ease 0s 1 normal forwards;
  -webkit-animation: shareani 1s ease 0s 1 normal forwards;
}

@keyframes shareani {
  0% {
    opacity: 0;
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

.share-wrapper ul.social {
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  padding: 0;
  margin: 0;
  transform: translate(-3rem, 3rem);
  transition: visibility 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

.share-wrapper ul.social.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.share-wrapper .share.active+.social li {
  transform: scale(1);
}

.share-wrapper ul.social li {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  color: var(--white-color);
  background-color: var(--white-color);
  text-align: center;
  line-height: 2.1;
  font-size: 25px;
  cursor: pointer;
  margin-bottom: 15px;
  box-shadow: 0.5px 0.87px 4px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
  transform: scale(0.4);
}

.article-group {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.singlePost .post-data {
  overflow: hidden;
  width: 100%;
}

/* New Update  Font Size Guidelines for Articles */
.singlePost .elementor-widget-text-editor {
  color: var(--text-color);
  font-family: var(--font-poppins);

}

.single-post .singlePost h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text-color);
}


.single-post .singlePost h2 a {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 24px;
  margin-left: 0;
  padding-top: 30px;
  font-size: 26px;
  font-weight: 700;
  line-height: 150%;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 28px;
}


.single-post .singlePost h2 {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 24px;
  margin-left: 0;
  padding-top: 30px;
  font-size: 26px;
  font-weight: 700;
  line-height: 150%;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 28px;
}

.single-post .singlePost h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-family: var(--font-poppins);
}

.single-post .singlePost h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 0.5rem;
  color: #6b6b6b;
  font-family: var(--font-poppins);
}


.single-post .singlePost h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-family: var(--font-poppins);
}

.single-post .singlePost h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.single-post .singlePost p, .single-post .singlePost p span {
  font-size: 18px;
  margin-bottom: 1.4rem;
  line-height: 1.8;
}

.singlePost p.elementor-heading-title {
  font-weight: 600;
  opacity: 0.9;
  margin-top: 16px;
}


.single-post .singlePost p:last-child {
  margin-bottom: 0.5rem;
}


.single-post .singlePost ul li b,
.single-post .singlePost ul li strong,
.single-post .singlePost ul li p b,
.single-post .singlePost ul li p strong {
  font-size: 18px;
  font-weight: 600;
}

.single-post .singlePost li b {
  font-weight: 600;
}

.single-post .singlePost blockquote p {
  background: #f3f3f3;
  padding: 4px 6px;
}

.single-post .singlePost li b,
.single-post .singlePost li span,
.single-post .singlePost li {
  font-size: 18px;
  margin-bottom: 1rem;
  line-height: 1.8;

}

.single-post .singlePost strong {
  font-weight: 600;
}

.single-post .singlePost ul ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.single-post .singlePost ul ul {
  margin-bottom: 0.5rem;
}

.single-post .singlePost .postContent a {
  font-size: 18px;
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid;
  border-bottom-width: 2px;
  border-bottom-color: #e1e1e1;
  transition: border .2s;
}

.single-post .singlePost .postContent a:hover {
  border-bottom-color: var(--accent-color);
  transition: border .2s;
}

.single-post .singlePost p strong, .single-post .singlePost p b {
  font-weight: bold;
  font-size: 18px;
}

.quick-tip .elementor-widget-container {
  border-radius: 10px;
  background: #FBFBFB;
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 20px;
}

.fun-facts .elementor-widget-container {
  padding: 20px;
  background: #faf5fe;
  border-radius: 16px;
  border: 1px dashed #d199f9;
  margin: 12px 0 24px;
}

.single-exclusive .singlePost ul li::marker, .single-post .singlePost ul li::marker {
  font-size: 22px;

  color: var(--accent-color);
  line-height: normal;
}

.singlePost ul, .singlePost ol {
  padding-left: 0;
  margin-bottom: 2em;
}

.singlePost .postContent .conclusion-col {
  border: 2px solid #F0F4F3;
  background-color: #F0F4F3;
  padding: 1vw 3vw 1vw 2vw;
  box-shadow: 0 0 0 2px #f1faf9;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.singlePost .quiz-col .elementor-widget-container {
  padding: 20px;
  background: var(--white-color)dfd;
  border-radius: 16px;
  border: 1px dashed #202020;
  margin-top: 20px;
  margin-bottom: 20px;
}

.liked-recipes-section .receipe-group {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.single-post .singlePost ol li::marker {
  color: var(--brunswick-green);
  font-weight: bold;
  line-height: normal;
}



.singlePost .elementor-widget-container ul {
  padding-left: 30px;
}

.single-post .singlePost ul ul li::marker {
  font-size: 22px;
  color: var(--portland-orange);
  line-height: normal;
}

@keyframes liping {
  0% {
    opacity: 0.8;
    transform: scale(0.2);
  }

  80% {
    opacity: 0.9;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

.single-post .singlePost blockquote:has(em) em p,
.single-post .singlePost blockquote:has(em) em span {
  font-size: 24px;
  padding: 6px 2px;
  text-decoration: none !important;
}

blockquote:has(em) {
  padding-left: 30px;
  margin-bottom: 0;
}

.single-post .singlePost blockquote:has(em) em {
  background-color: #ededed;
  line-height: normal;
  padding: 8px 3px 6px;
}

.single-post .singlePost:has(em) ol {
  padding-left: 30px;
}

.single-post .singlePost:has(em) ol blockquote {
  padding: 0;
}

.single-post .singlePost:has(em) li {
  margin-bottom: 8px;
}

/* Dicuss commenting CSS Start*/
#wpdcom .wpd-form-head {
  display: none;
}

#comments {
  background: #fbfbfb;
  padding: 16px 24px !important;
  box-shadow: rgb(251 251 251 / 50%) 0px 1px 0px, rgb(79 79 84 / 10%) 0px 0px 9px;
  border-radius: 20px;
}

#wpdcom .wpd-form-row .wpd-field {
  border-radius: 6px;
  border: 1px solid var(--Border, #D4D6D7);
  background: none;
  padding: 15px 12px 15px 20px;
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: 100%;
  outline: none;
  height: 48px !important;
  background-color: var(--white-color);

}

#wpdcom .wpd-comment .wpd-reply-to a {
  text-decoration: none;
  opacity: 0.8;
  color: #1e1d1d;
  font-size: 14px;
}

.wpd-form-row {
  display: flex;
  gap: 30px;
}


.wpd-form-col-right {
  flex: 1 0 0;
  width: 100%;
}

.wpdiscuz-recaptcha {
  width: 100%;
  transform: unset !important;
}

.wpd-form-row {
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
}

.wpd-form-col-left {
  width: 100% !important;
  display: flex;
  gap: 16px;
}

.wpd-form-col-right {
  width: 100% !important;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

form.wpd_comm_form.wpd-secondary-form-wrapper {
  max-width: 100%;
  padding-left: 80px;
}

.wpdiscuz-recaptcha {
  width: 100%;
  transform: unset !important;
}


#wpdcom .wpd-field-captcha.wpdiscuz-item {
  width: auto;
  padding: 0;
}

#wpdcom.wpdiscuz_unauth .wc-field-submit {
  padding-top: 0;
}

.wpdiscuz-recaptcha div {
  display: flex;
}

.wc_social_plugin_wrapper {
  display: none;
}

div#wpdcom {
  width: 100%;
  padding: 0;
}

div#respond {
  display: none;
}

#wpdcom .wc-field-submit input[type="submit"] {
  width: 100%;
  border-radius: 8px;
  background: var(--btn-bg-color);
  display: flex;
  height: 40px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--White, var(--white-color));
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  outline: none;
  border: none;
  transition: all 0.5s ease;
  letter-spacing: 0.2px;
}

#wpdcom .wpd-thread-head .wpd-thread-info {
  color: var(--text-color);
  border-bottom: 2px solid var(--accent-color);
  line-height: 24px;
  padding: 5px 5px 3px 5px;
}

#wpdcom .wpd-comment-header .wpd-comment-author, #wpdcom .wpd-comment-header .wpd-comment-author a {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.7px;
  margin-right: 5px;
  color: var(--text-color);
  text-transform: capitalize;
}

#wpdcom .wpd-comment-text *,
#wpdcom .wpd-comment-text,
#wpdcom .wpd-comment-text p {
  font-size: 16px;
  line-height: 130%;
  font-family: var(--font-family);
  color: var(--text-color);
}

#wpdcom .wpd-comment-text p {
  margin-bottom: 8px;
}

#wpdcom .ql-container.ql-snow {
  border: 1px solid #ccc;
  border-radius: 12px 12px;
}

#wpdcom .ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'kokoro';
  padding: 8px;
  border-radius: 0 0 12px 12px;
}

#wpdcom .ql-snow .ql-editor pre.ql-syntax {
  background-color: var(--white-color);
  color: #F44336;
  overflow: visible;
  height: 88%;
  font-size: 13px;
  border: 1px solid #fac8c4;
}

#wpdcom .ql-editor p {
  font-size: 16px;
}

#wpdcom .wpd-thread-head .wpd-thread-info .wpdtc {
  display: none !important;
}

#wpdcom .wpd-form-row .wpdiscuz-item .wpd-field-icon {
  display: block;
  opacity: 0.3;
  padding: 0;
  margin: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  text-align: left;
  line-height: normal;
  width: 20px;
  height: 18px;
  margin-top: -3px;
}

#wpdcom .wpd-form-row .wpdiscuz-item .wpd-field-icon i.fa-user {
  background-image: url(/wp-content/uploads/2024/12/user-2-fill.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 19px;
  height: 19px;


}

#wpdcom .wpd-form-row .wpdiscuz-item .wpd-field-icon i.fas.fa-at {
  background-image: url(/wp-content/uploads/2024/12/mail-fill.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 19px;
  height: 19px;

}

#wpdcom .wpd-form-row .wpdiscuz-item .wpd-field-icon i:before {
  display: none;
}

#wpdcom .wpd-thread-head .wpdiscuz-user-settings,
div#comments:has(.wpd-thread-info[data-comments-count="0"]) div#wpd-threads {
  display: none;
}









@media screen and (min-width: 992px) {

  #wpdcom .ql-container.ql-snow {
    border-bottom: none;
    border-radius: 12px 12px 0 0;
  }
}

@media screen and (max-width: 992px) {
  #wpdcom .ql-toolbar.ql-snow {
    display: none;
  }
}

@media screen and (max-width: 600px) {

  #wpdcom .wpd-form-row .wpd-form-col-left,
  #wpdcom .wpd-form-row .wpd-form-col-right {
    width: 100%;
    float: none;
    flex-direction: column;
    gap: 8px;
  }

  #wpdcom.wpd-layout-2 .wpd-comment .wpd-comment-header .wpd-user-info {
    display: block;
    flex-grow: 1;
    margin-bottom: -3px;
    margin: unset;
    margin-bottom: -3px;
  }

  #comments {
    padding: 2px 14px !important;
    border-radius: 12px;
  }
}

/* Dicuss commenting CSS END*/

/* Single POst End */


/* Footer CSS */

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  width: 96%;
  max-width: 1920px;
  margin: 0 auto;
}

.footer-second-column {
  flex: 1 0 0;
}

.footer-first-column {
  flex: 1 0 0;
}

.footer-links {
  flex: 1 0 0;
}

.footer-container .site-logo {
  display: flex;
  justify-content: center;
  margin: 0;
}

.footer-col {
  background: var(--primary-color);
  position: relative;
  z-index: 7;
}


.footer-first-column h2 {
  margin-bottom: 3px;
}

.footer-first-column p {
  margin-top: 8px;
  color: var(--text-color);
  font-size: clamp(14px, 1vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.footer-links .widget_block {
  color: var(--text-color);
  font-size: clamp(14px, 1vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  /* 150% */
  text-align: right;
}

.footer-links .widget_block p {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
  row-gap: 2px;

}

.footer-first-column a,
.footer-links .widget_block p a:hover, .footer-first-column a:hover {
  color: var(--accent-color);
  transition: all 0.5s ease;
  text-decoration: none;
}


.footer-links .widget_block p a, .footer-first-column a:hover {
  text-decoration: none;
  transition: all 0.5s ease;
  color: var(--text-color);
}

.footer-col .custom-logo-link .custom-logo {
  max-width: 160px;
  width: 100%;
  object-fit: contain;
  height: 100%;
}

/* Footer CSS ENd */
/* Modal CSS Start */
.container-arrow {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.container-arrow svg {
  width: 24px;
  height: 24px;
  animation: arrowani 2s ease 0s infinite normal both;
  -webkit-animation: arrowani 2s ease 0s infinite normal both;
}

@keyframes arrowani {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(8px);
  }
}

.RestaurantModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  background: #00000036;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 93;
}

.RestaurantModal::before {
  content: '';
  background: rgb(0 0 0 / 30%);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: -1;
}

.modal-restaurant-card {
  border-radius: 10px;
  background: var(--white-color);
  width: 100%;
  max-width: 1600px;
  height: 100%;
  position: relative;
}

.restaurant-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9;
}

.restaurant-modal-content {
  height: 100%;
  width: 100%;
  display: flex;
}

.contenrloader {
  width: 300px;
  height: 200px;
  background:
    linear-gradient(0.25turn, transparent, #FFF, transparent),
    linear-gradient(#DDD, #DDD),
    radial-gradient(38px circle at 19px 19px, #DDD 50%, transparent 51%),
    linear-gradient(#DDD, #DDD);
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 315px 200px, 315px 130px, 100px 100px, 225px 30px;
  background-position: -315px 0, 0 0, 15px 140px, 65px 145px;
  animation: loading 1.5s infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

@keyframes loading {
  to {
    background-position: 315px 0, 0 0, 15px 140px, 65px 145px;
  }
}

/* Modal Container */
.modal {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

/* Header Section */
.modal-header {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  flex: 1 0 0;
  overflow: auto;
  position: relative;
}

.modal-header img {
  width: 100%;
  max-height: 468px;
  object-fit: cover;
}

.modal-header .restaurant-details {
  flex: 1;
}

.modal-header .restaurant-title {
  margin: 0;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.modal-header .restaurant-address a,
.modal-header .restaurant-cuisine,
.modal-header .restaurant-address {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.modal-header .restaurant-address a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.modal-header .restaurant-address a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}


.modal-header .restaurant-hours {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.modal-header .restaurant-hours ul {
  list-style: none;
  color: rgba(0, 0, 0, 0.50);
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Reviews Section */
.modal-reviews {
  padding: 0 20px 50px;
  flex: 1 0 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
}

.comments-data {
  flex: 1 0 0;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  width: 100%;
  padding: 30px 0;
  flex-direction: column;
  align-items: flex-start;
}

.modal-reviews-title {
  margin-bottom: 10px;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding: 0 50px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.review-card:first-child {
  padding-top: 6px;
}

.review-card {
  display: flex;
  gap: 15px;
  padding: 24px 0 16px 0;
  border-bottom: 1px solid #ddd;
}

.review-card:last-child {
  border-bottom: none;
}

.review-imgratcol {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-profile {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--Mind-MInd-Light, #FFE0D6);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #555;
}

.review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-author {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--Dark-blue, var(--text-color));
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.review-author .review-rating {
  font-size: 14px;
  color: #888;
}

.review-star-data span.review-rating span.star {
  display: flex;
  align-items: center;
}

.review-text {
  color: var(--Dark-blue, var(--text-color));
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.toggle-text {
  color: var(--Body-Body, var(--btn-bg-color));
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  cursor: pointer;
}

/* Footer Button */
.modal-footer {
  padding: 15px;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--White, var(--white-color));
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  border-radius: 8px;
  background: var(--Body-Body, var(--btn-bg-color));

  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

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

.loaderadd .quiz-loader,
.rest_loader {
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  display: none;
}

.loaderadd,
.rest-loader {
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  color: #FF3D00;
  animation: fill 0.5s ease-in infinite alternate;
  -webkit-animation: fill 0.5s ease-in infinite alternate;
}

.loaderadd::before, .loaderadd::after,
.rest-loader::before, .rest-loader::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  left: 30px;
  top: 0;
  animation: fill 0.9s ease-in infinite alternate;
}

.loaderadd::after,
.rest-loader::after {
  left: auto;
  right: 30px;
  animation-duration: 1.1s;
}

.loaderadd {
  top: 50%;
  z-index: 9999;
}

@keyframes fill {
  0% {
    box-shadow: 0 0 0 2px inset
  }

  100% {
    box-shadow: 0 0 0 10px inset
  }
}


/* Modal CSS END */
/* Share lInk Modal Start */
.modal-share-card {
  border-radius: 4px;
  background: var(--white-color);
  display: flex;
  max-width: 600px;
  padding: 40px 24px;
  align-items: center;
  gap: 20px;
  width: 100%;
  position: relative;
  transition: all 0.5s ease;
}

.share-close-modal {
  position: absolute;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 8px;
  cursor: pointer;
}

.share-modal-content input.wpcf7-form-control.wpcf7-email {
  border-radius: 8px;
  border: 1px solid var(--Border-Border-2, #E9EEF2);
  background: var(--White, var(--white-color));
  display: flex;
  height: 48px;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--Other-Colors-Grey-text-2, #667085);
  font-family: 'Poppins';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  outline: none;
  width: 100%;
}

.share-modal-content .share-button {
  border-radius: 8px;
  background: var(--Body-Body, var(--btn-bg-color));
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--White, var(--white-color));
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  width: 100%;
  cursor: pointer;
  border: none;
  margin-top: 20px;
  position: relative;
}

.share-modal-content .wpcf7 form .wpcf7-response-output {
  text-align: center;
  border: none;
  font-size: 14px;
  line-height: 120%;
  padding: 15px 0 0;
  margin: 0;

}

.share-modal-content:has(.sent) .modal-share-card {
  padding-bottom: 60px;
  transition: all 0.5s ease;
}

.share-modal-content form.invalid .wpcf7-response-output {
  display: none !important;
  opacity: 0 !important;
}


.share-modal-content:has(.sent) .wpcf7-response-output {
  color: green;
}

.share-modal-content .wpcf7-not-valid-tip {
  font-size: 12px;
  position: absolute;
}

.share-modal-content form.wpcf7-form span.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
}

.share-modal-content {
  display: block;
  width: 100%;
}

.share-modal-content h2 {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: clamp(20px, 3vw, 24px) !important;
  font-style: normal;
  font-weight: 700;
  line-height: 150% !important;
  margin-bottom: 6px;
}

.share-modal-content p {
  color: var(--dark-blue-text, rgb(38 50 56 / 50%));
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.share-modal-content .wpcf7-form-control-wrap {
  margin-top: 16px;
  display: block;
}

.share-modal-content p {
  color: var(--dark-blue-text, rgb(38 50 56 / 50%));
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
}

.share-modal-content .wpcf7-form-control-wrap {
  margin-top: 16px;
  display: block;
}

.share-div {
  width: 100%;
  max-width: 220px;
}

.share-div svg {
  width: 100%;
  display: flex;
  height: 100%;
  max-height: 220px;
  padding: 7px;
  justify-content: center;
  align-items: center;
}

/* Share link modal end */
/* Privacy Policy Page CSS */
/* Update Policy CSS */
.elementor-page article.page header {
  display: none;
}

.policy-term-page ul, .policy-term-page ol {
  padding-left: 1.8em;
  margin-bottom: 2em;
  color: var(--text-color);
}

.policy-term-page .elementor-heading-title {
  margin-bottom: 24px;
}

#printPreview,
.policy-term-page a {
  color: var(--accent-color);
  border-bottom: 1px solid #ededed;
  transition: all 0.5s ease;
  opacity: 0.7;
  text-decoration: none;
  word-break: auto-phrase;
  font-size: 16px;
  cursor: pointer;
}

.policy-term-page p a span {
  color: var(--accent-color);
}

#printPreview:hover,
.policy-term-page a:hover {
  opacity: 1;
  transition: all 0.5s ease;
}

.policy-term-page h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.policy-term-page h2 a {
  font-size: 36px;
}

.policy-term-page h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.policy-term-page h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.policy-term-page h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.policy-term-page h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.policy-term-page h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.policy-term-page p, .policy-term-page p span {
  font-size: 16px;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-family: var(--font-poppins);
  color: var(--text-color);
}

.policy-term-page ul li b,
.policy-term-page ul li strong,
.policy-term-page ul li p b,
.policy-term-page ul li p strong {
  font-size: 16px;
  color: var(--text-color);
}

.policy-term-page li b,
.policy-term-page li span {
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--font-poppins);
  color: var(--text-color);
}

.policy-term-page li {
  font-size: 16px;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-family: var(--font-poppins);
  color: var(--text-color);
}

.policy-term-page p strong, .policy-term-page p b {
  font-weight: bold;
  font-size: 16px;
  font-family: var(--font-poppins);
  color: var(--text-color);
}

.singlePost ol ul,
.singlePost ul ul, .singlePost ol ol {
  padding-left: 14px;
  margin-bottom: 0.2em;
  font-family: var(--font-poppins);
  color: var(--text-color);
}

.policy-term-page ol li::marker {
  color: var(--brunswick-green);
  font-weight: bold;
}

.policy-term-page ul li::marker {
  font-size: 18px;
  line-height: normal;
  color: var(--accent-color);
}

.policy-term-page ul ul li::marker {
  font-size: 16px;
  line-height: normal;
  color: var(--accent-color);
}

.policy-term-page table {
  border: solid 1px rgb(18 70 55 / 50%);
  display: block;
  border-radius: 8px;
}

.policy-term-page table {
  width: 100%;
  table-layout: fixed;
  overflow: auto;
}

.policy-term-page .tbl-header {
  background-color: rgba(255, 255, 255, 0.3);
}

.policy-term-page .tbl-content {
  height: 300px;
  overflow-x: auto;
  margin-top: 0px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.policy-term-page th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
}

.policy-term-page td {
  padding: 15px;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;

  color: var(--text-color);
  border-bottom: solid 1px rgb(18 70 55 / 50%);
  border-right: solid 1px rgb(18 70 55 / 50%);
}


.policy-term-page td li {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: normal;
}

.policy-term-page td ul, .policy-term-page td ol {
  margin-bottom: 0;
}

.policy-term-page td:last-child {
  border-right: 0;
}

.policy-term-page tr:last-child td {
  border-bottom: 0;
}

.policy-term-page td strong, .policy-term-page td b {
  font-weight: 600;
  font-size: 16px;
  color: var(--btn-bg-color);
}

.policy-term-page table tbody td {
  min-width: 250px;
}

/* Update Policy css end */

/* recipe CSS start*/
.post-recipe-ingredients {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #FBFBFB;
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin: 40px 0;
}

.post-recipe-ingredients ul li {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 32px */
}

.post-recipe-ingredients ul {

  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 24px;
  margin-bottom: 0;
}

.post-recipe-dietary-tags .tags li {
  color: var(--text-color);
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding: 6px 12px;
}

.post-recipe-dietary-tags ul.tags {
  margin-bottom: 0;
}

.post-recipe-dietary-tags {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.post-recipe-ingredients-title {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
}

.post-recipe-instructions li {
  margin-bottom: 20px;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.post-recipe-instructions ol,
.post-recipe-instructions ul,
.post-recipe-instructions ol li:last-child,
.post-recipe-instructions ul li:last-child {
  margin-bottom: 0;
}

.post-recipe-instructions {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-recipe-instructions ol,
.post-recipe-instructions ul {
  padding-left: 30px;
}

.post-recipe-instructions-title {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.post-recipe-title {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 24px;
  text-align: center;
}

.post-recipe-description {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 30px */
}

.post-recipe-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding-top: 30px;
}

.post-recipe-header ul,
.post-recipe-header ol {
  margin-bottom: 0;
  padding-left: 20px;
}

.post-recipe-header li {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

span.post-recipe-info-tag {
  display: flex;
  padding: 10px 16px;
  align-items: flex-start;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #FBFBFB;
  font-weight: 600;
}

.prep_icon {
  display: flex;
}

.post-recipe-info-tags {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.post-recipe-info-tag strong {
  font-weight: 400;
}

/* recipe css end */


/* (The Coding by (Priya 6-Dec-24) recipe-page- desktop-css  */
.liked-recipes-section .recipe-card .kcal-timecol {
  margin: 8px 0;
}


.liked-recipes-section .recipe-title {
  font-size: clamp(16px, 1vw, 18px);
}

body footer .footer-first-column a {
  color: var(--text-color);
  transition: all 0.2s ease;
  text-decoration: underline;
}

body footer .footer-first-column a:hover {
  color: var(--accent-color);
  transition: all 0.2s ease;
}

body .footer-first-column h2 {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* text-transform: uppercase; */
}

.footer-links .widget_block {
  font-weight: 400;
}

/* recipe-page- Responsive css  */
@media (max-width:992px) {

  /* header-css */
  .sitetext {
    font-size: 24px;
    font-weight: 700;
  }

  .sitetitle {
    display: none;
  }



  /*recipe-info-sec */
  .post-recipe-info-tags {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    margin: 40px 0;
  }

  .post-recipe-header {
    gap: 15px;
  }

  .post-recipe-title {
    font-size: 30px;
  }

  .post-recipe-dietary-tags {
    gap: 20px;
  }

  .post-recipe-header li,
  .post-recipe-description {
    font-size: 16px;
  }

  .post-recipe-instructions-title,
  .post-recipe-ingredients-title {
    font-size: 20px;
  }

  .post-recipe-instructions,
  .post-recipe-ingredients {
    gap: 10px;
  }

  .post-recipe-instructions li {
    font-size: 16px;
  }

  .post-recipe-instructions li,
  .post-recipe-ingredients ul li {
    font-size: 14px;
  }
}

@media (max-width:767px) {
  .sitetext {
    font-size: 20px;
  }

  .post-recipe-title {
    font-size: 24px;
  }

  .post-recipe-dietary-tags .tags li {
    font-size: 12px;
    padding: 10px 12px;
  }

  span.post-recipe-info-tag {
    padding: 6px 8px;
    gap: 6px
  }

  .post-recipe-description {
    font-size: 14px;
  }

  .post-recipe-instructions-title,
  .post-recipe-ingredients-title {
    font-size: 18px;
  }

  .post-recipe-instructions li,
  .post-recipe-ingredients ul li {
    font-size: 14px;
  }

  .post-recipe-ingredients {
    padding: 16px;
    margin: 20px 0 30px;
  }

  /* .singlePost .img-post-card {
    margin-left: -21px;
    margin-right: -21px;
  } */

  .singlePost {
    padding: 0vw 0vw 40px;
  }

  .post-data .wp-post-image,
  .post-data .img-post-card {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 0;
  }

  .img-post-card:not(img) {
    margin: 0 -20px 10px;
  }

  .details-post {
    gap: 6px;
    padding: 16px 30px 14px;
  }

  .post-data img {
    max-height: 295px;
  }

  .toolbar-share {
    margin: 0 20px;
  }

  /* recipe-group-css */

  .liked-recipes-section .recipe-card {
    flex: 100%;
  }

  .recipe-container {
    padding: 0px 20px;
  }

  .liked-section {
    padding: 40px 0px;
  }

  .title-related h4 {
    margin-bottom: 40px;
    font-size: 24px;
  }

  .popsocial i svg {
    width: 25px;
    height: 25px;
  }

  /* Footer-css */
  .footer-container {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .singlePost .postContent {
    margin-bottom: 8px;
    padding: 0 20px;
  }

  main#main:has(.liked-section) .postContent {
    padding-bottom: 24px;
    padding-top: 24px;
  }

  .footer-first-column h2 {
    margin: 10px 0 3px;
  }

  .footer-second-column {
    order: -1;
  }

  .footer-links .widget_block {
    text-align: left;
  }

  .footer-container {
    padding: 30px 20px;
    width: 100%;
  }

  .footer-first-column p {
    margin: 12px 0 20px;
  }
}

/* Rating CSS */

.restaurant-data-modal .hidden {
  opacity: 0;
}


.thridcol-review {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviw-ratings {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  height: 28px;
}


.frombtncol {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  margin-top: 20px;
}

.thridcol-review .reviw-ratings {
  flex: auto;
}

.thridcol-review .reviw-ratings .rating {
  height: 36px;
}

.thridcol-review {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}


button#cancelComment {
  background: var(--white-color);
  color: var(--Body-Body, var(--btn-bg-color));
}

button#submitComment {
  color: var(--White, var(--white-color));
}

.frombtncol button {
  border-radius: 8px;
  background: var(--Body-Body, var(--btn-bg-color));
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: var(--White, var(--white-color));
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  height: 44px;
  border: 1px solid var(--btn-bg-color);

}

.restaurant-data-modal .rating .star {
  height: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reviw-ratings label {
  color: var(--grey-color);
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.restaurant-data-modal .rating .star:hover span.full {
  color: var(--accent-color);
  transition: all 0.2s ease;
}

.restaurant-data-modal .rating .star:hover span.half {
  color: var(--accent-color);
  transition: all 0.2s ease;
}

.review-timings {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-time {
  color: var(--Dark-blue, var(--text-color));
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.review-rating {
  display: flex;
  gap: 4px;
  height: 24px;
}

.restaurant-data-modal .star {
  display: inline-block;
  margin: 0;
  font-size: 24px;
  color: whitesmoke;
  position: relative;
}

.restaurant-data-modal .star img {
  object-fit: contain;
  width: auto;
}

.restaurant-data-modal .star.animate {
  -webkit-animation: stretch-bounce 0.5s ease-in-out;
}

.restaurant-data-modal .star.hidden {
  opacity: 0;
}

.restaurant-data-modal .full:before {
  font-family: fontAwesome;
  display: inline-block;
  content: "\f005";
  position: relative;
  float: right;
  z-index: 2;
}

.restaurant-data-modal .half:before {
  font-family: fontAwesome;
  content: "\f089";
  position: absolute;
  float: left;
  z-index: 3;
}

.restaurant-data-modal .star-colour {
  color: var(--accent-color);
}

@-webkit-keyframes stretch-bounce {
  0% {
    -webkit-transform: scale(1);
  }

  25% {
    -webkit-transform: scale(1.5);
  }

  50% {
    -webkit-transform: scale(0.9);
  }

  75% {
    -webkit-transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

.restaurant-data-modal .selected:before {
  font-family: fontAwesome;
  display: inline-block;
  content: "\f005";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1);
  opacity: 1;
  z-index: 1;
}

.restaurant-data-modal .selected.pulse:before {
  -webkit-transform: scale(3);
  opacity: 0;
}

.restaurant-data-modal .selected.is-animated:before {
  transition: 1s ease-out;
}

.restaurant-data-modal .score {
  display: none;
}

.restaurant-data-modal .score-rating {
  vertical-align: sup;
  top: -5px;
  position: relative;
  font-size: 150%;
}

.restaurant-data-modal .total {
  vertical-align: sub;
  top: 0px;
  position: relative;
  font-size: 100%;
}

.restaurant-data-modal .average {
  font-family: arial;
  font-size: 20px;
  color: indianred;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.restaurant-data-modal .average .score-average {
  padding-top: 30px;
}

#open-comment-form {
  border-radius: 8px;
  background: var(--Body-Body, var(--btn-bg-color));
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  box-shadow: rgb(255 255 255) 0px 10px 20px 20px;
  display: flex;
  width: 100%;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--White, var(--white-color));
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  border: none;
}

.commentForm {
  border-radius: 6px;
  border: 0.5px solid var(--grey-color);
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  padding: 20px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  background: var(--white-color);
}

#custom-comment-section {
  width: 95%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  position: absolute;
  bottom: 16px;
}

.form-group input {
  display: flex;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid #D0D5DD;
  background: var(--White, var(--white-color));
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  width: 100%;
  color: var(--dark-blue-text);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  outline: none;
}

.firstcol-review {
  display: flex;
  gap: 12px;
}

.form-group {
  width: 100%;
}

.seccol-review {
  display: flex;
}

.firstcol-review {
  display: flex;
  gap: 12px;
}


.form-group textarea#description {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #D0D5DD;
  background: var(--white-color);
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  resize: none;
  outline: none;
}

.form-group input:-moz-placeholder,
.form-group textarea:-moz-placeholder {
  color: rgba(38, 50, 56, 0.50);
}

#custom-comment-section:has(.active) button#open-comment-form {
  display: none;
}

.custom-comment-form.active {
  display: block;
  animation: none;
  box-shadow: rgb(255 255 255) 0px 10px 20px 20px;
  -webkit-animation: none;
}

.custom-comment-form {
  display: none;
  animation: addreviewmodal 1s ease 0s 1 normal forwards;
}

@keyframes addreviewmodal {
  0% {
    opacity: 0;
    transform: rotateX(-70deg);
    transform-origin: bottom;
  }

  100% {
    opacity: 1;
    transform: rotateX(0);
    transform-origin: bottom;
  }
}

@keyframes addreviewmodal {
  0% {
    opacity: 0;
    transform: rotateX(-70deg);
    transform-origin: bottom;
  }

  100% {
    opacity: 1;
    transform: rotateX(0);
    transform-origin: bottom;
  }
}

/* Rating CSS end  */
/* FAQ CSS */

.singlePost .faq-col {
  border: 2px solid #ffefea;
  background-color: #fffefa;
  padding: 2vw 3vw;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.faq-col h2.elementor-heading-title {
  padding-top: 0;
  margin-bottom: 16px;
}

.faq-col .elementor-widget-n-accordion .e-n-accordion-item-title {
  border: none;
}

/* 
.faq-col .elementor-widget-n-accordion details.e-n-accordion-item {
  border-top: 1px solid rgb(255 87 34 / 40%);
} */
.faq-col .elementor-widget-n-accordion .e-n-accordion-item:not(:nth-child(1)) {
  border-top: 1px solid rgb(255 87 34 / 40%);
}

.faq-col .elementor-widget-n-accordion details.e-n-accordion-item .elementor-element {
  border: none;
  padding: 0 6px;
}

.faq-col .elementor-widget-n-accordion details.e-n-accordion-item .elementor-element .elementor-widget-container p {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-color);
}

.faq-col .elementor-widget-n-accordion .e-n-accordion-item-title span.e-n-accordion-item-title-header .e-n-accordion-item-title-text {
  font-size: 18px;
  color: var(--text-color);
}

.faq-col .elementor-widget-n-accordion details.e-n-accordion-item .elementor-element .elementor-widget-container p span {
  font-size: 16px;
  margin-bottom: 1.4rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* TEST SECTION  */
.research-section {
  display: flex;
  padding: 0 20px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  background: var(--Other-Colors-Card-Textbox, #FDF7E8);
  overflow: auto;
}

a.research-item {
  color: var(--Body-Body, #004638);
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  border-bottom: 1px solid rgba(38, 50, 56, 0.16);
  padding-bottom: 16px;
  display: flex;
  gap: 8px;

}

.arrow-news {
  display: flex;
}

.arrow-news svg {
  animation: none;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  width: 24px;
  height: 24px;
  transition: all 0.2s ease;
}

a.research-item:hover svg {

  animation: bounce 0.6s;
  fill: var(--accent-color);
  transition: all 0.2s ease;
}

a.research-item:last-child {
  border-bottom: none;
}

.news-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-bottom: 30px;
  /* height: 45vh;
  overflow: auto; */
}

.news-sec-heading {
  color: var(--other-colors-dark-blue-text, #263238);
  font-family: Poppins;
  font-size: clamp(18px, 1.25vw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 20px;
  background: var(--Other-Colors-Card-Textbox, #FDF7E8);
}

.test-section {
  background: radial-gradient(78.51% 47.67% at 81.31% 56.19%, #EFEEDC 0%, #D1CE97 100%);
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;

}

.test-section h1 {
  color: var(--Body-Body, #004638);
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 130%;
  letter-spacing: -0.25px;
  margin-bottom: 6px;
  max-width: 245px;
}

.test-xontent {
  flex: 1 0 0;
  width: 100%;

}

.test-imagebg {
  width: clamp(150px, 10.25vw, 220px);
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}

.bg-imgtest {
  width: 100%;
}

.test-section p {
  color: rgba(0, 0, 0, 0.60);
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 19.5px */
  letter-spacing: -0.15px;
}

.test-button {
  border-radius: 10px;
  background: #004638;
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 22.4px */
  text-decoration: none;
  display: inline-flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.test-button:hover {
  animation: glow 1.4s ease-out infinite;
}

.test-button:hover svg {
  animation: bounce 0.6;
}

.test-button svg {
  animation: bounce 0.6s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0px, 0);
  }

  to {
    transform: translate3d(3px, -3px, 0);
  }
}


/* Test Section END */

/* Media Queries */
@media screen and (min-width: 992.99px) and (max-width: 1199px) {

  /* .article-img, */
  .recipe-image .receipe-img-data {
    width: 106px;
    height: 90px;
  }

  .filter-options,
  .articles-section, .recipes-section {
    top: 94px !important;
  }

  .filter-options {
    margin-bottom: 1rem;
  }

  .post-data img {
    max-height: 455px;
  }
}

@media screen and (min-width: 767px) {
  .liked-recipes-section .recipe-card .kcal-timecol span.kcal-col {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: clamp(155px, 19vw, 260px);
  }

}

@media screen and (min-width: 992px) {
  span.btn-mob-close {
    display: none;
  }

  .test-xontent {
    max-width: 260px;
  }

  .articles-section,
  .recipes-section, .restaurants-section {
    position: sticky;
    top: 94px;
    height: 100%;
    transition: all 0.2s ease;
  }

  .btn-on-mobile,
  .mob-tab-bar {
    display: none;
  }

  .article-details {
    flex-direction: column-reverse;
  }

  .comments-data {
    position: relative;
  }

  .article-img-col {
    position: relative;
    max-width: clamp(188px, 14.5vw, 278px);
    height: clamp(126px, 9.7vw, 186px);
    width: 100%;
    flex: 1 0 0;
  }

  .fixed-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
  }

}

/* Maximum height */
@media screen and (min-width: 992px) and (max-width: 1180px) {
  .bg-imgtest {
    opacity: 0;
  }
}

@media screen and (min-width: 600px) and (max-height: 700px) {
  .article-list, .recipe-col {
    height: 85vh;
    overflow: auto;
    padding-bottom: 40px;
  }

  .research-section {
    overflow: auto;
    height: calc(75vh - 250px);
  }

}

@media screen and (min-width: 1080px) and (max-height: 980px) {
  .article-list, .recipe-col {
    height: 87vh;
    overflow: auto;
    padding-bottom: 20px;
  }

  .research-section {
    overflow: auto;
    height: calc(85vh - 260px);
  }
}

@media screen and (max-width: 1480px) {

  .main-content {
    gap: 16px;
    padding-top: 30px;
  }

  .restaurants-section {
    width: 40%;
  }

  .articles-section,
  .recipes-section {
    width: 30%;
  }

  .recipes-section {
    padding-left: 16px;
  }

  .articles-section {
    padding-right: 16px;
  }

  .filter-btn {
    height: 42px;
  }

  span.star svg {
    width: 16px;
    height: 17px;
  }

  .article-item,
  .recipe-card {
    gap: 14px;
  }

  .filter-options {
    top: 110px;
  }

  .sideshare-wrapper {
    padding: 4px;
  }

  .share-icon svg {
    width: 17px;
    height: 17px;
  }
}

@media screen and (max-width: 1280px) {
  .header-wrap {
    width: 100%;
  }

  .speciality-cards,
  .restaurant-cards {
    padding-top: 0;
  }

  .filter-scroll-active:before {
    padding: 55px 0;
  }

  .recipe-image {
    max-width: 100%;
    height: auto;
  }

  .recipe-image img {
    max-width: 100%;
    max-height: 100%;
  }

  .article-list,
  .recipe-col {
    gap: 16px;
  }

  .article-item img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
  }

  .thridcol-review {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 24px;
    align-items: unset;
  }

  .frombtncol {
    max-width: 100%;
  }

  .test-section h1 {

    font-size: 20px;
  }
}

@media screen and (max-width: 1080px) {



  .speciality-card, .restaurant-card {
    gap: 12px;
  }

  .imgcol {
    max-width: 150px;
    height: 140px;
  }

  .postContent .popsoacial-wrapper-scroll-show {
    display: none;
  }

  .articles-section, .recipes-section {
    top: 100px;
  }

  .filter-options {
    top: 100px;
  }

  .filter-scroll-active:before {
    top: -40px;
    width: 102%;
    left: -10px;
    padding: 50px 0;
  }

  .filter-btn {
    height: 38px;
    padding: 8px;
  }
}

@media screen and (max-width: 992px) {
  .test-section h1 {
    max-width: 96%;
  }

  .btn-not-mobile,
  .btn-mob-close {
    display: none;
  }

  .simplemenu:has(.show) .btn-mob-close {
    display: block;
    width: 24px;
    height: 24px;
    padding: 2px;
    cursor: pointer;
  }

  .simplemenu:has(.show) .btn-on-mobile {
    display: none;
  }

  span.btn-on-mobile {
    display: flex;
    cursor: pointer;
    align-items: center;
  }

  .main-content {
    height: 100%;
    flex-direction: column;
    width: 100%;
    padding: 30px 20px;
  }

  .restList {
    gap: 24px;
    overflow: auto;
    max-height: 100%;
  }

  .filter-btn {
    height: 40px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .articles-section {
    width: 100%;
    border-right: none;
    padding-right: 0;
  }

  .restaurants-section {
    width: 100%;
  }

  .recipes-section {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }

  .mob-tab-bar {
    display: none;
  }

  .news-links {
    padding-bottom: 0;
  }

  .home .mob-tab-bar {
    position: fixed;
    bottom: 10px;
    z-index: 88;
    display: flex;
    width: 100%;
    height: 70px;
    padding: 12px 40px;
    justify-content: space-between;
    background: var(--white-color);
    box-shadow: 0px -5px 20px 0px rgba(0, 0, 0, 0.10);
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
  }


  .mob-tab-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    opacity: 0.6;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
  }

  .mob-active {
    opacity: 1;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
  }

  .mob-icon {
    display: flex;
  }

  .mob-tab-item span {
    color: var(--text-color);
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    transition: all 0.2s ease;
  }

  .mob-active span {
    font-weight: 600;
  }

  .restaurants-section,
  .recipes-section,
  .articles-section {
    display: none;
  }

  .restaurants-section.active,
  .recipes-section.active,
  .articles-section.active {
    display: block;
  }

  .speciality-card,
  .restaurant-card {
    display: flex;
    gap: 14px;
    padding-right: 0;
    border: 0;
    border-bottom: 1px solid #eee7e7;
    padding-bottom: 24px;
    box-shadow: none !important;
  }

  .speciality-card:last-child,
  .restaurant-card:last-child {
    border: none;
  }

  .recipe-col,
  .article-list {
    grid-template-columns: 1fr;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-auto-columns: 1fr;
    display: grid;
    position: relative;
  }

  .recipe-details .tags li {
    font-size: 12px;
  }

  .kcal-timecol,
  .readtime-col {
    font-size: 14px;
  }

  .recipe-title,
  .articletitle {
    font-size: 16px;
  }

  .home .footer-container {
    padding-bottom: 100px;
  }

  .modal {
    flex-direction: column;
    overflow: auto;
  }

  .modal-header {
    overflow: unset;
  }

  .modal-reviews {
    height: 100%;
    overflow: unset;
  }

  .custom-comment-form {
    overflow: hidden;
  }

  .imgcol {
    max-width: 250px;
    height: 100%;
    max-height: 188px;
  }

  /* .article-img, */
  .recipe-image .receipe-img-data {
    width: 185px;
    height: 165px;
  }

  .liked-recipes-section .tags li {
    font-size: 12;
    padding: 4px 10px;
  }

  .single-post .singlePost h1 {
    font-size: 30px;

  }

  .single-post .singlePost h2 {
    font-size: 24px;
  }

  .single-post .singlePost h3 {
    font-size: 20px;
  }

  h1.postTitle {
    padding: 20px 20px 6px;
  }

  .filter-options {
    top: 90px;
  }

  .restaurant-close-modal {
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--white-color);
    border-radius: 50px;
  }

  .restaurant-modal-content {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }

  .custom-comment-form.active {
    background: var(--white-color);
    border-radius: 6px;
  }

  .singlePost .faq-col {
    padding: 20px;
  }

  .bg-imgtest {
    opacity: 1;
  }

  .fixed-header {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .liked-recipes-section .receipe-group,
  .article-group {
    grid-template-columns: 1fr 1fr;
  }


  .policy-term-page p {
    font-size: 16px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .policy-term-page a, .policy-term-page p span,
  .policy-term-page p strong, .policy-term-page p b,
  .policy-term-page li b, .policy-term-page li span, .policy-term-page li {
    font-size: 16px;
    line-height: 1.6;
  }

  .policy-term-page h4 {
    font-size: 20px;
  }

  .post-recipe-info-tags {
    margin: 24px 0;
  }

  .specialityName, .restaurantName {
    font-size: 17px;
  }

  .status.open,
  .address,
  .restaurant-card a {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .header-section {
    top: -1px;
  }

  button.dropbtn {
    cursor: pointer;
    min-width: 140px;
    font-size: 12px;
    padding: 4px 10px;
    gap: 4px;
    height: 36px;
  }

  .arrow-icon span {
    width: 10px;
  }

  .single-post .singlePost h1 {
    font-size: 24px;
  }

  .single-post .singlePost h2 {
    font-size: 22px;
  }

  .single-post .singlePost h3 {
    font-size: 18px;
  }

  .header-wrap {
    width: 100%;
    height: 60px;
  }

  nav.navigation {
    height: 24px;
    align-items: center;
  }

  .filter-btn {
    padding: 10px 10px;
    gap: 6px;
    height: 36px;
  }

  .filter-btn svg {
    width: 18px;
  }

  .filter-scroll-active {
    padding: 15px 0;
  }

  .filter-options {
    display: flex;
    margin-bottom: 1rem;
    gap: 0.5rem;
    position: sticky;
    top: 59px;
    z-index: 7;
    background: var(--white-color);
    transition: all 0.2s ease;
  }

  .speciality-card, .restaurant-card {
    flex-direction: column;
  }

  .imgcol {
    max-width: 100%;
    max-height: 240px;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 100%;
    flex: unset;
  }

  .imgcol img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }

  .speciality-details, .restaurant-details {
    flex: 1 0 0;
    position: relative;
    width: 100%;
    padding: 0;
  }

  .mob-tab-bar {
    bottom: 0;
    height: 70px;
    max-width: 100%;
    padding: 12px 20px;
    align-items: center;
    border-radius: 0;
  }

  .recipe-col,
  .article-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .readtime-col {
    font-size: 14px;
  }

  .recipe-title,
  .articletitle {
    font-size: 16px;
  }

  .kcal-timecol,
  .tags li {
    font-size: 12px;
  }

  .review-card {
    padding: 16px 0;
  }

  .liked-recipes-section .receipe-group,
  .article-group {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recipe-card,
  .article-item {
    flex-direction: column;
    align-items: unset;
  }

  .recipe-image .receipe-img-data,
  .article-img {
    width: 100%;
    height: 240px;
    max-width: 100%;
  }

  .filter-btn {
    font-size: clamp(10px, 2.6vw, 14px);
  }

  .col-share {
    display: flex;
    gap: 10px;
    font-size: 0;
  }

  .details-post .sideshare-wrapper {
    gap: 0;
  }

  .article-list .sideshare-wrapper,
  .recipe-col .sideshare-wrapper {
    padding: 10px;
  }

  .read-time, .icon-date, .shareCountcol {
    font-size: 12px;
  }

  .reviw-ratings {
    align-items: center;
    gap: 8px;
    height: unset;
  }

  .firstcol-review {
    flex-direction: column;
  }

  .custom-logo {
    max-width: 130px;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .frombtncol button {
    font-size: 12px;
    width: 100%;
  }

  .modal-share-card {
    padding: 24px 16px;
    gap: 16px;
    flex-direction: column;
  }

  .nv-ic svg {
    width: 20px;
    height: 20px;
  }

  .logo a svg {
    max-width: 120px;
    object-fit: contain;
  }

  .home .mob-tab-bar {
    border-radius: 8px 8px 0 0;
    bottom: 0;
    max-width: 100%;
  }

  .RestaurantModal {
    padding: 20px 10px;
  }

  .modal-restaurant-card {
    height: 90%;
  }

  .restaurant-data-modal .star {
    font-size: 20px;
  }

  .commentForm {
    padding: 10px;
  }

  .thridcol-review .reviw-ratings .rating {
    height: 28px;
  }

  .frombtncol {
    margin: 0;
  }

  .reviw-ratings label {
    margin-top: 4px;
  }
}


/* subscribe NL CSS Start Newsletter Form UI */
.newsletter-popup {
  display: none;
}

.newsletter-popup.active {
  display: block;
}

.drop-background {
  background: rgb(0 0 0 / 50%);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.ns-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--white-color);
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 40px;
  transform: translateY(-50%) translateX(-50%);
  z-index: 9999999;
  align-content: center;
  flex-direction: row;
  width: 100%;
  max-width: calc(100% - 100px);
  height: calc(58vw - 100px);
  max-height: calc(100% - 100px);
  overflow: auto;
  box-shadow: inset -50px 0 200px -50px rgb(251 255 223 / 27%), inset 50px 0 200px -50px rgb(235 255 234 / 63%);
}

.sub-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 1754px;
  width: 100%;
  padding: 0;
  position: relative;
  height: 100%;
}

.ns-title {
  color: var(--text-color);
  font-style: normal;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  border-bottom: 3px solid;
  border-image-slice: 1;
  border-width: 3px;
  border-image-source: linear-gradient(to left, #e0bff6, #536662, #f29881, #fc5a31);
  margin-bottom: 3vw;
  width: fit-content;
}

.ns-para {
  color: #263238;
  font-family: var(--font-family);
  font-size: clamp(15px, 1.15vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 10px;
  max-width: 650px;
  padding-left: 26px;
  position: relative;
}

.ns-para span.tick-icon {
  padding: 0;
  display: flex;
  margin-right: 4px;
  float: left;
  position: absolute;
  left: -1px;
  top: 0px;
}

.ns-para span.tick-icon img {
  width: 24px;
  height: 24px;
}


.ns-para span {
  font-weight: 600;
  padding: 5px 4px;
}

.ns-content {
  display: flex;
  padding: 20px 30px 20px 40px;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: calc(100% - 43%);
}

p.ins-para {
  color: #ffffff;
  background: linear-gradient(6deg, #263238 0%, #004638 10%, #004638 40%, #263238 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 4s linear infinite;
  -webkit-animation: shine 4s linear infinite;
  line-height: 140%;
  display: flex;
  align-items: center;
}

p.ins-para span {
  display: inline-flex;
  align-items: center;
}

p.ins-para svg {
  margin-top: -3px;
  margin-right: 6px;
  fill: #263238;
}


@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.ns-image {
  display: flex;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 43%;
}

.back-to-live {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: -20px;
  text-align: center;
  justify-content: center;
}

.back-to-live span {
  text-decoration: underline;
  color: rgba(55, 55, 55, 0.5);
  font-weight: normal;
  line-height: normal;
  font-family: var(--font-family);
  font-size: var(--normal-text-size);
  cursor: pointer;
  opacity: 0.7;
}


div#ns-close-modal {
  position: absolute;
  right: -21px;
  top: -18px;
  background: var(--white-color);
  width: 48px;
  height: 48px;
  border-radius: 50px;
  cursor: pointer;
}

div#ns-close-modal svg {
  width: 30px;
  margin: 0 auto;
  display: block;
}

.formkit-form[data-uid="14573fbc1d"] .formkit-field,
.formkit-form[data-uid="14573fbc1d"] .formkit-submit {
  margin: 0 !important;
}

.formkit-powered-by-convertkit-container {
  display: none !important;
}

.ns-form-card form.seva-form.formkit-form .formkit-field {
  width: 100%;
  max-width: 100%;
}

.ns-form-card form.seva-form.formkit-form button.formkit-submit.formkit-submit {
  width: 100%;
  max-width: 100%;
  display: flex;
  height: 50px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.ns-form-card form.seva-form.formkit-form button.formkit-submit.formkit-submit span {
  padding: 0;
  font-size: var(--normal-text-size);
}

.ns-form-card form.seva-form.formkit-form .formkit-field input.formkit-input {
  border-bottom: 1px solid var(--white-color) !important;
  color: #fff !important;
}

body:has(.newsletter-popup[style="display: block;"]) {
  overflow: hidden;
}

.ns-image img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}


.user-count-landing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(12px, 1.15vw, 16px);
  color: var(--text-color);
  font-weight: 600;
}

.user-count-landing p {
  font-size: clamp(12px, 1.15vw, 16px);
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0;
}

.arrow-subuser svg {
  fill: #f44336;
  display: inline-block;
  position: absolute;
  right: -4rem;
  top: -2px;
  animation: arrowmove 3s ease 0s infinite normal forwards;
}

@keyframes arrowmove {

  0%,
  100% {
    transform: translateY(0) rotate(0);
    transform-origin: 50% 50%;
  }

  15% {
    transform: translateY(-5px) rotate(-6deg);
  }

  30% {
    transform: translateY(3px) rotate(6deg);
  }

  45% {
    transform: translateY(-5px) rotate(-3.6deg);
  }

  60% {
    transform: translateY(2px) rotate(2.4deg);
  }

  75% {
    transform: translateY(-0px) rotate(-1.2deg);
  }
}

.user-sub-imageicon img {
  max-width: 120px;
  width: 100%;
}

.user-sub-imageicon {
  display: flex;
  align-items: center;
}

/* Updated News latter form */


form.formchild-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 24px;
  max-width: 650px;
}

.formit-input .con-news-letter-email {
  line-height: 1.4;
  margin: 0;
  -webkit-transition: border-color ease-out 300ms;
  transition: border-color ease-out 300ms;
  background: none;
  display: flex;
  width: 100%;
  height: 50px;
  padding: 8px 24px 0px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #263238;
  color: #263238;
  text-overflow: ellipsis;
  font-size: clamp(12px, 1.15vw, 16px);
  position: relative;
  outline: none;
}

.formit-input {
  position: relative;
  width: 100%;
  max-width: calc(100% - 220px);
}

.newsform-col .form-submit-btn {
  width: 100%;
  max-width: 190px;
  border-radius: 12px;
  background: var(--btn-bg-color);
  display: flex;
  height: 55px;
  padding: 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  box-shadow: none;
  text-shadow: none;
  outline: none;
  border: none;
  transition: all 0.5s ease;
  letter-spacing: 0.2px;
  position: relative;
  cursor: pointer;
}

.newsform-col .form-submit-btn[disabled],
.newsform-col .form-submit-btn:disabled {
  min-width: 189px;
  font-size: 0;

}

.formit-input:before {
  content: '';
  background-image: url(/wp-content/themes/Guthealth-child/assets/images/envelope.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 57%;
  transform: translateY(-50%) translateX(0%);

}

.formit-input::placeholder {
  color: var(--white-color);
  opacity: 1;
}

.nsloader {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 15px auto;
  background: #FFF;
  box-shadow: -24px 0 #FFF, 24px 0 #FFF;
  box-sizing: border-box;
  animation: shadowPulse 2s linear infinite;
}



@keyframes shadowPulse {
  33% {
    background: #FFF;
    box-shadow: -24px 0 var(--light-flesh), 24px 0 #FFF;
  }

  66% {
    background: var(--dark-flesh);
    box-shadow: -24px 0 #FFF, 24px 0 #FFF;
  }

  100% {
    background: #FFF;
    box-shadow: -24px 0 #FFF, 24px 0 var(--dark-flesh);
  }
}

.newsletter_form_loader, .ft-newsletter_form_loader {
  display: none;
}

.error-message,
.ft-error-message {
  position: absolute;
  color: var(--danger);
  font-size: 13px;
  padding: 4px 0 0;
}

.success-message,
.ft-success-message {
  background: rgb(40 167 69 / 40%);
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  border: 1px solid #28a745;
  max-width: 650px;
}

.ft-success-message {
  background: rgb(40 167 69 / 100%);
  max-width: 500px;
}

.alert-message,
.ft-alert-message {
  position: absolute;
  background: none;
  padding: 0;
  border: none;
  font-size: 13px;
  padding: 1px 0 0;
  font-weight: 400;
  color: var(--danger);
}

/* Footer New Update form */
.ft-form-col .formit-input {
  max-width: 300px;
  width: 100%;
}

.footer-con-news-letter-email {
  max-width: 100%;
  width: 100%;
  height: 60px;
  padding: 18px 24px 5px 30px;
  border: 0;
  border-bottom: 1px solid var(--Dark-blue, #263238);
  outline: none;
  overflow: hidden;
  color: var(--Dark-blue, #263238);
  text-overflow: ellipsis;
  font-family: 'kokoro';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  background: none;
}

.ft-form-col {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  align-items: center;
  gap: 16px;
}

button#footernewsletterbtn {
  display: flex;
  height: 60px;
  width: 190px;
  padding: 18px 24px 14px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--White, #FFF);
  text-align: center;
  font-size: var(--text-size);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-shadow: none;
  border: none;
  transition: all 0.5s ease;
  position: relative;
  outline: none;
}

button#footernewsletterbtn:disabled,
button#footernewsletterbtn[disabled] {
  font-size: 0;
  width: 190px;
  padding: 18px 24px 14px;
}

#form-message {
  position: absolute;
  font-size: 13px;
}

.error-message {
  color: rgba(224, 13, 13, 0.657);
}

@media screen and (max-width: 992px) {
  .test-imagebg {
    width: 160px;
  }

  .sub-container {
    flex-direction: column;
  }

  .ns-content {
    padding: 0;
    gap: 8px;
    width: 100%;
  }

  .ns-image {
    display: none;
  }

  .back-to-live {
    position: unset;
    margin-top: 24px;
  }

  .ns-wrap {
    border-radius: 4px;
    padding: 30px;
    z-index: 9999999;
    width: 94%;
    max-width: 700px;
    height: unset;
  }

  form.formchild-col {
    flex-direction: column;
    align-items: flex-start;
  }

  form.formchild-col .formit-input {
    max-width: 100%;
  }

  .newsform-col .form-submit-btn {
    max-width: 100%;
    height: 48px;
  }
}

@media screen and (max-width: 480px) {
  .user-sub-imageicon img {
    max-width: 80px;
  }

  p.ins-para {
    margin-top: 20px;
  }

  .header-btn-kokoro.com-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .logo {
    flex: none;
    width: 110px;
  }

  .ns-title {
    font-size: clamp(24px, 4.15vw, 48px);
  }

  .test-imagebg {
    width: 140px;
  }
}

/* subscribe NL CSS Start Newsletter Form UI END */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  padding: 16px;
  z-index: 92;
  display: none;
}

.modal-overlay.active {
  display: block;
}

.modal-container {
  border-radius: 20px;
  background: var(--Other-Colors-Background, #FFFBF2);
  box-shadow: 0px 8px 80px 0px rgba(0, 0, 0, 0.416);
  width: 90%;
  padding: 24px;
  max-width: 1600px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.md-com-sug {
  border-radius: 8px;
  border: 1px solid var(--Body-Body, #004638);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px 18px;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.inner-md-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
}

.md-modal-btn {
  display: flex;
  gap: 12px;
}

.title-md-sug {
  color: var(--other-colors-dark-blue-text, #263238);
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.modal-container button,
.hide-button,
.discover-button {
  cursor: pointer;
}

.hide-button {
  display: block;
  background: transparent;
  color: var(--Body, #004638);
}

.discover-button {
  display: flex;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--White, #FFF);
  border-radius: 8px;
  background: var(--Body-Body, #004638);
}

.heading-text-md {
  color: var(--Dark-blue, var(--dark-blue-text, #263238));
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;

}

.banner-section {
  display: block;
}

.banner-section.inactive {
  display: none;
}

.interest-section {
  text-align: center;
  padding: 40px 0;
  display: none;
}

.interest-section.active {
  display: block;
}

.interest-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px auto 60px;
  max-width: 1000px;
}

.interest-option {
  cursor: pointer;
  background: transparent;
  border-radius: 100px;
  border: 1px solid var(--Body-Body-Light, #B0C6C1);
  color: var(--Dark-blue, var(--dark-blue-text, #263238));
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  padding: 8px 28px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
}

.select-icon {
  display: flex;
  transition: all 0.2s ease;
  opacity: 0;
  position: absolute;
  left: 8px;
}

.select-icon.active {
  transition: all 0.2s ease;
  opacity: 1;
}

.select-icon svg {
  width: 16px;
  height: 16px;
}

.selected-option {
  border: 1px solid var(--Body-Body, #004638);
  background: var(--Body-Body-Light, #B0C6C1);
  color: var(--Dark-blue, var(--dark-blue-text, #263238));
  transition: all 0.5 ease;
  -webkit-transition: all 0.5 ease;
  -moz-transition: all 0.5 ease;
  -ms-transition: all 0.5 ease;
  -o-transition: all 0.5 ease;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.cancel-button {
  background: transparent;
  color: var(--Body, #004638);
}

.recipes-button {
  border-radius: 8px;
  border: 1px solid var(--Body-Body, #004638);
  background: var(--Body-Body, #004638);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.articles-button {
  border: 1px solid var(--Mind-Mind, #FC5A31);
  background: var(--Mind-Mind, #FC5A31);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.md-arrow-icon {
  display: flex;
}

.md-arrow-icon svg {
  width: 24px;
  height: 24px;
}

.heath-icon {
  border-radius: 50%;
  opacity: 0.8;
  background: var(--Mind-Mind, #FC5A31);
  display: flex;
  width: 66px;
  height: 66px;
  padding: 13px 13px;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 50px;
  right: 70px;
  z-index: 90;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
}

.heath-icon-show{
  animation: poprc 2s ease 0s 1 normal forwards;
}

@keyframes poprc {
  0% {
    transform: translateY(100);
   
}

  100% {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}
}


.heath-icon:hover {
  opacity: 1;
  padding: 16px;
  transition: all 0.2s ease;
}

.rc-modal {
  display: none;
  z-index: 93;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
}

.rc-modal.active {
  display: block;
}

.rc-modal-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94%;
  border-radius: 20px;
  background: var(--Other-Colors-Background, #FFFBF2);
  box-shadow: 0px 8px 80px 0px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  padding: 30px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 450px;
  max-height: 500px;
  max-width: 1100px;
  overflow: auto;
}

.rc-modal-wrap .article-item:not(:last-of-type) {
  border: none;
  padding: 0;
}

.rc-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgb(0 0 0 / 75%);
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  backdrop-filter: blur(6px);
}

.rc-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9;
  padding: 0 0 16px;
  background: #fefbf2;
  transition: all 0.2s ease;
}

.rc-modal-header:before {
  content: '';
  background: #fefbf2;
  height: 40px;
  width: 100%;
  position: absolute;
  top: -30px;
  z-index: -1;
}

.rc-close {
  cursor: pointer;
  display: flex;
}

.rc-close svg {
  width: 24px;
  height: 24px;
}

.rc-titlemd {
  color: var(--Dark-blue, var(--dark-blue-text, #263238));
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.rc-modal-content {
  margin-top: 24px;
  gap: 20px;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.rc-modal-content .recipe-card {
  width: 100%;
  padding: 0;
  border: none;
}

.rc-modal-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.loader-add {
  width: 36px;
  height: 36px;
  border-width: 3px;
  border-style: dashed solid solid dotted;
  border-color: #FF3D00 #FF3D00 transparent #FF3D00;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader-add::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 10px;
  top: 24px;
  border: 8px solid transparent;
  border-right-color: #FF3D00;
  transform: rotate(-40deg);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.not-found-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-20%);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.not-found-container svg {
  width: 198px;
}

.not-found-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-color);
}

/* <!-- Media Queries --> */

@media screen and (max-width: 1080px) {
  .inner-md-banner {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .modal-container {
    border-radius: 8px;
    padding: 30px 20px;
    width: 96%;
  }

  .heading-text-md {
    text-align: left;
    font-size: 20px;
  }

  .modal-container button,
  .discover-button {
    font-size: 14px;
  }

  .hide-button {
    position: absolute;
    right: 16px;
    top: 16px;
    border: none;
    box-shadow: none;
    font-size: 0 !important;
    padding: 0;
  }

  .sg-stclose svg {
    width: 20px;
    height: 20px;
  }

  .rc-modal-content {
    grid-template-columns: 1fr;
  }

  .rc-modal-wrap {
    padding: 30px 24px;
    min-height: 300px;
  }

  .heath-icon {
    opacity: 0.9;
    padding: 11px;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 30px;
  }

  .inner-md-banner {
    flex-direction: column;
    gap: 24px;
  }

  .md-modal-btn {
    width: 100%;
  }

  .discover-button {
    width: 100%;
  }

  .action-buttons {
    flex-direction: column;
  }

  .interest-section {
    padding: 10px 0;
  }

  .interest-buttons {
    justify-content: flex-start;
    margin: 24px auto 40px;
  }

  .title-md-sug {
    font-size: 20px;
  }

  .rc-modal-loader {
    left: 45%;
  }

  .action-buttons {
    flex-direction: unset;
    flex-wrap: wrap;
  }

  .md-com-sug {
    flex: 1 0 0;
    min-width: 150px;
    padding: 10px;
    gap: 4px;
  }


}

@media screen and (max-width:600px) {
  .modal-container button, .discover-button {
    font-size: 13px;
  }

  .interest-option {
    gap: 6px;
    font-size: 11px !important;
    padding: 6px 8px;
  }

  .select-icon {
    display: none;
  }


  .cancel-button {
    order: 3;
  }

  .md-arrow-icon svg {
    width: 18px;
    height: 18px;
  }

  .not-found-container svg {
    width: 150px;
  }
}