.exfd-hidden-scroll {
  overflow-y: hidden;
}
.ex_modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-animation-name: ex-fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: ex-fadeIn;
  animation-duration: 0.4s;
}

/* Modal Content */
.ex_modal .modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 85%;
  background: #fff;
  -webkit-animation-name: ex-fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: ex-fadeIn;
  animation-duration: 0.4s;
  margin-top: 3vh;
  margin-bottom: 3vh;
  max-width: 1100px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  max-height: 98vh;
  height: auto;
  overflow: hidden;
}
.ex_modal .modal-content > h3,
.ex_modal .modal-content > .price,
.ex_modal .modal-content > div.product-meta {
  flex-shrink: 0;
  padding: 25px 35px 0;
}
.ex_modal .modal-content > h3 {
  margin: 0 0 15px 0;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}
.ex_modal .modal-content > .price {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 0 35px 20px;
}
@media (max-width: 1024px) {
  .ex_modal .modal-content {
    width: 90%;
  }
  .ex_modal .modal-content .fd_modal_img {
    width: 100%;
  }
  .ex_modal .modal-content .fd_modal_des {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ex_modal .modal-content {
    width: 95%;
    margin-top: 2vh;
    margin-bottom: 2vh;
  }
  .ex_modal .modal-content .fd_modal_img {
    width: 100%;
    max-height: 300px;
  }
  .ex_modal .modal-content .fd_modal_des {
    width: 100%;
    padding: 25px;
  }
}
.ex_modal .modal-content .ex-modal-big {
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
@-webkit-keyframes ex-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes ex-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes ex-slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes ex-slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* The Close Button */
.ex_close {
  float: right;
  font-size: 24px;
  font-weight: normal;
  position: fixed;
  right: 16px;
  top: 6px;
  line-height: 28px;
  z-index: 9;
  width: 36px;
  height: 36px;
  background: #f0f0f0;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-family: sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.ex_close:hover,
.ex_close:focus {
  text-decoration: none;
  cursor: pointer;
  background: #e0e0e0;
  color: #000;
  transform: scale(1.1);
}
.ex_modal .modal-content .fd_modal_img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  overflow: hidden;
  flex-shrink: 0;
  padding: 20px;
}
.ex_modal .modal-content .fd_modal_img img {
  margin: 0;
  padding: 20px;
  max-width: 100%;
  max-height: 100%;
  display: block;
  transition: transform 0.3s ease;
  object-fit: contain;
}
.ex_modal .modal-content .fd_modal_img .ex_s_lick-dots li button:hover,
.ex_s_lick-dots li button:focus {
  color: #ea1f2e;
}
.ex_modal .modal-content .ex_s_lick-dots li button:before {
  color: #ea1f2e;
  font-size: 13px;
}
.ex_modal .modal-content .fd_modal_des {
  padding: 24px;
  font-size: inherit;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  gap: 8px;
}
.ex_modal .modal-content .fd_modal_des > h3 {
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  line-height: 1.3;
  color: #1a1a1a;
}
.ex_modal .modal-content .fd_modal_des > h3:after {
  bottom: -15px;
  content: "";
  width: 50px;
  border-bottom: 4px solid #ea1f2e;
  position: absolute;
  left: 0;
}
.ex_modal .modal-content .fd_modal_des > div:last-child,
.ex_modal .modal-content .fd_modal_des form {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.ex_modal .modal-content .fd_modal_des p {
  margin: 0;
  padding: 0;
  margin-bottom: 16px;
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}
.ex_modal .modal-content .fd_modal_des p:empty {
  display: none;
}
.ex_modal .modal-content .fd_modal_des h5 {
  margin: 20px 0;
  padding: 0;
  text-align: left;
  font-size: 22px;
  color: #1a1a1a;
  font-weight: 700;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  line-height: 1;
}
.ex_modal .modal-content .fd_modal_des h5 del {
  margin: 0;
  padding: 0;
  color: #2b2b2b;
}
.ex_modal .modal-content .fd_modal_des h5 ins {
  background: none;
  margin: 0;
  padding: 0;
  color: inherit;
}
.ex_modal .modal-content .fd_modal_des .exfd_nutrition {
  width: 100%;
  margin: 0 5px 0 0;
  border-bottom: 1px solid #eee;
  padding: 0px 0 7px 0;
}
.ex_modal .modal-content .fd_modal_des .exfd_nutrition ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ex_modal .modal-content .fd_modal_des .exfd_nutrition li {
  width: 33.33%;
  float: left;
  font-size: inherit;
  margin: 7px 0;
}
.ex_modal .modal-content .fd_modal_des .exfd_nutrition li span {
  color: #666666;
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.ex-fdlist.table-layout tr.ex-loading {
  opacity: 0.7;
}
#food_modal .ex_s_lick-dots {
  bottom: 25px;
}
#food_modal .ex_s_lick-dotted.ex_s_lick-slider {
  margin-bottom: 0;
}
.fd_modal_des .exwoofood-ct {
  margin: 0;
  padding-bottom: 18px;
}

.exfd-modal-carousel.exwp-no-galle img {
  display: block;
}
.ex_modal .modal-content.exmd-no-img {
  width: 60%;
}
.ex_modal .modal-content.exmd-no-img .fd_modal_img {
  display: none;
}
.ex_modal .modal-content.exmd-no-img .fd_modal_img + .fd_modal_des {
  width: 100%;
}

.ex_modal .single_variation_wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  width: 100%;
}
.ex_modal .single_variation_wrap .variations {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ex_modal
  .exwoofood-woocommerce.woocommerce
  .variations
  + .single_variation_wrap {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.ex_modal
  .exwoofood-woocommerce.woocommerce
  .cart
  .single_variation_wrap
  .variations_button {
  width: 100%;
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  gap: 12px;
  align-items: center;
}
.ex_modal
  .exwoofood-woocommerce.woocommerce
  .cart
  .single_variation_wrap
  .variations_button
  button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #b8d9c3;
  color: #1a1a1a;
}
.ex_modal
  .exwoofood-woocommerce.woocommerce
  .cart
  .single_variation_wrap
  .variations_button
  button:hover {
  background-color: #a0cdb8;
}
.ex_modal .modal-content .fd_modal_img:hover img {
  transform: scale(1.05);
}
.exwoofood-woocommerce.woocommerce .woosb-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.exwoofood-woocommerce.woocommerce
  .woosb-qty
  div.quantity
  input[type="number"] {
  border: 1px solid #ddd;
  padding: 10px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
}
.exwoofood-woocommerce.woocommerce
  .woosb-qty
  div.quantity
  input[type="number"]:focus {
  border-color: #ea1f2e;
  box-shadow: 0 0 0 3px rgba(234, 31, 46, 0.1);
}
.ex_modal .modal-content .ex-modal-big .fd_modal_img {
  transition: 0.2s all ease;
}
.ex_modal .modal-content .ex-modal-big.ex-padimg .fd_modal_img {
  padding: 25px 0 25px 30px;
}

/* Enhanced quantity and button styling */
.exwoofood-woocommerce.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.exwoofood-woocommerce.woocommerce .quantity button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: #2d6a4f;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exwoofood-woocommerce.woocommerce .quantity button:hover {
  background: #1b4332;
}
.exwoofood-woocommerce.woocommerce .quantity input[type="number"] {
  border: none !important;
  padding: 8px 10px !important;
  width: 50px;
  text-align: center;
  font-weight: 600;
  background: #fff;
}
.exwoofood-woocommerce.woocommerce .quantity input[type="number"]:focus {
  outline: none;
}

div#exlive-total span.price {
  font-size: inherit;
  font-weight: bold;
}
div#exlive-total {
  margin: 5px 0 10px 0;
  font-size: 110%;
  padding-top: 10px;
}
form:not(.variations_form) div#exlive-total {
  border-top: 1px solid #eee;
}
.exbt-inline div#exlive-total {
  display: none !important;
}
.ex_modal .single_variation_wrap div#exlive-total {
  margin: 20px 0 0 0;
  padding-top: 0;
}
.ex_modal .single_variation_wrap .exwo-product-gr-options + div#exlive-total {
  margin: 0;
}
/*Responsive*/
@media (max-width: 450px) {
  .exwoofood-woocommerce.woocommerce .quantity:not(.hidden) {
    margin-bottom: 5px;
  }
  /*.ex_modal .modal-content .fd_modal_img {
    width: 100%;
  }
  .ex_modal .modal-content .fd_modal_des {
    width: 100%;
  }*/
}
@media screen and (max-width: 767px) {
  .ex_modal .modal-content .fd_modal_img {
    width: 100%;
  }
  .ex_modal .modal-content .fd_modal_des {
    width: 100%;
  }
  .ex_modal .modal-content.exmd-no-img,
  .ex_modal .modal-content {
    width: 80%;
  }
  .ex_modal .modal-content .fd_modal_des .exfd_nutrition li {
    width: 50%;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ex_modal .modal-content {
    margin-bottom: 25%;
  }
}

@supports (-ms-ime-align: auto) {
  .ex_modal .modal-content {
    margin-bottom: 25%;
  }
}
/*--Add arrow to carousel--*/
.exfd-modal-carousel .ex_s_lick-prev:before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  margin-right: -3px;
}
.exfd-modal-carousel .ex_s_lick-next:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: -3px;
}
.exfd-modal-carousel .ex_s_lick-prev {
  left: 10px;
}
.exfd-modal-carousel .ex_s_lick-next {
  right: 10px;
}
.exfd-modal-carousel .ex_s_lick-prev,
.exfd-modal-carousel .ex_s_lick-next {
  border-radius: 0;
  opacity: 0;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 9;
}
#food_modal .exfd-modal-carousel .ex_s_lick-prev:not(:hover),
#food_modal .exfd-modal-carousel .ex_s_lick-next:not(:hover) {
  background: rgba(0, 0, 0, 0.4);
}
.exfd-modal-carousel .ex_s_lick-next:before,
.exfd-modal-carousel .ex_s_lick-prev:before {
  font-size: 2px;
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
}
.exfd-modal-carousel .ex_s_lick-next:hover,
.exfd-modal-carousel:hover .ex_s_lick-prev:hover {
  background: rgba(0, 0, 0, 0.7);
}
.exfd-modal-carousel:hover .ex_s_lick-next,
.exfd-modal-carousel:hover .ex_s_lick-prev {
  opacity: 1;
}
#food_modal .exwf-md-tabs span {
  border: 0;
  margin: 0;
  padding: 10px 17px;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
}
#food_modal .exwf-md-tabs {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  display: none;
}
#food_modal span.exwf-tab.exwf-tab-current {
  background: #ddd;
}
#food_modal .exwf-ct-tab:not(.exwf-md-details),
#food_modal .exwf-reviews {
  display: none;
}
.exwf-reviews.woocommerce #review_form #respond .stars + #rating {
  display: none;
}
.exwf-reviews #review_form span#reply-title {
  font-style: italic;
}
.exwf-reviews form#commentform {
  margin-top: 10px;
}
.woocommerce #review_form #respond label {
  margin: 5px 0;
  display: block;
  font-weight: bold;
}
.exwf-reviews.woocommerce #review_form #respond .stars {
  margin: 0;
}
.exwf-reviews.woocommerce p.exwf-rvtitle {
  font-weight: bold;
  margin: 10px 0;
}
.exwf-reviews.woocommerce #reviews #review_form {
  border: 2px solid #ddd;
  padding: 1em 1.9em 2.3em;
}
.exwf-reviews.woocommerce #reviews > div#review_form_wrapper,
.exwf-reviews.woocommerce #reviews > div#comments {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.exwf-reviews.woocommerce #reviews #comments ol.commentlist li .comment-text {
  border-radius: 0;
}
.exwf-reviews.woocommerce #reviews p.comment-form-comment {
  margin: 0 0 10px 0;
}
.exwf-reviews.woocommerce #reviews .comment-form-cookies-consent {
  display: none;
}
.exwf-reviews.woocommerce #reviews #commentform.ex-loading {
  opacity: 0.4;
  pointer-events: none;
}
/*- Modern style-*/
.ex_modal .exwf-md-modern.modal-content {
  margin-top: 3vh;
  margin-bottom: 3vh;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 85%;
}
.ex_modal .exwf-md-modern .fd_modal_des,
.ex_modal .exwf-md-modern .fd_modal_img {
  width: 100%;
  flex: 1;
}
.ex_modal .exwf-md-modern.modal-content {
  max-width: 700px;
}
.ex_modal .exwf-md-modern.modal-content .ex-modal-big {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.exwf-md-modern .exfd-img-mod {
  height: auto;
  max-height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ex_modal .exwf-md-modern.modal-content .ex-modal-big.ex-padimg .fd_modal_img {
  padding: 0;
}
.ex_modal .exwf-md-modern.modal-content .fd_modal_des {
  padding: 40px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
}
.exwf-md-modern .fd_modal_img h3 {
  padding: 20px 40px 0;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}
.ex_modal .exwf-md-modern.modal-content .exwf-lbicons,
.ex_modal .exwf-md-modern.modal-content .ex-padimg .fd_modal_img .exwf-lbicons {
  bottom: 48px;
  top: auto;
  left: 25px;
  right: auto;
  margin: 0;
}
.ex_modal .exwf-md-modern form div#exlive-total {
  display: block !important;
  border: 0;
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 700;
}
.ex_modal .exwf-md-modern .exwf-grqty button,
.ex_modal .exwf-md-modern form .button {
  flex: 1;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ex_modal .exwf-md-modern .exwf-grqty {
  position: relative;
  bottom: auto;
  background: #fff;
  padding: 20px 40px;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  gap: 15px;
}
.ex_modal .exwf-md-modern .ex_close {
  right: 16px;
  top: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
}
.ex_modal
  .exwf-md-modern
  .exwoofood-woocommerce.woocommerce
  .variations
  + .single_variation_wrap
  .quantity {
  margin-top: 0;
  vertical-align: unset;
}
@media (max-width: 600px) {
  .ex_modal .exwf-md-modern.modal-content {
    margin-top: 10vh;
    margin-bottom: 10vh;
  }
  .ex_modal .exwf-md-modern form div#exlive-total {
    display: block !important;
    padding: 0 0 5px 0;
  }
  .ex_modal .exwf-md-modern.modal-content .fd_modal_des {
    margin-bottom: 65px;
  }
}
/*--Upsell--*/
#food_modal .exwf-md-up-sells {
  padding: 20px;
}
.exwf-md-up-sells .ex-fdlist .exstyle-4 {
  display: flex;
  flex-wrap: wrap;
}
.exwf-md-up-sells .ex-fdlist .exstyle-4 figcaption {
  width: 60%;
}
.exwf-md-up-sells .ex-fdlist .exstyle-4 .exstyle-4-image {
  width: 40%;
}
#food_modal .exwf-md-up-sells .ex_s_lick-dots {
  bottom: -20px;
}
.exwf-md-up-sells .ex-fdlist.style-4 .item-grid {
  box-shadow: none;
}
.exwf-md-up-sells .ex-fdlist.style-4 .item-grid .exp-arrow {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}
.exwf-md-up-sells .ex-fdlist.style-4 .item-grid {
  margin-right: 0;
  padding: 0 7px;
}
.exwf-md-up-sells .ex-fdlist.ex-fdcarousel .parent_grid {
  margin: 0 -7px;
}
#food_modal.ex-loading:before {
  z-index: 9999;
  position: fixed;
  content: " ";
  display: block;
  width: 38px;
  height: 38px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-color: #cecece rgba(0, 0, 0, 0.1) #cecece rgba(0, 0, 0, 0.1);
  animation: lds-dual-ring 1.2s linear infinite;
  top: 50%;
  margin-top: -19px;
  left: 50%;
  margin-left: -19px;
}
/*-- Social share--*/
.exwf-social-share > span {
  width: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  padding: 8px;
  border: 1px solid #eee;
  height: 40px;
  vertical-align: top;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}
.exwf-social-share > span:hover {
  border-color: #ea1f2e;
  background: #fff;
}
.exwf-social-share > span a {
  line-height: 1;
}
.exwf-social-share > span .icon {
  vertical-align: unset;
  margin: 0;
}
.exwf-social-share {
  margin-top: 15px;
}
.exwf-md-modern .exwf-social-share {
  top: 50px;
  right: 10px;
  position: absolute;
}
.exwf-md-modern .exwf-social-share > span {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
}

.exwoofood-woocommerce.woocommerce .quantity:not(.hidden) {
  display: flex !important;
}

.ex_modal
  .exwoofood-woocommerce.woocommerce
  .cart
  .single_variation_wrap
  .variations_button
  button:hover {
  background-color: #00af5d !important;
  width: auto !important;
  color: #fff !important;
}

.exwoofood-woocommerce.woocommerce
  .variations
  + .single_variation_wrap
  .quantity {
  margin-top: 0px !important;
  vertical-align: bottom;
}

.ex_modal
  .exwoofood-woocommerce.woocommerce
  .cart
  .single_variation_wrap
  .variations_button
  button {
  background-color: #007527 !important;
  color: #fff !important;
  width: auto !important;
}

.exfd-overlay.exfd-overlay-active {
  display: none;
}
.exfd-cart-content.excart-active {
  display: none !important;
}
