.header {
  background: #1C1D1C;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header a {
  color: #ffffff;
}
.header a:hover {
  color: #FDC703;
}
.header.scrolled {
  position: fixed;
  top: -200px;
}
.header.fixed {
  top: -44px;
  transition: 300ms ease-in-out;
}
.header .header__container {
  max-width: 1650px;
  width: calc(100% - 2 * 30px);
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .header .header__container {
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header .header__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header .header__top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .header .header__top {
    justify-content: space-between;
  }
}
.header .header__top .header__text {
  font-size: 12px;
  line-height: 1.3em;
  text-transform: uppercase;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .header .header__top .header__text {
    max-width: 33%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .header .header__top .header__right {
    max-width: 33%;
  }
}
.header .header__top .header__menu {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header .header__top .header__menu .menu-item a {
  font-size: 12px;
  line-height: 1.3em;
  text-transform: uppercase;
  color: #ffffff;
}
.header .header__top .header__menu .menu-item a:hover {
  color: #FDC703;
}
.header .header__bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.header .header__bottom .header__logo-link {
  display: flex;
}
.header .header__bottom .navigation {
  margin-left: auto;
  margin-right: auto;
}
.header .header__bottom .header__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.navigation .navigation__menu {
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.navigation .navigation__menu .menu-item a {
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 1200px) {
  .navigation .navigation__menu .menu-item a {
    font-size: 14px;
    line-height: 1.3em;
  }
}
.navigation .navigation__menu .menu-item a:hover {
  color: #FDC703;
}
.navigation .navigation__menu .menu-item a[href="#"]:hover {
  color: #ffffff;
}
.navigation .navigation__menu .menu-item.menu-item-has-children {
  position: relative;
}
.navigation .navigation__menu .menu-item.menu-item-has-children > a:after {
  margin-left: 5px;
  content: url(images/arrow-down.svg);
}
.navigation .navigation__menu .menu-item.menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  left: -10px;
  top: 100%;
  padding: 10px;
  width: 200px;
  background: #1C1D1C;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  list-style-type: none;
}
.navigation .navigation__menu .menu-item.menu-item-has-children:hover > .sub-menu {
  display: flex;
}

.footer {
  background: #1C1D1C;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 75px;
  padding-bottom: 20px;
  font-size: 14px;
}
.footer > * {
  max-width: 1650px;
  width: calc(100% - 2 * 30px);
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .footer > * {
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer .footer__top,
.footer .footer__bottom,
.footer .footer__copy {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
.footer .footer__half {
  width: calc(50% - 20px);
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 50px;
}
.footer .footer__half.footer__half--between {
  justify-content: space-between;
}
.footer .footer__half.footer__half--column {
  flex-direction: column;
  gap: 20px;
}
.footer .footer__half.footer__half--pt {
  padding-top: 44px;
}
.footer .footer__title,
.footer .widgettitle {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 900;
  font-family: "Domaine Text", serif;
  font-style: italic;
}
.footer .footer__title .has-font-mabry,
.footer .widgettitle .has-font-mabry {
  font-style: normal;
  font-weight: 400;
  font-family: "Mabry Pro", sans-serif;
}
.footer .footer__title.footer__title--no-mb,
.footer .widgettitle.footer__title--no-mb {
  margin-bottom: 0;
}
.footer .footer__cities {
  -moz-column-count: 5;
       column-count: 5;
}
.footer .footer__cities a {
  color: #ffffff;
  opacity: 0.7;
  text-transform: uppercase;
  display: block;
}
.footer .footer__cities a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
}
.footer p {
  margin-top: 0;
}
.footer p strong {
  font-weight: 400;
  opacity: 1;
}
.footer .footer__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer__row .button {
  margin-top: auto;
}
.footer .footer__row .footer__title,
.footer .footer__row p {
  margin: 0;
}
.footer .footer__row.footer__row--pt {
  padding-top: 44px;
}
.footer .menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer .menu .menu-item a {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3em;
  opacity: 0.6;
}
.footer .menu .menu-item a:hover {
  color: #FDC703;
}
.footer .footer__copy-menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 auto;
}
.footer .footer__copy-menu .menu-item a {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.3em;
  opacity: 0.6;
}
.footer .footer__copy-menu .menu-item a:hover {
  color: #FDC703;
}
.footer .menu-columns-2 .menu {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 30px;
       column-gap: 30px;
  display: block;
}
.footer .menu-columns-2 .menu li {
  margin-bottom: 10px;
}
.footer .footer__copy-text {
  font-size: 12px;
  opacity: 0.6;
  line-height: 1.3em;
  text-transform: uppercase;
}
.footer .footer__center {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: flex-start;
  align-items: baseline;
  padding-bottom: 20px;
  margin-top: 20px;
}
.footer .footer__center:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #feaf00;
  order: 2;
}
.footer .footer__center a {
  order: 1;
  color: #feaf00;
  font-size: 34px;
  line-height: 1.1em;
  text-decoration-line: underline;
}

.bottom-bar {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 1650px) {
  .bottom-bar {
    gap: 20px;
  }
}
.bottom-bar .bottom-bar__contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px;
  background: #FDC703;
  border-radius: 24px;
  justify-self: flex-end;
  margin-right: 20px;
  position: absolute;
  right: 70px;
  bottom: 10px;
}
.bottom-bar .bottom-bar__menu {
  padding: 13px;
  background: rgba(45, 45, 45, 0.8980392157);
  border-radius: 24px 24px 0 0;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 1300px) {
  .bottom-bar.bottom-bar--diet .bottom-bar__contact {
    position: relative;
    right: initial;
  }
}

.grecaptcha-badge {
  z-index: 2 !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.calculator {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  position: relative;
}
.calculator .calculator__step {
  grid-column: 1/2;
  grid-row: 3/4;
  display: none;
  flex-direction: column;
  border-bottom: solid 1px #1C1D1C;
  align-items: center;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .calculator .calculator__step {
    padding: 40px 0;
  }
}
.calculator .calculator__step .calculator__question {
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .calculator .calculator__step .calculator__question {
    font-size: 20px;
  }
}
.calculator .calculator__step .calculator__answers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.calculator .calculator__step .calculator__answers .calculator__answer {
  font-size: 16px;
  color: #1C1D1C;
  padding: 16px 24px;
  border: solid 1px #1C1D1C;
  border-radius: 52px;
  width: 400px;
  text-align: center;
  text-transform: uppercase;
  transition: 300ms;
}
@media screen and (max-width: 768px) {
  .calculator .calculator__step .calculator__answers .calculator__answer {
    font-size: 14px;
    padding: 10px 24px;
  }
}
@media screen and (max-width: 460px) {
  .calculator .calculator__step .calculator__answers .calculator__answer {
    width: 100%;
    box-sizing: border-box;
  }
}
.calculator .calculator__step .calculator__answers .calculator__answer:hover {
  color: #ffffff;
  background-color: #1C1D1C;
  text-decoration: none;
}
.calculator .calculator__step .calculator__answers .calculator__answer.active {
  color: #ffffff;
  background-color: #1C1D1C;
}
.calculator .calculator__step.active {
  display: flex;
}
.calculator .calculator__step .calculator__input-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 30px;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .calculator .calculator__step .calculator__input-group {
    font-size: 20px;
  }
}
.calculator .calculator__step .calculator__input-group .calculator__input {
  color: #1C1D1C;
  border: none;
  border-bottom: solid 1px #1C1D1C;
  background: transparent;
  max-width: 150px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .calculator .calculator__step .calculator__input-group .calculator__input {
    font-size: 16px;
  }
}
.calculator .calculator__results {
  text-align: center;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .calculator .calculator__results {
    margin-top: 50px;
  }
}
.calculator .calculator__result {
  font-size: 24px;
  text-align: center;
  color: #1C1D1C;
}
@media screen and (max-width: 768px) {
  .calculator .calculator__result {
    font-size: 16px;
  }
}
.calculator .calculator__result:hover {
  color: #FDC703;
}
.calculator .calculator__question-count {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.calculator .calculator__question-count .calculator__question-count-label {
  text-transform: uppercase;
}
.calculator .calculator__progress-bar {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  width: 100%;
  height: 15px;
  border-radius: 52px;
  border: 3px solid rgba(165, 81, 52, 0);
  background: rgba(165, 81, 52, 0.2);
  z-index: 9999;
}
.calculator .calculator__progress-bar .calculator__progress {
  background: #FF8500;
  border-radius: 52px;
  height: 9px;
  width: 14.2857142857%;
}
.calculator .calculator__buttons {
  grid-column: 1/2;
  grid-row: 4/5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
}
.calculator .calculator__buttons .calculator__button-prev {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .calculator .calculator__buttons .calculator__button-prev {
    width: 100%;
    box-sizing: border-box;
  }
}
.calculator .calculator__buttons .calculator__button-next {
  background-color: #1C1D1C;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 52px;
  width: 400px;
  border: 1px solid #1C1D1C;
}
.calculator .calculator__buttons .calculator__button-next svg path {
  fill: #ffffff;
}
.calculator .calculator__buttons .calculator__button-next a:focus {
  color: #1C1D1C;
}
.calculator .calculator__buttons .calculator__button-next a:visited {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .calculator .calculator__buttons .calculator__button-next {
    width: 100%;
    box-sizing: border-box;
  }
}
.calculator .calculator__buttons .calculator__button-next:hover {
  background: transparent;
  color: #1C1D1C;
  text-decoration: none;
}
.calculator .calculator__buttons .calculator__button-next:hover svg path {
  fill: #1C1D1C;
}
.calculator .no-result-text {
  text-align: center;
  margin: 30px auto;
  max-width: 75%;
}
.calculator .calculator-button {
  padding: 16px 32px;
  border-radius: 48px;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  color: #1C1D1C;
  background-color: #65C677;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}
.calculator .calculator-button svg {
  transition: 300ms;
}
.calculator .calculator-button:hover svg {
  transform: translateX(100%);
}
.calculator .loader-overlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-size: 18px;
  border-radius: 40px;
  margin: 15px 0;
}
.calculator .spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #ccc;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}
.calculator .error-modal {
  display: none;
  position: absolute;
  width: 50%;
  height: 30%;
  top: 30%;
  right: 50%;
  transform: translate(50%, 30%);
  background-color: #ffffff;
  border-radius: 10px;
  color: #1C1D1C;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .calculator .error-modal {
    width: 100%;
  }
}
.calculator .error-modal__close {
  position: absolute;
  top: 0;
  right: 5px;
}
@media screen and (max-width: 768px) {
  .calculator .error-modal__close {
    top: 5px;
  }
}
.calculator .error-modal__message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.calculator .diet-list {
  justify-content: center;
}
.calculator .diet-list .diet .diet_button {
  z-index: 10;
}
.calculator .diet .diet__title .diet__lead {
  color: #1C1D1C;
}
.calculator .diet:hover .diet__title .title, .calculator .diet:hover .diet__title .diet__lead {
  transition: 300ms ease-in-out;
  color: #ffffff;
}
.calculator .diet:hover .diet__title:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .section .section__calculator .button.button--cta {
    text-align: center;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.calculator {
  display: none;
  animation: slideIn 1s ease forwards;
}
.calculator .diet-list .diet .diet_button {
  width: 60%;
  margin: 0 auto;
}

.diet-list {
  display: flex;
  flex-direction: row;
  gap: 100px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 50px;
}
@media screen and (max-width: 1100px) {
  .diet-list {
    gap: 50px;
  }
}
.diet-list .diet {
  width: calc(25% - 75px);
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
  .diet-list .diet {
    width: calc(33.33334% - 33.33334px);
  }
}
@media screen and (max-width: 768px) {
  .diet-list .diet {
    width: calc(50% - 25px);
  }
}
@media screen and (max-width: 540px) {
  .diet-list .diet {
    width: 100%;
  }
}/*# sourceMappingURL=lovecatering-desktop.css.map */