html,
body {
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #2A2F36;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  overflow-x: hidden;
}

body,
input,
select,
textarea,
button {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
}

ol {
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

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

.text-dark-lite-80 {
  color: rgba(42, 47, 54, 0.8);
}

.text-red {
  color: #D7263D;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bg-orange-lite {
  background: #FFF7EB;
}

.bg-blue-lite {
  background: rgba(0, 191, 166, 0.05);
}

.bg-green {
  background: #729932;
}

.bg-green-100 {
  background: #00BFA6;
}

.bg-green-lite,
.bg-green-lite-hover:hover {
  background: rgba(0, 191, 166, 0.1);
}

.bg-green-main {
  background: rgba(114, 153, 50, 0.1);
}

.bg-yellow-lite,
.bg-yellow-lite-hover:hover {
  background: rgba(245, 166, 35, 0.1);
}

.bg-red-lite,
.bg-red-lite-hover:hover {
  background: rgba(215, 38, 61, 0.1);
}

.bg-dark,
.bg-dark-hover:hover {
  background: #2A2F36;
}

.bg-dark-lite,
.bg-dark-lite-hover:hover {
  background: rgba(42, 47, 54, 0.05);
}

.bg-dark-lite-10,
.bg-dark-lite-10-hover:hover {
  background: rgba(42, 47, 54, 0.1);
}

.bg-green-hover:hover {
  background: #729932;
}

.bg-green-80-hover:hover {
  background: rgba(114, 153, 50, 0.8);
}

.bg-dark-hover:not([disabled]):hover {
  background: rgba(42, 47, 54, 0.8);
}

[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hr {
  border: none;
  border-bottom: 1px solid rgba(42, 47, 54, 0.1);
}

.lh-116 {
  line-height: 116%;
}

.radius-12 {
  border-radius: 12px;
}

.border-dark {
  border-color: #2A2F36;
}

.border-dark-lite {
  border-color: rgba(42, 47, 54, 0.1);
}

.border-dashed {
  border: 1px dashed rgba(42, 47, 54, 0.1);
}

.align-self-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.mt-28 {
  margin-top: 28px;
}

.mt-36 {
  margin-top: 36px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.btn-small {
  padding: 8px 16px;
}

.text-nowrap {
  white-space: nowrap;
}

.auth-form {
  margin: 0 auto;
  max-width: 492px;
}

.form-input {
  border: 1px solid rgba(42, 47, 54, 0.1);
  padding: 10px 16px;
  border-radius: 12px;
  display: block;
  width: 100%;
}
.form-input:focus, .form-input:focus-visible {
  border: 1px solid #2A2F36;
  outline: none;
}
.form-input.error-input {
  border: 1px solid #D7263D;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../images/arrow_drop_down.svg") no-repeat;
  background-position: right 16px center;
}

.checkbox-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox-custom input {
  display: none;
}
.checkbox-custom label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 700;
}
.checkbox-custom .checkbox-box {
  width: 20px;
  height: 20px;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  position: relative;
  background: #fff;
  -webkit-transition: border-color 0.2s;
  -o-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.checkbox-custom input:checked + label .checkbox-box::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 2px;
}
.checkbox-custom.radio-custom .checkbox-box,
.checkbox-custom.radio-custom input:checked + label .checkbox-box::after {
  border-radius: 50%;
}

.input-icon {
  background: transparent;
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 0;
  border: none;
  cursor: pointer;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  font-weight: 500;
}

.table th,
.table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(42, 47, 54, 0.1);
  text-align: left;
  vertical-align: top;
}

.table th {
  white-space: nowrap;
  padding: 8px 12px;
}

.address-table .icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.address-table tr:has(input[type=radio]:checked) {
  background: rgba(114, 153, 50, 0.1);
}

.header .droplink {
  position: relative;
}
.header .droplink .main-lang {
  position: relative;
  z-index: 9;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 8px 12px;
}
.header .droplink .main-lang:hover {
  background: rgba(42, 47, 54, 0.05);
}
.header .droplink .dropmenu {
  width: 100%;
  visibility: hidden;
  position: absolute;
  padding: 8px 12px;
  font-weight: 500;
  border-radius: 2px;
  opacity: 0;
  top: -50px;
  left: 0;
  background: rgb(244, 244, 245);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  border-radius: 12px;
}
.header .droplink.active .main-lang {
  background: rgba(42, 47, 54, 0.1);
}
.header .droplink.active .dropmenu {
  top: 50px;
  visibility: visible;
  opacity: 1;
}
.header .btn {
  padding: 10px 12px;
  line-height: 140%;
  font-size: 14px;
}
.header .btn-cart {
  padding: 10px;
}
.header nav a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.8;
}
.header nav a:hover {
  font-weight: 600;
  opacity: 1;
}

.cart-info-list .cart-info {
  border-bottom: 1px solid rgba(42, 47, 54, 0.1);
  padding: 8px;
}

.quantity-trash {
  position: absolute;
  right: -9px;
  top: -9px;
  background: #D7263D;
  min-width: 18px;
  height: 18px;
  padding: 1px 6px;
  border-radius: 40px;
}

.hero-main {
  overflow: hidden;
}
.hero-main .info {
  padding-top: 120px;
}

.hero-present {
  position: relative;
  height: 100%;
}
.hero-present video {
  position: absolute;
  left: 50%;
  top: 0;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.map {
  border-radius: 24px;
}

.map,
#map {
  width: 100%;
  min-height: 444px;
  height: 100%;
}

.tabs .tab-link {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.tab-content {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  display: none;
}
.tab-content.active {
  opacity: 1;
  max-height: 100%;
  visibility: visible;
  display: block;
}

.tabs-programs .badge {
  padding: 7px 8px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tabs-programs .tabs-head-programs .tab-link {
  padding: 20px 24px;
}
.tabs-programs .tabs-head-programs .tab-link.active-tab:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid;
}
.tabs-programs .tabs-head-programs .tab-link.active-tab, .tabs-programs .tabs-head-programs .tab-link:hover {
  position: relative;
  border-color: transparent;
}
.tabs-programs .tabs-head-programs .tab-link.active-tab.program-slim, .tabs-programs .tabs-head-programs .tab-link:hover.program-slim {
  background: rgba(0, 191, 166, 0.1);
}
.tabs-programs .tabs-head-programs .tab-link.active-tab.program-slim .badge, .tabs-programs .tabs-head-programs .tab-link:hover.program-slim .badge {
  background: #00BFA6;
  color: #fff;
}
.tabs-programs .tabs-head-programs .tab-link.active-tab.program-slim:after, .tabs-programs .tabs-head-programs .tab-link:hover.program-slim:after {
  border-top-color: rgba(0, 191, 166, 0.1);
}
.tabs-programs .tabs-head-programs .tab-link.active-tab.program-balance, .tabs-programs .tabs-head-programs .tab-link:hover.program-balance {
  background: rgba(245, 166, 35, 0.1);
}
.tabs-programs .tabs-head-programs .tab-link.active-tab.program-balance .badge, .tabs-programs .tabs-head-programs .tab-link:hover.program-balance .badge {
  background: #F5A623;
  color: #fff;
}
.tabs-programs .tabs-head-programs .tab-link.active-tab.program-balance:after, .tabs-programs .tabs-head-programs .tab-link:hover.program-balance:after {
  border-top-color: rgba(245, 166, 35, 0.1);
}
.tabs-programs .tabs-head-programs .tab-link.active-tab.program-muscle, .tabs-programs .tabs-head-programs .tab-link:hover.program-muscle {
  background: rgba(215, 38, 61, 0.1);
}
.tabs-programs .tabs-head-programs .tab-link.active-tab.program-muscle .badge, .tabs-programs .tabs-head-programs .tab-link:hover.program-muscle .badge {
  background: #D7263D;
  color: #fff;
}
.tabs-programs .tabs-head-programs .tab-link.active-tab.program-muscle:after, .tabs-programs .tabs-head-programs .tab-link:hover.program-muscle:after {
  border-top-color: rgba(215, 38, 61, 0.1);
}
.tabs-programs .tabs-head-programs .tab-link:hover:not(.active-tab) {
  border-color: rgba(42, 47, 54, 0.1);
}
.tabs-programs .tabs-week .tab-link {
  padding: 11px 12.5px;
  width: 48px;
  height: 48px;
}
.tabs-programs .tabs-week .tab-link.active-tab {
  border-color: #2A2F36;
  font-weight: 600;
}
.tabs-programs .tabs-week .tab-link:hover {
  background: rgba(42, 47, 54, 0.05);
}

.tabs-faq .tab-link {
  padding: 20px 24px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tabs-faq .tab-link:hover:not(.active-tab) {
  background: rgba(42, 47, 54, 0.05);
  border-color: transparent;
}
.tabs-faq .tab-link.active-tab {
  border-color: #2A2F36;
}

.tabs-about-programs .tab-link {
  padding: 19px 24px;
}
.tabs-about-programs .tab-link.active-tab {
  font-weight: 600;
}
.tabs-about-programs .tab-link.active-tab.slim {
  background: rgba(0, 191, 166, 0.1);
  border-color: transparent;
}
.tabs-about-programs .tab-link.active-tab.balance {
  background: rgba(245, 166, 35, 0.1);
}
.tabs-about-programs .tab-link.active-tab.muscle {
  background: rgba(215, 38, 61, 0.1);
  border-color: transparent;
}
.tabs-about-programs .tab-link:hover.slim {
  border-color: transparent;
  background: rgba(0, 191, 166, 0.05);
}
.tabs-about-programs .tab-link:hover.balance {
  background: rgba(245, 166, 35, 0.1);
}
.tabs-about-programs .tab-link:hover.muscle {
  border-color: transparent;
  background: rgba(215, 38, 61, 0.1);
}
.tabs-about-programs .tab-content {
  opacity: 0;
  padding: 0;
  max-height: 0;
}
.tabs-about-programs .tab-content.active {
  opacity: 1;
  padding: 48px;
  max-height: 100%;
}

.tabs-menu .tab-link {
  padding: 19px 24px;
}
.tabs-menu .tab-link.active-tab {
  font-weight: 600;
  border-color: #2A2F36;
}
.tabs-menu .tab-link:hover {
  background: rgba(42, 47, 54, 0.05);
}
.tabs-menu .tab-content {
  opacity: 0;
  padding: 0;
  max-height: 0;
}
.tabs-menu .tab-content.active {
  opacity: 1;
  max-height: 100%;
}

.profile-tabs .tab-link:hover {
  background: rgba(42, 47, 54, 0.05);
}
.profile-tabs .tab-link .active-tab {
  border-color: #2A2F36;
  font-weight: 600;
}

.menu-tags .tag {
  padding: 7px 16px;
}

.reviews-section .reviews-filter li a,
.reviews-section .reviews-filter li span {
  padding: 12px 19px;
}
.reviews-section .reviews-poster {
  height: 192px;
}

.calories-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.checkbox-programs {
  cursor: pointer;
  position: relative;
}
.checkbox-programs input {
  display: none;
}
.checkbox-programs input:checked + span {
  border-color: #2A2F36;
  font-weight: 600;
}
.checkbox-programs span {
  display: block;
  border-radius: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(42, 47, 54, 0.1);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-weight: 500;
}
.checkbox-programs:hover span {
  background: rgba(42, 47, 54, 0.05);
}

.discount-badge {
  position: absolute;
  top: -25%;
  right: -20%;
  padding: 3px 6px;
  border-radius: 40px;
}

.collapse-section .collapse-item {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid rgba(42, 47, 54, 0.1);
}
.collapse-section .collapse-item.collapse-disabled:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.5;
}
.collapse-section .collapse-item:not(.collapse-disabled):hover {
  background: rgba(42, 47, 54, 0.05);
}
.collapse-section .collapse-item .collapse-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}
.collapse-section .collapse-item.active .collapse-answer {
  height: auto;
  margin-top: -12px;
  padding: 0 0 24px;
  visibility: visible;
  opacity: 1;
}
.collapse-section .collapse-item.active .open-icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.footer .item li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.8;
}
.footer .item li a:hover {
  font-weight: 600;
  opacity: 1;
}

.socials li {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.socials li:hover {
  opacity: 1;
}

.speedbar li:not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.speedbar li:not(:last-child) a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.speedbar li:not(:last-child):after {
  content: url(../images/arrow-right-short.svg);
  position: relative;
  margin-left: 2px;
  top: 2px;
}

.dialog-wrapper {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999;
  padding: 12px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dialog-wrapper.active {
  visibility: visible;
  opacity: 1;
}

.dialog-modal {
  position: relative;
  z-index: 1000;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  max-height: 100dvh;
  overflow-y: auto;
}

.profile-nav li {
  padding: 12px 16px;
}

.tooltip {
  position: relative;
  color: #729932;
  font-size: 600;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: -40px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  padding: 7px 12px;
  border-radius: 16px;
  white-space: nowrap;
  font-size: 12px;
  color: #2A2F36;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.tooltip:hover::before {
  content: "";
  position: absolute;
  left: calc(50% - 6px);
  border: 6px solid transparent;
  border-top: 6px solid #fff;
  bottom: 9px;
}
.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  top: -30px;
}

.search-input .search-icon {
  position: absolute;
  top: 10px;
  left: 16px;
}
.search-input input {
  padding-left: 42px;
}

@media (max-width: 1200px) {
  .hero-main .info {
    padding-top: 92px;
  }
}
.production-section .production-item {
  height: 480px;
}
.production-section .production-item:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
}
.production-section .production-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
.production-section .production-item .production-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

@media (max-width: 992px) {
  .faq-section .tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .faq-section .tabs .tab-link {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: calc(33.333% - 16px);
  }
  .header .header-menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    z-index: 9;
    font-size: 20px;
    place-content: center;
    opacity: 0;
    visibility: hidden;
    background: #fff;
  }
  .header.active .header-menu {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    text-align: center;
  }
  .header.active .header-menu .nav {
    background: #fff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tabs-menu .tab-link {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 768px) {
  .mt-80 {
    margin-top: 64px;
  }
  .hero-main .info {
    padding-top: 48px;
  }
  .faq-section .tabs .tab-link {
    width: calc(50% - 16px);
  }
  .production-section .production-item:first-child {
    grid-column-end: 1;
  }
  .menu-made img {
    position: relative;
  }
}
@media (max-width: 580px) {
  .header.active .header-menu {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .header-menu {
    top: 62px;
    height: calc(100vh - 62px);
  }
  .faq-section .tabs {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .faq-section .tabs .tab-link {
    width: 240px;
  }
  .tabs-menu .tab-link {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .menu-poster {
    margin: 0 auto;
  }
  .menu-poster img {
    width: auto;
    height: 192px;
  }
}
@media (max-width: 480px) {
  .hero-present video {
    position: relative;
  }
  .tabs-programs .tabs-head-programs .tab-link,
  .review-box {
    min-width: 280px;
  }
  .tabs-about-programs .tab-content.active {
    padding: 24px;
  }
  .hero-main .info {
    padding-top: 24px;
  }
}