@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

body {
  font-family: "Source Sans 3", serif;
  color: #303030;
  font-size: 14px;
}

ul, ul li, ol {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.mainHeader {
  width: 100%;
  background: #EFEFEF;
  padding: 7px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 11;
}
@media (max-width: 768px) {
  .mainHeader {
    padding: 9px 13px;
  }
}
@media (min-width: 1920px) {
  .mainHeader {
    width: 1920px;
    margin: 0 auto;
  }
}

.logowrap, .logo-link {
  max-width: 133px;
  line-height: 0;
  width: 133px;
}
@media (max-width: 768px) {
  .logowrap, .logo-link {
    max-width: 77px;
    margin: 9px 0 9px 9px;
    width: 77px;
  }
}

.menuList {
  display: flex;
  width: calc(100% - 400px);
  justify-content: left;
  margin-left: 10px;
}
.menuList li {
  display: inline-flex;
}
@media (max-width: 580px) {
  .menuList li {
    padding: 0px 10px !important;
  }
}
.menuList li a {
  color: #303030;
  text-decoration: none;
  padding: 10px 3vw;
  font-size: 14px;
}
@media (min-width: 1920px) {
  .menuList li a {
    padding: 10px 1.2vw;
  }
}
.menuList li.active a {
  font-weight: bold;
}
@media (max-width: 1450px) {
  .menuList {
    width: calc(100% - 340px);
  }
  .menuList li a {
    padding: 10px 2vw;
  }
}
@media (max-width: 1100px) {
  .menuList li a {
    padding: 15px 1vw;
    display: block;
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .menuList {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    background: #fff;
    height: calc(100vh - 70px);
    justify-content: flex-start;
    transform: translateX(-100%);
    transition: 0.3s;
    z-index: 99;
  }
  .menuList.openMenu {
    transform: translateX(0%);
  }
  .menuList li {
    width: 100%;
    display: inline-flex;
    padding: 5px 10px;
    border-bottom: solid 1px #888;
  }
}

.headerRight {
  margin-left: auto;
  display: flex;
  align-items: center;
  z-index: 13;
  position: relative;
}

button.userButton {
  background: transparent;
  border: 0;
  padding: 0 !important;
}

.userIcons {
  width: 35px;
  height: 35px;
  display: block;
  background: url("../img/user.png") no-repeat center center;
  background-size: 25px;
}
@media (max-width: 600px) {
  .userIcons {
    background-size: 28px;
  }
}

.searchbox {
  margin-right: 30px;
  position: relative;
  min-width: 35px;
}
.searchbox form {
  margin: 0px !important;
}
.searchbox .searchIcon {
  position: absolute;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: url("../img/search.png") no-repeat center center;
  background-size: 19px;
}
.searchbox input {
  width: 200px;
  border-radius: 50px;
  height: 30px;
  border: 0;
  padding-left: 35px;
}
@media (max-width: 1450px) {
  .searchbox {
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .searchbox {
    margin-right: 0;
  }
  .searchbox input {
    display: none;
  }
  .searchbox .searchIcon {
    position: relative;
    transform: none;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    height: 35px;
    background-size: 29px;
  }
}

.mainHeader button.mobileMenuToggle {
  display: none !important;
  width: 50px;
  height: 50px;
  position: relative;
  padding: 15px 13px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: 0;
  background: transparent;
}
.mainHeader button.mobileMenuToggle:hover {
  background: transparent !important;
  box-shadow: none !important;
}
@media (max-width: 1024px) {
  .mainHeader button.mobileMenuToggle {
    display: inline-flex !important;
  }
}
.mainHeader button.mobileMenuToggle span {
  position: relative;
  width: 24px;
  height: 20px;
}
.mainHeader button.mobileMenuToggle i {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  background: #303030;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.mainHeader button.mobileMenuToggle i:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.mainHeader button.mobileMenuToggle i:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.mainHeader button.mobileMenuToggle i:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.mainHeader button.mobileMenuToggle.open i:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 4px;
}
.mainHeader button.mobileMenuToggle.open i:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.mainHeader button.mobileMenuToggle.open i:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 17px;
  left: 4px;
}

h1 {
  font-size: 42px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 24px;
  }
}
h2 {
  font-size: 36px;
  font-weight: 500;
  color: #303030;
}
h2 span {
  color: #ED1C24;
}
@media (max-width: 768px) {
  h2 {
    font-size: 22px;
  }
}

.btn-red-round, button.btn-red-round {
  font-size: 20px;
  color: #fff;
  background: #ED1C24;
  border-radius: 50px !important;
  padding: 10px 20px;
  border: 0;
  font-weight: 600 !important;
}
.btn-red-round.small, button.btn-red-round.small {
  padding: 6px 16px;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: -0.21px;
}
@media (max-width: 768px) {
  .btn-red-round, button.btn-red-round {
    font-size: 14px;
    padding: 8px 10px;
  }
}

.tab-content {
  display: none;
  width: 100%;
}

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

.ttkfooter {
  background-color: #303030;
  padding: 2rem 0 0;
  color: #fff;
  padding-inline: 4vw;
}
@media (min-width: 1920px) {
  .ttkfooter {
    width: 1920px;
    margin: 0 auto;
  }
}

.header-vertical_nav-item.item--vertical_nav {
  display: none !important;
}

.tophive-bp-messenger-sticky-main {
  display: none;
}

.tophive-container #main {
  padding: 30px 20px !important;
}

@media (max-width: 691px) {
  .tophive-container #main {
    padding: 5vh 0 !important;
  }
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  font-family: "Source Sans 3", serif;
}

.footer-links-column {
  margin-block-end: 2rem;
  flex: 1;
}

.footer-links-column h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links-column ul {
  margin: 0;
}

.footer-links-column li {
  margin-bottom: 8px;
  list-style: none;
}

.footer-links-column a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.footer-topsearchs {
  padding: 35px 0px 40px;
  font-family: "Source Sans 3", serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
}

.footer-topsearchs h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-bottem {
  padding: 2vw 4vw;
  display: flex;
  background: #262626;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1920px) {
  .footer-bottem {
    width: 1920px;
    margin: 0 auto;
  }
}
@media (max-width: 580px) {
  .footer-bottem {
    padding: 7vw 19vw;
    flex-direction: column-reverse;
    text-align: center;
  }
}

.footer-bottem p {
  color: #fff;
  font-family: "Source Sans 3", serif;
  font-weight: 400;
  font-size: 18px;
}

.btmicn {
  text-align: center;
}
@media (max-width: 580px) {
  .btmicn {
    margin-bottom: 25px;
  }
}

.fbtmicn {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  display: inline-block;
}

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

.fbtmicn:last-child {
  margin-right: 0px;
}

@media (max-width: 1024px) {
  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1%;
  }
  .footer-links-column {
    width: 24%;
    flex: auto;
  }
}
@media (max-width: 691px) {
  .footer-links {
    flex-direction: column;
    display: block;
  }
  .footer-links-column {
    width: 100%;
    flex: auto;
    margin: 0;
    border-bottom: solid 1px #888;
  }
  .footer-links-column h3 {
    line-height: 45px;
    margin: 0;
    position: relative;
  }
  .footer-links-column h3:before {
    position: absolute;
    top: 50%;
    left: calc(100% - 20px);
    transform: translate(-50%, -50%);
    width: 14px;
    height: 2px;
    background-color: white;
    border-radius: 5px;
    content: "";
  }
}
@media (max-width: 691px) and (max-width: 600px) {
  .footer-links-column h3:before {
    width: 12px;
  }
}
@media (max-width: 691px) {
  .footer-links-column h3:after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: white;
    border-radius: 5px;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.3s ease;
    top: 50%;
    left: calc(100% - 20px);
  }
  .footer-links-column h3.active:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .footer-links-column ul {
    display: none;
  }
}
.centerTopMenu li:hover a {
  color: #fff;
}

.centerTopMenu a:hover {
  color: #fff;
}

.centerTopMenu li button.active a {
  color: #fff;
}

.breadcrumb li:after {
  display: none !important;
  content: "" !important;
}

.sidebar-secondary .breadcrumb {
  padding: 0.5rem 0rem 1.25rem !important;
}
.sidebar-secondary .breadcrumb li a {
  font-size: 14px;
  opacity: 0.5;
  padding: 0;
}
.sidebar-secondary .breadcrumb li:last-child a {
  opacity: 1;
}
.sidebar-secondary .breadcrumb li:not(:last-child) a:after {
  content: " /";
}

.srchbxout {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  width: 300px;
  padding: 60px 10px 20px;
  position: absolute;
  left: -10px;
  top: 0px;
  display: none;
}

.historyd {
  border-top: 1px dashed #ccc;
  padding-top: 10px;
}

.tophis {
  display: flex;
  justify-content: space-between;
}

.histit {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

#searchenq {
  display: none;
}

.cleartxt {
  font-size: 12px;
  color: #000;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 6px;
  z-index: 2;
  cursor: pointer;
  display: none;
}

.srchclose {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
}

.bdhidden {
  overflow: hidden;
}

.expantinput {
  width: 280px !important;
  background: #E5E5E5;
  padding-right: 50px;
}

.transdiv {
  background: #000;
  opacity: 0.6;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 12;
  display: none;
}

.transdivnot {
  background: #000;
  opacity: 0.6;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 99;
  display: none;
}

.tagslistb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.tagslistb li {
  list-style: none;
  margin-bottom: 5px;
}

.tagslistb li a {
  padding: 5px 16px;
  border: 1px solid rgba(48, 48, 48, 0.5);
  border-radius: 17px;
  color: #303030;
  font-size: 14px;
  text-decoration: none;
  display: block;
}

#searchenq ul li, #searchenqmob ul li {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #000;
  margin: 8px 0px 12px;
}

.leftps {
  cursor: pointer;
}

#searchenq ul, #searchenqmob ul {
  height: 250px;
  overflow: auto;
  padding-right: 5px;
}

#searchenq ul li span, #searchenqmob ul li span {
  color: rgba(0, 0, 0, 0.4705882353);
  font-size: 12px;
}

#searchenqmob ul {
  padding-right: 15px;
}

.allresult {
  color: #000;
  font-size: 16px;
  border-top: 1px dashed #ccc;
  padding-top: 10px;
  display: block;
}

.allresult span {
  font-weight: 700;
}

.srchtitle {
  font-size: 20px;
  font-weight: 300;
  margin: 8px 0 0 0;
  color: #fff;
}

.srchtitle span {
  font-weight: 700;
}

.content-searchwrapper {
  width: 100%;
  max-width: 1230px;
}

.searchsec {
  margin-bottom: 30px;
  width: 100%;
}

.searchsec h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2588235294);
  padding-bottom: 7px;
  margin-bottom: 3%;
}

.searchcard {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 1.8%;
}

.searchbx {
  flex: 0 0 18.5%;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  background: #fff;
  position: relative;
  margin-bottom: 22px;
}

.recimgnew {
  width: 100%;
  height: 180px;
  position: relative;
}

.recimgnew img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0px 0px;
}

.recimgnew .dislike {
  width: 24px;
  height: 21px;
  background: url(../img/dislike.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 16px;
  right: 11px;
}

.srchconpad {
  padding: 10px;
}

.srctitmain {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 40px;
  text-align: left;
}

.calsrch {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
}

.calsrch .nonveg {
  width: 21px;
  height: 21px;
  background: url(../img/nonveg.png) no-repeat;
  background-size: cover;
}

.calsrch .veg {
  width: 21px;
  height: 21px;
  background: url(../img/veg.png) no-repeat;
  background-size: cover;
}

.caldv {
  background: #ffe5d5;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  padding: 3px 10px;
  border-radius: 10px;
}

.articimgnew {
  width: 100%;
  height: 145px;
  position: relative;
}

.articimgnew img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0px 0px;
}

.metainfoar {
  font-size: 14px;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.metainfoar .read-time {
  color: #000;
  font-weight: 600;
}

.metainfoar .publish-date {
  color: #777;
  position: relative;
}

.srchbxoutmob {
  display: none;
}

.searchbox .searchIcon {
  background-size: 17px !important;
}

@media (max-width: 691px) {
  .searchbox .searchIcon {
    background-size: 19px !important;
  }
  .searchcard {
    grid-gap: 4%;
  }
  .searchbx {
    flex: 0 0 48%;
  }
  .metainfoar {
    font-size: 13px;
  }
  .expantinput {
    width: 280px !important;
    display: block !important;
  }
  .srchbxout {
    border-radius: 0px;
  }
  .srchbxoutmob {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    width: 100%;
    height: 100vh;
    padding: 70px 10px 20px;
    position: absolute;
    left: 0px;
    z-index: 99;
    top: 0px;
    display: none;
  }
  .srchclose {
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
  }
  .srchclosemob {
    position: absolute;
    font-size: 18px;
    font-family: arial;
    top: 26px;
    right: 18px;
  }
  .srchbxoutmob .searchbox {
    top: 10px;
    position: absolute;
  }
  .srchbxoutmob .searchbox .searchIcon {
    position: absolute;
    top: 50%;
    left: 11px;
    transform: translateY(-50%);
    width: 19px;
    height: 19px;
    background: url(../img/searchmob.png) no-repeat center center;
    background-size: 18px;
  }
  .srchbxoutmob .searchbox input {
    display: block !important;
    border: 1px solid #ccc;
    width: 86vw;
    height: 35px;
    padding-left: 45px;
  }
  #searchenqmob {
    display: none;
  }
}
.quick-links {
  border-radius: 16px;
  width: 100% !important;
}

.categoriesgridcomm .categorieswrapper .categorycardcomm {
  background-color: #fff;
  border-radius: 8px;
  padding: 5px 5px 20px 5px;
  border-top: 3px solid #ff7b2d;
  box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.14) !important;
}

.categoriesgridcomm .categorieswrapper {
  gap: 9px !important;
}

.categoriesgridcomm .categorieswrapper .categorycardcomm .grigimg {
  height: 177px !important;
}

.categoriesgridcomm .categorieswrapper .categorycardcomm .categorytitlecomm {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.categoriesgridcomm .categorieswrapper .categorycardcomm .categorydesccomm {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.centerTopMenu {
  overflow: auto;
  scrollbar-width: none;
}

.centerTopMenu li span, .centerTopMenu li a {
  white-space: nowrap;
  display: contents;
}

.advanced-th-bp-activity-form {
  overflow: auto !important;
}

#whats-new-attachments > a, #whats-new-attachments > div {
  padding: 0px;
  margin: 0 0px 0 0;
  position: relative;
}

.whats-new-previewer.previewer-toggle {
  position: relative;
  bottom: 1px;
  margin: 10px 0px 5px !important;
}

.activity-update-form #whats-new-options #whats-new-submit #aw-whats-new-submit {
  height: 33px !important;
  margin: 0px 2px !important;
  background: rgb(255, 123, 45);
}
@media (max-width: 580px) {
  .activity-update-form #whats-new-options #whats-new-submit #aw-whats-new-submit {
    background: #000;
  }
}

.activity-update-form #whats-new-options #whats-new-submit #aw-whats-new-submit:hover {
  background: rgb(255, 123, 45);
}
@media (max-width: 580px) {
  .activity-update-form #whats-new-options #whats-new-submit #aw-whats-new-submit:hover {
    background: #000;
  }
}

.activity-update-form #whats-new-submit {
  height: 25px;
}

.activity-update-form #whats-new-options {
  padding: 0px 0px 0px 5px;
}

.activity-update-form #whats-new-content {
  padding: 15px 15px 25px 15px !important;
}

.wrapWhtsNewAttc {
  padding-bottom: 15px !important;
}

.mobile_post_form, .mobilepost {
  display: none;
}

.main_post_form {
  display: block;
}

.postButtons {
  margin-right: 10px;
}

@media (max-width: 580px) {
  .centerTopMenu li button {
    padding: 7px 15px !important;
  }
  .entry-content #buddypress #bp-nouveau-activity-form.activity-update-form #whats-new-content {
    display: none !important;
  }
  .wrapWhtsNewAttc {
    display: block !important;
    position: relative !important;
    bottom: 0px !important;
    top: 30px !important;
    left: 0px !important;
    right: 0px !important;
    line-height: normal !important;
  }
  .mobile_post_form {
    width: 100%;
    height: 40px;
    border-radius: 5px !important;
    background: #fff;
    display: flex !important;
    justify-content: space-between;
  }
  .textlbox {
    border: 0px !important;
    width: 75% !important;
    margin: 4px 0px 0px 6px;
  }
  .textlbutton {
    background: #000 !important;
    border-radius: 5px !important;
    padding: 0px 20px !important;
    height: 30px;
    margin: 2px 4px !important;
  }
  .mobilepost {
    width: 100%;
    height: 100vh;
    position: fixed;
    display: block;
    top: 0px;
    left: 0px;
    background: white;
    z-index: 99;
  }
  .mobilepost_header {
    display: flex;
    align-items: center;
    box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.05);
    padding: 20px 15px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }
  .long-arrow-left {
    background: url("../img/leftlong_arrow.png") no-repeat;
    margin-right: 10px;
    display: block;
    width: 23px;
    height: 16px;
    background-size: cover;
  }
  .postbdy {
    padding: 27px 15px 0px 15px;
  }
  .profned {
    display: flex;
    justify-content: left;
  }
  .postimgprof {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
  }
  .postimgprof img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .posttitimg {
    font-size: 16px;
    font-weight: 600;
    color: #000;
  }
  .select-style {
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    width: 120px;
    border-radius: 3px;
    overflow: hidden;
    background-color: #fff;
    background: #fff url("") no-repeat 90% 50%;
    position: relative;
  }
  .select-style select {
    padding: 0px 8px;
    width: 130%;
    border: none;
    font-size: 12px;
    box-shadow: none;
    background-color: #f4f4f4;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .select-style:after {
    content: "";
    position: absolute;
    top: 7px;
    transform: rotate(45deg);
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    right: 9px;
    width: 4px;
    z-index: 99;
    height: 4px;
    transition: all 0.3s ease;
  }
  .select-style select:focus {
    outline: none;
  }
  .postinputbx {
    background: #f2f2f2;
    border-radius: 8px !important;
    padding: 12px 7px;
    margin-top: 13px;
  }
  .postinputbx textarea {
    width: 100%;
    background: #f2f2f2;
    height: 118px;
    font-size: 12px;
    color: #504f4f;
    font-weight: 300;
    border: 0px;
  }
  .btnpost {
    margin-top: 70px;
    text-align: center;
  }
  .btnpost button {
    background: #000 !important;
    color: #fff !important;
    width: 230px !important;
    height: 40px !important;
    text-align: center !important;
    line-height: 40px !important;
    margin: 0 auto !important;
  }
  .postbtmsec {
    box-shadow: 0px -1px 12px 5px rgba(0, 0, 0, 0.1);
    border-radius: 30px 30px 0px 0px !important;
    width: 100%;
    height: 180px;
    background: #fff;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 999;
  }
  .postbtmtit {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .postbtmbutnew {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin: 0px 60px;
  }
  .postntbtn {
    width: 47px;
    height: 47px;
    border-radius: 8px !important;
    text-align: center;
    margin: 0 auto;
    line-height: 47px;
  }
  .postntbtn.recipe {
    background: rgb(212, 255, 206);
  }
  .postntbtn.video {
    background: rgb(206, 223, 255);
  }
  .postntbtn.image {
    background: rgb(255, 241, 206);
  }
  .postntbtn.friend {
    background: rgb(255, 206, 207);
  }
  .postButtons {
    width: 47px;
    height: 47px;
    border-radius: 8px !important;
    text-align: center;
    margin: 0 auto 0 auto;
    display: block;
    line-height: 47px !important;
    padding: 0px !important;
  }
}
.mobilepost .postbtmbutnew {
  margin-top: 20px !important;
}

@media (min-width: 1920px) {
  .bannerWrap {
    width: 1920px;
    margin: 0 auto;
  }
}

.socilaModalweb, .socilaModalact {
  position: absolute;
  right: 0px;
  bottom: 26px;
  top: inherit;
  left: inherit;
  width: 75px;
  border: 1px solid #ccc;
  border-radius: 10px !important;
  display: none;
  z-index: 999;
}

.socilaModalact {
  background: #fff;
  right: 19px;
  bottom: 60px;
}
@media (max-width: 600px) {
  .socilaModalact {
    right: 10px;
    bottom: 136px;
  }
}

.socilaModal {
  position: absolute;
  left: -30px;
  top: 35px;
  width: 75px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: none;
}

.ShareIconsd {
  display: block;
  margin: 0;
  background: #ffffff;
  padding: 10px 0px;
  border-radius: 10px;
}

.ShareIconsd li {
  width: 26px;
  margin: 5px 3px;
  display: inline-block;
  height: 26px;
  padding: 0px !important;
}

.post-share .ShareIconsd {
  margin: 0 4px !important;
}

.post-share .ShareIconsd li {
  margin: 5px 3px !important;
}

.ShareIconsd li a {
  background-image: url(https://images.slurrp.com//prod/nextjs/images/360/socialIcon.svg) !important;
  background-repeat: no-repeat !important;
  margin: 5px 3px;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-repeat: no-repeat;
}

.ShareIconsd .fb {
  background-color: #3b5999 !important;
  background-position: 7px 5px !important;
  cursor: pointer;
}

.ShareIconsd .tw {
  background-color: #000000 !important;
  background-image: url("https://cdn.builder.io/api/v1/image/assets/e97e2f3aacaa489e9ad4cd841e68e7dd/2798955443d0bb1b6aadbe70687718c3f36d5781c0eb091546ca955b1ea4cffc?placeholderIfAbsent=true") !important;
  background-repeat: no-repeat;
  background-position: 5px 5px !important;
  cursor: pointer;
  width: 26px;
  height: 26px;
}

.ShareIconsd .whatsapp {
  background-color: #4ac85a !important;
  background-position: -89px 4px !important;
  cursor: pointer;
}

.ShareIconsd .linkedin {
  background-color: #0a74b3 !important;
  background-position: -140px 4px !important;
  cursor: pointer;
}

.ShareIconsd .mail {
  background-color: #d75849 !important;
  background-position: -196px 5px !important;
  cursor: pointer;
}

.ShareIconsd .copy {
  background-color: #343434 !important;
  background-position: -239px 5px !important;
  cursor: pointer;
}

.bp-th-follow-button {
  border: 1px solid #000000 !important;
  border-radius: 4px !important;
  background: #fff !important;
  padding: 3px 8px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-left: 15px !important;
}

.without_login_follow_profile {
  border: 1px solid #000000 !important;
  border-radius: 4px !important;
  background: #fff !important;
  padding: 3px 8px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-left: 15px !important;
}

.activity-footer-links {
  display: flex;
  justify-content: space-between;
}

.activity-type-navs {
  display: none;
}

.shbtntm {
  margin-right: 5px;
  width: 18px;
  height: 19px;
}

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

.post-share {
  display: flex !important;
  align-items: flex-start;
  cursor: pointer;
}

.profilewrap {
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1) !important;
}

.profileDetails {
  padding-bottom: 20px;
  padding-top: 10px;
}

.profileDetails li + li {
  border: 0px !important;
}

.profileDetails li {
  position: relative;
  color: #504F4F !important;
}

.profileDetails li strong {
  font-size: 16px;
}

.profileDetails li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 34px;
  background: rgba(80, 79, 79, 0.3019607843);
  right: 0px;
  top: 5px;
}

.profileDetails li:last-child::before {
  display: none;
}

.follow_profile {
  border: 1px solid #FF7B2D;
  background: #FFF6F0;
}

.follow_profile .bp-th-follow-button {
  width: 250px !important;
  display: block !important;
  background: #FF7B2D !important;
  border: 1px solid #FF7B2D !important;
  margin: 0 auto !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 7px 0px !important;
  border-radius: 6px !important;
}

.follow_profile .without_login_follow_profile {
  width: 250px !important;
  display: block !important;
  background: #FF7B2D !important;
  border: 1px solid #FF7B2D !important;
  margin: 0 auto !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 7px 0px !important;
  border-radius: 6px !important;
}

.activity-post-featured-image, .media-popup-thumbnail {
  display: block;
  width: 100%;
  height: 451px;
  margin: 10px 0px !important;
}
@media (max-width: 600px) {
  .activity-post-featured-image, .media-popup-thumbnail {
    height: 283px;
  }
}

.activity-post-featured-image img, .media-popup-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  margin: 0px !important;
  border-radius: 5px;
}

.tophive-container #sidebar-primary {
  padding: 78px 0 5vh 0 !important;
}

.tophive-container #sidebar-secondary {
  padding: 35px 0 5vh 0 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus, input:focus {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  color: #000 !important;
}

.nav-item:hover {
  color: #000;
}

.activity-inner a {
  color: #000 !important;
  font-weight: normal !important;
}

.community_detail .tophive-grid {
  justify-content: center;
}

.community_detail .tophive-container #main {
  flex-basis: 57%;
  max-width: 57%;
}

.community_detail .breadcrumb {
  padding: 1.25rem 20px !important;
}

.community_detail .breadcrumb li:not(:last-child) a:after {
  content: " /";
}

.community_detail .breadcrumb li:last-child a {
  opacity: 1;
}

.community_detail .breadcrumb li a {
  font-size: 14px;
  opacity: 0.5;
  padding: 0;
  color: #303030;
  font-weight: 600;
}

.community_detail .activity-footer-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.community_detail .th-bp-footer-meta {
  align-items: center;
}

.community_detail .ec-justify-content-between {
  margin-bottom: 0px !important;
}

.slick-slide {
  height: auto !important;
}

.post-media-single-image-container {
  width: 100% !important;
  height: 470px !important;
  border-radius: 8px !important;
}

.post-media-single-image-container img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px;
  object-fit: cover;
}

.activity-content .th-bp-footer-meta div + div .activity-comments-toggle:after {
  content: none;
}

#buddypress .activity-content .activity-footer-links .th-bp-footer-meta {
  font-size: 14px !important;
}

#buddypress .activity-content .activity-footer-links > div a {
  line-height: normal;
}

.likeallme {
  display: flex;
}

.activity-content .comments-meta::after, .activity-content .bullog::after {
  content: "." !important;
  position: absolute;
  font-size: 30px;
  top: -7px;
  color: #000;
  right: -10px;
}

.activity-content .comments-meta::before, .activity-content .bullog::before {
  content: "." !important;
  position: absolute;
  font-size: 30px;
  top: -7px;
  color: #000;
  left: -10px;
}

.activity-content .logged-out {
  position: relative;
}

.th-bp-logged-out1 {
  margin: 0px 5px 0px 0px !important;
}

.recipecardcomm a:hover p {
  color: #000;
}

.th-bp-activity-like-button .reaction_icons {
  z-index: 9;
}

.tophive-grid .tranrefer {
  width: 110vw;
  margin-left: -150px;
  height: 100vh;
  background: #000;
  opacity: 0.6;
  position: absolute;
  z-index: 99;
  left: 0px;
  top: -250px;
  display: none;
}
@media (max-width: 600px) {
  .tophive-grid .tranrefer {
    top: -400px;
    width: 100vw;
    margin-left: 0px;
  }
}

.tophive-grid .refercont {
  width: 675px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  display: none;
}
@media (max-width: 600px) {
  .tophive-grid .refercont {
    width: 96% !important;
    padding: 50px 20px 20px;
  }
}

.closerefer {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
}

.refercont .text-content {
  max-width: 62%;
}
@media (max-width: 600px) {
  .refercont .text-content {
    max-width: 100%;
  }
}

.refercont .text-content h2 {
  margin: 0;
  font-size: 24px;
}

.refercont .highlight {
  color: #ff9100;
}

.refercont .reward {
  font-weight: bold;
}

.refercont .desc {
  font-size: 16px;
  color: #5E5E5E;
  font-weight: 300;
  margin: 10px 0 20px;
}

.refercont .tabsv {
  display: flex;
  margin-bottom: 25px;
  background: #F5F5F4;
  width: fit-content;
  border-radius: 20px;
  padding: 5px;
}

.refercont .tab-contentn .tab-pane {
  display: none;
}

.refercont .tab-contentn .tab-pane.active {
  display: block;
}

.refercont .tabv {
  padding: 1px 16px;
  background: #f2f2f2;
  margin-right: 10px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

.refercont .tabv.active {
  background: #fff;
  font-weight: bold;
}

.refercont .email-input {
  display: flex;
  margin: 0px 10px 10px 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px;
}

.refercont .email-input input {
  border: 0px;
  background: no-repeat;
  font-size: 16px;
  font-weight: 300;
}

.refercont input[type=email] {
  padding: 10px;
  flex: 1;
  border: 0px;
  outline: none;
  font-size: 16px;
  color: #5E5E5E;
  font-weight: 300;
}

.refercont .invite-btn {
  padding: 10px 20px;
  background: #ff9100;
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.refercont .import {
  font-size: 16px;
  color: #5E5E5E;
  margin-top: 40px;
}

.refercont #message_copy {
  color: #ff9100;
}

.refercont .import img {
  width: 20px;
  margin-left: 8px;
  vertical-align: middle;
  cursor: pointer;
}

.refercont .illustration {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
@media (max-width: 600px) {
  .refercont .illustration {
    display: none;
  }
}

.refercont .illustration img {
  max-width: 250px;
}

.recipe_post {
  padding: 0px 20px;
}
@media (max-width: 600px) {
  .recipe_post {
    padding: 0px 10px;
  }
}

.recipe_post_img {
  margin: 16px 0px;
  width: 100%;
  height: 451px;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .recipe_post_img {
    height: 283px;
  }
}

.recipe_post_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.recipe_post_desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}

.activity-list .activity-item div.item-avatar img {
  border-radius: 50%;
}

@media (max-width: 600px) {
  .buddypress .activity-list .activity-item .activity-footer-links {
    padding: 0 10px 10px 10px;
  }
}

@media (max-width: 600px) {
  .buddypress .activity-list .activity-item .activity-inner p {
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .activity-list .activity-item div.item-avatar, .activity-list .activity-item.mini .activity-avatar {
    margin-left: 10px;
  }
}

@media (max-width: 600px) {
  .activity-comments-form {
    padding: 15px 10px;
  }
}

@media (max-width: 600px) {
  .buddypress-wrap .activity-comments ul li {
    padding: 5px 10px;
  }
}

.profilewrap .bp-th-follow-button {
  width: 250px !important;
  display: block !important;
  background: #FF7B2D !important;
  border: 1px solid #FF7B2D !important;
  margin: 0 auto !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 7px 0px !important;
  border-radius: 6px !important;
}

.profilewrap .without_login_follow_profile {
  width: 250px !important;
  display: block !important;
  background: #FF7B2D !important;
  border: 1px solid #FF7B2D !important;
  margin: 0 auto !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 7px 0px !important;
  border-radius: 6px !important;
}

.topchefs .chefslist .chefitem a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.activity {
  position: relative;
}

.admin_post .content-inner {
  margin: 0px !important;
  padding: 0px !important;
  background: none !important;
  border-radius: 0px !important;
}

.admin_post #buddypress {
  margin: 0px !important;
}

.admin_post .activity-header {
  padding-top: 20px;
}

.admin_post .activity-inner, .admin_post .activity-footer-links {
  padding: 0 15px !important;
}

.admin_post .activity-inner a {
  display: block;
}

.admin_post .activity-list li {
  list-style: none;
}

.admin_post .activity-content .comments-meta::before, .admin_post .activity-content .comments-meta::after {
  top: -7px;
}

.admin_post .activity-footer-links {
  padding-bottom: 10px !important;
}

.admin_post .community_detail .breadcrumb {
  padding: 1.25rem 0px !important;
}

body.activity-permalink .activity-list .activity-content {
  line-height: inherit !important;
}

#whats-new-textarea #whats-new-attachments > p {
  margin: 0px !important;
  padding: 0px !important;
}

.btnpost [disabled=disabled], .buddypress .buddypress-wrap input[type=submit]:disabled, .btnpost input[type=submit]:disabled {
  border-color: #eee !important;
  color: #777 !important;
  cursor: default;
  background: #ddd !important;
  width: 230px;
  font-size: 16px !important;
  height: 40px;
}

.btnpost input[type=submit] {
  background: #000 !important;
  color: #fff !important;
  width: 230px !important;
  height: 40px !important;
  text-align: center !important;
  line-height: 40px !important;
  margin: 0 auto !important;
}

.quick-links .tagslist .tag.selected {
  background: none !important;
}

.nextskip {
  display: flex;
}

.skipscreen {
  width: 62px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  justify-content: space-between;
  padding: 10px;
  font-size: 14px;
  margin-left: 40px;
  font-weight: 600;
  color: #000 !important;
  display: flex !important;
  text-decoration: none;
}
.skipscreen .arrowright {
  border: solid #000;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.likeallme {
  padding-left: 5px !important;
}

.without_login_my_post {
  cursor: auto !important;
  background: #FF7B2D !important;
  color: #fff;
  border: solid 1px #FF7B2D !important;
  padding: 7px 13px !important;
  font-weight: 400 !important;
  font-size: 16px;
  border-radius: 5px !important;
  min-height: 0 !important;
  line-height: 1 !important;
  align-items: center;
  display: flex;
  gap: 5px;
  cursor: default !important;
}

.centerTopMenu li h2.without_login_my_post {
  background: #FF7B2D !important;
  color: #fff;
  border: solid 1px #FF7B2D !important;
}

.without_login_my_post svg path {
  stroke: #fff;
}

.chef_like {
  cursor: pointer;
}

.welcome {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.centerTopMenu li h2 {
  padding: 7px 13px !important;
  font-weight: 400 !important;
  font-size: 16px;
  border-radius: 5px !important;
  min-height: 0 !important;
  line-height: 1 !important;
  background: #fff !important;
  border: solid 1px #5E5E5E !important;
  display: inline-flex !important;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  margin: 0px !important;
}

.centerTopMenu li h2.active, .centerTopMenu li h2:hover {
  background: #FF7B2D !important;
  color: #fff !important;
  border: solid 1px #FF7B2D !important;
}

.centerTopMenu li h2:hover svg path, .centerTopMenu li h2.active svg path {
  stroke: #fff;
}

.centerTopMenu li h2.active a {
  color: #fff !important;
}

.centerTopMenu li h2 span {
  color: #000 !important;
}

.centerTopMenu li h2.active span, .centerTopMenu li h2:hover span {
  color: #fff !important;
}

.post_created {
  position: fixed;
  top: 320px;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, 0px);
  background: #ffd600;
  padding: 3px 10px;
  color: #000;
  border-radius: 19px !important;
  display: none;
}
@media (max-width: 600px) {
  .post_created {
    top: 300px;
    z-index: 999;
  }
}

#buddypress .activity-extension-links ul li a img {
  margin-right: 10px;
}

.advanced-th-bp-activity-form {
  color: #000 !important;
  font-size: 15px;
}

.file-upload-container label abbr {
  cursor: pointer !important;
}

.fileselectbox.file-input::-webkit-file-upload-button {
  cursor: pointer;
}

.belicn {
  width: 35px;
  height: 35px;
  background: url(../img/bellicn.png) no-repeat;
  background-size: cover;
  border: 0px;
  cursor: pointer;
  position: relative;
}

.belicn .active {
  background: #ff0000;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 7px;
  right: 9px;
}

.notificationpop {
  width: 390px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  z-index: 999;
  top: 64px;
  right: 57px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
@media (max-width: 580px) {
  .notificationpop {
    width: 100%;
    top: 72px;
    right: 0px;
  }
}

.not_header {
  font-size: 20px;
  font-weight: 600;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3450980392);
}

.notlist {
  padding: 9px 0px;
  height: 390px;
  overflow-y: scroll;
}

.notlist ul li {
  list-style: none;
  padding: 10px 22px;
}

.notlist ul li a {
  display: flex;
  gap: 15px;
  justify-content: left;
  text-decoration: none;
}

.notlist ul li.unread {
  background: rgba(204, 204, 204, 0.262745098);
}

.not_header span {
  position: absolute;
  top: 8px;
  right: 21px;
  font-weight: 400;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}

.userimgh {
  width: 40px;
  height: 40px;
  border-radius: 50px;
}
.userimgh img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.usernotdesc p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}
.usernotdesc p span {
  font-weight: 700;
}

.hrtime {
  font-size: 12px;
  font-weight: 400;
  padding-top: 3px;
  color: #5E5E5E;
}

#buddypress .activity-footer-links .th-bp-footer-meta-actions {
  padding: 0 !important;
  margin-top: -1px !important;
}

.th-bp-post-like-button.th-bp-activity-like-button {
  margin: 0px !important;
}

#buddypress .activity-footer-links .th-bp-footer-meta-actions > div.th-bp-post-like-button a svg {
  margin: 0px !important;
}

.update_profile_button {
  background: #FF8801 !important;
  border: 0 !important;
  color: #fff;
}

.update_profile_button:hover {
  color: #fff !important;
}

li.back_timeline {
  align-self: center;
  margin-left: auto;
  opacity: 0.8;
  font-size: 16px;
  color: #5E5E5E;
}

li.back_timeline:hover a {
  color: #5E5E5E !important;
}

li.back_timeline a {
  border: 1px solid rgb(94, 94, 94);
  display: block;
  padding: 5px 7px;
  border-radius: 5px;
}

@media (max-width: 370px) {
  #buddypress .activity-content .activity-footer-links .th-bp-footer-meta {
    font-size: 10px !important;
  }
}
.back_timeline .long-arrow-left {
  display: inline-block !important;
  margin: 7px 3px 0px 0px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #5E5E5E;
  border-left: 1px solid #5E5E5E;
  transform: rotate(-45deg);
  background: none !important;
}

.back_timeline .long-arrow-left::after {
  content: none !important;
}

.long-arrow-left::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #5E5E5E;
  transform: rotate(-45deg) translate(7px, 4px);
  left: 0;
  top: 0;
}

.mobilepost_header .long-arrow-left::after {
  background: none !important;
}

.activity-content .logged-out-comment::before {
  content: "." !important;
  position: absolute;
  font-size: 30px;
  top: -7px;
  color: #000;
  left: -10px;
}

.activity-content .logged-out-comment::after {
  content: "." !important;
  position: absolute;
  font-size: 30px;
  top: -7px;
  color: #000;
  right: -10px;
}

#buddypress .activity-footer-links .th-bp-footer-meta span.logged-out-comment {
  margin-right: 13px !important;
  margin-left: 8px !important;
}

#buddypress .th-bp-footer-meta-actions .th-bp-logged-out {
  margin-right: 3px !important;
  margin-top: 2px;
}

#buddypress .activity-footer-links .th-bp-footer-meta-actions > div.th-bp-post-like-button a svg {
  width: 14px !important;
  height: 17px !important;
}

#buddypress .activity-footer-links .th-bp-footer-meta span.logged-out {
  margin-right: 4px;
}

#buddypress .activity-footer-links .th-bp-footer-meta .reactions-meta {
  line-height: 24px;
}

#buddypress .th-bp-logged-out a svg {
  margin-right: 1px !important;
}

.postButtons.photos, .postButtons.video {
  cursor: pointer;
}

.bodyhidden {
  overflow: hidden;
}

.pagination {
  align-self: center;
  display: flex;
  margin-top: 50px;
  width: 440px !important;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}

.page-numbers {
  border: none;
  border-radius: 4px;
  background-color: #fff;
  padding: 12px 16px;
  width: 44px;
  color: #000;
  cursor: pointer;
  font-size: inherit;
}

.page-numbers.current {
  background-color: #ee1a25;
  color: #fff;
  padding: 12px 19px;
}

.pagination .prev {
  border: none;
  background: none;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  width: 70px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #E6E6E6;
}

.pagination .next {
  border: none;
  background: none;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  width: 70px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #E6E6E6;
}

@media (max-width: 600px) {
  .pagination {
    width: 100% !important;
    gap: 9px;
  }
  .page-numbers {
    padding: 12px 14px;
  }
  .pagination .prev, .pagination .next {
    font-size: 16px;
    padding: 12px 9px;
  }
}
.followerspop {
  cursor: pointer;
}

.followingspop {
  cursor: pointer;
}

.tophive-grid .followers_popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.tophive-grid .followers_popup .followers_popup__content {
  width: 490px;
  overflow: auto;
  border-radius: 6px;
  background: white;
  color: black;
  position: relative;
  padding: 30px 0px 0px 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 999;
}
@media (max-width: 600px) {
  .tophive-grid .followers_popup .followers_popup__content {
    width: 100%;
  }
}

.foloowclose {
  background: #000;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  line-height: 22px;
  color: #fff;
  font-size: 17px;
  text-align: center;
  position: absolute;
  right: 18px;
  top: 33px;
}

.tabsf {
  width: 100%;
}

.tabf-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  border-bottom: 1px dashed #ccc;
}

.tabf-links li {
  margin-right: 10px;
}

.tabf-links a {
  padding: 10px 15px;
  display: inline-block;
  text-decoration: none;
  background: #f0f0f0;
  color: #333;
  border-radius: 4px 4px 0 0;
}

.tabf-links .active a {
  background: #FF7B2D;
  color: #fff;
  font-weight: bold;
}

.tabf-content {
  height: 350px;
  overflow: auto;
}

.tabf-content .tabf {
  display: none;
  padding: 20px;
  background: #fff;
  border-top: none;
}

.tabf-content .tabf.active {
  display: block;
}

.followlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.followlist li a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.followlist li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.followlist li .folloname {
  color: #000;
  font-size: 18x;
  font-weight: 400;
  margin: 0px;
}

.folloutnh {
  line-height: 21px;
  display: grid;
}

.followid {
  font-size: 14px;
  color: rgb(80, 79, 79);
}

@media (max-width: 600px) {
  .tophive-container #sidebar-secondary {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .tophive-grid {
    display: flex;
    flex-direction: column;
  }
  #sidebar-secondary {
    order: 0 !important;
  }
  #main {
    order: 1 !important;
  }
  #sidebar-primary {
    order: 2 !important;
  }
}
body #buddypress li {
  position: relative;
}

.activity-avatar.item-avatar {
  position: absolute;
  z-index: 1;
}

.activity-update-form.activity-post-form-popup #whats-new-form {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

section {
  width: 100%;
}

@media (min-width: 1920px) {
  .bannerwrap, .foodOptions, .benifits, .events, .topSuggestionsChef, .smartChefCreator, .tastesIndia, .top-suggestions, .healthcareRecipes, .cravingsec, .consumerSection, .faq {
    width: 1920px;
    margin: 0 auto;
  }
}

.bannerwrap {
  height: 450px;
  overflow: hidden;
}
@media (max-width: 2090px) {
  .bannerwrap {
    height: 604px;
  }
}
@media (max-width: 1921px) {
  .bannerwrap {
    height: 547px;
  }
}
@media (max-width: 1680px) {
  .bannerwrap {
    height: 435px;
  }
}
@media (max-width: 1550px) {
  .bannerwrap {
    height: 438px;
  }
}
@media (max-width: 1490px) {
  .bannerwrap {
    height: 437px;
  }
}
@media (max-width: 1366px) {
  .bannerwrap {
    height: 440px;
  }
}
@media (max-width: 1028px) {
  .bannerwrap {
    height: 432px;
  }
}
@media (max-width: 600px) {
  .bannerwrap {
    height: 180px;
  }
}

.wrapBSlider {
  width: 100%;
  margin: 0 !important;
}
.wrapBSlider .slick-dots {
  position: absolute;
  bottom: 10px;
}
.wrapBSlider .slick-dots li {
  margin: 0 2px;
}
.wrapBSlider .slick-dots li button:before {
  font-size: 30px;
  color: #B0B0B0;
  opacity: 1;
}
.wrapBSlider .slick-dots li.slick-active button:before {
  color: #fff;
}
.wrapBSlider .slick-dots li button {
  position: absolute;
  left: 0px;
  top: 0px;
}

.bSlide {
  width: 100%;
  display: flex !important;
  position: relative;
}
.bSlide .bslideContent {
  background: #FF9556;
  background: linear-gradient(90deg, rgb(255, 149, 86) 85%, rgba(0, 0, 0, 0) 100%);
  display: inline-flex;
  width: 50%;
  height: 100%;
  padding: 30px 60px;
  align-items: center;
  position: absolute;
  color: #fff;
}
.bSlide .bslideContent h1, .bSlide .bslideContent h2, .bSlide .bslideContent h3 {
  color: #fff;
}
.bSlide .bslideContent h1 {
  font-weight: 700;
}
.bSlide .bslideContent p {
  font-size: 24px;
  line-height: 1.2;
  padding: 0px 150px 0px 0px;
}
@media (max-width: 1024px) {
  .bSlide .bslideContent p {
    font-size: 20px;
    padding: 0px;
  }
}
@media (max-width: 768px) {
  .bSlide .bslideContent p {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .bSlide .bslideContent p {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .bSlide .bslideContent {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .bSlide .bslideContent {
    width: 35%;
    padding: 27px 15px;
    display: inline;
  }
}
@media (max-width: 500px) {
  .bSlide .bslideContent {
    width: 50%;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(255, 149, 86) 75%, rgba(0, 0, 0, 0) 100%);
  }
}
.bSlide .bslideImg {
  display: inline-flex;
  width: 60%;
  margin-left: auto;
}
.bSlide .bslideImg img {
  width: 100%;
  object-fit: cover;
  height: 62vh;
}
@media (max-width: 1921px) {
  .bSlide .bslideImg img {
    height: 60vh;
  }
}
@media (min-width: 2100px) {
  .bSlide .bslideImg img {
    height: 42vh;
  }
}
@media (min-width: 3000px) {
  .bSlide .bslideImg img {
    height: 31vh;
  }
}
@media (min-width: 4000px) {
  .bSlide .bslideImg img {
    height: 21vh;
  }
}
@media (min-width: 5000px) {
  .bSlide .bslideImg img {
    height: 15vh;
  }
}
@media (max-width: 768px) {
  .bSlide .bslideImg {
    width: 65%;
    margin-left: auto;
  }
  .bSlide .bslideImg img {
    min-height: 180px;
    height: 18px;
  }
}

.foodOptions {
  align-items: center;
  justify-content: center;
  padding: 55px 15px;
  display: flex;
}
@media (max-width: 1024px) {
  .foodOptions {
    padding: 35px 15px;
  }
}
@media (max-width: 600px) {
  .foodOptions {
    padding: 25px 15px;
  }
}
.foodOptions ul {
  display: flex;
  grid-gap: 20px;
  max-width: 100%;
}
.foodOptions ul li {
  width: 172px;
  background: #fff;
  border: solid 0.85px #dcdcdc;
  border-radius: 9px;
  box-shadow: 0 3px 12px rgba(103, 103, 103, 0.1);
  display: block;
  position: relative;
  overflow: hidden;
}
.foodOptions ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 92px;
  padding: 0 0 0 10px;
  text-decoration: none;
  color: #676767;
  width: calc(100% - 80px);
  line-height: 1.1;
}
.foodOptions ul li a strong {
  font-weight: 400;
  text-transform: uppercase;
}
.foodOptions ul li a i {
  position: absolute;
  width: 100px;
  right: 0;
  bottom: 0;
  transform: translate(20%, 20%);
}
@media (max-width: 1024px) {
  .foodOptions ul {
    grid-gap: 1%;
    width: 100%;
  }
  .foodOptions ul li {
    width: 19%;
  }
  .foodOptions ul li a {
    flex-direction: column;
    width: 100%;
    padding: 15px;
    min-height: 125px;
  }
  .foodOptions ul li a strong {
    text-align: center;
    line-height: 1.2;
  }
  .foodOptions ul li a i {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }
  .foodOptions ul li a i img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 600px) {
  .foodOptions ul {
    justify-content: center;
  }
  .foodOptions ul li {
    width: 100px;
    grid-gap: 10px;
  }
  .foodOptions ul li a {
    padding: 10px;
    min-height: 100px;
  }
  .foodOptions ul li a strong {
    font-size: 14px;
  }
  .foodOptions ul li a i {
    top: 40px;
  }
  .foodOptions ul li a i img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 500px) {
  .foodOptions ul li {
    width: 70px;
  }
  .foodOptions ul li a {
    padding: 7px;
    min-height: 70px;
  }
  .foodOptions ul li a strong {
    font-size: 10px;
  }
  .foodOptions ul li a i {
    top: 30px;
  }
  .foodOptions ul li a i img {
    width: 50px;
    height: 50px;
  }
}

.benifits {
  background: #F5F5F5;
  padding: 45px 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.benifits h2 {
  margin-bottom: 0px;
  font-weight: 600;
}
.benifits::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 210px;
  height: 156px;
  background: url("../img/benefitsBgLeft.png") no-repeat;
  background-size: contain;
  opacity: 0.3;
  z-index: -1;
}
.benifits::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 229px;
  height: 245px;
  background: url("../img/benefitsBgRight.png") no-repeat;
  background-size: contain;
  opacity: 0.3;
  z-index: -1;
}
@media (max-width: 600px) {
  .benifits {
    padding: 25px 15px 5px;
  }
  .benifits::after {
    width: 110px;
    height: 90px;
  }
  .benifits::before {
    width: 115px;
    height: 120px;
  }
}

.benefitList {
  display: flex;
  padding: 13px 0;
  justify-content: center;
}
.benefitList li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-align: center;
  padding: 10px 30px 10px 10px;
}
.benefitList li:last-child {
  padding: 10px 0px 10px 10px;
}
.benefitList li i {
  width: 115px;
  height: 62px;
  display: inline-block;
  background-size: contain !important;
  background-position: center !important;
}
@media (max-width: 600px) {
  .benefitList li i {
    width: 80px;
    height: 38px;
  }
}
.benefitList li br {
  display: none !important;
}
.benefitList li span {
  color: #303030;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}
@media (max-width: 600px) {
  .benefitList {
    width: 100%;
  }
  .benefitList li {
    width: 25%;
    padding: 5px;
  }
  .benefitList li span {
    font-size: 14px;
  }
}

.becomeMemberwrap {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 20px;
}
.becomeMemberwrap span {
  color: #676767;
  padding: 10px 12px 12px;
}
@media (max-width: 600px) {
  .becomeMemberwrap {
    padding-top: 0px;
  }
}

.events {
  display: block;
  padding: 45px 25px;
}
@media (max-width: 1024px) {
  .events {
    padding: 35px 15px;
  }
  .events h2 {
    text-align: center;
  }
}

.eventList {
  width: 100%;
  display: flex;
  width: 100%;
  grid-gap: 1%;
  margin-top: 20px;
}
.eventList li {
  display: block;
  border-radius: 10px;
  width: 24%;
  min-height: 180px;
  background: linear-gradient(187deg, rgb(255, 243, 216) 0%, rgb(255, 143, 147) 100%);
  position: relative;
  padding: 20px 25px;
  overflow: hidden;
  position: relative;
  padding: 20px 25px;
}
.eventList li:nth-child(2) {
  background: linear-gradient(187deg, rgb(255, 221, 200) 0%, rgb(255, 149, 86) 100%);
}
.eventList li:nth-child(3) {
  background: linear-gradient(147deg, rgb(255, 205, 207) 0%, rgb(255, 202, 80) 100%);
}
.eventList li:nth-child(4) {
  background: linear-gradient(0deg, rgb(255, 123, 45) 0%, rgb(255, 234, 186) 100%);
}
.eventList li h4 {
  color: #303030;
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  font-weight: 600;
}
.eventList li span {
  font-size: 14px;
  margin-top: 5px;
}
.eventList li i {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.eventList li i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}
@media (max-width: 1024px) {
  .eventList {
    flex-wrap: wrap;
  }
  .eventList li {
    width: 49%;
    margin-bottom: 10px;
  }
  .eventList li h4 {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .eventList {
    flex-wrap: wrap;
  }
  .eventList li {
    width: 49%;
    margin-bottom: 3px;
    min-height: 100px;
    padding: 13px !important;
    display: block !important;
  }
  .eventList li h3 {
    font-size: 18px;
  }
}
.eventList.healthcareRecipeslist {
  flex-wrap: wrap;
  grid-gap: 20px 1%;
}
@media (max-width: 600px) {
  .eventList.healthcareRecipeslist {
    grid-gap: 0px 1%;
  }
}
.eventList.healthcareRecipeslist li {
  width: 32.33%;
  display: flex;
  align-items: center;
  min-height: 206px;
  border-radius: 10px;
  background: linear-gradient(180deg, #FFF3D8 0%, #FFD677 100%);
  position: relative;
  padding: 20px 25px;
}
.eventList.healthcareRecipeslist li h4 {
  font-weight: normal;
}
.eventList.healthcareRecipeslist li:nth-child(2) {
  border-radius: 10px;
  background: linear-gradient(0deg, #FFEEC7 0%, #FF9556 120.74%);
}
.eventList.healthcareRecipeslist li:nth-child(3) {
  background: linear-gradient(180deg, #FFE3D3 0%, #FFBE98 100%);
}
.eventList.healthcareRecipeslist li:nth-child(4) {
  background: linear-gradient(180deg, #FFE3D3 0%, #FFBE98 100%);
}
.eventList.healthcareRecipeslist li:nth-child(5) {
  background: linear-gradient(180deg, #FFF3D8 0%, #FFD677 100%);
}
.eventList.healthcareRecipeslist li:nth-child(6) {
  background: linear-gradient(0deg, #FF9556 -16.08%, #FFEEC7 120.74%);
}
.eventList.healthcareRecipeslist li .helthrecipebtnwrap {
  width: 100%;
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.eventList.healthcareRecipeslist li .helthrecipebtnwrap .btn-red-round {
  display: inline-flex;
}
.eventList.healthcareRecipeslist li a:hover .helthrecipebtnwrap {
  max-height: 100px;
}
@media (max-width: 600px) {
  .eventList.healthcareRecipeslist li {
    min-height: 190px;
    border-radius: 6px;
  }
}
@media (max-width: 1024px) {
  .eventList.healthcareRecipeslist li {
    align-items: flex-start;
    text-align: center;
  }
  .eventList.healthcareRecipeslist li > div {
    width: 100%;
  }
  .eventList.healthcareRecipeslist li img {
    max-width: 160px;
  }
  .eventList.healthcareRecipeslist li .helthrecipebtnwrap {
    display: none !important;
  }
}
.eventList.cravinglist li {
  background: #fff !important;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
}
.eventList.cravinglist li span {
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .eventList.cravinglist {
    flex-wrap: nowrap;
    overflow: auto;
    grid-gap: 8px;
    padding: 20px;
    margin: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .eventList.cravinglist::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .eventList.cravinglist li {
    display: flex;
    align-items: flex-end;
    min-height: 140px;
    min-width: 140px;
    max-width: 140px;
  }
  .eventList.cravinglist li i {
    width: 80%;
    left: 20%;
  }
  .eventList.cravinglist li i img {
    object-position: top left;
  }
  .eventList.cravinglist li span {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .eventList.cravinglist li:first-child i {
    width: 100%;
    left: 0;
    top: -40px;
  }
  .eventList.cravinglist li:nth-child(2) i {
    width: 100%;
  }
  .eventList.cravinglist li:nth-child(2) i img {
    object-fit: cover;
  }
  .eventList.cravinglist li:nth-child(3) i {
    width: 120%;
  }
}

.topSuggestionsChef {
  text-align: center;
  padding-top: 5px;
}
.topSuggestionsChef > h2 {
  margin-bottom: 0;
  font-weight: 600;
}

.tabButtonwrap {
  padding: 20px 0;
}
@media (max-width: 768px) {
  .tabButtonwrap {
    padding-top: 10px;
    overflow: auto;
    white-space: nowrap;
    display: flex;
    gap: 5px;
    scrollbar-width: none;
  }
}

.tabButtonwrap > button.eventTab, button.eventTab {
  border: solid 1px #5E5E5E;
  border-radius: 50px;
  background: #fff;
  color: #5E5E5E;
  font-size: 14px;
  padding: 7px 15px;
  margin: 0 5px;
  transition: 0.3s;
  cursor: pointer;
  line-height: 1;
  font-weight: 400 !important;
}
.tabButtonwrap > button.eventTab.active, button.eventTab.active {
  border: solid 1px #FF7B2D;
  background: #FF7B2D;
  color: #fff;
}
@media (max-width: 768px) {
  .tabButtonwrap > button.eventTab, button.eventTab {
    padding: 6px 10px;
    margin: 3px;
    font-size: 12px;
  }
}

.tabContWrapper {
  width: 100%;
  text-align: left;
}

.sugsContent {
  width: 100%;
  display: flex;
  background: #F5F5F5;
}
@media (max-width: 768px) {
  .sugsContent {
    flex-wrap: wrap;
  }
}

.sugsProfile {
  width: 350px;
  display: flex;
  align-self: center;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.45) 15px 2px 15px -20px;
}
@media (max-width: 768px) {
  .sugsProfile {
    width: 100%;
  }
}

.chefRecipeListWrap {
  width: calc(100% - 350px);
  padding: 35px 0 35px 35px;
  background: #F5F5F5;
}
@media (max-width: 768px) {
  .chefRecipeListWrap {
    width: 100%;
    padding: 25px 0 25px 15px;
  }
}

.chef-profile {
  max-width: 356px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  align-items: flex-start;
}
.chef-profile .btn-red-round {
  margin-top: 25px;
}
@media (max-width: 768px) {
  .chef-profile {
    width: 100%;
    max-width: none;
    flex-direction: row;
    justify-content: space-between;
    background: linear-gradient(0deg, #F5F5F5 0%, #F5F5F5 100%), #F6F6F6;
    box-shadow: 3px 29px 29px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 600px) {
  .chef-profile {
    padding: 14px 20px;
    align-items: center;
    z-index: 2;
  }
  .chef-profile .btn-red-round.small {
    margin-top: 0;
  }
}

.chef-header {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.chef-avatar {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-radius: 50px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .chef-avatar {
    width: 45px;
    height: 45px;
  }
}

.chef-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.chef-name {
  font-size: 30px !important;
  margin: 0;
}
.chef-name h3 {
  font-size: 18px !important;
  margin: 0;
}
@media (max-width: 768px) {
  .chef-name {
    font-size: 22px !important;
  }
  .chef-name h3 {
    font-size: 18px !important;
  }
}
@media (max-width: 600px) {
  .chef-name {
    font-size: 18px !important;
    margin-top: 0px !important;
  }
  .chef-name h3 {
    font-size: 18px !important;
    margin-top: 0px !important;
  }
}

.recipe-count {
  font-size: 20px;
  margin: 0 0;
  align-self: flex-start;
  font-weight: 600;
}
@media (max-width: 768px) {
  .recipe-count {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .recipe-count {
    font-size: 12px;
  }
}

.chef-description {
  font-size: 14px;
  font-weight: 400;
  align-self: stretch;
  margin: 26px 0 0 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .chef-description {
    display: none;
  }
}

@media (max-width: 580px) {
  .recipesSlider {
    display: flex;
    overflow: auto;
    scrollbar-width: none;
  }
}

.home-recipe-card {
  max-width: 280px;
  width: 100%;
  position: relative;
  padding: 10px 20px 10px 0px;
}
.home-recipe-card .recipe-inner {
  position: relative;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-weight: 600;
}
@media (max-width: 600px) {
  .home-recipe-card .recipe-inner {
    width: 165px;
    display: block;
  }
}
@media (max-width: 768px) {
  .home-recipe-card {
    max-width: 210px;
    padding: 5px;
  }
}
@media (max-width: 600px) {
  .home-recipe-card {
    max-width: auto;
    padding: 5px;
  }
}

.recipe-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.recipeImage {
  width: 100%;
  position: relative;
  padding-top: 177%;
  display: block;
}
.recipeImage img {
  border-radius: 6px;
}

.cardContent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: left;
  padding: 20px;
  z-index: 1;
}
.cardContent:after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 0px 0px 6px 6px;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
@media (max-width: 600px) {
  .cardContent {
    padding: 10px;
  }
}

.recipe-logo {
  position: relative;
  object-fit: contain;
  object-position: left;
  width: 76px;
}
@media (max-width: 600px) {
  .recipe-logo {
    width: 35px;
  }
}

.home-recipe-title {
  position: relative;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  min-height: 35px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 600px) {
  .home-recipe-title {
    font-size: 6px;
  }
}

.slick-next {
  right: 10px;
  font-size: 0;
  background: url("../img/rightArrow.svg") no-repeat;
  width: 32px;
  height: 32px;
}
.slick-next::before {
  display: none;
}
.slick-next:hover {
  background: url("../img/rightArrow.svg") no-repeat;
}

.slick-prev {
  left: 20px;
  font-size: 0;
  z-index: 1;
  background: url("../img/leftArrow.svg") no-repeat;
  width: 32px;
  height: 32px;
}
.slick-prev::before {
  display: none;
}
.slick-prev:hover {
  background: url("../img/leftArrow.svg") no-repeat;
}

.smartChefCreator {
  padding: 40px 0 40px 25px;
  background: #FFF4ED;
}
.smartChefCreator h2 {
  font-weight: 600 !important;
}
@media (max-width: 768px) {
  .smartChefCreator {
    padding: 30px 0 30px 15px;
  }
  .smartChefCreator h2 {
    text-align: center;
    margin-bottom: 10px;
  }
}

.tastesIndia {
  padding: 40px 25px;
  background: #fff;
}
.tastesIndia h2 {
  font-weight: 600;
}
@media (max-width: 768px) {
  .tastesIndia {
    padding: 30px 0 30px 10px;
    text-align: center;
  }
}

.location-grid {
  display: flex;
  align-items: stretch;
  font-size: 18px;
  color: rgb(48, 48, 48);
  font-weight: 400;
  text-align: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 580px) {
  .location-grid {
    flex-wrap: nowrap;
    overflow: auto;
    scrollbar-width: none;
  }
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  white-space: nowrap;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .location-card {
    padding: 0 10px;
    width: 68px;
    display: inline-table;
  }
}

.location-image {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 118px;
  height: 118px;
  border-radius: 100%;
}
@media (max-width: 580px) {
  .location-image {
    width: 70px;
    height: 70px;
    max-width: 70px;
  }
}

.location-name {
  align-self: center;
  margin-top: 22px;
  font-size: 18px;
  font-weight: 400 !important;
}
@media (max-width: 600px) {
  .location-name {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .location-card {
    white-space: initial;
  }
}
.top-suggestions {
  background: linear-gradient(85deg, rgba(255, 149, 86, 0.44) 2.43%, #FFDDC8 42.04%);
  display: flex;
  justify-content: center;
  padding: 20px 20px 0 20px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1920px) {
  .top-suggestions {
    width: 1920px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .top-suggestions {
    padding-left: 0;
    padding-right: 1px;
  }
}

.consultation-widget {
  border-radius: 10px;
  display: flex;
  width: 100%;
  padding: 19px 70px;
  flex-direction: column;
  align-items: center;
}

.consultation-container {
  width: 943px;
  max-width: 100%;
  display: flex;
}

.consultation-content {
  gap: 20px;
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .consultation-content .image-column {
    width: 50% !important;
    height: 248px;
  }
}
@media (max-width: 600px) {
  .consultation-content {
    gap: 10px;
  }
}

.image-column {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  margin: 0;
}
.image-column br {
  display: none;
}
@media (max-width: 600px) {
  .image-column {
    width: 55% !important;
  }
}

.consultation-image {
  aspect-ratio: 1.26;
  object-fit: contain;
  object-position: center;
  width: 100%;
  flex-grow: 1;
}
@media (max-width: 600px) {
  .consultation-image {
    object-fit: cover;
    height: 100%;
    object-position: top right;
    max-width: 100%;
  }
}

.consultation-content .content-column {
  display: flex;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
  padding: 0;
}
@media (max-width: 600px) {
  .consultation-content .content-column {
    margin-left: 5px;
    width: 45%;
  }
}

.text-content {
  display: flex;
  margin: auto 0;
  width: 100%;
  flex-direction: column;
  align-self: stretch;
  align-items: stretch;
}
.text-content h2 {
  margin: 0;
  font-weight: 600;
}

.title {
  transform: rotate(0rad);
  color: rgb(48, 48, 48);
  font-size: 36px;
  font-weight: 600 !important;
  align-self: flex-start;
  margin: 0;
}

.highlight {
  color: rgb(234, 32, 39);
}

.description {
  transform: rotate(-0.0008835941rad);
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.24px;
  margin: 19px 0 0 0;
}

.action-buttons {
  display: flex;
  margin-top: 44px;
  width: 100%;
  align-items: stretch;
  gap: 20px;
  font-size: 20px;
  text-align: center;
  letter-spacing: -0.3px;
  grid-gap: 25px;
}
.action-buttons br {
  display: none;
}
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
    margin-top: 15px;
    grid-gap: 20px;
    margin-bottom: 20px;
  }
}

.action-buttons > button.primary-button, .primary-button {
  align-self: flex-start;
  transform: rotate(0.0000000005rad);
  border-radius: 40px;
  background-color: rgb(237, 28, 36);
  padding: 11px 22px;
  border: none;
  color: rgb(255, 255, 255);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1 !important;
  font-size: 20px;
}
@media (max-width: 600px) {
  .action-buttons > button.primary-button, .primary-button {
    font-size: 14px;
    padding: 11px;
  }
}

.action-buttons > button.secondary-button, .secondary-button {
  align-self: stretch;
  transform: rotate(0.0000000005rad);
  border-radius: 40px;
  border: 1px solid rgb(0, 0, 0);
  background: transparent;
  padding: 11px 22px;
  color: rgb(48, 48, 48);
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  font-size: 20px;
}
@media (max-width: 600px) {
  .action-buttons > button.secondary-button, .secondary-button {
    font-size: 14px;
  }
}

.secondary-button:hover {
  color: #000 !important;
}

.healthcareRecipes {
  display: block;
  padding: 45px 25px;
}
.healthcareRecipes h2 {
  font-weight: 600;
}
@media (max-width: 1024px) {
  .healthcareRecipes {
    padding: 35px 10px 35px 15px;
  }
  .healthcareRecipes h2 {
    text-align: center;
  }
}

.cravingsec {
  display: block;
  padding: 45px 25px;
  background: #F6F6F6;
}
.cravingsec h2 {
  font-weight: 600;
}
@media (max-width: 1024px) {
  .cravingsec {
    padding: 25px 0px;
  }
  .cravingsec h2 {
    text-align: center;
    padding: 0 15px;
  }
}

.consumerSection {
  display: block;
  padding: 45px 25px;
  background: #fff;
  text-align: center;
}
.consumerSection h2 {
  font-weight: 600;
}
@media (max-width: 580px) {
  .consumerSection .slick-arrow {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .consumerSection {
    padding: 35px 0px;
  }
  .consumerSection h2 {
    text-align: center;
    padding: 0 15px;
  }
}

.wrapConsumerForumlist {
  width: 100%;
  display: flex;
  justify-content: center;
  grid-gap: 45px;
  margin-top: 25px;
}
@media (max-width: 1024px) {
  .wrapConsumerForumlist {
    margin-top: 5px;
  }
  .wrapConsumerForumlist .slick-slide {
    opacity: 0.6;
  }
  .wrapConsumerForumlist .slick-slide.slick-current.slick-center {
    opacity: 1;
  }
}
.wrapConsumerForumlist .slick-track {
  display: flex !important;
}
.wrapConsumerForumlist .slick-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch !important;
}
.wrapConsumerForumlist .slick-slide > div {
  flex: 1 1 auto;
}

.message-card {
  max-width: 343px;
  width: 33.33%;
  color: rgb(0, 0, 0);
  font-weight: 400;
  text-align: left;
  display: block;
}
.message-card > div {
  height: 100%;
}
@media (max-width: 1024px) {
  .message-card {
    max-width: none;
  }
  .message-card > div {
    padding: 10px 15px;
  }
}
@media (max-width: 600px) {
  .message-card {
    max-width: none;
  }
  .message-card > div {
    padding: 10px 7px 15px;
  }
}

.message-card__header {
  border-radius: 16px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.1);
  padding: 23px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.message-card__header p {
  margin: 0;
}
@media (max-width: 1024px) {
  .message-card__header {
    padding: 20px 20px;
  }
}

.message-card__author {
  display: flex;
  align-items: stretch;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.message-card__avatar {
  border-radius: 15px;
  background-color: rgb(0, 0, 0);
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  display: block;
}

.message-card__author > h2.message-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  text-align: left;
}

.message-card__content {
  font-size: 16px;
  align-self: stretch;
  margin: 17px 0 33px 0;
}

.message-card__footer {
  display: flex;
  margin-top: auto;
  justify-content: space-between;
  width: 100%;
  font-size: 15px;
  color: rgb(103, 103, 103);
}

.message-card__time {
  font-size: 15px;
}

.message-card__footer > button.message-card__reply, .message-card__reply {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  min-height: 0;
  line-height: 1;
  background: transparent !important;
}

.faq__header {
  background-color: rgb(237, 28, 36);
  width: 100%;
  padding: 23px 70px;
  text-align: center;
}
.faq__header h2 {
  font-size: 36px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  margin-bottom: 0px;
}

.faq__content {
  background-color: rgb(239, 239, 239);
  width: 100%;
  padding: 55px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.faq__container {
  width: 722px;
  max-width: 100%;
  margin-bottom: -23px;
}

.faq__item {
  margin-top: 22px;
}
@media (max-width: 600px) {
  .faq__item {
    margin-top: 14px;
  }
}

.faq__item:first-child {
  margin-top: 0;
}

.faq__item > button.faq__question {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  display: flex;
  padding: 13px 56px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  cursor: pointer;
}

.faq__question-text {
  font-size: 18px;
  color: rgb(103, 103, 103);
  font-weight: 500;
  text-align: left;
  line-height: 1.3;
  margin-bottom: 0px;
}
@media (max-width: 600px) {
  .faq__question-text {
    font-size: 14px;
  }
}

.faq__toggle {
  width: 22px;
  height: 22px;
  border-radius: 20px;
  background-color: rgb(94, 94, 94);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .faq__toggle {
    width: 18px;
    height: 18px;
  }
}

.faq__toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background-color: white;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .faq__toggle-icon {
    width: 12px;
  }
}

.faq__toggle-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 5px;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s ease;
  left: 50%;
  top: 50%;
}

.active .faq__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__item > button:hover.faq__question:hover, .faq__item:hover {
  background: none !important;
}

.faq__item > button.faq__question.active {
  border-radius: 10px 10px 0px 0px;
}

.faq__answer {
  display: none;
  border-radius: 0px 0px 10px 10px;
  background-color: rgb(255, 255, 255);
  padding: 14px 56px;
  margin-top: 0px;
}

.faq__answer-text {
  color: rgb(103, 103, 103);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .faq__answer-text {
    font-size: 12px;
  }
}

.faq__item.active .faq__answer {
  display: block;
}

@media (max-width: 991px) {
  .faq__header {
    max-width: 100%;
    padding: 18px 15px;
    font-size: 20px;
  }
  .faq__content {
    max-width: 100%;
    padding: 25px 15px 50px;
  }
  .faq__container {
    margin-bottom: 10px;
  }
  .faq__item > button.faq__question {
    padding-left: 20px;
    padding-right: 20px;
  }
  .faq__answer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.recipesSlider .slick-track {
  margin: 0px;
}

.btn-red-round:hover {
  color: #fff;
}

.topBannerHeading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .topBannerHeading {
    font-size: 24px;
  }
}

.full_image .bslideContent {
  background: none;
}

.full_image .bslideImg {
  width: 100%;
}

@media (max-width: 600px) {
  #buddypress .activity-footer-links .th-bp-footer-meta > div, #buddypress .activity-footer-links .th-bp-footer-meta-actions > div {
    margin-right: 12px;
  }
  #buddypress .activity-footer-links > div a {
    font-size: 11px;
  }
  #buddypress .activity-content .activity-footer-links .th-bp-footer-meta {
    font-size: 11px !important;
  }
  .post-share {
    font-size: 11px;
  }
  .shbtntm {
    margin-right: 5px;
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 600px) {
  .cravingsec .eventList.cravinglist li {
    display: flex !important;
  }
}

#buddypress .activity-footer-links .th-bp-footer-meta > div {
  margin-right: 2px !important;
}

#buddypress .activity-footer-links .th-bp-footer-meta .reactions-meta {
  margin-right: 15px !important;
}

#buddypress .activity-footer-links .th-bp-footer-meta div + div {
  margin-right: 15px !important;
}

#buddypress .activity-footer-links .like_count_zero {
  margin-right: 4px;
}

.recipelist form {
  margin: 0px !important;
}

.filterdpboxmob {
  width: 100%;
  background: #ffffff;
  border-radius: 20px 20px 0px 0px;
  height: calc(100% - 180px);
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 999;
  display: none;
}
.filterdpboxmob .btmbutton {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0px);
  display: flex;
  justify-content: space-between;
  width: 270px;
}
.filterdpboxmob .btmbutton .clearfil {
  border: 1px solid #504F4F;
  border-radius: 30px;
  padding: 0px;
  width: 128px;
  background: none;
  font-size: 15px;
  font-weight: 400;
  color: #504F4F;
  max-height: 42px;
  line-height: 42px;
  min-height: 0;
}
.filterdpboxmob .btmbutton .applyfil {
  border: 1px solid #EA2027;
  border-radius: 30px;
  padding: 0px;
  width: 128px;
  background: none;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  background: #EA2027;
  max-height: 42px;
  line-height: 42px;
  min-height: 0;
}
.filterdpboxmob .filheader {
  border-bottom: 1px solid #8A8A8A;
  padding-bottom: 18px;
  padding: 12px 25px 13px 45px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 580px) {
  .whttrans2 {
    background: rgba(239, 239, 239, 0.6705882353);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
    top: 160px;
    left: 0px;
    display: none;
  }
}
.whttrans2.active {
  display: block;
}

@media (min-width: 1920px) {
  .recipelist {
    width: 1920px;
    margin: 0 auto;
  }
}
.recipelist .recipeheader {
  padding: 45px 0px;
  text-align: center;
  background-color: #fff;
  font-size: 32px;
  height: 134px;
  color: #504F4F;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.recipelist .recipeheader h1 {
  font-size: 32px;
  margin: 0px;
}
@media (max-width: 580px) {
  .recipelist .recipeheader h1 {
    font-size: 20px;
  }
}
@media (max-width: 580px) {
  .recipelist .recipeheader {
    padding: 28px 0px;
    font-size: 20px;
    height: 83px;
  }
}
.recipelist .recipeheader::before {
  content: "";
  background: url(../img/recipeleft.png) no-repeat;
  position: absolute;
  left: 0px;
  top: 0px;
  background-size: cover;
  width: 199px;
  height: 128px;
}
@media (max-width: 580px) {
  .recipelist .recipeheader::before {
    content: none;
  }
}
.recipelist .recipeheader::after {
  content: "";
  background: url(../img/reciperight.png) no-repeat;
  position: absolute;
  right: 8px;
  top: 40px;
  background-size: cover;
  width: 133px;
  height: 98px;
}
@media (max-width: 580px) {
  .recipelist .recipeheader::after {
    content: none;
  }
}
.recipelist .recipeheader span {
  color: #EA2027;
}
.recipelist .recipeheader1 {
  padding: 45px 0px;
  text-align: center;
  background-color: #fff;
  font-size: 32px;
  color: #504F4F;
  font-weight: 600;
  position: relative;
}
@media (max-width: 580px) {
  .recipelist .recipeheader1 {
    padding: 28px 0px;
    font-size: 20px;
  }
}
.recipelist .recipebody {
  background: #EFEFEF;
  padding: 0px 25px 25px;
  position: relative;
}
@media (max-width: 580px) {
  .recipelist .recipebody .whttrans {
    background: rgba(239, 239, 239, 0.6705882353);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 999;
    top: 50px;
    left: 0px;
    display: none;
  }
}
.recipelist .recipebody .whttrans.active {
  display: block;
}
@media (max-width: 580px) {
  .recipelist .recipebody .whttrans1 {
    background: rgba(239, 239, 239, 0.6705882353);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 999;
    top: 35px;
    left: 0px;
    display: none;
  }
}
.recipelist .recipebody .whttrans1.active {
  display: block;
}
@media (max-width: 580px) {
  .recipelist .recipebody {
    padding: 12px 10px;
  }
}
.recipelist .filterdpbox {
  width: 215px;
  background: #ffffff;
  border-radius: 10px;
  position: absolute;
  top: 100%;
  right: 107px;
  z-index: 999;
  display: none;
}
.recipelist .filterdpbox h3 {
  padding: 17px 40px 18px 40px;
  color: #504F4F;
  font-weight: 600;
  font-size: 16px;
}
.recipelist .filterdpbox .accordion {
  width: 100%;
  height: 38px;
  margin: 0 auto;
  overflow: hidden;
  transition: height 0.3s ease;
  margin-bottom: 20px;
  padding: 16px 40px 0px 40px;
  border-top: 1px solid rgba(138, 138, 138, 0.2901960784);
}
.recipelist .filterdpbox .accordion:first-child {
  border: 0px;
}
.recipelist .filterdpbox .accordion .acc_tab {
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
.recipelist .filterdpbox .accordion .acc_tab .accordion_arrow {
  position: absolute;
  top: 5px;
  transform: rotate(45deg);
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  right: 0px;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}
.recipelist .filterdpbox .accordion .acc_tab .accordion_arrow img {
  width: 100%;
  height: 100%;
}
.recipelist .filterdpbox .accordion .acc_tab.active .accordion_arrow {
  transform: rotate(225deg);
  top: 7px;
}
.recipelist .filterdpbox .accordion .accordion_content .checkgroup {
  display: block;
  margin: 10px 0px;
}
.recipelist .filterdpbox .accordion .accordion_content .checkgroup input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.recipelist .filterdpbox .accordion .accordion_content .checkgroup input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 7px;
  width: 6px;
  height: 13px;
  border: solid #EA2027;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.recipelist .filterdpbox .accordion .accordion_content .checkgroup label {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.recipelist .filterdpbox .accordion .accordion_content .checkgroup label:before {
  content: "";
  background-color: transparent;
  border: 2px solid #8A8A8A;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}
.recipelist .filterdpbox .accordion .accordion_content .accordion_item {
  margin-bottom: 20px;
}
.recipelist .filterdpbox .accordion .accordion_content .accordion_item p.item_title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
  color: #6adda2;
}
.recipelist .filterdpbox .accordion .accordion_content .accordion_item p:last-child {
  color: #9a9b9f;
  font-size: 14px;
  line-height: 20px;
}
.recipelist .filterdpbox .accordion.active {
  height: auto;
}
.recipelist .sortbox {
  width: 210px;
  background: #ffffff;
  border-radius: 10px;
  padding: 25px 0px 0;
  position: absolute;
  top: 100%;
  right: 9px;
  z-index: 999;
  display: none;
}
.recipelist .sortbox .closesortfilter {
  display: none;
}
@media (max-width: 580px) {
  .recipelist .sortbox .closesortfilter {
    position: absolute;
    right: 30px;
    top: 14px;
    font-size: 27px;
    color: #8A8A8A;
    display: block;
  }
}
@media (max-width: 580px) {
  .recipelist .sortbox {
    width: 100vw;
    border-radius: 10px 10px 0px 0px;
    right: inherit;
    left: 0px;
    position: fixed;
    top: 100%;
    height: 380px;
    margin-top: -380px;
  }
}
.recipelist .sortbox h3 {
  padding-bottom: 18px;
  border-bottom: 1px solid #8A8A8A;
  text-align: center;
  color: #504F4F;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}
@media (max-width: 580px) {
  .recipelist .sortbox h3 {
    text-align: left;
    padding-left: 38px;
  }
}
.recipelist .sortbox .listsort {
  padding: 0px 38px;
}
.recipelist .sortbox .listsort p {
  margin-bottom: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 580px) {
  .recipelist .sortbox .listsort p {
    margin: 5px 0px 30px 0px;
  }
}
.recipelist .sortbox .listsort p [type=radio]:checked {
  position: absolute;
  left: -9999px;
}
.recipelist .sortbox .listsort p [type=radio]:checked + label {
  position: relative;
  cursor: pointer;
  line-height: 20px;
  font-size: 16px;
  display: inline-block;
  color: #666;
  width: 100%;
  padding-left: 30px;
}
.recipelist .sortbox .listsort p [type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #EA2027;
  border-radius: 100%;
  background: #fff;
}
@media (max-width: 580px) {
  .recipelist .sortbox .listsort p [type=radio]:checked + label:before {
    top: 0;
    left: -3px;
  }
}
.recipelist .sortbox .listsort p [type=radio]:checked + label:after {
  content: "";
  width: 9px;
  height: 9px;
  background: #EA2027;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media (max-width: 580px) {
  .recipelist .sortbox .listsort p [type=radio]:checked + label:after {
    top: 3px;
    right: inherit;
    left: 0px;
  }
}
.recipelist .sortbox .listsort p [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.recipelist .sortbox .listsort p [type=radio]:not(:checked) + label {
  position: relative;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
  font-size: 16px;
  width: 100%;
  padding-left: 30px;
}
.recipelist .sortbox .listsort p [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #504F4F;
  border-radius: 100%;
  background: #fff;
}
@media (max-width: 580px) {
  .recipelist .sortbox .listsort p [type=radio]:not(:checked) + label:before {
    top: 0;
    left: -3px;
  }
}
.recipelist .sortbox .listsort p [type=radio]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #EA2027;
  position: absolute;
  top: 3px;
  left: 0px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
@media (max-width: 580px) {
  .recipelist .sortbox .listsort p [type=radio]:not(:checked) + label:after {
    top: 3px;
    right: inherit;
    left: 0px;
  }
}

.cardrow {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 1%;
}
@media (max-width: 580px) {
  .cardrow {
    grid-gap: 2%;
  }
}
.cardrow .card {
  flex: 0 0 15.77%;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  background: #fff;
  position: relative;
  margin-bottom: 22px;
}
.cardrow .card .wrapRecipeCardImg {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
}
.cardrow .card .wrapRecipeCardImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.cardrow .card .wrapRecipeCardImg video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media (max-width: 1025px) {
  .cardrow .card {
    flex: 0 0 24.11%;
  }
}
@media (max-width: 800px) {
  .cardrow .card {
    flex: 0 0 32.33%;
  }
}
@media (max-width: 580px) {
  .cardrow .card {
    flex: 0 0 48.33%;
  }
}
.cardrow .card .nonveg {
  width: 21px;
  height: 21px;
  background: url(../img/nonveg.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 16px;
  left: 11px;
  z-index: 9;
}
.cardrow .card .veg {
  width: 21px;
  height: 21px;
  background: url(../img/veg.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 16px;
  left: 11px;
  z-index: 9;
}
.cardrow .card .bglike {
  background: rgba(217, 217, 217, 0.8);
  position: absolute;
  top: 16px;
  right: 11px;
  z-index: 9;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.cardrow .card .dislike {
  width: 19px;
  height: 17px;
  background: url(../img/dislike.png) no-repeat;
  background-size: cover;
  cursor: pointer;
  margin: 7px 5px;
}
.cardrow .card .like {
  width: 19px;
  height: 17px;
  background: url(../img/like.png) no-repeat;
  background-size: cover;
  cursor: pointer;
  margin: 7px 5px;
}
.cardrow .card .card-content {
  padding: 10px;
}
.cardrow .card .card-content .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #000 !important;
}
@media (max-width: 580px) {
  .cardrow .card .card-content .title {
    font-size: 14px;
  }
}
.cardrow .card .card-content .nutritionbx {
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  font-size: 14px;
}
.cardrow .card .card-content .nutritionbx .calories {
  color: orange;
  font-weight: 600;
  padding: 4px 0px;
  background: #FFF9EB;
  border-radius: 10px 10px 0px 0px;
}
.cardrow .card .card-content .nutritionbx .nutrition {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #ffffff;
  border-radius: 10px;
  font-size: 14px;
}
@media (max-width: 580px) {
  .cardrow .card .card-content .nutritionbx .nutrition {
    font-size: 11px;
  }
}
.cardrow .card .card-content .nutritionbx .nutrition div {
  text-align: center;
  color: #888888;
}
.cardrow .card .card-content .nutritionbx .nutrition div span {
  display: block;
  font-weight: bold;
  color: #4F4F4F;
}

.recipebody {
  padding: 0px 25px;
}
@media (min-width: 1920px) {
  .recipebody {
    width: 1920px;
    margin: 0 auto;
  }
}

.filtersec {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  margin-bottom: 20px;
}
@media (max-width: 580px) {
  .filtersec {
    display: block;
    padding-top: 0px;
  }
}
.filtersec .breadcrumb {
  font-size: 14px;
  font-weight: 400;
  gap: 0;
  color: #504F4F;
  padding: 0px !important;
}
@media (max-width: 580px) {
  .filtersec .breadcrumb {
    display: none;
  }
}
.filtersec .breadcrumb .breadcrumb-item {
  list-style: none;
  float: left;
}
.filtersec .breadcrumb .breadcrumb-item a {
  color: #000;
  opacity: 0.5;
  text-transform: capitalize;
  text-decoration: none;
  padding: 0;
}
.filtersec .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.filtersec .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #000;
  opacity: 0.5;
  display: inline-block;
  padding-right: 0.625rem;
}
.filtersec .breadcrumb .breadcrumb-item + .breadcrumb-item.active {
  color: #000;
  font-weight: 600;
}
.filtersec .breadcrumb .breadcrumb-item + .breadcrumb-item.active a {
  opacity: 1;
}
.filtersec .breadcrumb .breadcrumb-item + .breadcrumb-item.active span {
  overflow: inherit;
  text-overflow: inherit;
  white-space: inherit;
  max-width: 100%;
  display: inline;
}
.filtersec .filtnav {
  display: flex;
  color: #504F4F;
  font-weight: 400;
  font-size: 16px;
  position: relative;
}
.filtersec .filtnav > form {
  display: flex;
  margin: 0;
}
@media (max-width: 580px) {
  .filtersec .filtnav {
    justify-content: space-between;
  }
  .filtersec .filtnav > form {
    justify-content: space-between;
    width: 100%;
  }
}
.filtersec .filtnav .filterbx {
  margin-right: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
@media (max-width: 580px) {
  .filtersec .filtnav .filterbx {
    display: none;
  }
}
.filtersec .filtnav .filterbx span {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  display: flex;
}
.filtersec .filtnav .filterbx span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filtersec .filtnav .filterbx.active {
  color: #ff0000;
  font-size: 16px !important;
}
.filtersec .filtnav .filterbx.active span svg path {
  fill: #ff0000;
}
.filtersec .filtnav .filterbxmb {
  margin-right: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  display: none;
}
@media (max-width: 580px) {
  .filtersec .filtnav .filterbxmb {
    display: flex;
  }
}
.filtersec .filtnav .filterbxmb span {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  display: flex;
}
.filtersec .filtnav .filterbxmb span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filtersec .filtnav .filterbxmb.active {
  color: #ff0000;
  font-size: 16px !important;
}
.filtersec .filtnav .filterbxmb.active span svg path {
  fill: #ff0000;
}
.filtersec .filtnav .sortbx {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 80px;
}
.filtersec .filtnav .sortbx span {
  width: 21px;
  height: 16px;
  margin-left: 5px;
  display: flex;
}
.filtersec .filtnav .sortbx span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filtersec .filtnav .sortbx.active {
  color: #ff0000;
  font-size: 16px !important;
}
.filtersec .filtnav .sortbx.active span svg path {
  fill: #ff0000;
}

.filtersec1 {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  margin-bottom: 20px;
}
@media (max-width: 580px) {
  .filtersec1 {
    display: flex;
    padding-top: 0px;
    flex-direction: column-reverse;
  }
}
.filtersec1 ul {
  display: flex;
}
@media (max-width: 580px) {
  .filtersec1 ul {
    display: flex;
    padding: 30px 10px 0px 10px;
    overflow: auto;
    align-items: center;
    margin: 0px -10px;
  }
}
.filtersec1 ul li {
  margin-right: 20px;
  list-style: none;
}
.filtersec1 ul li a {
  color: #504F4F;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 580px) {
  .filtersec1 ul li a {
    display: ruby-text;
  }
}
.filtersec1 ul li.active a {
  background: #ED1C24;
  padding: 3px 8px;
  color: #fff;
  border-radius: 50px;
}
.filtersec1 .filtnav {
  display: flex;
  color: #504F4F;
  font-weight: 400;
  font-size: 16px;
  position: relative;
}
@media (max-width: 580px) {
  .filtersec1 .filtnav {
    justify-content: space-between;
  }
}
.filtersec1 .filtnav .filterbx {
  margin-right: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 580px) {
  .filtersec1 .filtnav .filterbx {
    display: none;
  }
}
.filtersec1 .filtnav .filterbx span {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}
.filtersec1 .filtnav .filterbx span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filtersec1 .filtnav .filterbx.active {
  color: #ff0000;
}
.filtersec1 .filtnav .filterbx.active span svg path {
  fill: #ff0000;
}
.filtersec1 .filtnav .filterbxmb {
  margin-right: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  display: none;
}
@media (max-width: 580px) {
  .filtersec1 .filtnav .filterbxmb {
    display: flex;
  }
}
.filtersec1 .filtnav .filterbxmb span {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}
.filtersec1 .filtnav .filterbxmb span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filtersec1 .filtnav .filterbxmb.active {
  color: #ff0000;
}
.filtersec1 .filtnav .filterbxmb.active span svg path {
  fill: #ff0000;
}
.filtersec1 .filtnav .sortbx {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 80px;
}
.filtersec1 .filtnav .sortbx span {
  width: 21px;
  height: 16px;
  margin-left: 5px;
}
.filtersec1 .filtnav .sortbx span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filtersec1 .filtnav .sortbx.active {
  color: #ff0000;
}
.filtersec1 .filtnav .sortbx.active span svg path {
  fill: #ff0000;
}

@media (max-width: 580px) {
  .bdclass, .bdclass1, .bdclass2 {
    overflow: hidden;
  }
}

article:hover {
  text-decoration: none !important;
}

.recipe-card:hover {
  text-decoration: none !important;
}
@media (max-width: 800px) {
  .recipe-card {
    padding: 0px 20px;
  }
}
.recipe-card .recipe-content {
  display: flex;
  background-color: rgb(245, 245, 245);
  width: 100%;
}
.recipe-card .recipe-content:hover {
  text-decoration: none !important;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
.recipe-card .recipe-content .recipe-info {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 40%;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info {
    width: 100%;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 25px;
  flex-direction: column;
  overflow: hidden;
  align-items: start;
  position: relative;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info .recipe-details {
    max-width: 100%;
    padding: 20px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx {
  position: absolute;
  top: 25px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx {
    top: 22px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .sharecs {
  margin-left: 20px;
  width: 23px;
  height: 23px;
}
@media (max-width: 600px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .sharecs {
    width: 18px;
    height: 18px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_like {
  width: 26px;
  height: 24px;
  cursor: pointer;
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_like svg path {
  stroke: hsl(0, 100%, 60%);
}
@media (max-width: 600px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_like {
    width: 18px;
    height: 18px;
  }
  .recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_like svg {
    width: 18px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_dislike {
  width: 26px;
  height: 24px;
  cursor: pointer;
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_dislike svg path {
  stroke: hsl(0, 0%, 30%);
}
@media (max-width: 600px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_dislike {
    width: 18px;
    height: 18px;
    margin-top: -2px;
  }
  .recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_dislike svg {
    width: 18px;
    fill: transparent;
    stroke: hsl(0, 0%, 30%);
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_share {
  width: 23px;
  height: 24px;
  margin-left: 20px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_share {
    width: 18px;
    height: 18px;
  }
  .recipe-card .recipe-content .recipe-info .recipe-details .recipesharebx .recipe_share svg {
    width: 18px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-header {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-right: 80px;
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .non-veg-indicator {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(237, 28, 36);
  display: flex;
  margin: 5px 0px 0px 0px;
  padding: 5px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .non-veg-indicator {
    width: 18px;
    height: 18px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .non-veg-indicator .dot {
  border-radius: 20px;
  background-color: rgb(234, 32, 39);
  display: flex;
  width: 12px;
  flex-shrink: 0;
  height: 12px;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .non-veg-indicator .dot {
    width: 8px;
    height: 8px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .veg-indicator {
  background-color: rgb(255, 255, 255);
  border: 1px solid #3c7504;
  display: flex;
  margin: 5px 0px 0px 0px;
  padding: 5px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .veg-indicator {
    width: 18px;
    height: 18px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .veg-indicator .dot {
  border-radius: 20px;
  background-color: #3c7504;
  display: flex;
  width: 12px;
  flex-shrink: 0;
  height: 12px;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .veg-indicator .dot {
    width: 8px;
    height: 8px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .recipe-title {
  color: rgb(48, 48, 48);
  font-size: 36px;
  font-weight: 700;
  flex-basis: auto;
  line-height: 1;
  margin: 0;
  text-decoration: none !important;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 580px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipe-header .recipe-title {
    font-size: 24px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-description {
  color: rgb(48, 48, 48);
  font-size: 18px;
  font-weight: 400;
  align-self: stretch;
  margin-top: 25px;
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-description p {
  margin: 0;
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-description h1, .recipe-card .recipe-content .recipe-info .recipe-details .recipe-description h2, .recipe-card .recipe-content .recipe-info .recipe-details .recipe-description h3, .recipe-card .recipe-content .recipe-info .recipe-details .recipe-description h4 {
  color: rgb(48, 48, 48);
  font-size: 18px;
  font-weight: 400;
  align-self: stretch;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipe-description {
    max-width: 100%;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-meta {
  display: flex;
  margin-top: 42px;
  width: 372px;
  max-width: 100%;
  align-items: stretch;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipe-meta {
    margin-top: 40px;
  }
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-meta .chef-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-meta .chef-info .chef-label {
  color: rgb(103, 103, 103);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  align-self: start;
  display: flex;
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-meta .chef-info .chef-label svg {
  margin-right: 5px;
}
.recipe-card .recipe-content .recipe-info .recipe-details .recipe-meta .chef-info .chef-name {
  transform: rotate(0.0000000005rad);
  color: rgb(48, 48, 48);
  font-size: 18px !important;
  font-weight: 400;
  letter-spacing: -0.27px;
  margin-top: 8px;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-info .recipe-details .recipe-meta .chef-info .chef-name {
    font-size: 14px !important;
  }
}
.recipe-card .recipe-content .recipe-image {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 60%;
  min-height: 400px;
  position: relative;
}
.recipe-card .recipe-content .recipe-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .recipe-card .recipe-content .recipe-image {
    width: 100%;
    padding-top: 40%;
  }
}
.recipe-card .recipe-content .recipe-image video {
  max-width: 100%;
}
.recipe-card .recipe-content .recipe-image .playicn {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 27px;
  width: 40px;
  height: 40px;
}
@media (max-width: 580px) {
  .recipe-card .recipe-content .recipe-image .playicn {
    top: 50%;
    right: inherit;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}
.recipe-card .recipe-content .recipe-image .img {
  aspect-ratio: 3.52;
  object-fit: contain;
  object-position: top;
  width: 100%;
  flex-grow: 1;
}

.recipe-detailsbt {
  background-color: #fff;
  display: flex;
  padding: 30px 20px 0px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
}
.recipe-detailsbt .recipe-steps-detail {
  width: 100%;
  max-width: 1235px;
}
@media (max-width: 800px) {
  .recipe-detailsbt .recipe-steps-detail {
    max-width: 100%;
  }
}
.recipe-detailsbt .recipe-steps-detail .steps-grid {
  gap: 20px;
  display: flex;
}
@media (max-width: 800px) {
  .recipe-detailsbt .recipe-steps-detail .steps-grid {
    display: block;
  }
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main {
  width: 57%;
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main video {
  max-width: 100%;
  height: 220px;
}
@media (max-width: 800px) {
  .recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main {
    width: 100%;
    justify-content: center;
  }
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .step-video-container {
  border-radius: 10px;
  margin: 0px 0px 30px;
  overflow: hidden;
  position: relative;
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .step-video-container span {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .step-video-container span svg {
  width: 100%;
  height: 100%;
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .step-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .navigation-toggle {
  border-radius: 30px;
  display: flex;
  align-items: stretch;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 17px;
  letter-spacing: -0.21px;
}
@media (max-width: 580px) {
  .recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .navigation-toggle {
    margin: 0 auto 15px auto;
  }
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main a.toggle-button {
  border: none;
  cursor: pointer;
  flex: 1;
  border-radius: 31px;
  padding: 8px 14px;
  gap: 10px;
  overflow: hidden;
  transition: background-color 0.2s ease;
  line-height: 1;
  min-height: 0;
  font-weight: normal;
  background-color: rgb(217, 217, 217);
  color: rgb(103, 103, 103);
  text-decoration: none;
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main a.toggle-button.toggle-button-active {
  background-color: rgb(237, 28, 36);
  color: rgb(255, 255, 255);
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .toggle-button:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .toggle-button:hover {
  opacity: 0.9;
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .step-text {
  color: #303030;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 24px;
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .step-image-container {
  width: 100%;
  height: 290px;
  border-radius: 10px;
  margin: 30px 0;
  overflow: hidden;
}
.recipe-detailsbt .recipe-steps-detail .steps-grid .steps-main .step-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar {
  width: 40%;
  margin-left: 20px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card a {
  width: auto !important;
}
@media (max-width: 800px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar {
    width: 100%;
    margin: 0px;
  }
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .nutrition-container {
  display: flex;
  background-color: #fdf7eb;
  padding: 15px;
  border-radius: 10px;
  justify-content: space-between;
  width: 450px;
}
@media (max-width: 580px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .nutrition-container {
    width: 100%;
  }
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .nutrition-container .nutrition-item {
  text-align: center;
  color: #303030;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .nutrition-container .nutrition-item strong {
  display: block;
  font-weight: 600;
  font-size: 18px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .nutrition-container .nutrition-item span {
  font-size: 18px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card {
  width: 450px;
  margin: 30px 0px;
  background: #FCFBFB;
  border-radius: 10px;
  padding: 28px 40px;
}
@media (max-width: 580px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card {
    width: 100%;
    padding: 10px;
  }
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .header h2 {
  font-size: 24px;
  font-weight: 600;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .header .servings {
  display: flex;
  align-items: center;
  gap: 8px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .header .servings button {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 16px;
  padding: 0px;
  min-height: 0;
  line-height: 1;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .content {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .content .column1 {
  width: 60%;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .content .column2 {
  width: 34%;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #777;
  margin-bottom: 16px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .content p {
  font-size: 16px;
  margin: 10px 0;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .ingredients-card .content p strong {
  font-weight: 600;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card {
  border-radius: 10px;
  background-color: rgb(252, 251, 251);
  display: flex;
  max-width: 453px;
  padding: 20px 53px 25px;
  flex-direction: column;
  overflow: hidden;
  align-items: flex-start;
  color: rgb(48, 48, 48);
  position: relative;
  width: 100%;
}
@media (max-width: 580px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card {
    max-width: 100%;
    padding: 20px 10px 20px;
    width: 100%;
  }
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #303030;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card .chef-header {
  display: flex;
  align-items: stretch;
  margin-top: 25px;
  gap: 24px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card .chef-header .chef-avatar {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 68px;
  border-radius: 50px;
  flex-shrink: 0;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card .chef-header .chef-info {
  align-self: flex-start;
  display: flex;
  margin-top: 12px;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 580px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card .chef-header .chef-info {
    margin-top: 2px;
  }
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card .chef-header .chef-info .chef-name {
  font-size: 24px !important;
  font-weight: 600;
  margin: 0;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card .chef-header .chef-info .recipe-count {
  font-size: 16px;
  font-weight: 400;
  align-self: flex-start;
  margin: 0;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card .chef-description {
  font-size: 16px;
  font-weight: 400;
  margin-top: 19px;
  margin-bottom: 0;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card .profile-button, .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .chef-card button.profile-button {
  border: none;
  border-radius: 31px;
  background-color: rgb(237, 28, 36);
  margin-top: 25px;
  padding: 6px 16px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.21px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease;
  min-height: 0;
  line-height: 1.3;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .profile-button:hover {
  background-color: rgb(213, 25, 32);
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .profile-button:focus {
  outline: 2px solid rgb(237, 28, 36);
  outline-offset: 2px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .recipe-suggestions {
  margin-top: 30px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .recipe-suggestions .recipe-tags {
  display: flex;
  gap: 14px;
  font-size: 14px;
  flex-wrap: wrap;
  color: #303030;
}
@media (max-width: 600px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .recipe-suggestions .recipe-tags {
    gap: 7px;
  }
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .recipe-suggestions .recipe-tags .recipe-tag {
  border: 1px solid #303030;
  border-radius: 18px;
  padding: 4px 16px;
}
@media (max-width: 600px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .recipe-suggestions .recipe-tags .recipe-tag {
    font-size: 12px;
    padding: 0px 6px;
  }
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-title {
  color: #303030;
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 20px;
  line-height: 1;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid {
  display: flex;
  gap: 1.66%;
}
@media (max-width: 800px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid {
    overflow: auto;
    margin: 0px -20px;
    padding: 0px 20px;
    scrollbar-width: none;
  }
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card {
  border-radius: 7px;
  background-color: #fff;
  padding-bottom: 11px;
  width: 32.33%;
}
@media (max-width: 800px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card {
    width: 160px;
  }
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card .suggestion-image-container {
  border-radius: 6px 6px 0 0;
  background-color: #fff;
  width: 158px;
  height: 158px;
  margin: 0;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card .suggestion-image-container .suggestion-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card .suggestion-image-container .suggestion-image-wrapper .suggestion-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 6px 0px 0px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card .suggestion-image-container .suggestion-image-wrapper .recipe-type-nonveg {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ea2027;
  padding: 3px;
  width: 14px;
  height: 14px;
  top: 12px;
  left: 8px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card .suggestion-image-container .suggestion-image-wrapper .recipe-type-nonveg .indicator {
  border-radius: 9px;
  background-color: #ea2027;
  width: 7px;
  height: 7px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card .suggestion-image-container .suggestion-image-wrapper .recipe-type-veg {
  position: absolute;
  background-color: #fff;
  border: 1px solid #3c7504;
  padding: 3px;
  width: 14px;
  height: 14px;
  top: 12px;
  left: 8px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card .suggestion-image-container .suggestion-image-wrapper .recipe-type-veg .indicator {
  border-radius: 9px;
  background-color: #3c7504;
  width: 7px;
  height: 7px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card .suggestion-image-container .suggestion-image-wrapper .recipe-icon {
  width: 17px;
  aspect-ratio: 1.06;
  object-fit: contain;
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 8px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .br-recipe .suggestions-grid .suggestion-card .suggestion-title {
  color: #504f4f;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin: 8px 0 0;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .submit-recipe {
  border-radius: 10px;
  background-color: #ff8227;
  margin-top: 45px;
  overflow: hidden;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.3px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .submit-recipe .submit-recipe-content {
  position: relative;
  min-height: 200px;
  padding: 131px 70px 32px;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .submit-recipe .submit-recipe-content .submit-recipe-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-detailsbt .recipe-steps-detail .recipe-sidebar .submit-recipe .submit-recipe-content .submit-recipe-title {
  position: relative;
  border-radius: 31px;
  background-color: #ed1c24;
  padding: 10px 16px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border: 0px;
  cursor: pointer;
  font-family: "Source Sans 3", serif;
  min-height: 0;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .recipe-detailsbt .recipe-steps-detail .recipe-sidebar .submit-recipe .submit-recipe-content .submit-recipe-title {
    font-size: 18px;
  }
}

.vertical-tabs {
  position: relative;
  margin-left: 192px;
  height: 430px;
}

.tabs {
  position: relative;
  float: left;
  width: 152px;
  padding-left: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: -192px;
}

.tabs li {
  position: relative;
  list-style: none;
}

.tabs li:after {
  content: "";
  position: absolute;
  top: 19px;
  transform: rotate(45deg);
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 1px;
  z-index: 11;
  right: 25px;
  width: 6px;
  height: 6px;
  transition: all 0.3sease;
}

.tabs li.active:after {
  transform: rotate(-46deg);
  top: 22px;
}

.tabs li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 0px 15px 30px;
  text-decoration: none;
  text-align: left;
  background-color: #ECECEC;
  border-bottom: 1px solid #E6E6E6;
  border-top: 1px solid #cbc7c7;
  font-size: 14px;
  font-weight: 600;
  font-family: "Source Sans 3", serif;
  color: #504F4F;
}

.tabs li.active a {
  z-index: 2;
  background-color: #F9F9F9;
}

.tabs-content {
  height: 420px;
  overflow: auto;
}

.tabs-content .content {
  display: none;
  padding: 20px 10px;
}
.tabs-content .content .checkgroup {
  display: block;
  margin-bottom: 22px;
}
.tabs-content .content .checkgroup input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.tabs-content .content .checkgroup input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 7px;
  width: 6px;
  height: 13px;
  border: solid #EA2027;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tabs-content .content .checkgroup label {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.tabs-content .content .checkgroup label:before {
  content: "";
  background-color: transparent;
  border: 2px solid #8A8A8A;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.tabs-content .content.active {
  display: block;
}

.product-section {
  background-color: #fff;
  display: flex;
  padding: 10px 30px 30px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1920px) {
  .product-section {
    width: 1920px;
    margin: 0 auto;
  }
}

.product-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}
.product-container .section-title {
  color: #303030;
  font-size: 24px;
  font-weight: 600;
  align-self: flex-start;
  margin: 0;
}

.product-grid {
  display: flex;
  margin-top: 14px;
  align-items: stretch;
  gap: 20px;
  font-weight: 400;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .product-grid {
    display: block;
    overflow: auto;
    white-space: nowrap;
    padding: 10px 20px 10px 26px;
    margin: 0px -20px;
    scrollbar-width: none;
  }
}

.product-card {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.15);
  min-height: 353px;
  padding-bottom: 10px;
  overflow: hidden;
  flex: 1;
}
@media (max-width: 991px) {
  .product-card {
    width: 288px;
    display: inline-block;
    margin-right: 30px;
  }
}

.product-image-container {
  border-radius: 0;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  width: 100%;
  font-size: 12px;
  color: #000;
}

.product-image-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 1.118;
  width: 100%;
  padding: 1px 1px 183px;
  align-items: flex-start;
}

.product-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.badge-new {
  position: relative;
  border-radius: 9px 0px 9px 0px;
  background-color: #b8e5ff;
  margin-bottom: -37px;
  min-height: 20px;
  padding: 3px 8px 3px 9px;
  font-size: 12px;
  color: #000;
}

.btnliken {
  width: 30px;
  height: 30px;
  background: rgba(217, 217, 217, 0.8);
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  text-align: center;
  padding: 5px 0px;
}

.rating-container {
  display: flex;
  justify-content: left;
  padding: 0px 10px;
  margin-top: 8px;
}

.starrating {
  display: flex;
  justify-content: left;
  align-items: center;
}

.star {
  width: 10px;
  height: 10px;
  background: url(../img/star.png) no-repeat;
  display: inline-block;
  margin-right: 4px;
}

.hstar {
  width: 10px;
  height: 10px;
  background: url(../img/hstar.png) no-repeat;
  display: inline-block;
  margin-right: 4px;
}

@media (max-width: 991px) {
  .product-image-wrapper {
    padding: 1px 20px 100px;
  }
  .product-container {
    max-width: 100%;
  }
  .product-section {
    padding: 32px 0px 62px 20px;
  }
  .badge-new {
    margin-bottom: 10px;
  }
  .rating-container {
    padding: 0 20px;
    white-space: initial;
  }
}
.rating-image {
  width: auto;
  height: auto;
}

.product-title {
  flex: 1;
  margin: 8px 0 0;
  min-height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 16px;
  color: #504f4f;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.price-container {
  display: flex;
  margin-top: 8px;
  min-height: 20px;
  width: 100%;
  padding: 0 10px;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.price-current {
  color: #000;
}

.price-original {
  color: #504f4f;
  font-weight: 400;
  text-decoration: line-through;
}

.discount-tag {
  color: #07d854;
}

.button-container {
  display: flex;
  margin-top: 8px;
  width: 100%;
  padding: 5px 10px;
  flex-direction: column;
  align-items: stretch;
  font-size: 14px;
  justify-content: center;
}

.button-container button {
  align-self: stretch;
  border: none;
  border-radius: 5px;
  background-color: #ff7b2d;
  min-height: 30px;
  padding: 6px 12px;
  color: #fff;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
}

.button-container button:hover {
  background: #FF7B2D;
}

.chef-list {
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chef-grid {
  display: flex;
  align-items: flex-start;
  gap: 1%;
  justify-content: left;
  flex-wrap: wrap;
}

.chef-card a {
  width: 100%;
  display: block;
  padding-bottom: 10px;
}

.chef-card {
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  flex: 0 0 15.2%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  padding-bottom: 0px;
  margin-bottom: 15px;
}
.chef-card .bglike {
  background: rgba(217, 217, 217, 0.8);
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.chef-card .chef_like {
  cursor: pointer;
  width: 19px;
  height: 17px;
  margin: 4px 5px;
}
.chef-card .chef_like img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chef-card .verification-badge {
  margin: 0px !important;
}
@media (max-width: 1025px) {
  .chef-card {
    flex: 0 0 22.3%;
  }
}
@media (max-width: 800px) {
  .chef-card {
    flex: 0 0 30.09%;
  }
}
@media (max-width: 580px) {
  .chef-card {
    flex: 0 0 47.33%;
  }
}

.chef-image-container {
  border-radius: 8px 8px 0 0;
  background-color: #c9c9c9;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  aspect-ratio: 1;
}

.chef-image-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: flex-end;
}

.chef-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.verification-badge {
  aspect-ratio: 1.15;
  object-fit: contain;
  object-position: center;
  width: 23px;
  position: relative;
  z-index: 1;
  margin-bottom: -37px;
}

.chef-list .chef-name {
  color: #303030;
  font-size: 18px !important;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px 0px 20px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.recipe-countchef {
  color: #5e5e5e;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.recipe-labelchef {
  font-weight: 400;
  color: #5e5e5e;
}

.chefprofile-section {
  padding: 35px 141px;
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}

.chefprofile-info {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  margin-top: 30px;
}

.chef-namedtls {
  color: #303030;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0px;
}

.recipe-countdetls {
  color: #5e5e5e;
  font-size: 16px;
  margin-bottom: 32px;
}

.chef-quotedtls {
  color: #303030;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.chef-quotedtls h4 {
  color: #303030;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.profile-visualdtls {
  position: relative;
  width: 450px;
  margin-right: 100px;
}

.badgedtls-containerdtls {
  position: relative;
  width: 100%;
  height: 230px;
}

.badgedtls {
  padding: 3px 11px;
  border-radius: 10px;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  background-color: #ea2027;
  z-index: 9;
}

.badgedtls-recipes {
  top: 20px;
  left: 30px;
}

.badgedtls-awards {
  top: 20px;
  right: 35px;
}

.badgedtls-followers {
  bottom: 0;
  left: 30px;
}

.badgedtls-chef-year {
  bottom: 0;
  right: 0;
}

.profile-image-containerdtls {
  width: 219px;
  height: 219px;
  border-radius: 171.442px;
  border: 24px solid #efefef;
  position: absolute;
  left: 127px;
  top: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin: 0;
}

.profile-imagechef {
  width: 489px;
  height: 612px;
  object-fit: contain;
  position: relative;
}

.social-iconsdtls {
  position: absolute;
  top: 31px;
  right: 30px;
}

.share-iconsdtls {
  width: 70px;
  height: 24px;
}

.chefshare {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.likeboxv {
  margin-right: 20px;
}

.sharecs {
  position: relative;
  cursor: pointer;
}

.midfil .button {
  color: #5E5E5E;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #5E5E5E;
  border-radius: 50px;
  padding: 2px 8px;
  display: inline-block;
  text-decoration: none;
  margin: 0px 5px;
}
.midfil .button.active {
  color: #ffffff;
  background: #FF7B2D;
  border: 1px solid #FF7B2D;
}
.midfil .button:hover {
  color: #ffffff;
  background: #FF7B2D;
  border: 1px solid #FF7B2D;
}

.event-section {
  background-color: #EFEFEF;
  display: flex;
  padding: 0px 25px 104px;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
}

.eventsection-title {
  color: rgb(0, 0, 0);
  font-size: 22px;
  font-weight: 600;
  align-self: flex-start;
}

.event-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 100%;
}

.event-card {
  border-radius: 13px;
  background-color: rgb(255, 255, 255);
  flex-grow: 1;
  padding-bottom: 22px;
  overflow: hidden;
  width: 100%;
}

.eventcard-header {
  border-radius: 8px 8px 0 0;
  background-color: rgb(80, 79, 79);
  overflow: hidden;
}

.eventimage-container {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 221px;
  width: 100%;
  align-items: flex-end;
}

.eventheader-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.full-width-imageev {
  aspect-ratio: 2.04;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.event-title {
  font-size: 22px;
  font-weight: 600;
  color: rgb(0, 0, 0);
}

.event-subtitle {
  font-size: 15px;
  font-weight: 400;
  margin-top: 14px;
  color: rgb(0, 0, 0);
}

.eventshowcase-title {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 600;
}

.eventshowcase-subtitle {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  margin-top: 6px;
}

.eventclash-title {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 600;
}

.contenteve-icon {
  margin-bottom: 10px;
}

.cardeve-content {
  display: flex;
  margin-top: 12px;
  width: 100%;
  padding: 0 28px;
  flex-direction: column;
  align-items: stretch;
}

.contentev-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
}

.contestev-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.event-title {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 600;
}

.event-date {
  color: rgb(48, 48, 48);
  font-size: 16px;
  font-weight: 400;
  align-self: center;
  margin-top: 9px;
}

.priceev-tag {
  color: rgb(5, 179, 12);
  font-size: 20px;
  font-weight: 400;
  text-align: right;
}

.locationev-info {
  align-self: flex-start;
  display: flex;
  margin-top: 6px;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgb(48, 48, 48);
  font-weight: 400;
}

.locationev-icon {
  aspect-ratio: 0.75;
  object-fit: contain;
  object-position: center;
  width: 15px;
  align-self: flex-start;
  flex-shrink: 0;
}

@media (max-width: 1028px) {
  .chefprofile-section {
    padding: 35px 30px;
  }
  .chefprofile-info {
    width: 400px;
  }
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .chef-list {
    padding: 10px 0px;
  }
  .verification-badge {
    margin-bottom: 10px;
  }
  .pagination {
    margin-top: 40px;
  }
  .chef-grid {
    gap: 27px;
  }
  .chefprofile-info {
    width: 300px;
  }
  .profile-image-containerdtls {
    width: 180px;
    height: 180px;
    border: 15px solid #efefef;
  }
  .badgedtls {
    font-size: 12px;
    font-weight: 400;
  }
  .badgedtls-recipes {
    left: 50px;
  }
  .badgedtls-awards {
    right: 0px;
  }
  .badgedtls-followers {
    bottom: 40px;
    left: 50px;
  }
  .badgedtls-chef-year {
    bottom: 40px;
  }
  .chefprofile-info {
    margin-top: 10px;
  }
}
@media (max-width: 580px) {
  .chef-grid {
    gap: 17px;
  }
  .chef-namedtls {
    font-size: 24px;
  }
  .chefprofile-info {
    width: 100%;
    margin-top: 0px;
  }
  .chefprofile-section {
    padding: 20px 15px;
  }
  .profile-imagechef {
    width: 170px;
    height: 170px;
  }
  .chefprofile-section {
    display: block;
  }
  .social-iconsdtls {
    display: none;
  }
  .profile-visualdtls {
    width: 90%;
    margin: 40px auto 0 auto;
    top: 0px;
    right: 0px;
  }
  .badgedtls-recipes {
    left: -60px;
    top: 10px;
  }
  .badgedtls-awards {
    right: -67px;
    top: 10px;
  }
  .badgedtls-chef-year {
    bottom: 0px;
    right: -80px;
  }
  .badgedtls-followers {
    bottom: 0px;
    left: -75px;
  }
  .event-section {
    padding: 0px 10px 35px;
  }
  .cardeve-content {
    margin-top: 12px;
    padding: 0 10px 20px 10px;
    align-items: normal;
    position: relative;
  }
  .eventimage-container {
    height: 167px;
  }
  .contentev-wrapper {
    display: block;
  }
  .priceev-tag {
    font-size: 14px;
    position: absolute;
    bottom: -10px;
  }
  .event-title {
    font-size: 14px;
    font-weight: 600;
  }
  .locationev-info {
    font-size: 13px;
  }
  .filtersec {
    position: relative;
    margin-bottom: 10px;
  }
  .midfil {
    position: absolute;
    top: 40px;
    left: 0px;
    width: 100%;
    text-align: center;
  }
  .chef-quotedtls {
    font-size: 14px;
  }
  .recipe-countdetls {
    margin-bottom: 15px;
  }
  .profile-image-containerdtls {
    width: 180px;
    height: 180px;
    border: 15px solid #efefef;
    left: 50%;
    transform: translate(-50%, 0px);
  }
  .badgedtls-containerdtls {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px auto;
  }
}
.btmbuttondsk {
  display: flex;
  border-top: 1px solid rgba(138, 138, 138, 0.2901960784);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.btmbuttondsk button {
  font-weight: normal;
  border-radius: 0 !important;
  background: #fff;
  width: 50%;
  border: 0;
  font-size: 16px;
  font-weight: normal;
}
.btmbuttondsk button.applyfildesk {
  background: #EA2027;
  color: #fff;
}

.cardImage {
  display: flex;
  padding-top: 100%;
  position: relative;
}
.cardImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cardImage video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipeTabCon .tab {
  max-height: 1px;
  overflow: hidden;
  visibility: hidden;
}

.recipeTabCon .active {
  max-height: none;
  visibility: visible;
}

.cookModeSlider {
  width: 100%;
}
.cookModeSlider .cookSlide {
  width: 100%;
  background: #F7F7F7;
  max-height: 1px;
  overflow: hidden;
}
.cookModeSlider .cookSlide .step-image-container {
  padding: 0 20px;
}
.cookModeSlider .cookSlide.slick-current.slick-active {
  max-height: none;
}
.cookModeSlider .cookSlide .step-text {
  padding: 10px 60px;
}
.cookModeSlider .cookSlide .step-text ul {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.cookModeSlider .cookSlide .step-text ul li {
  display: inline-flex;
}
.cookModeSlider .slick-next {
  right: 10px;
  top: 30px;
  font-size: 0;
  background: url(../img/nextarrow.svg) no-repeat;
  width: 32px;
  height: 32px;
  background-size: 30px;
}
.cookModeSlider .slick-next.slick-disabled {
  opacity: 0.3;
  display: block !important;
  cursor: not-allowed;
}
.cookModeSlider .slick-prev {
  left: 10px;
  top: 30px;
  font-size: 0;
  background: url(../img/prevarrow.svg) no-repeat;
  width: 32px;
  height: 32px;
  background-size: 30px;
}
.cookModeSlider .slick-prev.slick-disabled {
  opacity: 0.3;
  display: block !important;
  cursor: not-allowed;
}

.recipeTabCon .slider-nav {
  margin-top: 20px;
}
.recipeTabCon .slider-nav .slick-track {
  padding-bottom: 10px;
}
.recipeTabCon .slider-nav .slick-slide {
  position: relative;
}
.recipeTabCon .slider-nav .slick-slide:after {
  content: "";
  position: absolute;
  top: 100%;
  margin-top: 5px;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #EA2027;
  transform: scale(0);
  transition: 0.3s;
}
.recipeTabCon .slider-nav .slick-slide img {
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  width: 80%;
  height: 80%;
  transition: 0.3s;
}
.recipeTabCon .slider-nav .slick-slide span {
  width: 100%;
  display: block;
  overflow: hidden;
  padding-top: 100%;
  width: 120px;
}
.recipeTabCon .slider-nav .slick-slide span .cooktop_dir_steps {
  padding: 0;
  color: #303030;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  width: 80%;
  height: 80%;
  transition: 0.3s;
  background: #fdf7eb;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
}
.recipeTabCon .slider-nav .slick-slide.slick-current img, .recipeTabCon .slider-nav .slick-slide.slick-current .cooktop_dir_steps {
  height: 100%;
}
.recipeTabCon .slider-nav .slick-slide.slick-current:after {
  transform: scale(1);
}

#quantityInput {
  border: 0px;
  width: 15px;
  padding: 0px;
  margin-right: -4px;
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#accordionnew {
  width: 100%;
  background: #FFF;
}

#accordionnew:before,
#accordionnew:after {
  content: "";
  display: table;
  clear: both;
}

.itemacc {
  margin-bottom: 20px;
  padding: 16px 40px 0px 40px;
  border-top: 1px solid rgba(138, 138, 138, 0.2901960784);
}

.titleacc {
  position: relative;
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 16px;
}

.titleacc:after {
  content: "";
  position: absolute;
  top: 5px;
  transform: rotate(45deg);
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  right: 2px;
  width: 0px;
  height: 0px;
  transition: all 0.3s ease;
}

.titleacc.active {
  font-size: 16px;
}

.titleacc.active:after {
  content: "";
  display: block;
  transform: rotate(225deg);
}

.textacc {
  display: none;
}
.textacc .checkgroup {
  display: block;
  margin: 10px 0px;
}
.textacc .checkgroup input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.textacc .checkgroup input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 7px;
  width: 6px;
  height: 13px;
  border: solid #EA2027;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.textacc .checkgroup label {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.textacc .checkgroup label:before {
  content: "";
  background-color: transparent;
  border: 2px solid #8A8A8A;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.textacc p {
  padding-bottom: 10px;
  font-size: 13px;
  line-height: 24px;
  color: #333;
  text-align: left;
}

.stories-sectiontop {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 192px;
  overflow: hidden;
  align-items: flex-start;
  color: rgb(255, 255, 255);
}
.stories-sectiontop .stories-backgrounddesk {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 580px) {
  .stories-sectiontop .stories-backgrounddesk {
    display: none;
  }
}
.stories-sectiontop .stories-backgroundmob {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}
@media (max-width: 580px) {
  .stories-sectiontop .stories-backgroundmob {
    display: block;
  }
}
.stories-sectiontop .stories-content {
  position: relative;
  display: flex;
  padding: 59px 0px 0px 149px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 580px) {
  .stories-sectiontop .stories-content {
    padding: 60px 0px 0px 30px;
  }
}
.stories-sectiontop .stories-content .stories-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Unbounded", serif;
  margin: 0;
  color: #fff;
}
.stories-sectiontop .stories-content .stories-title1 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  font-family: "Unbounded", serif;
  margin: 0;
}
.stories-sectiontop .stories-content .stories-subtitle {
  font-size: 20px;
  font-weight: 300;
  margin: 8px 0 0 0;
  color: rgba(255, 255, 255, 0.6392156863);
}
.stories-sectiontop .stories-content .stories-subtitle1 {
  font-size: 20px;
  font-weight: 300;
  margin: 8px 0 0 0;
  color: #000;
}

.webstories-container {
  background-color: #fff;
  padding: 36px 70px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1025px) {
  .webstories-container {
    padding: 36px 30px;
  }
}
@media (max-width: 580px) {
  .webstories-container {
    padding: 20px 10px;
  }
}
.webstories-container .content-wrapper {
  width: 100%;
  max-width: 1230px;
  display: flex;
  gap: 70px;
}
@media (max-width: 1025px) {
  .webstories-container .content-wrapper {
    gap: 40px;
  }
}
@media (max-width: 580px) {
  .webstories-container .content-wrapper {
    display: block;
  }
}
.webstories-container .content-wrapper .stories-section {
  width: 69%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 580px) {
  .webstories-container .content-wrapper .stories-section {
    width: 100%;
  }
}
.webstories-container .content-wrapper .stories-section .stories-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 800px) {
  .webstories-container .content-wrapper .stories-section .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 580px) {
  .webstories-container .content-wrapper .stories-section .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.webstories-container .content-wrapper .stories-section .stories-grid .story-card {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}
.webstories-container .content-wrapper .stories-section .stories-grid .story-card .story-image-wrapper {
  position: relative;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 0.785;
}
.webstories-container .content-wrapper .stories-section .stories-grid .story-card .story-image-wrapper .story-image-full {
  aspect-ratio: 0.78;
  object-fit: contain;
  width: 175px;
  border-radius: 10px 10px 0 0;
}
.webstories-container .content-wrapper .stories-section .stories-grid .story-card .story-image-wrapper .story-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.webstories-container .content-wrapper .stories-section .stories-grid .story-card .story-image-wrapper .story-count {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  bottom: -1px;
  left: 35px;
}
.webstories-container .content-wrapper .stories-section .stories-grid .story-card .story-image-wrapper .story-icon {
  aspect-ratio: 1.14;
  object-fit: contain;
  width: 16px;
  position: absolute;
  bottom: 6px;
  left: 13px;
}
.webstories-container .content-wrapper .stories-section .stories-grid .story-card .story-image-wrapper .story-dwn {
  aspect-ratio: 1.14;
  object-fit: contain;
  width: 16px;
  position: absolute;
  bottom: 6px;
  right: 5px;
  cursor: pointer;
}
.webstories-container .content-wrapper .stories-section .stories-grid .story-card .story-image-wrapper .story-overlay {
  position: absolute;
  bottom: 6px;
  left: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.webstories-container .content-wrapper .stories-section .stories-grid .story-card .story-title {
  color: #303030;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  margin: 9px 13px 0;
}
.webstories-container .content-wrapper .products-section {
  width: 31%;
}
@media (max-width: 580px) {
  .webstories-container .content-wrapper .products-section {
    width: 100%;
    margin-top: 30px;
  }
}
.webstories-container .content-wrapper .products-section .products-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.webstories-container .content-wrapper .products-section .products-container .products-header {
  border-radius: 10px;
  background-color: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 19px 13px 41px;
}
.webstories-container .content-wrapper .products-section .products-container .products-header .products-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 17px 11px;
}
.webstories-container .content-wrapper .products-section .products-container .products-header .product-cardn {
  margin-bottom: 22px;
}
.webstories-container .content-wrapper .products-section .products-container .products-header .product-cardn .product-image {
  aspect-ratio: 1.87;
  object-fit: contain;
  width: 100%;
  border-radius: 6px;
  position: relative;
}
.webstories-container .content-wrapper .products-section .products-container .products-header .product-cardn .product-placeholder {
  border-radius: 6px;
  background-color: #fff;
  height: 166px;
  margin: 22px 0;
}
.webstories-container .content-wrapper .products-section .products-container .products-header .product-cardn .product-titlen {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 13px 0 8px;
}
.webstories-container .content-wrapper .products-section .products-container .products-header .product-cardn .product-descriptionn {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
  padding-right: 23px;
}
.webstories-container .content-wrapper .products-section .products-container .tags-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.webstories-container .content-wrapper .products-section .products-container .tags-section .tags-row {
  display: inline-block;
}
.webstories-container .content-wrapper .products-section .products-container .tags-section .tags-row .tag {
  border-radius: 18px;
  border: 1px solid rgba(48, 48, 48, 0.5);
  padding: 6px 16px;
  font-size: 14px;
  color: #303030;
  white-space: nowrap;
  display: inline-block;
  margin: 0px 10px 10px 0px;
}

.articles-listing {
  background-color: #fff;
  padding-top: 32px;
  overflow: hidden;
}

.containerart {
  width: 100%;
  max-width: 1159px;
  margin: 0 auto;
}

.containerart .content-grid {
  display: flex;
  gap: 50px;
}
@media (max-width: 580px) {
  .containerart .content-grid {
    gap: 35px;
  }
}

.containerart .slick-dotted.slick-slider {
  margin: 0px;
}

.featured-articles {
  width: 68%;
}

.main-article {
  position: relative;
  min-height: 469px;
  border-radius: 10px;
  overflow: hidden;
}

.article-figure::after {
  content: "";
  width: 100%;
  height: 33%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 110%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 110%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 110%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 110%);
  border-radius: 10px;
  z-index: 9;
}

.main-article .slick-dots {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 9;
}

.article-msm {
  position: relative;
}

.article-figure {
  position: relative;
  padding-top: 60%;
  margin: 0;
}
.article-figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.article-title {
  position: absolute;
  bottom: 0;
  width: 75%;
  padding: 93px 35px 30px;
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
  border-radius: 0 0 10px 10px;
  z-index: 99;
}

.article-grid {
  display: flex;
  margin-top: 14px;
  gap: 21px;
}

.small-article {
  flex: 1;
  display: flex;
  gap: 8px;
  font-size: 18px;
  color: #303030;
  line-height: 22px;
}
.small-article:hover .small-article-title {
  color: #000;
  text-decoration: underline;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.small-article-title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.featured-recipes {
  width: 32%;
}

.featured-recipes .recipe-card {
  width: 100%;
}

.featured-recipes .divider {
  display: none;
}

.featured-recipes .section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  color: #303030;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
}

.featured-recipes a {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #E5E5E5;
}

.featured-recipes a:last-child {
  border: 0px;
}

.recipe-card {
  display: flex;
  gap: 14px;
}
@media (min-width: 1920px) {
  .recipe-card {
    width: 1920px;
    margin: 0 auto;
  }
}
.recipe-card:hover .recipe-title {
  color: #000;
  text-decoration: underline;
}

.recipe-thumbnail {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
}

.recipe-title {
  color: #303030;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 8px;
  transition: 0.3s;
}

.meta-info {
  display: flex;
  gap: 10px;
  font-size: 11px;
}

.read-time {
  color: #000;
  font-weight: 600;
  margin-right: 5px;
  position: relative;
}

.publish-date {
  color: #777;
  position: relative;
}

.read-time::after {
  content: "." !important;
  position: absolute;
  font-size: 30px;
  top: -7px;
  color: #000;
  right: -11px;
}

.divider {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 21px 0;
}

.festive-eats {
  background-color: #fff9eb;
  margin-top: 40px;
  padding: 22px 80px 25px;
}
@media (min-width: 1920px) {
  .festive-eats {
    width: 1920px;
    margin: 0 auto;
  }
}

.festive-eats .container {
  max-width: 1110px;
  margin: 0 auto;
}

.festive-eats .section-title {
  text-align: center;
  font-size: 34px;
}

.festive-grid {
  display: flex;
  margin-top: 25px;
  gap: 0px;
  align-items: center;
}

.festive-grid .slick-track {
  padding-bottom: 5px;
}

.festive-grid .slick-prev, .festive-grid .slick-next {
  z-index: 99;
  top: 40%;
  position: absolute;
  text-indent: -999999px;
  border: 0px;
  background-color: transparent;
}

.festive-grid .slick-prev {
  left: -40px;
}

.festive-grid .slick-next {
  right: -40px;
}

.festive-grid .slick-prev:focus, .festive-grid .slick-next:focus {
  outline: none !important;
  border: none !important;
}

.festive-grid .slick-prev {
  background-image: url(../img/prev-arw.png) !important;
  width: 32px !important;
  height: 32px !important;
  cursor: pointer;
}

.festive-grid .slick-prev.slick-disabled {
  background-image: url(../img/prev-darw.png) !important;
  width: 32px !important;
  height: 32px !important;
}

.festive-grid .slick-next {
  background-image: url(../img/next-arw.png) !important;
  width: 32px !important;
  height: 32px !important;
  cursor: pointer;
}

.festive-grid .slick-next.slick-disabled {
  background-image: url(../img/next-darw.png) !important;
  width: 32px !important;
  height: 32px !important;
}

.festive-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding-bottom: 31px;
  margin: 15px 10px;
  min-height: 335px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.festive-image {
  width: 100%;
  height: 163px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.festive-content {
  padding: 14px 20px 0;
}

.festive-title {
  color: #303030;
  font-size: 21px;
  font-weight: 400;
  line-height: 29px;
  margin: 0 0 23px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 88px;
}

.festive-card .meta-info {
  font-size: 14px;
}

.main-article .slick-dots {
  display: flex;
  position: absolute;
  bottom: 20px;
  align-items: center;
  right: 20px;
  width: auto;
  font-size: 0;
}

.main-article .slick-dots li button {
  width: 6px;
  position: relative;
  height: 6px;
  margin: 0;
  border-radius: 50px;
  background: #b2b2b2;
  font-size: 0;
  transition: 0.3s;
}

.main-article .slick-dots li::marker {
  display: none;
  content: "";
}

.main-article .slick-dots li.slick-active button {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background: none;
  border: 1px solid #fff;
}

.main-article .slick-dots li button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  width: 9px;
  height: 9px;
  border: 0px;
  display: block;
  border-radius: 50px;
  transition: 0.3s;
}

.main-article .slick-dots li.slick-active button:before {
  transform: translate(-50%, -50%) scale(1);
}

.articles-listingsec {
  background-color: #fff;
  display: flex;
  padding: 61px 70px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.articles-containersec {
  width: 100%;
  max-width: 1101px;
}

.articles-gridsec {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.article-imagesec {
  aspect-ratio: 1.78;
  object-fit: cover;
  object-position: center;
  width: 100%;
  border-radius: 10px;
}

.article-contentsec {
  display: flex;
  margin-top: 8px;
  width: 100%;
  padding: 0 13px;
  flex-direction: column;
  align-items: start;
}

.article-card-mainsec .article-contentsec {
  margin-top: 12px;
  padding: 0 10px;
}

.article-titlesec {
  color: #303030;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 45px;
}

.article-title-largesec {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
}

.article-descriptionsec {
  color: #303030;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin: 6px 0 0px;
}

.article-metasec {
  display: flex;
  margin-top: 7px;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.article-card-mainsec .article-metasec {
  margin-top: 5px;
}

.read-timesec {
  color: #000;
  font-weight: 600;
  margin-right: 5px;
  position: relative;
}

.publish-datesec {
  color: #777;
  font-weight: 400;
  position: relative;
  margin-left: 5px;
}

.read-timesec::after {
  content: "." !important;
  position: absolute;
  font-size: 30px;
  top: -7px;
  color: #000;
  right: -11px;
}

.article-card-mainsec {
  width: 58%;
}

.article-columnsec {
  width: 40%;
  display: flex;
  gap: 0px 4%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 60px;
}

.article-columnsec .article-cardsec {
  width: 48%;
}

.article-cardsec {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  border-radius: 10px;
  transition: 0.3s;
}

.article-card-smallsec + .article-card-smallsec {
  margin-top: 18px;
}

.articles-listingfe {
  background-color: #f0f0f0;
  overflow: hidden;
}
@media (min-width: 1920px) {
  .articles-listingfe {
    width: 1920px;
    margin: 0 auto;
  }
}

.articles-containerfe {
  display: flex;
  width: 100%;
  padding: 28px 70px 48px;
  flex-direction: column;
  align-items: center;
}

.content-wrapperfe {
  width: 100%;
  max-width: 1126px;
}

.content-gridfe {
  display: flex;
  gap: 20px;
}

.festive-eats-sectionfe {
  display: flex;
  flex-direction: column;
  width: 66%;
}

.section-contentfe {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.section-titlefe {
  color: #303030;
  font-size: 34px;
  font-weight: 600;
  align-self: center;
}

.articles-gridfe {
  margin-top: 15px;
  width: 100%;
}

.articles-rowfe {
  display: flex;
  gap: 20px;
  width: 100%;
}

.articles-rowfe .slick-track {
  padding-bottom: 5px;
  display: flex;
}

.articles-rowfe .slick-prev, .articles-rowfe .slick-next {
  z-index: 99;
  top: 40%;
  position: absolute;
  text-indent: -999999px;
  border: 0px;
  background-color: transparent;
}

.articles-rowfe .slick-prev {
  left: -16px;
}

.articles-rowfe .slick-next {
  right: 3px;
}

.articles-rowfe .slick-prev:focus, .articles-rowfe .slick-next:focus {
  outline: none !important;
  border: none !important;
}

.articles-rowfe .slick-prev {
  background-image: url(../img/prev-arw.png) !important;
  width: 32px !important;
  height: 32px !important;
  cursor: pointer;
}

.articles-rowfe .slick-prev.slick-disabled {
  background-image: url(../img/prev-darw.png) !important;
  width: 32px !important;
  height: 32px !important;
}

.articles-rowfe .slick-next {
  background-image: url(../img/next-arw.png) !important;
  width: 32px !important;
  height: 32px !important;
  cursor: pointer;
}

.articles-rowfe .slick-next.slick-disabled {
  background-image: url(../img/next-darw.png) !important;
  width: 32px !important;
  height: 32px !important;
}

.article-cardfe {
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
  padding-bottom: 31px;
  width: 100%;
  margin: 0px 20px 20px 0px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.article-image-containerfe {
  display: flex;
  flex-direction: column;
  border-radius: 15px 15px 0 0;
  position: relative;
  aspect-ratio: 1.624;
  width: 100%;
  padding: 154px 0 24px;
  align-items: start;
}

.article-imagefe {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px 15px 0px 0px;
}

.article-imagefe img {
  border-radius: 15px 15px 0px 0px;
}

.play-iconfe {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 32px;
}

.article-contentfe {
  display: flex;
  margin-top: 14px;
  width: 100%;
  padding: 0 47px 0 20px;
  flex-direction: column;
  font-size: 14px;
}

.article-titlefe {
  color: #303030;
  font-size: 21px;
  font-weight: 400;
  line-height: 29px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 88px;
}

.article-excerptfe {
  color: #303030;
  font-size: 21px;
  font-weight: 400;
  line-height: 29px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 88px;
}

.article-metafe {
  display: flex;
  margin-top: 5px;
  align-items: center;
  gap: 10px;
}

.read-timefe {
  color: #000;
  font-weight: 600;
  margin-right: 5px;
  position: relative;
}

.publish-datefe {
  color: #777;
  font-weight: 400;
  position: relative;
}

.read-timefe::after {
  content: "." !important;
  position: absolute;
  font-size: 30px;
  top: -7px;
  color: #000;
  right: -11px;
}

.play-icon-secondaryfe {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 32px;
  align-self: start;
  margin-top: 154px;
}

.new-arrivals-sectionfe {
  width: 34%;
}

.products-gridfe {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 15px;
}

.product-cardfe {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  position: relative;
  width: 173px;
}

.product-card-largefe {
  width: 100%;
  aspect-ratio: 2.179;
  padding-top: 91px;
  padding-bottom: 14px;
}

.product-imagefe {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.product-titlefe {
  position: relative;
  border-radius: 0 0 10px 10px;
  padding: 47px 20px 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  z-index: 9;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 60px;
}

.products-rowfe {
  display: flex;
  align-items: stretch;
  gap: 20px;
  justify-content: space-between;
}

.products-rowfe .product-cardfe {
  padding-top: 63px;
  padding-bottom: 15px;
}

.products-rowfe .product-titlefe {
  padding: 39px 16px 0px;
  line-height: 19px;
}

.transfe {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 110%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 110%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 110%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 110%);
  border-radius: 0px 0px 10px 10px;
  z-index: 9;
}

.articles-listingff {
  background-color: #fff;
  display: flex;
  padding: 40px 80px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.articles-listing-containerff {
  display: flex;
  width: 100%;
  max-width: 1154px;
  flex-direction: column;
  align-items: stretch;
}

.section-titleff {
  color: #303030;
  font-size: 34px;
  font-weight: 600;
  align-self: center;
  margin: 0;
}

.articles-gridff {
  margin-top: 37px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}

.article-cardff {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.article-imageff {
  aspect-ratio: 1.53;
  object-fit: cover;
  object-position: center;
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.article-contentff {
  display: flex;
  margin-top: 11px;
  width: 100%;
  padding: 0 10px;
  flex-direction: column;
  align-items: stretch;
}

.article-titleff {
  color: #303030;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-metaff {
  display: flex;
  position: relative;
  margin-top: 14px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.read-timeff {
  color: #000;
  font-weight: 600;
  margin-right: 5px;
  position: relative;
}

.publish-dateff {
  color: #777;
  font-weight: 400;
  position: relative;
}

.read-timeff::after {
  content: "." !important;
  position: absolute;
  font-size: 30px;
  top: -7px;
  color: #000;
  right: -11px;
}

.article-details {
  background-color: #fff;
  display: flex;
  padding: 5px 70px 22px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
}

.article-details-container {
  width: 100%;
  max-width: 1164px;
}

.article-details-wrapper {
  gap: 20px;
  display: flex;
}

.article-details-main-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 71%;
  margin-left: 0;
}

.article-details-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #000 !important;
  font-weight: 300;
  width: 100% !important;
  padding: 1.25rem 0rem !important;
  flex-wrap: nowrap !important;
  background: none !important;
}

.breadcrumb-link {
  color: inherit;
  text-decoration: none;
  padding: 0px !important;
  width: auto !important;
}

.breadcrumb-link::after {
  content: "/";
  padding: 0px 0px 0px 8px;
}

.breadcrumb-link:hover {
  background: none !important;
}

.breadcrumb-separator {
  aspect-ratio: 1;
  object-fit: contain;
  width: 6px;
  margin: auto 0;
  display: none;
}

.breadcrumb-current {
  font-weight: 400;
}

.article-details-body {
  display: flex;
  margin-top: 20px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  line-height: 26px;
}

.article-details-titledtl {
  color: #303030;
  font-size: 50px;
  font-weight: 400;
  line-height: 53px;
  margin: 0;
}

.article-details-description {
  border-radius: 8px;
  background-color: #f7f7f7;
  border-top: 1px solid #000;
  margin: 19px 0 0 0;
  padding: 20px 29px;
  font-size: 18px;
  color: #303030;
  font-weight: 400;
  line-height: 26px;
}

.article-details-image {
  aspect-ratio: 1.6;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
  margin-top: 23px;
}

.article-details-meta {
  display: flex;
  margin-top: 20px;
  width: 100%;
  align-items: stretch;
  gap: 20px;
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article-details-author-info {
  background-color: #f5f5f5;
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.article-details-author-name {
  color: #303030;
}

.article-details-meta-separator {
  border-left: 1px solid #919191;
  height: 18px;
}

.article-details-publish-datedtl {
  color: #7a7a7a;
}

.article-details-share-section {
  background-color: #555;
  display: flex;
  min-height: 46px;
  padding: 10px;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 600;
}

.article-details-share-button {
  background: none;
  border: none;
  padding: 0 !important;
  cursor: pointer;
}

.article-details-share-button img {
  width: 16px;
  height: 16px;
}

.article-details-sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 29%;
  margin-left: 20px;
}

.article-details-recent-articles-section {
  background-color: #f7f7f7;
  border-bottom: 1px solid #555;
  display: flex;
  margin-top: 77px;
  padding: 19px 12px 53px;
  flex-direction: column;
  align-items: stretch;
  font-size: 18px;
  color: #303030;
  font-weight: 400;
}

.article-details-sidebar-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 0 11px;
}

.article-details-recent-article {
  margin-top: 17px;
}

.article-details-recent-article-image {
  aspect-ratio: 1.87;
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
}

.article-details-recent-article-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin: 8px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  height: 58px;
  -webkit-box-orient: vertical;
}

.article-detailsdt {
  background-color: #ffffff;
  display: flex;
  padding: 56px 80px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.article-containerdt {
  width: 100%;
  max-width: 1165px;
}

.article-layoutdt {
  margin-bottom: 47px;
}

.article-contentdt {
  gap: 20px;
  display: flex;
}

.article-columndt {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 68%;
}

.content-wrapperdt {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-size: 18px;
  color: #303030;
  font-weight: 400;
}

.content-wrapperdt h2 {
  font-size: 30px;
  color: #303030;
  margin: 20px 0px;
  font-weight: 500;
}
.content-wrapperdt h2 strong {
  font-weight: 500;
  border-bottom: solid 1px #ccc;
  position: relative;
}
.content-wrapperdt h2 strong::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 1px;
  background: #000;
}

.article-textdt {
  line-height: 26px;
  margin: 0;
}

.article-details-body p {
  margin: 25px 0px 0px 0px;
}

.article-details-body p img {
  width: 100%;
  object-fit: cover;
}

.article-textdt + .article-text {
  margin-top: 48px;
}

.article-imagedt {
  aspect-ratio: 1.77;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 10px;
}

.video-creditdt {
  background-color: #f5f5f5;
  margin-top: 8px;
  padding: 10px;
  font-size: 12px;
  color: #000000;
  width: fit-content;
}

.sidebardt {
  width: 32%;
  margin-left: 20px;
}

.sidebar-contentdt-popular {
  display: flex;
  width: 100%;
  flex-direction: column;
  font-size: 18px;
  color: #303030;
  margin-top: 50px;
}

.sidebar-titledt {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
}

.article-previewdt {
  display: flex;
  margin-top: 22px;
  align-items: stretch;
  gap: 14px;
  line-height: 22px;
}

.article-previewdt:first-of-type {
  margin-top: 0;
}

.preview-imagedt {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 90px;
  border-radius: 10px;
  flex-shrink: 0;
}

.preview-titledt {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.separatordt {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 21px 0 0;
  width: 100%;
}

.article-layout-secondarydt {
  margin-top: 47px;
}

.article-content-secondarydt {
  gap: 20px;
  display: flex;
}

.products-sidebardt {
  width: 29%;
  margin-left: 20px;
}

.our-products-contentdt {
  background-color: #f7f7f7;
  border-bottom: 1px solid #555555;
  padding: 19px 13px 41px;
  font-size: 18px;
  color: #303030;
  margin-top: 50px;
}

.products-titledt {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 17px 11px;
}

.product-itemdt {
  margin-top: 22px;
}

.product-itemdt:first-child {
  margin-top: 0;
}

.product-imagedt {
  aspect-ratio: 1.87;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 6px;
}

.product-image-placeholderdt {
  border-radius: 6px;
  background-color: #ffffff;
  height: 166px;
  margin-top: 22px;
}

.product-namedt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 13px 0 0;
}

.product-descriptiondt {
  font-weight: 400;
  line-height: 22px;
  margin: 0;
  padding-right: 23px;
  color: #000;
}

.containersteps {
  max-width: 90%;
  margin: 0 auto;
  padding: 30px 0px;
  font-family: "Source Sans Pro", sans-serif;
  background-color: #fff;
}
@media (min-width: 1920px) {
  .containersteps {
    width: 1920px;
    margin: 0 auto;
  }
}

.dessert-section {
  margin-top: 30px;
}

.dessert-title {
  font-size: 30px;
  color: #303030;
  margin-bottom: 15px;
}

.title-underline {
  width: 359px;
  height: 1px;
  position: relative;
  margin-bottom: 20px;
  background-color: #ccc;
}

.title-underline-dark {
  width: 140px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
}

.dessert-description {
  font-size: 18px;
  line-height: 26px;
  color: #303030;
  max-width: 725px;
}

.mousse-image {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.related-titledts {
  font-size: 34px;
  font-weight: 600;
  color: #303030;
  text-align: center;
  margin-bottom: 40px;
}

.article-gridpdts {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: left;
}

.article-cardpdts {
  border-radius: 10px;
  width: 18%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #fff;
}

.article-imagepdts {
  width: 100%;
  height: 144px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.article-titlepfdts {
  font-size: 18px;
  font-weight: 600;
  color: #303030;
  line-height: 23px;
  margin: 15px 15px 20px;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 1028px) {
  .containerart {
    width: 94%;
  }
  .content-grid {
    gap: 20px;
  }
  .recipe-title {
    font-size: 16px;
    line-height: 20px;
  }
  .small-article-title {
    font-size: 16px;
    line-height: 1.3;
  }
  .article-title {
    padding: 43px 15px 20px;
    font-size: 28px;
    line-height: 34px;
  }
  .main-article {
    min-height: 395px;
  }
  .festive-eats {
    margin-top: 30px;
  }
  .articles-gridff {
    grid-template-columns: repeat(4, 1fr);
  }
  .article-details-body {
    margin-top: 20px;
  }
  .article-details-titledtl {
    font-size: 34px;
    line-height: 1.2;
  }
  .article-details-description {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.4;
  }
  .related-titledts {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .article-titlepfdts {
    font-size: 15px;
    line-height: 20px;
    height: 60px;
    margin: 10px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
  .content-grid {
    flex-direction: column;
    gap: 0;
  }
  .featured-articles {
    width: 100%;
    margin-top: 40px;
  }
  .main-article {
    padding-top: 100px;
  }
  .article-title {
    padding: 93px 20px 30px;
    max-width: 100%;
  }
  .featured-recipes {
    width: 100%;
    margin-top: 40px;
  }
  .festive-eats {
    max-width: 100%;
    padding: 22px 20px 45px;
    margin-top: 40px;
  }
  .festive-content {
    padding-right: 20px;
  }
  .articles-listingsec {
    padding: 61px 20px;
  }
  .articles-containersec {
    max-width: 100%;
  }
  .articles-gridsec {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .article-card-mainsec, .article-columnsec, .article-columnsec .article-cardsec {
    width: 100%;
    margin-top: 17px;
  }
  .article-card-mainsec .article-contentsec {
    max-width: 100%;
  }
  .article-title-largesec, .article-descriptionsec {
    max-width: 100%;
  }
  .articles-containerfe {
    max-width: 100%;
    padding: 20px;
  }
  .content-wrapperfe {
    max-width: 100%;
  }
  .content-gridfe {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .festive-eats-sectionfe {
    width: 100%;
    margin-top: 31px;
  }
  .articles-rowfe {
    flex-direction: column;
  }
  .article-contentfe {
    padding-right: 20px;
  }
  .article-image-containerfe {
    padding: 100px 20px 0 0;
    width: 60vw;
  }
  .play-icon-secondaryfe {
    margin-top: 40px;
  }
  .new-arrivals-sectionfe {
    width: 100%;
    margin-top: 12px;
  }
  .products-row .product-titlefe {
    padding-right: 20px;
  }
  .articles-listingff {
    padding: 40px 20px;
  }
  .articles-listing-containerff {
    max-width: 100%;
  }
  .article-contentff {
    padding-right: 10px;
  }
  .article-details {
    padding: 30px 20px 22px;
  }
  .article-details-recent-articles-section {
    margin-top: 40px;
  }
  .article-details-sidebar {
    width: 100%;
    margin-left: 0;
  }
  .article-details-description {
    max-width: 100%;
    padding: 20px;
  }
  .article-details-titledtl {
    max-width: 100%;
    font-size: 40px;
    line-height: 47px;
  }
  .article-details-body {
    max-width: 100%;
  }
  .article-details-content {
    max-width: 100%;
    margin-top: 16px;
  }
  .article-details-container {
    max-width: 100%;
  }
  .article-details-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .article-details-main-content {
    width: 100%;
  }
  .article-detailsdt {
    padding: 56px 20px;
  }
  .article-containerdt {
    max-width: 100%;
  }
  .article-contentdt, .article-content-secondarydtv {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .article-columndt {
    width: 100%;
    margin-top: 40px;
  }
  .article-textdt + .article-text {
    margin-top: 40px;
  }
  .sidebardt, .products-sidebardt {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .article-layout-secondarydt {
    margin-top: 40px;
  }
  .product-descriptiondt {
    padding-right: 10px;
  }
}
@media (max-width: 800px) {
  .articles-gridff {
    grid-template-columns: repeat(3, 1fr);
  }
  .featured-articles {
    margin-top: 0px;
  }
  .main-article {
    padding: 0px;
  }
  .featured-recipes {
    margin-top: 30px;
  }
  .recipe-card {
    padding: 0px;
  }
  .festive-eats {
    margin-top: 20px;
  }
  .festive-grid .slick-prev {
    left: -8px;
  }
  .festive-grid .slick-next {
    right: -8px;
  }
  .articles-listingsec {
    padding: 12px 20px;
  }
  .article-card-mainsec .article-contentsec {
    padding: 0px;
  }
  .products-rowfe {
    justify-content: left;
  }
  .article-gridpdts {
    gap: 15px;
  }
  .article-imagepdts {
    height: 124px;
  }
}
@media (max-width: 580px) {
  .articles-gridff {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-listing {
    padding-top: 10px;
  }
  .article-title {
    padding: 13px 10px 12px;
    font-size: 23px;
    line-height: 24px;
  }
  .article-figure::after {
    height: 60%;
  }
  .products-gridfe {
    margin-top: 7px;
    gap: 16px;
  }
  .main-article {
    min-height: auto;
  }
  .article-grid {
    display: block;
  }
  .small-article {
    margin-bottom: 12px;
  }
  .thumbnail {
    width: 100px;
    height: 100px;
  }
  .festive-eats {
    margin-top: 0px;
  }
  .featured-recipes .recipe-card:last-child {
    border: 0px;
  }
  .featured-recipes {
    margin-top: 0px;
  }
  .festive-eats .section-title {
    font-size: 22px;
    text-align: left;
  }
  .festive-grid .slick-list {
    display: flex;
    flex-wrap: wrap;
    overflow: auto;
  }
  .festive-grid .slick-track {
    display: flex !important;
    flex-wrap: nowrap !important;
  }
  .festive-card {
    width: 245px !important;
    flex: none;
  }
  .article-columnsec {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    align-items: end;
    gap: 15px;
  }
  .article-card-smallsec {
    width: 50%;
  }
  .articles-listingsec {
    padding: 12px 14px 25px;
  }
  .festive-eats-sectionfe {
    margin-top: 0px;
  }
  .section-titlefe {
    font-size: 22px;
    align-self: flex-start;
  }
  .articles-gridfe {
    overflow: auto;
    margin-left: -20px;
    padding-left: 20px;
    width: 100vw;
    scrollbar-width: none;
  }
  .articles-rowfe {
    display: inline-flex;
    gap: 10px;
    flex-direction: row;
  }
  .article-cardfe {
    width: 246px;
    margin-right: 10px;
  }
  .section-titleff {
    font-size: 22px;
    align-self: flex-start;
  }
  .articles-gridff {
    margin-top: 10px;
  }
  .article-cardff {
    min-width: auto;
  }
  .article-titleff {
    font-size: 12px;
    line-height: 17px;
  }
  .articles-containerfe {
    padding: 20px 14px 30px;
  }
  .articles-listingff {
    padding: 40px 14px;
  }
  .festive-grid {
    display: flex;
    margin-top: 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    gap: 0px;
    align-items: center;
    overflow: auto;
    margin-left: -30px;
    padding-left: 14px;
    margin-right: -20px;
    padding-right: 10px;
  }
  .article-details {
    padding: 0px 12px 0px;
  }
  .festive-eats {
    padding: 22px 20px 25px;
  }
  .breadcrumb-current {
    white-space: nowrap;
    width: 60%;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
  }
  .article-details-titledtl {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.3;
  }
  .dessert-title {
    font-size: 24px;
    margin-bottom: 13px;
  }
  .related-titledts {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: left;
  }
  .containersteps {
    padding: 0px 0px 20px 0px;
  }
  .article-gridpdts {
    justify-content: left;
    gap: 15px;
    scrollbar-width: none;
    overflow: auto;
    margin: 0 -20px;
    padding: 0px 20px;
    display: flex;
    flex-wrap: nowrap;
  }
  .article-cardpdts {
    width: 245px;
  }
  .article-imagepdts {
    width: 245px;
  }
  .article-titlepfdts {
    width: 245px;
  }
  .article-cardpdts {
    overflow: visible;
  }
  .containersteps {
    max-width: 100%;
    padding: 30px 20px;
    margin: 0;
    background: #F0F0F0;
  }
  .article-columnsec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0px;
    gap: 0px 15px;
  }
  .main-article .slick-list {
    height: 252px;
  }
  .article-imagefe img {
    border-radius: 15px 15px 0px 0px;
  }
  .article-titlefe {
    font-size: 16px;
    line-height: 20px;
    min-height: 58px;
  }
  .article-details-body {
    margin-top: 0px;
  }
  .article-details-description {
    margin: 10px 0px 0px 0px !important;
    padding: 20px 12px;
  }
  .our-products-contentdt {
    background: none;
    border: 1px solid #000;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  .product-itemdt {
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
  }
  .our-products-contentdt a:hover .product-descriptiondt {
    color: #000;
  }
  .our-products-contentdt .product-itemdt:last-child {
    border: 0px;
  }
  .sidebar-contentdt-popular {
    margin-top: 30px;
  }
  .article-details-recent-articles-section {
    margin-left: -12px;
    margin-right: -12px;
    padding: 19px 12px 25px;
  }
  .recent_article_list {
    overflow: auto;
    width: 100%;
    scrollbar-width: none;
    display: flex;
  }
  .article-details-recent-article a {
    width: 246px;
    display: block;
    margin-right: 15px;
    background: #fff;
    padding-bottom: 15px;
    border-radius: 10px;
  }
  .article-details-recent-article-image img {
    border-radius: 6px 6px 0px 0px !important;
  }
  .article-details-recent-article-title {
    padding: 7px 10px 20px 10px;
  }
}
.single .article-details-content .breadcrumb {
  padding: 1.25rem 0px !important;
}

.breadcrumb {
  font-size: 14px !important;
  font-weight: 400 !important;
}

.breadcrumb a {
  opacity: 0.5;
  font-weight: 600;
}

.breadcrumb-current {
  font-weight: 600;
}

.hero-header {
  background-color: rgb(245, 245, 245);
  overflow: hidden;
  color: rgb(48, 48, 48);
  text-align: center;
}
@media (min-width: 1920px) {
  .hero-header {
    width: 1920px;
    margin: 0 auto;
  }
}

.hero-container {
  background-color: rgb(245, 245, 245);
  width: 100%;
  overflow: hidden;
}

.hero-container .filtersec .breadcrumb {
  padding: 0px 25px !important;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  align-items: center;
}

.hero-background-image {
  height: 100%;
}
@media (max-width: 600px) {
  .hero-background-image {
    margin-top: 70px;
  }
}

.hero-content {
  position: absolute;
  display: flex;
  top: 70px;
  left: 0;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.hero-title {
  font-size: 44px;
  font-weight: 600;
  align-self: center;
  margin: 0;
}

.accent-text {
  color: rgb(234, 32, 39);
}

.hero-description {
  font-size: 22px;
  font-weight: 400;
  margin: 14px auto 0;
  width: 637px;
}

@media (max-width: 991px) {
  .hero-container {
    max-width: 100%;
  }
  .hero-content-wrapper {
    max-width: 100%;
    padding: 100px 0 0 0;
  }
  .hero-content {
    margin-bottom: 10px;
    padding: 10px !important;
  }
  .hero-title {
    max-width: 100%;
    font-size: 34px;
    line-height: 40px;
  }
  .hero-description {
    max-width: 100%;
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.3;
    padding: 0px 40px;
  }
}
.who-we-are-section {
  border-radius: 0;
}

.wwa-container {
  background-color: #ffffff;
  display: flex;
  width: 100%;
  padding: 39px 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wwa-content-wrapper {
  width: 100%;
  max-width: 1118px;
}

.content-grid {
  gap: 20px;
  display: flex;
}

.content-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 0;
}

.text-content {
  display: flex;
  margin: auto 0;
  flex-direction: column;
  align-self: stretch;
  align-items: stretch;
  color: rgb(48, 48, 48);
}

.wwasection-title {
  font-size: 44px;
  font-weight: 600;
  align-self: start;
  margin: 0;
}

.title-highlight {
  color: rgb(234, 32, 39);
}

.wwa-description {
  font-size: 18px;
  font-weight: 400;
  margin-top: 23px;
  margin-bottom: 0;
}

.image-column {
  display: flex;
  align-items: stretch;
  line-height: normal;
  width: 49%;
  margin-left: 20px;
}

.image-wrapper {
  border-radius: 10px;
  background-color: rgb(255, 244, 237);
  flex-grow: 1;
  overflow: hidden;
  width: 100%;
  height: 300px;
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .play-button {
    width: 56px;
    height: 56px;
  }
}

.play-button:hover {
  background: none;
  box-shadow: none;
}

.play-icon {
  width: 32px;
  height: 32px;
  color: white;
  transition: transform 0.2s ease;
}

.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: background 0.3s ease;
}

.video-container:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container img,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.video-container.is-playing img,
.video-container.is-playing .play-button {
  opacity: 0;
  pointer-events: none;
}

.video-container iframe {
  opacity: 0;
}

.video-container.is-playing iframe {
  opacity: 1;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  display: none;
}

.video-container.is-loading .loading-spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.feature-image {
  aspect-ratio: 1.78;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@media (max-width: 991px) {
  .wwa-container {
    max-width: 100%;
    padding: 20px 15px 10px;
  }
  .wwasection-title {
    font-size: 22px;
  }
  .content-wrapper {
    max-width: 100%;
  }
  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .content-column {
    width: 100%;
  }
  .text-content {
    max-width: 100%;
    margin-top: 0px;
  }
  .wwa-description {
    max-width: 100%;
    margin-top: 0;
    font-size: 14px;
  }
  .image-column {
    margin: 0 -15px;
    width: 100vw !important;
  }
  .image-wrapper {
    max-width: 100%;
    margin-top: 10px;
    height: 211px;
    border-radius: 0;
  }
  .feature-image {
    max-width: 100%;
  }
}
.vision-section {
  background-color: rgb(255, 244, 237);
  display: flex;
  padding: 43px 80px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  color: rgb(48, 48, 48);
  text-align: center;
  justify-content: center;
}
@media (min-width: 1920px) {
  .vision-section {
    width: 1920px;
    margin: 0 auto;
  }
}

.vision-container {
  display: flex;
  width: 496px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.vision-heading {
  font-size: 44px;
  font-weight: 600;
  align-self: center;
  margin: 0;
}

.vision-heading-highlight {
  color: rgb(234, 32, 39);
}

.vision-description {
  font-size: 18px;
  font-weight: 400;
  margin-top: 24px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .vision-heading {
    font-size: 22px;
  }
  .vision-description {
    font-size: 14px;
    margin-top: 5px;
  }
  .vision-section {
    padding: 40px 15px;
  }
  .vision-description {
    max-width: 100%;
  }
}
.smart-chef-movement {
  border-radius: 10px;
  background-color: rgb(255, 244, 237);
  display: flex;
  padding: 53px 80px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  color: rgb(48, 48, 48);
  font-weight: 600;
  text-align: center;
  justify-content: center;
}
@media (min-width: 1920px) {
  .smart-chef-movement {
    width: 1920px;
    margin: 0 auto;
  }
}

.smartchef-content-wrapper {
  display: flex;
  width: 668px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
}

.movement-title {
  font-size: 44px;
  margin: 0;
}

.movement-description {
  font-size: 18px;
  font-weight: 400;
  align-self: stretch;
  margin: 24px 0 0 0;
}

.cta-button {
  border-radius: 40px;
  background-color: rgb(237, 28, 36);
  margin-top: 25px;
  padding: 11px 22px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: rgb(255, 255, 255);
  letter-spacing: -0.3px;
  font-weight: 600;
  font-family: inherit;
}

.cta-button:hover {
  opacity: 0.9;
}

.cta-button:focus {
  outline: 2px solid rgba(237, 28, 36, 0.5);
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .smart-chef-movement {
    padding: 53px 20px;
  }
  .movement-title {
    max-width: 100%;
    font-size: 22px;
  }
  .movement-description {
    max-width: 100%;
    font-size: 14px;
    margin-top: 10px;
  }
  .cta-button {
    padding: 11px 20px;
    font-size: 16px;
  }
}
.offer-section {
  background-color: #ffffff;
  padding-left: 80px;
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
}
@media (min-width: 1920px) {
  .offer-section {
    width: 1920px;
    margin: 0 auto;
  }
}

.offer-container {
  gap: 20px;
  display: flex;
  width: 100%;
}

.content-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 0;
}

.offer-content-wrapper {
  z-index: 10;
  display: flex;
  margin-top: 86px;
  margin-right: -2px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20%;
  height: 100%;
}

.section-title {
  color: #303030;
  font-size: 44px;
  font-weight: 600;
  margin: 0;
}

.highlight {
  color: #ea2027;
}

.main-description {
  color: #303030;
  font-size: 18px;
  font-weight: 400;
  margin-top: 14px;
  width: 570px;
}

.features-container {
  display: flex;
  margin-top: 107px;
  margin-left: auto;
  max-width: 340px;
  width: 100%;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.navigation-dots {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.dot {
  border-radius: 10px;
  background-color: #d9d9d9;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 20px;
}

.dot:first-child {
  margin-top: 0;
}

.dot.active {
  background-color: #303030;
}

.left-content {
  width: 100%;
  display: flex;
  margin-top: 160px;
}

.feature-content {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  max-width: 380px;
  margin-left: auto;
  justify-self: flex-end;
}
@media (max-width: 620px) {
  .feature-content {
    width: 80%;
    margin: 0 auto;
    height: 180px;
  }
}

.feature-title {
  color: #ea2027;
  font-size: 22px;
  font-weight: 600;
  align-self: flex-start;
  margin: 0;
}

.feature-description {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
}

.arImage {
  position: absolute;
  display: flex;
  top: 50%;
  left: 30%;
  width: 120%;
  transform: translate(-50%, -50%);
  transition: 0.6s;
  height: 100%;
  align-self: flex-end;
  align-items: center;
}
@media (max-width: 620px) {
  .arImage {
    top: 30%;
    left: 50%;
    width: 100%;
  }
}
.arImage img {
  width: 100%;
}
@media (max-width: 620px) {
  .arImage img {
    width: 100%;
    margin: 0 auto;
  }
}

.aboutRgihtsliders {
  display: flex;
  position: relative;
  width: 40%;
  background: #F8F8F8;
}
.aboutRgihtsliders .arImage {
  position: absolute;
  display: flex;
  top: 50%;
  left: 30%;
  width: 120%;
  transform: translate(-50%, -50%);
  transition: 0.6s;
  height: 100%;
  align-self: flex-end;
  align-items: flex-end;
}
.aboutRgihtsliders .arImage img {
  width: 100%;
}
.aboutRgihtsliders[data="0"] .arImage.firstImage {
  top: 50%;
}
.aboutRgihtsliders[data="0"] .arImage.secondImage {
  top: 150%;
}
.aboutRgihtsliders[data="0"] .arImage.thirdImage {
  top: 150%;
}
.aboutRgihtsliders[data="0"] .arImage.forthImage {
  top: 150%;
}
.aboutRgihtsliders[data="1"] .arImage.firstImage {
  top: -150%;
}
.aboutRgihtsliders[data="1"] .arImage.secondImage {
  top: 50%;
}
.aboutRgihtsliders[data="1"] .arImage.thirdImage {
  top: 150%;
}
.aboutRgihtsliders[data="1"] .arImage.forthImage {
  top: 150%;
}
.aboutRgihtsliders[data="2"] .arImage.firstImage {
  top: -150%;
}
.aboutRgihtsliders[data="2"] .arImage.secondImage {
  top: -150%;
}
.aboutRgihtsliders[data="2"] .arImage.thirdImage {
  top: 50%;
}
.aboutRgihtsliders[data="2"] .arImage.forthImage {
  top: 150%;
}
.aboutRgihtsliders[data="3"] .arImage.firstImage {
  top: -150%;
}
.aboutRgihtsliders[data="3"] .arImage.secondImage {
  top: -150%;
}
.aboutRgihtsliders[data="3"] .arImage.thirdImage {
  top: -150%;
}
.aboutRgihtsliders[data="3"] .arImage.forthImage {
  top: 50%;
}

.feature-image {
  aspect-ratio: 0.99;
  object-fit: contain;
  object-position: center;
  width: 100%;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .section-title {
    width: 100%;
    font-size: 22px;
  }
  .feature-title {
    align-self: center;
    font-size: 16px;
  }
  .aboutRgihtsliders {
    padding-top: 100%;
    width: 100%;
  }
  .aboutRgihtsliders .arImage.firstImage {
    align-items: center;
    justify-content: center;
  }
  .aboutRgihtsliders .arImage {
    width: 100%;
    left: 50%;
    align-items: center;
    justify-content: center;
  }
  .aboutRgihtsliders .arImage img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    object-position: center center;
  }
  .feature-description {
    font-size: 14px;
  }
  .offer-section {
    padding: 30px 15px;
  }
  .content-column {
    padding-bottom: 20px;
  }
  .offer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .content-column {
    width: 100%;
  }
  .offer-content-wrapper {
    max-width: 100%;
    margin-top: 25px;
    padding: 0;
    text-align: center;
  }
  .main-description {
    display: none;
  }
  .features-container {
    margin-top: 40px;
  }
  .feature-content {
    margin-top: 30px;
  }
  .feature-image {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .navigation-dots {
    display: none;
  }
}
.sticky-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 300px;
  height: 100dvh;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sticky-nav ul a {
  color: #000;
  font-size: 24px;
  font-weight: 700;
}
.sticky-nav ul .active a {
  color: #fff;
}

.scrollsectionabt {
  height: 400vh;
  position: relative;
  padding-left: 80px;
}
@media (min-width: 1920px) {
  .scrollsectionabt {
    width: 1920px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .scrollsectionabt {
    padding: 0px;
  }
}

.containerabt {
  gap: 20px;
  display: flex;
  width: 100%;
  position: sticky;
  top: 0;
  height: 100vh;
}
@media (max-width: 640px) {
  .containerabt {
    display: block;
  }
}

.leftabt {
  width: 60%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 640px) {
  .leftabt {
    width: 100%;
  }
}

.textblockabt {
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 50%;
}
@media (max-width: 640px) {
  .textblockabt {
    width: 100%;
    top: 20%;
  }
}

.rightabt {
  display: flex;
  width: 40%;
  background: #F8F8F8;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .rightabt {
    background: none;
    width: 100%;
  }
}

.rightabt img {
  max-width: 90%;
  height: auto;
}

.paginationdotsabt {
  position: absolute;
  top: 50%;
  left: 0px;
  display: inline-grid;
  gap: 10px;
  z-index: 99;
}
@media (max-width: 640px) {
  .paginationdotsabt {
    bottom: 15%;
    left: 50%;
    display: flex;
    transform: translate(-50%, 0px);
    top: inherit;
  }
}

.dotabt {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dotabt.active {
  background-color: #333;
}

.formwrapper {
  width: 100%;
  background: #F2F2F2;
  padding-bottom: 50px;
}

.formInnerdiv {
  background: #fff;
  padding: 50px;
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
}
.formInnerdiv h2 {
  font-size: 20px;
  margin-bottom: 24px;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 991px) {
  .formInnerdiv {
    padding: 20px 15px;
  }
  .formInnerdiv h2 {
    margin-bottom: 20px;
  }
}

.formWrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px 2%;
}
.formWrap .fItem {
  width: 48%;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.formWrap .fItem.fullwidth {
  width: 98%;
}
.formWrap .fItem label {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal !important;
  margin: 0px !important;
  cursor: pointer;
}
.formWrap .fItem label span {
  color: red;
}
.formWrap .fItem input {
  border-radius: 6px;
  border: 1.2px solid #B7B7B7;
  padding: 10px;
  height: 50px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  cursor: pointer;
}
.formWrap .fItem textarea {
  border-radius: 6px;
  border: 1.2px solid #B7B7B7;
  padding: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  cursor: pointer;
}
.formWrap .fItem .mobile-input input {
  border: 0;
}
@media (max-width: 600px) {
  .formWrap {
    grid-gap: 5px 0;
  }
  .formWrap .fItem {
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
  .formWrap .fItem input {
    height: 45px;
  }
}

.custom-select {
  position: relative;
  width: 100%;
  margin: 0px !important;
}

.select-box {
  background: white;
  border-radius: 6px;
  border: 1.2px solid #B7B7B7;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  height: 50px;
  margin: 0px !important;
}

.arrow {
  width: 10px;
  height: 10px;
  position: relative;
}
.arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
  height: 100%;
  border-left: solid 2px #B7B7B7;
  border-bottom: solid 2px #B7B7B7;
}

.options {
  list-style: none;
  padding: 0;
  margin: 0 0;
  position: absolute;
  width: 100%;
  background: white;
  border: 1.2px solid #B7B7B7;
  border-radius: 5px;
  display: none;
  max-height: 150px;
  overflow-y: auto;
  z-index: 10;
}

.option {
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.option:hover {
  background: #ED1C24;
  color: white;
}

/* Show options when active */
.custom-select.active .options {
  display: block;
}

#form-container {
  display: table;
  margin: 0 -5px;
}
#form-container .tabHead > div,
#form-container .row > div {
  display: table-cell;
  padding: 5px;
  width: 16%;
  vertical-align: bottom;
}
#form-container .tabHead > div > span,
#form-container .row > div > span {
  display: none;
  color: #B7B7B7;
  min-height: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
#form-container .tabHead > div:nth-child(1),
#form-container .row > div:nth-child(1) {
  width: 50%;
}
@media (max-width: 600px) {
  #form-container .tabHead {
    display: none;
  }
  #form-container .row {
    display: flex;
    flex-wrap: wrap;
  }
  #form-container .row > div {
    display: inline-flex;
    padding: 5px;
    width: calc(50% - 25px);
    flex-direction: column;
  }
  #form-container .row > div > span {
    display: block;
  }
  #form-container .row > div:nth-child(1) {
    width: 100%;
  }
  #form-container .row > div:last-child {
    width: 50px;
    min-width: 50px;
  }
}

#cookingInstruction {
  display: table;
  margin: 0 -5px;
}
#cookingInstruction .tabHead,
#cookingInstruction .row {
  display: table-row;
}
#cookingInstruction .tabHead > div,
#cookingInstruction .row > div {
  display: table-cell;
  padding: 5px;
  width: 16%;
  vertical-align: bottom;
}
#cookingInstruction .tabHead > div:nth-child(1),
#cookingInstruction .row > div:nth-child(1) {
  width: 30%;
}
#cookingInstruction .tabHead > div:nth-child(2),
#cookingInstruction .row > div:nth-child(2) {
  width: 50%;
}
@media (max-width: 600px) {
  #cookingInstruction .tabHead {
    display: none;
  }
  #cookingInstruction .row {
    display: flex;
    flex-wrap: wrap;
  }
  #cookingInstruction .row > div {
    display: inline-flex;
    width: 50px;
    vertical-align: bottom;
  }
  #cookingInstruction .row > div:nth-child(1) {
    width: 100%;
  }
  #cookingInstruction .row > div:nth-child(2) {
    width: calc(100% - 50px);
  }
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

input,
select,
button {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.remove {
  background: #ff4d4d;
  color: white;
  border: none;
  cursor: pointer;
}

.add {
  background: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

.remove,
.add {
  padding: 8px 12px;
  border-radius: 5px;
}

.addIcon {
  border-radius: 6px;
  border: 1.2px solid #E5E5E5;
  width: 100%;
  height: 50px;
  background: #FAFAFA url("../img/plusIcon.svg") no-repeat center center;
}

.removeIcon {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: 1.2px solid #E5E5E5;
  background: #FAFAFA url("../img/removeIcon.svg") no-repeat center center;
}

.file-upload-container {
  position: relative;
  width: 100%;
  margin: 0px !important;
  cursor: pointer;
}
.file-upload-container.heightExted label {
  height: 100px;
  justify-content: center;
  align-items: center;
}
.file-upload-container .fileselectbox {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.file-upload-container label {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  padding: 15px 20px;
  border: 1.2px solid #B7B7B7;
  background: #FFFAEE;
  margin: 0px !important;
}
.file-upload-container label abbr {
  font-size: 14px;
  color: #747474;
  font-weight: normal;
  margin-left: 20px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  border-bottom: 0px !important;
}
.file-upload-container label i {
  display: block;
  width: 21px;
  height: 18px;
  background: url("../img/camIcon.svg") no-repeat center center;
}
.file-upload-container .preview {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50px;
  object-fit: cover;
  display: none;
}

.formWrap .fItem.nutPlusbtn {
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.formWrap .fItem.nutPlusbtn .addIcon {
  width: 50px;
  margin-left: 10px;
}

.submitBtn {
  border-radius: 6px;
  background: #656262;
  padding: 11px 29px;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  /* 130% */
  text-transform: uppercase;
}

.buttnwrap {
  align-items: center;
}

.submitrecipeheader {
  padding: 45px 0px;
  text-align: center;
  background-color: #fff;
  font-size: 32px;
  color: #504F4F;
  font-weight: 600;
  position: relative;
}
@media (max-width: 580px) {
  .submitrecipeheader {
    padding: 28px 0px;
    font-size: 20px;
    background: #FFEEC7;
  }
}
.submitrecipeheader::before {
  content: "";
  background: url(../img/recipeleft.png) no-repeat;
  position: absolute;
  left: 0px;
  top: 0px;
  background-size: cover;
  width: 199px;
  height: 128px;
}
@media (max-width: 580px) {
  .submitrecipeheader::before {
    content: none;
  }
}
.submitrecipeheader::after {
  content: "";
  background: url(../img/reciperight.png) no-repeat;
  position: absolute;
  right: 8px;
  top: 40px;
  background-size: cover;
  width: 133px;
  height: 98px;
}
@media (max-width: 580px) {
  .submitrecipeheader::after {
    content: none;
  }
}
.submitrecipeheader span {
  color: #EA2027;
}

@media (max-width: 600px) {
  .submitRec {
    display: none !important;
  }
  .select-box {
    height: 45px;
  }
  .removeIcon,
  .addIcon {
    height: 45px;
  }
}
#ing_count {
  display: table-row;
}

#form-container .tabHead {
  display: flex;
}
@media (max-width: 600px) {
  #form-container .tabHead {
    display: none;
  }
}

#cookingInstruction textarea {
  width: 100%;
  min-height: 50px;
  padding: 2px 10px;
  font-size: 16px;
  resize: none; /* Prevent manual resize if desired */
  overflow: hidden; /* Hide scrollbars */
}

#cookingInstruction .row {
  display: flex;
}

#cookingInstruction .file-upload-container .preview {
  height: 51px !important;
}

.message {
  background: #ffbc3e;
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  text-align: center;
  z-index: 99;
}
@media (max-width: 600px) {
  .message {
    width: 300px;
  }
}

.auth-container {
  background-color: rgb(245, 245, 245);
  display: flex;
  padding: 30px 15px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 600;
  position: relative;
  min-height: calc(100vh - 84px);
}

.backBtn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: rgb(80, 79, 79);
  white-space: nowrap;
  line-height: 1.3;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
}

.backBtn svg {
  width: 18px !important;
  height: 14px !important;
}

.backBtn:hover {
  color: rgb(80, 79, 79) !important;
}

.back-icon {
  aspect-ratio: 1.44;
  object-fit: contain;
  object-position: center;
  width: 23px;
  flex-shrink: 0;
}

.back-link {
  color: inherit;
  text-decoration: none;
}

.auth-content {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  align-self: center;
  display: flex;
  width: 452px;
  max-width: 100%;
  padding: 35px 35px;
  flex-direction: column;
  align-items: stretch;
  font-size: 16px;
  color: rgb(48, 48, 48);
}

.auth-title {
  font-size: 20px;
  text-align: center;
  align-self: center;
  margin: 0;
  font-weight: 600;
  padding-bottom: 50px;
}

.text-accent {
  color: rgb(237, 28, 36);
}

.social-button, .auth-content > button.social-button {
  border-radius: 9999px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(226, 232, 240);
  display: flex !important;
  margin-top: 23px;
  padding: 16px;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  line-height: 1 !important;
  color: rgb(30, 41, 59);
  font-weight: 500;
  letter-spacing: -0.24px;
  justify-content: center;
  cursor: pointer;
  width: 100%;
}

.google-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  flex-shrink: 0;
}

.button-text {
  margin: auto 0;
}

.email-button, .auth-content a > button.email-button {
  border-radius: 9999px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(226, 232, 240);
  margin-top: 20px;
  padding: 16px;
  line-height: 1 !important;
  color: rgb(30, 41, 59);
  font-weight: 500;
  letter-spacing: -0.24px;
  cursor: pointer;
  width: 100%;
}

.login-prompt {
  text-align: center;
  align-self: center;
  margin-bottom: 0;
}

.login-link {
  color: rgb(237, 28, 36);
  text-decoration: none;
  font-weight: 400;
}

@media (max-width: 991px) {
  .auth-container {
    padding: 30px 20px 100px;
  }
  .backBtn {
    white-space: initial;
  }
  .auth-content {
    padding: 49px 20px;
    margin-top: 40px;
  }
}
.signup-container {
  width: 453px;
  border-radius: 10px;
  padding: 51px 34px;
  box-sizing: border-box;
  background-color: #fff;
}

.signup-header {
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px;
}

.text-red {
  color: #ed1c24;
}

.text-dark {
  color: #303030;
}

.signup-form {
  width: 100%;
  margin: 0 !important;
}

.form-field {
  margin-bottom: 30px;
}

.input-label {
  display: block;
  color: #303030;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.input-wrapper {
  border: 1.2px solid #b7b7b7;
  border-radius: 6px;
  height: 50px;
  display: flex;
  align-items: center;
}

.form-input,
.form-field .form-input {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 15px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #4f4f4f;
  outline: none;
  background: transparent;
  border: 0 !important;
}

.mobile-input {
  display: flex;
  align-items: center;
}

.country-selector {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  margin: 0px !important;
}

.selected-country {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0px !important;
}

.flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

.country-code {
  color: #4f4f4f;
  font-weight: normal;
  font-size: 16px;
}

.country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: white;
  border: 1px solid #b7b7b7;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  z-index: 1000;
}

.country-dropdown.active {
  display: block;
}

.country-search {
  padding: 8px;
  border-bottom: 1px solid #b7b7b7;
}

.country-search input {
  width: 100%;
  padding: 8px;
  border: 1px solid #b7b7b7;
  border-radius: 4px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

.country-list {
  max-height: 200px;
  overflow-y: auto;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
}

.country-item:hover {
  background-color: #f5f5f5;
}

.country-item img {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

.country-item span {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: #4f4f4f;
}

.continue-btn {
  display: block !important;
  color: #fff !important;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  height: 48px;
  border-radius: 6px;
  margin: 40px auto;
  width: 150px;
  cursor: pointer;
  background-color: #c7c7c7;
  border: none;
}
.continue-btn.loginContinue {
  margin: 0 auto 10px auto;
}
.continue-btn.active {
  background: #EE1A25;
}

.continue-btn:hover {
  color: #fff !important;
}

.orline {
  color: #747474;
  font-weight: 400;
  text-align: center;
  margin: 20px 0;
  text-transform: uppercase;
}

.login-prompt {
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  color: #303030;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.login-link {
  color: #ed1c24;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 640px) {
  .signup-container {
    width: 100%;
    padding: 30px 20px;
  }
  .continue-btn {
    width: 100%;
  }
}
.otp-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  width: 100%;
  padding: 20px 15px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.otp-card {
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  margin-bottom: -50px;
  width: 593px;
  max-width: 100%;
  padding: 18px 0 28px;
  flex-direction: column;
  align-items: stretch;
}

.close-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  align-self: flex-end;
}

.close-icon {
  aspect-ratio: 1.07;
  object-fit: contain;
  object-position: center;
  width: 15px;
}

.otp-content {
  display: flex;
  margin-top: 16px;
  padding: 0 31px;
  flex-direction: column;
  align-items: flex-start;
}

.otp-sent-message {
  color: #000000;
  font-size: 18px;
  line-height: 1;
  margin: 0;
}

.phone-number {
  font-weight: 600;
  color: #ee1a25;
}

.otp-content .resend-text, .otp-content .resend-text:hover {
  background: none !important;
  padding: 0;
  font-size: inherit;
  color: #ed1c24 !important;
  display: inline;
  cursor: pointer;
  padding: 0px !important;
  margin: 0px !important;
  line-height: normal !important;
  min-height: auto !important;
  box-shadow: none !important;
}

.otp-content .otp-input {
  border-radius: 6px;
  border: 1px solid #b7b7b7;
  width: 100%;
  margin-top: 10px;
  padding: 18px;
  font-size: 16px;
  color: #747474;
}

.resend-timer .error {
  margin-left: auto;
}

.resend-timer {
  color: #ee1a25;
  font-size: 14px;
  margin: 8px 0 0;
  display: flex;
  position: relative;
  width: 100%;
}

.timer-text {
  color: #b7b7b7;
  padding: 0 10px;
}

.verify-button {
  border: none;
  border-radius: 6px;
  background-color: #c7c7c7;
  margin-top: 19px;
  padding: 11px 30px;
  font-size: 20px;
  color: #ffffff !important;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  cursor: pointer;
}
.verify-button.active {
  background: #EE1A25;
}

@media (max-width: 991px) {
  .otp-overlay {
    max-width: 100%;
  }
  .otp-card {
    margin-bottom: 10px;
  }
  .close-icon {
    margin-right: 10px;
  }
  .otp-content {
    max-width: 100%;
    padding: 0 20px;
  }
  .otp-input {
    padding-right: 20px;
  }
  .verify-button {
    padding: 11px 20px;
    white-space: normal;
  }
}
.custom-checkbox1 {
  display: flex;
  color: rgb(116, 116, 116);
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  max-width: 100%;
}

.custom-checkbox1 input {
  display: none;
}

.checkmark1 {
  width: 12px;
  height: 12px;
  background-color: #fff; /* Dark teal */
  display: inline-block;
  position: relative;
  border: 1px solid rgb(116, 116, 116);
}

.custom-checkbox1 input:checked + .checkmark1::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: solid rgb(116, 116, 116);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.label-text1 {
  flex: 1;
  margin-top: -3px;
}

#form-errors {
  color: #ff0000;
  font-size: 12px;
  padding: 5px 0px;
}

.chefbbx .chef-name {
  color: #303030;
  font-size: 18px !important;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px 0px 20px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.like_chef .verification-badge {
  margin-bottom: 0px;
}

.like_chef {
  position: relative;
}

.like_chef .bglike {
  background: rgba(217, 217, 217, 0.8);
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.like_chef .chef_like {
  cursor: pointer;
  width: 19px;
  height: 17px;
  margin: 4px 5px;
}

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

.liked_recipes {
  position: relative;
}

.liked_recipes .bglike {
  background: rgba(217, 217, 217, 0.8);
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.liked_recipes .bglike .dislike {
  width: 19px;
  height: 17px;
  background: url(../img/dislikew.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: 5px;
}

.liked_recipes .bglike .like {
  width: 19px;
  height: 17px;
  background: url(../img/like.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: 5px;
}

.myAccountBanner {
  width: 100%;
  display: flex;
  justify-content: center;
  background: url("../img/myAccountBg.jpg") no-repeat center right;
  background-size: cover;
}
.myAccountBanner .maBannerInner {
  max-width: 1160px;
  padding: 50px 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 600px) {
  .myAccountBanner .maBannerInner {
    height: 171px;
  }
}
.myAccountBanner .maBannerInner h1 {
  color: #000;
}
.myAccountBanner .maBannerInner h1 span {
  color: #EA2027;
}
.myAccountBanner .maBannerInner p {
  font-size: 20px;
}
@media (max-width: 991px) {
  .myAccountBanner {
    background-position: center center;
  }
}
@media (max-width: 600px) {
  .myAccountBanner {
    background-position: -720px center;
  }
}

.account-page {
  background-color: rgb(242, 242, 242);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  min-height: 100vh;
}

.account-container {
  align-self: center;
  width: 100%;
  max-width: 1160px;
  padding: 0 15px;
}

.account-layout {
  gap: 20px;
  display: flex;
}

.sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 31%;
  color: rgb(80, 79, 79);
  font-weight: 600;
}

.profile-card {
  width: 100%;
}

.user-info {
  border-radius: 10px;
  background-color: white;
  display: flex;
  width: 100%;
  padding: 15px;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

.eserinflft {
  position: relative;
}

.user-avatar {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 85px;
  align-self: stretch;
  margin: auto 0;
  height: 85px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 600px) {
  .user-avatar {
    width: 69px;
    height: 69px;
  }
}

.user-name {
  align-self: stretch;
  margin: auto 0;
}

.account-nav {
  border-radius: 10px;
  background-color: white;
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
  font-size: 16px;
}

.nav-item {
  border-bottom: 1px solid rgb(226, 232, 240);
  display: flex;
  width: 100%;
  padding: 15px;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}

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

.nav-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 30px;
  align-self: stretch;
  margin: auto 0;
}

.nav-label {
  align-self: stretch;
  margin: auto 0;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 69%;
}

.profile-details-card {
  border-radius: 10px;
  background-color: white;
  margin: 0 auto;
  width: 100%;
  padding: 30px;
}

.myac-header {
  display: flex;
  width: 100%;
  align-items: center;
  color: rgb(80, 79, 79);
  font-weight: 600;
  justify-content: space-between;
}

.myac-title {
  font-size: 20px;
  margin: 0;
  align-self: stretch;
}

@media (max-width: 580px) {
  .edit-button {
    display: flex;
    justify-content: space-between !important;
    padding: 0px !important;
    width: 70px !important;
    border: 0px !important;
    min-height: auto !important;
  }
}

.edit-button, .myac-header button.edit-button {
  border-radius: 4px;
  background-color: white;
  border: 1px solid black;
  display: flex;
  padding: 6px;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
  width: 88px;
  justify-content: center;
  line-height: 1 !important;
}
@media (max-width: 580px) {
  .edit-button, .myac-header button.edit-button {
    width: 66px;
    padding: 0px 9px !important;
  }
}
.edit-button:hover, .myac-header button.edit-button:hover {
  color: inherit;
  background: transparent;
}

.edit-button, .myac-header button.edit-button.update_profile_button {
  padding: 4px 9px !important;
}

.edit-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 18px;
  align-self: stretch;
  margin: auto 0;
}

.section-divider {
  border: 0;
  border-top: 1px solid rgb(226, 232, 240);
  margin: 30px 0;
  width: 100%;
}

@media (max-width: 991px) {
  .account-page {
    padding-bottom: 100px;
  }
  .account-container {
    max-width: 100%;
  }
  .account-wrapper {
    max-width: 100%;
  }
  .account-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .sidebar {
    width: 100%;
  }
  .main-content {
    width: 100%;
    margin-left: 0;
  }
  .profile-details-card {
    max-width: 100%;
    margin-top: 20px;
    padding: 20px;
  }
  .edit-button, .myac-header button.edit-button {
    white-space: normal;
  }
}
nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  /*align-items: stretch;*/
  /*background: #AD9897;*/
  color: #6C5D5D;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
  width: 150px;
}

nav a {
  position: relative;
  padding: 20px;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

nav a:hover,
nav a.selected {
  background: #FFDAB1;
}

.main-content .tabs {
  float: inherit !important;
  width: auto !important;
  padding: 0px !important;
  margin: 0px !important;
}

.tabs .content {
  padding: 0px !important;
  position: relative;
  color: #6C5D5D;
  transition: opacity 0.1s linear 0s;
  display: none;
}

.tabs .content.visible {
  display: block;
}

.preftv {
  border-radius: 10px;
  background-color: white;
  margin: 0 auto;
  width: 100%;
  padding: 30px;
  margin-bottom: 28px;
}

.tagsel {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  background: #000;
  padding: 11px 15px;
  border-radius: 6px;
  display: inline-block;
  margin-right: 10px !important;
}

.tagsel span {
  margin-left: 10px;
  cursor: pointer;
}

.preftv .searchcard {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.mnum {
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.accordion-toggle {
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  color: #504F4F;
  font-weight: 500;
  font-size: 15px;
}

.accordion-content {
  display: none;
}

.accordion-content.default {
  display: block;
}

p {
  padding: 0;
  margin: 0;
}

h4 {
  padding: 0;
  margin: 0;
}

.active {
  color: #504F4F;
  font-weight: 500;
  font-size: 14px;
}

.accordion-toggle:before {
  content: "";
  width: 9px;
  height: 14px;
  background: url(../img/acco_right.png) no-repeat;
  display: inline-block;
  text-align: center;
  position: absolute;
  right: 0px;
  rotate: 90deg;
}

#accordion .active:before {
  content: "";
  width: 9px;
  height: 14px;
  background: url(../img/acco_right.png) no-repeat;
  display: inline-block;
  text-align: center;
  position: absolute;
  right: 0px;
  rotate: 0deg;
}

.mb10 {
  margin: 10px 0px 0px 0px;
}

#accordion [type=radio]:checked,
#accordion [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

#accordion [type=radio]:checked + label,
#accordion [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000;
  font-size: 16px;
}

#accordion [type=radio]:checked + label:before, #accordion [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 100%;
  background: #fff;
}

#accordion [type=radio]:checked + label:after, #accordion [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #EA2027;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#accordion [type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

#accordion [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mbheadersec {
  display: none;
}

@media (max-width: 600px) {
  .tabs-nav {
    display: none;
  }
  .tabs .content {
    display: block !important;
  }
  .profile-details-card {
    margin-bottom: 35px !important;
  }
  .profile-form .formWrap .fItem label {
    margin-bottom: 8px !important;
  }
  .tagsel {
    margin-bottom: 10px;
  }
  .mbheadersec {
    display: block;
    margin-bottom: 15px;
  }
  .headersectab {
    display: flex;
    justify-content: space-between;
  }
  .mbheadersec .edit-button {
    border-radius: 0px;
    background-color: transparent;
    border: 0px;
    display: flex;
    padding: 0px;
    gap: 4px;
    width: 55px;
  }
  .mbheadersec .nav-icon {
    width: 25px;
  }
  .mbheadersec .nav-item {
    padding: 0px;
    gap: 7px;
  }
  .preftv {
    padding: 18px;
  }
  .section-divider {
    margin: 25px 0;
  }
  .mbheadersec .nav-label {
    font-weight: 600;
    font-size: 16px;
  }
  .searchcard {
    display: flex !important;
    overflow: auto;
    gap: 0px !important;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .searchbx {
    margin-right: 15px;
  }
  .reciptabd {
    background: transparent;
    padding: 0px 0px;
  }
  .reciptabd .myac-header, .reciptabd .myac-title {
    display: none;
  }
  .searchbx {
    flex: 0 0 44%;
  }
}
.onboardpopup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.onboardpopup .onboardpopup__content {
  width: 770px;
  overflow: auto;
  border-radius: 6px;
  background: white;
  color: black;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 999;
}
@media (max-width: 600px) {
  .onboardpopup .onboardpopup__content {
    width: 100%;
  }
}

.onboardtp {
  width: 100%;
  height: 200px;
  border-radius: 6px 6px 0px 0px;
  background: url(../img/onboardtop.png) no-repeat;
  background-size: cover;
  padding: 98px 44px 0px 44px;
}
@media (max-width: 600px) {
  .onboardtp {
    height: 210px;
    background: url(../img/onboardtopmob.png) no-repeat;
    padding: 90px 40px 0px 40px;
  }
}
.onboardtp h1 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 600px) {
  .onboardtp h1 {
    font-size: 22px;
  }
}
.onboardtp p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  width: 70%;
}
@media (max-width: 600px) {
  .onboardtp p {
    font-size: 17px;
    width: 100%;
  }
}

.popincon {
  padding: 20px 44px 40px;
}
@media (max-width: 600px) {
  .popincon {
    padding: 20px 20px 40px;
  }
}

.poptitsec {
  color: #FF8801;
  font-size: 26px;
  font-weight: 600;
}

.poptitsec span {
  color: #000;
}

.poptag {
  margin-top: 10px;
  margin-bottom: 10px;
}

.poptag .tagsc {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  margin: 0px 14px 14px 0px;
  padding: 11px 15px;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 6px;
  display: inline-block;
}

.poptag .tagsc:hover {
  background: #d0d0d0;
  border: 1px solid #d0d0d0;
}

.poptag .tagsc.active {
  background: #ffd29f;
  color: #000;
  font-weight: 600;
  border: 1px solid #ffd29f;
}

.screen2 {
  display: none;
}

.nextonscreen, .continuescreen {
  width: 220px;
  background: #FF8801;
  border-radius: 6px;
  justify-content: space-between;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  display: flex !important;
  text-decoration: none;
}

.continuescreen {
  height: 44px;
  line-height: 44px !important;
}

.nextonscreen:hover, .continuescreen:hover {
  color: #fff !important;
}

.continuescreen button {
  color: #fff;
  background: none;
  padding: 0px !important;
  margin: 0px;
  min-height: auto !important;
  line-height: normal !important;
}

.continuescreen button:hover {
  background: none !important;
  box-shadow: none !important;
}

.arrowright {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.logoutmob {
  display: none;
}
@media (max-width: 600px) {
  .logoutmob {
    display: block;
    background: #EA2027;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 20px;
  }
}

.imglogs {
  margin-right: 15px;
}

.signupf {
  font-size: 14px;
  color: rgb(116, 116, 116);
  font-weight: 400;
  text-align: center;
  padding-top: 5px;
}

.signupf a {
  color: #ff0000;
  font-weight: 700;
}

.lastmob {
  margin-bottom: 15px;
}

.chefbbx {
  flex: 0 0 18.5%;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  position: relative;
}
@media (max-width: 600px) {
  .chefbbx {
    flex: 0 0 44%;
    margin-right: 15px;
    padding-bottom: 10px;
  }
}

.prof_iconed {
  position: absolute;
  width: 29px;
  height: 29px;
  object-fit: cover;
  background: url(../img/profile_edit.png) no-repeat;
  right: 0px;
  bottom: 0px;
  z-index: 9;
  cursor: pointer;
}

.user-info .file-upload-container label {
  display: block;
  border-radius: 0px !important;
  overflow: hidden;
  padding: 0px !important;
  border: 0px !important;
  background: none !important;
  margin: 0px !important;
}

.user-info .file-upload-container .fileselectbox {
  z-index: -1;
}

.searchcard .bglike {
  background: rgba(217, 217, 217, 0.8);
  position: absolute;
  top: 16px;
  right: 11px;
  z-index: 9;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.searchcard .dislike {
  width: 24px;
  height: 21px;
  background: url(../img/dislike.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 6px;
  right: 3px;
}

.searchcard .like {
  width: 24px;
  height: 21px;
  background: url(../img/like.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 6px;
  right: 3px;
}

.searchcard .chef_like {
  cursor: pointer;
  width: 19px;
  height: 17px;
  margin: 4px 5px;
}

.searchcard .verification-badge {
  margin: 0px !important;
}

.wrapMembership {
  text-align: center;
  padding-bottom: 50px;
}
.wrapMembership h2 {
  margin: 35px 0;
}
@media (max-width: 640px) {
  .wrapMembership h2 {
    margin: 20px 0 15px;
  }
}

.membanner .btn-red-round {
  align-self: center;
  margin-top: 25px;
  line-height: 1.4;
}
.membanner .btn-red-round span {
  display: block;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 930px;
  margin: 0 auto;
  padding: 20px;
}

.memship-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px 4px rgba(79, 79, 79, 0.15);
  background-color: #f8f8f8;
}

.memImage {
  width: 183px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px;
  border-radius: 11px;
  background-color: #f8f8f8;
  overflow: hidden;
}

.benefit-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

h2.membTitle {
  color: #303030;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.memship-discount-tag {
  padding: 4px 7px;
  border-radius: 7px;
  color: #303030;
  font-size: 16px;
  background-color: #fff3d8;
  margin: 0;
}

.benefit-description {
  color: #888;
  font-size: 16px;
  max-width: 338px;
  text-align: center;
  margin: 0;
}

.benefit-description p {
  margin: 0;
}

.smartchef {
  color: #ed1c24;
}

@media (max-width: 991px) {
  .benefits-container {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .memship-card {
    padding: 30px 20px;
    flex-direction: row;
    align-items: flex-start;
  }
  .benefits-container {
    padding: 10px;
    gap: 15px;
  }
  .memship-card {
    padding: 10px 15px;
  }
  .benefit-content {
    align-items: flex-start;
    width: calc(100% - 100px);
    padding-left: 15px;
  }
  .memImage {
    width: 100px;
    min-width: 100px;
    height: 66px;
  }
  h2.membTitle {
    font-size: 16px;
    text-align: left;
  }
  .memship-discount-tag {
    font-size: 12px;
  }
  .benefit-description {
    font-size: 14px;
    text-align: left;
  }
  .membanner {
    width: 96%;
    border-radius: 10px;
    margin: 10px 2%;
  }
  .membanner .hero-content-wrapper {
    padding-top: 180px;
  }
  .membanner .btn-red-round {
    margin-top: 20px;
    padding: 5px 15px;
  }
}
.maincontent-container {
  padding: 0px;
  margin: 0 auto;
}

.hero-sectioncontent {
  height: 339px;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(../img/evebanner.png);
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: cover;
}

.hero-content {
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.texthero-content {
  color: #303030;
}

.titlecon {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.subtitlecon {
  font-size: 15px;
  margin: 0;
}

.contest-datecon {
  padding: 10px 20px;
  font-size: 20px;
  color: #303030;
  background-color: rgba(233, 233, 233, 0.96);
  margin: 0;
}

.bold-datecon {
  font-weight: 700;
  margin-left: 5px;
}

.details-sectioncon {
  padding: 20px 25px;
  background-color: #fff;
}

.detailscont-content {
  padding: 32px 35px 45px 45px;
  background: #F7F7F7;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.details-leftcont {
  flex: 1;
}

.details-titlecont {
  font-size: 36px;
  font-weight: 700;
  color: #303030;
  margin-bottom: 20px;
}

.details-descriptioncont {
  font-size: 18px;
  color: #303030;
  line-height: 1.6;
  margin-bottom: 30px;
}

.action-buttonscont {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.register-btncont {
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  background-color: #e41e31;
}

.share-btncont {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #303030;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
}

.language-sectioncont {
  font-size: 18px;
  color: #303030;
}

.language-labelcont {
  margin-right: 10px;
}

.details-rightcont {
  width: 303px;
}

.eligibility-cardcont {
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #efeeee;
}

.contest-endcont {
  font-size: 16px;
  color: #303030;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.platformconte {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.infocontent-card img {
  margin-right: 8px;
}

.priceconten {
  color: #22c55e;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.eligibility-titlecont {
  font-size: 18px;
  color: #303030;
  margin-bottom: 10px;
}

.eligibility-textcont {
  font-size: 18px;
  color: #303030;
  line-height: 1.4;
  margin: 0;
}

.contest-detailscont {
  background-color: #fff;
  padding: 14px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
}

.playbt {
  width: 55px;
  height: 55px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.section-titlecont {
  color: #303030;
  font-size: 28px;
  font-weight: 600;
  align-self: flex-start;
}

.section-titlecont.centered {
  align-self: center;
  text-align: center;
  margin-top: 56px;
}

.uppercasecont {
  text-transform: uppercase;
}

.highlight-textcont {
  color: #ee1a25;
}

.bannercont {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 662px;
  margin-top: 14px;
  padding: 578px 30px 33px;
  margin-bottom: 30px;
}

.bannercont-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.bannercont-title {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.benefits-gridcont {
  margin-top: 24px;
  display: flex;
  gap: 20px;
}

.benefit-cardcont {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: #303030;
}

.benimg {
  width: 100%;
  height: 194px;
}

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

.benefit-imagecont {
  aspect-ratio: 1.68;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 7px;
}

.benefit-imagecont-wrapper {
  border-radius: 7px;
  overflow: hidden;
}

.yellow-bgcont {
  background-color: #fff3d8;
}

.gray-bgcont {
  background-color: #efefef;
}

.benefit-titlecont {
  font-size: 20px;
  font-weight: 600;
  margin-top: 13px;
}

.benefit-descriptioncont {
  font-size: 16px;
  font-weight: 400;
  margin-top: 4px;
}

.info-gridcont {
  background-color: #f7f7f7;
  align-self: center;
  display: flex;
  margin-top: 70px;
  width: 100%;
  max-width: 1277px;
  padding: 46px 47px;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.infocontent-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #efeeee;
}

.infocontent-card1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-titlecont {
  font-size: 28px;
  font-weight: 600;
}

.info-listcont {
  list-style: none;
  padding-left: 23px;
  margin-top: 14px;
  font-size: 18px;
  color: #303030;
}

.info-listcont li {
  margin-top: 14px;
  list-style-type: disc;
}

.info-listcont li:first-child {
  margin-top: 0;
}

.register-buttoncont {
  border-radius: 40px;
  background-color: #ee1a25;
  margin-top: 24px;
  padding: 11px 22px;
  font-size: 20px;
  width: auto;
  color: #fff;
  text-align: center;
  letter-spacing: -0.3px;
  border: none;
  cursor: pointer;
}

.dividercont {
  border-left: 1px solid #d4cccc;
  margin-top: 11px;
  height: 245px;
  flex-shrink: 0;
}

.dividercontnn {
  border-left: 1px solid #d4cccc;
  margin: 6px 0px;
  height: 1px;
  flex-shrink: 0;
}

.judges-gridcont {
  align-self: center;
  margin-top: 29px;
  width: 457px;
  max-width: 100%;
  display: flex;
  gap: 20px;
}

.judge-cardcont {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #303030;
}

.judge-imagecont {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.judge-namecont {
  font-size: 20px;
  font-weight: 600;
  margin-top: 17px;
}

.judge-titlecont {
  font-size: 16px;
  font-weight: 400;
}

.page-containercont {
  border-radius: 0;
}

.registration-sectioncont {
  background-color: #EFEFEF;
  display: flex;
  width: 100%;
  padding: 84px 80px;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  justify-content: center;
}

.registration-sectioncontwork {
  background-color: #EFEFEF;
  display: flex;
  width: 60%;
  margin: 40px auto 0;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  justify-content: center;
}

.registration-wrappercont {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px 5px rgb(217, 217, 217);
  width: 452px;
  max-width: 100%;
  padding-top: 27px;
  overflow: hidden;
}

.registration-formcont {
  width: 100%;
}

.form-contentcont {
  padding: 0 39px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.form-titlecont {
  color: rgb(48, 48, 48);
  font-size: 28px;
  text-align: center;
  margin: 0;
}

.form-labelcont {
  color: rgb(48, 48, 48);
  margin-top: 20px;
}

.form-labelcont:first-of-type {
  margin-top: 33px;
}

.form-inputcont {
  border-radius: 6px;
  border: 1px solid rgb(183, 183, 183);
  padding: 19px 12px;
  font-size: 16px;
  color: rgb(116, 116, 116);
  font-weight: 400;
  width: 100%;
  margin-top: 4px;
}

.input-wrappercont {
  border-radius: 6px;
  border: 1px solid rgb(183, 183, 183);
  display: flex;
  margin-top: 4px;
  padding: 16px 15px;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: rgb(116, 116, 116);
  font-weight: 400;
  justify-content: space-between;
}

.input-wrappercont input {
  border: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.input-iconcont {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.mobile-input-groupcont {
  display: flex;
  align-items: center;
  gap: 11px;
}

.flag-iconcont {
  width: 26px;
  object-fit: contain;
  margin-right: 5px;
}

.country-codecont {
  color: rgb(79, 79, 79);
  margin-right: 5px;
}

.payopt {
  display: flex;
  width: 144px;
  gap: 8px;
}

.mobile-inputcont {
  color: rgb(116, 116, 116);
  border: none;
  padding: 0;
  margin: 0;
}

.payment-sectioncont {
  background-color: rgb(239, 239, 239);
  display: flex;
  margin-top: 71px;
  padding-left: 39px;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.payment-iconcont {
  width: 158px;
  object-fit: contain;
}

.payment-buttoncont {
  background-color: rgb(48, 48, 48);
  color: #fff;
  font-size: 20px;
  padding: 12px 45px;
  border: none;
  cursor: pointer;
}

.contests-sectioncont {
  background-color: #F7F7F7;
  width: 100%;
  padding: 58px 26px;
}

.contests-headercont {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-titlecontbtm {
  font-size: 28px;
  font-weight: 600;
  color: rgb(238, 26, 37);
  margin: 0;
}

.section-titlecontbtm span {
  color: #000;
}

.view-all-buttoncont {
  border-radius: 40px;
  border: 1px solid rgb(238, 26, 37);
  padding: 11px 22px;
  color: rgb(238, 26, 37);
  font-size: 20px;
  font-weight: 400;
  background: none;
  cursor: pointer;
}

.contests-gridcont {
  margin-top: 16px;
  display: flex;
  gap: 20px;
}

.contest-cardcont {
  flex: 1;
  border-radius: 13px;
  background-color: #fff;
  overflow: hidden;
}

.card-imagecont {
  border-radius: 8px 8px 0 0;
  background-color: rgb(80, 79, 79);
  overflow: hidden;
  position: relative;
}

.imagecont-content {
  position: relative;
  min-height: 221px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 65px 80px;
}

.contest-imgcont {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contest-img.full-widthcont {
  position: static;
  aspect-ratio: 2.04;
}

.contest-subtitlecon {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  margin: 8px 0 0;
}

.card-detailscont {
  padding: 12px 28px 24px;
}

.details-rowcont {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contest-infocont {
  display: flex;
  flex-direction: column;
}

.contest-namecont {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.contest-datecon {
  color: rgb(48, 48, 48);
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  top: 10px;
  right: 16px;
}

.priceconten-tag {
  color: rgb(5, 179, 12);
  font-size: 20px;
  font-weight: 400;
}

.location-infocont {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  font-size: 16px;
  color: rgb(48, 48, 48);
  font-weight: 400;
}

.location-iconcont {
  width: 16px;
  object-fit: contain;
}

.content-overlaycont {
  position: relative;
  text-align: center;
  color: #fff;
}

.workshop-detailscont {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.section-titlecont {
  color: #303030;
  font-size: 28px;
  font-weight: 600;
}

.highlight-textcont {
  color: #ee1a25;
}

.uppercasecont {
  text-transform: uppercase;
}

.capitalizecont {
  text-transform: capitalize;
}

.schedule-containercont {
  margin-top: 22px;
}

.schedule-gridcont {
  display: flex;
  gap: 20px;
}

.schedule-columncont {
  width: 37%;
  background-color: #f7f7f7;
}

.schedule-columncont:last-child {
  width: 27%;
}

.schedule-blockcont {
  padding: 29px 30px;
  font-size: 18px;
  color: #303030;
}

.session-titlecont {
  font-weight: 600;
  font-size: 18px;
}

.schedule-itemcont {
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
  align-items: center;
}

.activity-titlecont {
  font-weight: 400;
  font-size: 18px;
}

.activity-timecont {
  font-weight: 400;
  font-size: 18px;
}

.dividercont {
  border-top: 1px solid #d0d0d0;
  margin: 11px 0;
}

.mobile-inputcont-groupcont {
  display: flex;
}

.schedule-imagecont {
  aspect-ratio: 1.04;
  width: 100%;
  object-fit: contain;
}

.ingredients-sectioncont {
  margin-top: 48px;
  margin-left: 11px;
}

.ingredients-gridcont {
  background-color: #f7f7f7;
  margin-top: 22px;
  padding: 35px 30px;
  display: flex;
  gap: 20px;
}

.ingredients-columncont {
  width: 25%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredient-itemcont {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

.ingredient-amountcont {
  font-weight: 600;
  margin-left: 5px;
}

.benefits-sectioncont {
  margin-top: 37px;
}

.benefits-gridcont {
  margin-top: 24px;
  display: flex;
  gap: 20px;
}

.benefit-cardcont {
  width: 25%;
  color: #303030;
}

.benefit-imagecont {
  aspect-ratio: 1.68;
  width: 100%;
  object-fit: contain;
  border-radius: 7px;
}

.image-containercont {
  border-radius: 7px;
  overflow: hidden;
}

.yellow-bgcont {
  background-color: #fff3d8;
}

.gray-bgcont {
  background-color: #efefef;
}

.benefit-titlecont {
  font-size: 20px;
  font-weight: 600;
  margin-top: 13px;
}

.benefit-descriptioncont {
  font-size: 16px;
  font-weight: 400;
  margin-top: 4px;
}

.registration-sectioncont {
  margin-top: 70px;
}

.registration-containercont {
  background-color: #EFEFEF;
  max-width: 867px;
  margin: 0 auto;
  padding: 46px 64px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.registration-stepscont {
  list-style: none;
  padding-left: 23px;
  margin-top: 14px;
  font-size: 18px;
  color: #303030;
  font-weight: 400;
}

.registration-stepscont li {
  margin-top: 14px;
  list-style-type: disc;
}

.register-buttoncont {
  border-radius: 40px;
  background-color: #ee1a25;
  color: #fff;
  font-size: 20px;
  padding: 11px 22px;
  border: none;
  margin-top: 24px;
  cursor: pointer;
  text-align: center;
  letter-spacing: -0.3px;
}

.vertical-dividercont {
  border: 0;
  border-left: 1px solid #d4cccc;
  height: 245px;
  margin: 11px 0;
}

.rules-listcont {
  list-style: none;
  padding-left: 23px;
  margin-top: 14px;
  font-size: 18px;
  color: #303030;
  font-weight: 400;
}

.rules-listcont li {
  margin-top: 14px;
  list-style-type: disc;
}

.event-gridcont {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1028px) {
  .info-gridcont {
    padding: 25px;
    margin-top: 40px;
    width: 100%;
    max-width: auto;
    flex-wrap: nowrap;
  }
  .info-listcont {
    font-size: 16px;
  }
  .event-gridcont {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .hero-sectioncontent {
    height: 205px;
  }
  .details-sectioncon {
    margin: 15px;
  }
  .detailscont-content {
    padding: 20px;
    gap: 20px;
  }
  .hidemob {
    display: none;
  }
  .schedule-columncont {
    width: 49%;
  }
  .registration-sectioncontwork {
    width: 80%;
  }
}
@media (max-width: 800px) {
  .bannercont {
    min-height: 350px;
    margin-top: 14px;
    padding: 290px 30px 10px;
  }
  .bannercont-title {
    font-size: 26px;
  }
  .benimg {
    width: 100%;
    height: 204px;
  }
  .dividercont {
    margin: 22px 0;
    height: 1px;
  }
  .info-gridcont {
    display: block;
  }
  .hero-sectioncontent {
    height: 360px;
    background-position: center;
  }
  .contest-datecon {
    top: inherit;
    bottom: 0px;
    right: 0px;
  }
  .detailscont-content {
    display: block;
  }
  .register-btncont {
    font-size: 12px;
  }
  .language-sectioncont {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .details-rightcont {
    width: 100%;
  }
  .section-titlecont {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
  .bannercont {
    min-height: 196px;
    margin-top: 14px;
    padding: 140px 20px 10px;
  }
  .bannercont-image {
    border-radius: 10px;
  }
  .bannercont-title {
    font-size: 22px;
  }
  .benefits-gridcont {
    display: block;
  }
  .benefit-cardcont {
    width: 100%;
    margin-bottom: 25px;
  }
  .info-gridcont {
    padding: 15px;
  }
  .registration-sectioncont {
    margin-top: 30px;
    padding: 25px 12px;
  }
  .contests-sectioncont {
    padding: 28px 20px;
  }
  .event-gridcont {
    grid-template-columns: repeat(2, 1fr);
  }
  .view-all-buttoncont {
    padding: 5px 15px;
    font-size: 16px;
  }
  .ingredients-gridcont {
    display: grid;
    gap: 10px 80px;
    grid-template-columns: repeat(2, 1fr);
  }
  .ingredients-columncont {
    width: auto;
  }
  .ingredients-gridcont ul:first-child, .ingredients-gridcont ul:nth-child(2) {
    border-bottom: 1px solid #d4cccc;
    padding-bottom: 10px;
  }
  .schedule-gridcont {
    display: block;
  }
  .schedule-columncont {
    width: 100%;
    margin-bottom: 20px;
  }
  .ingredients-sectioncont {
    margin-top: 15px;
    margin-left: 0px;
  }
  .contest-detailscont {
    padding: 14px 15px;
  }
  .registration-sectioncontwork {
    width: 100%;
    margin: 20px auto 0;
    padding: 10px;
  }
  .registration-containercont {
    max-width: max-content;
    margin: 0 auto;
    padding: 10px 0px;
    display: block;
  }
  .titlleft {
    text-align: left;
  }
  .vertical-dividercontnn {
    margin: 25px 0px 20px;
  }
}

/*# sourceMappingURL=styles.css.map */
