@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", "sans-serif" !important;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

p a,
p a:hover {
  text-decoration: none;
  color: #f7aa3a;
}
p a:hover {
  opacity: 0.76;
}
a,
a:hover {
  text-decoration: none;
  color: #f7aa3a;
}
a{
  transition: all 0.3s ease-in-out;
}
a:hover {
  opacity: 0.76;
}
.main-container {
  display: block;
}

form#form-element input {
  height: 54px;
  padding: 0 8px;
}
.header {
  color: #1a202c;
  background: linear-gradient(230deg, #fb8a86 10%, #fcc15b 30%, #fde173 50%, #fb8a86);
  padding: 60px 0 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  max-width: 100%;
  width: 100%;
}

.main--container {
  height: fit-content;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-inline: 16px;
}

.header__container {
  align-items: center;
}

.header__container--left-content {
  width: calc(50% - 16px);
}

.header__container--top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.header__logo-box {
  height: 45px;
}

.header__logo {
  max-height: 45px;
  padding: 0 2px;
}

.header__badge {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  background-color: #ffffff;
  padding: 0 4px;
}
.img-fluid {
  max-width: 100%;
}
@media (min-width: 770px) {
  .hide-show {
    display: none;
  }
}
.btn-white {
  background-color: #f6edee;
  color: #000000;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 11px 15px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 6px;
  margin-top: 15px;
}
.header__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 51px;
  margin-bottom: 15px;
}
.header__subtext {
  font-size: 28px;
  font-weight: 400;
  line-height: 41px;
}
.header__container--right-content {
  width: calc(50% - 16px);
}

.header__container--right-img {
  width: 100%;
  height: 100%;
  text-align: center;
}

.header__right--img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.middle {
  margin-bottom: 100px;
}

.middle__container--left {
  width: calc(50% - 16px);
  padding-top: 80px;
}

.middle__container--left-content {
  display: flex;
  align-items: start;
  gap: 16px;
}

.middle__container--left-content:not(:last-child) {
  margin-bottom: 24px;
}

.middle__container--svg-box {
  display: inline-block;
}

.middle__container--svg {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.middle__container--left-subtext {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  color: #1a202c;
}

.middle__container--right {
  width: calc(50% - 16px);
  background-color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  margin-top: -75px;
}

.middle__container--form {
  padding: 32px;
}

.form__pagination--container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #ffe7c4;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  height: 80px;
}

.form__pagination--link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.formm {
  color: #f7aa3a;
  border: 2px solid #f7aa3a;
}

input[type="checkbox"]:checked:focus ~ div {
  outline: 3px solid #f7aa3a85;
}
.form__pagination--link-active {
  background: #f7aa3a;
  color: #fff;
}

.checkbox-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 16px;
}

/* checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 392px;
  width: 100%;
  margin-bottom: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  position: absolute;
  top: 4px;
  left: 6px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 2px solid #a0aec0;
}

.checkbox-input:checked + .checkbox-custom {
  background-color: #f7aa3a;
  border-color: #f7aa3a;
}

.checkbox-input:checked + .checkbox-custom::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: white;
  border: 0;
}

.checkbox-text {
  margin-left: 30px;
  font-size: 22px;
  font-weight: 400;
  line-height: 24px;
  color: #1a202c;
}

/* Form */
.form__data-container {
  display: block;
}

.form__data--input-box {
  display: flex;
  gap: 35px;
  margin-bottom: 16px;
}

.form--input-box {
  position: relative;
  max-width: 184px;
}

.form__data--content label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #1a202c;
  margin-bottom: 8px;
}

.form--input-box input {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #1a202c;
  border: 1px solid #e2e8f0;
  transition: all 0.1s ease-in-out;
  appearance: none;
  /* use -moz-appearance for Firefox */
  -moz-appearance: none;
  -webkit-appearance: none;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  max-width: 138px;
  width: 100%;
  padding-inline: 10px;
}

.form--input-box input:focus {
  outline: #f7aa3a;
  border-color: #f7aa3a !important;
}

.form--input-box input::-webkit-outer-spin-button,
.form--input-box input::-webkit-inner-spin-button {
  appearance: none;
  /* use -moz-appearance for Firefox */
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.form--input-span {
  position: absolute;
  top: 0;
  right: 0;
  width: 53px;
  height: 54px;
  font-size: 20;
  line-height: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffe7c4;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  transform: translateX(1px);
}

.error__msg--weight,
.error__msg--targetweight,
.error__msg--targetheight,
.error__msg--select {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 8px;
  color: #e53e3e;
  display: none;
  align-items: center;
  padding-right: 10px;
}

#sport-error,
#motivated-error {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 8px;
  color: #e53e3e;
  align-items: center;
  padding-right: 10px;
  display: none;
}

.img-important {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-right: 5px;
}

.form--input-height {
  width: 100%;
  max-width: 100%;
}

.input__targetheight {
  width: 89%;
  max-width: 89% !important;
}

.form__data--content {
  margin-bottom: 16px;
}

.w-50 {
  width: 50%;
}

.form__data--content-select {
  position: relative;
  margin-bottom: 50px;
}

.form__data--select {
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  width: 100%;
  height: 54px;
  font-size: 1rem;
  font-family: inherit;
  appearance: none;
  border-radius: 6px;
}
.form__choose-btn:focus {
  border: 3px solid hsla(206, 100%, 73.3%, 1) !important;
  border-radius: 10px;
}
.form__data--select:focus-visible {
  z-index: unset;
  border-color: #f7aa3a !important;
  box-shadow: #f7aa3a 0px 0px 0px 1px !important;
  outline: transparent !important;
}
.form__data--select-arrow {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  top: 54px;
  right: 18px;
}
.form__data--btn {
  background-color: #f7aa3a;
  font-size: 20px;
  font-weight: 700;
  line-height: 19px;
  color: #fff;
  border: none;
  width: 248px;
  height: 54px;
  font-family: "Open Sans", "sans-serif";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.form__data--btn:hover {
  background-color: #db6f47;
}
/* Form Choose */
.form__choose-cotainer {
  display: none;
}
.form__choose--pagination {
  display: none;
}
.form__choose-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 16px;
  text-align: center;
}
.form__choose--wrapper {
  max-width: 412px;
  margin: 0 auto 50px auto;
}
.form__choose-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form__choose-btn {
  position: relative;
  width: 125px;
  height: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.form__choose-btn div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 25px;
  transition: 0.5s ease;
}
.form__choose-btn input {
  position: absolute;
  top: 0;
  left: 0;
  width: 125px;
  height: 50px;
  opacity: 0;
  cursor: pointer;
}
input[type="checkbox"]:checked ~ div {
  background-color: #f7aa3a;
  color: #fff;
  border-radius: 6px;
  border-color: #f7aa3a;
}
.form__choose-btn span {
  font-size: 22px;
  font-weight: 400;
  line-height: 24px;
}

.form__choose--footer-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form__choose--back-btn {
  display: inline-block;
  border: none;
  background: none;
  height: 40px;
  padding-inline: 16px;
  font-size: 22px;
  font-family: "Open Sans", "sans-serif";
  font-weight: 600;
  line-height: 19px;
  color: #1a202c;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  cursor: pointer;
}

.form__choose--back-btn:hover {
  background: #ffe7c4;
}

.form__choose--submit-btn {
  display: inline-block;
  padding-inline: 16px;
  background-color: #f7aa3a;
  border: none;
  cursor: pointer;
  height: 54px;
  border-radius: 6px;
  font-family: "Open Sans", "sans-serif";
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 19px;
  transition: all 0.3s ease-in-out;
}

.form__choose--submit-btn:hover {
  background-color: #db6f47;
}

/* Body updated */
.body__updated--container {
  max-width: 1280px;
  width: 100%;
  margin: 80px auto;
  padding-inline: 20px;
  display: none;
}

.body__updated--container-svg {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
}

.body__updated--wrapper {
  padding: 4px;
}

.body__updated--heading {
  max-width: 1024px;
  width: 100%;
  margin: 20px auto;
  font-size: 40px;
  font-weight: 400;
  line-height: 59px;
  color: #1a202c;
  text-align: center;
}

.body__updated--heading-span {
  background: linear-gradient(90deg, #fff, #f7aa3a);
  padding: 2px 7px;
  border-radius: 5px;
}

.weight-target-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 64px 0;
}

.weight-target-status-box {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  overflow: hidden;
  color: #000;
  width: 200px;
}
@media (max-width: 500px) {
  .weight-target-status-box {
    width: 178px;
  }
  .header__subtext{
    font-size: 16px;
    line-height: 24px
  }
}
@media (max-width: 375px) {
  .weight-target-status-box {
    width: 150px;
  }
}
.weight-target-status-text {
  font-size: 14px;
  line-height: 21px;
  color: #000000;
}

.weight-target-status-textbold {
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}

.text-white {
  color: #fff;
}

.weight-target-status-box-orange {
  background: #ffe7c4;
  border: 1px solid #ffe7c4;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  overflow: hidden;
  color: #000000;
  width: 200px;
}
@media (max-width: 500px) {
  .weight-target-status-box-orange {
    width: 100%;
  }
}
.body__update--chart-row {
  display: flex;
  box-shadow: 5px 4px 30px 14px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  max-width: 1248px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}

.body__update--chart-col {
  padding: 40px 0 0 0;
  position: relative;
  max-width: 936px;
  width: 100%;
}

.fill-primary {
  fill: #f7aa3a;
}

.stroke-primary {
  stroke: #f7aa3a;
}

.body__update--col {
  max-width: 312px;
  width: 100%;
  background-color: #1e1e1e;
  padding: 24px;
}

.body__update--col-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #fff;
  margin-bottom: 10px;
}

.body__update--col-subtext {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #fff;
  margin-bottom: 10px;
}

.body__update--chart-col svg {
  max-width: 100%;
  width: 100%;
}

.body__update--chart-date {
  position: absolute;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  background: rgba(0, 0, 0, 0.07);
  padding: 2px 5px;
  border-radius: 5px;
  color: #1e1e1e;
}

.chart-date-left {
  top: 12px;
  left: 6%;
}

.chart-date-right {
  top: 12px;
  right: 6%;
}

.chart-text-bold {
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
  transform: translate(-19px, 5px);
}

.body__update--secondary-heading {
  font-size: 32px;
  font-weight: 400;
  line-height: 43px;
  color: rgba(0, 0, 0, 0.8);
  margin: 20px 0;
  text-align: center;
}

.body__product-ad-row {
  position: relative;
  background: #ffe7c4;
  border: 1px solid #ededed;
  border-radius: 10px;
  text-align: center;
  padding: 32px 0;
  margin-top: 128px;
  max-width: 992px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 40px;
}

.border_remove::before {
  content: "";
  height: 99px;
  border-left: 4px dotted #f7aa3a;
  position: absolute;
  top: -99px;
  z-index: -1;
}

.body__product-ad-col {
  max-width: 606px;
  margin: 0 auto;
}

.body__product-ad-col img {
  max-width: 350px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.body__product-ad-col h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 15px;
}

.body__product-ad-col h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 12px;
}

.body__product-ad-col p {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: #1a202c;
  margin-bottom: 50px;
}

.body__product-ad-mainprice {
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
  margin: 0;
}

.body__product-ad-subprice p {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 23px !important;
  margin: 0 auto 20px auto;
  color: #1a202c;
}

.body__product-ad-p {
  font-size: 16px !important;
  line-height: 24px !important;
}

.btn-mehr {
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
  color: #fff;
  background-color: #f7aa3a;
  margin: 20px auto;
  max-width: 350px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}
.btn-mehr:hover {
  background-color: #db6f47;
  color: #fff;
}

.reviews {
  padding: 20px;
}

.reviews-main-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 45px;
  color: #1a202c;
  text-align: center;
}

.reviews-rating {
  font-size: 60px;
  font-weight: 400;
  line-height: 90px;
  color: #1a202c;
  text-align: center;
}

.reviews__container {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

.reviews__container--wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 20px;
}

.reviews__container--wrapper-left h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}

.reviews__stars {
  display: flex;
  align-items: center;
}

.reviews__stars svg {
  width: 20px;
  height: 20px;
}

.reviews-date,
.reviews-badge {
  display: block;
}

.reviews-date {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  color: #1a202c;
  margin-bottom: 8px;
}

.reviews-badge {
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #22543d;
  background-color: #c6f6d5;
  padding: 0 4px;
  text-align: center;
}

.reviews__container p {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  color: #1a202c;
  margin: 20px 0 0 0;
}

.graph-lines-dotted {
  stroke-width: 1.5px;
  stroke-dasharray: 0 3;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f7aa3a;
  border: 2px solid #f7aa3a;
  color: #fff;
  margin-inline: auto;
  text-align: center;
}

.chakra-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  flex-shrink: 0;
  color: currentcolor;
  transform: translateY(25px);
}

/* Animation */
.pulse {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  transition: all 0.3s ease-in-out;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #ffe7c4;
  }

  to {
    box-shadow: 0 0 0 25px transparent;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #ffe7c4;
  }

  to {
    box-shadow: 0 0 0 25px transparent;
  }
}

/* Loader */
.loader {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  display: none;
}

.loader .leftEye,
.loader .rightEye {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  background: #f7aa3a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: leftEyeAnimation 3s infinite
    cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation: leftEyeAnimation 3s infinite
    cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.loader .rightEye {
  -webkit-animation: rightEyeAnimation 3s infinite
    cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation: rightEyeAnimation 3s infinite
    cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.loader .mouth {
  width: 10vh;
  height: 10vh;
  border-radius: 50%;
  border: solid 1.3vh #f7aa3a;
  border-right: solid 1.3vh rgba(223, 223, 194, 0);
  border-left: solid 1.3vh rgba(223, 223, 194, 0);
  border-bottom: solid 1.3vh rgba(223, 223, 194, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
  transform: translate(-50%, -50%) rotate(360deg);
  -webkit-animation: mouthAnimation 3s infinite
    cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation: mouthAnimation 3s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@-webkit-keyframes mouthAnimation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateX(180deg);
    transform: translate(-50%, -50%) rotateX(180deg);
  }

  10% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
    transform: translate(-50%, -50%) rotateZ(360deg);
  }

  40% {
    -webkit-transform: translate(-50%, -50%) rotateZ(320deg);
    transform: translate(-50%, -50%) rotateZ(320deg);
  }

  60% {
    -webkit-transform: translate(-50%, -50%) rotateZ(900deg);
    transform: translate(-50%, -50%) rotateZ(900deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(900deg);
    transform: translate(-50%, -50%) rotateZ(900deg);
  }
}

@keyframes mouthAnimation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateX(180deg);
    transform: translate(-50%, -50%) rotateX(180deg);
  }

  10% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
    transform: translate(-50%, -50%) rotateZ(360deg);
  }

  40% {
    -webkit-transform: translate(-50%, -50%) rotateZ(320deg);
    transform: translate(-50%, -50%) rotateZ(320deg);
  }

  60% {
    -webkit-transform: translate(-50%, -50%) rotateZ(900deg);
    transform: translate(-50%, -50%) rotateZ(900deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(900deg);
    transform: translate(-50%, -50%) rotateZ(900deg);
  }
}

@-webkit-keyframes leftEyeAnimation {
  0% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  50% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  60% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
  }

  90% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
  }

  100% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@keyframes leftEyeAnimation {
  0% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  50% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  60% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
  }

  90% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
  }

  100% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@-webkit-keyframes rightEyeAnimation {
  0% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  50% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  60% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  70% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  75% {
    width: 2vh;
    height: 2px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  80% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  90% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  100% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@keyframes rightEyeAnimation {
  0% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  50% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  60% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  70% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  75% {
    width: 2vh;
    height: 2px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  80% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  90% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  100% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

/* Footer */
.footer__container {
  max-width: 1140px;
  width: 100%;
  margin: 48px auto 0 auto;
  padding-inline: 16px;
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 64px 0;
  border-top: 4px solid #f7aa3a;
}

.footer .footer-top .h3,
.footer .footer-top h3 {
  font-size: 12.8px;
  line-height: 15px;
  text-transform: uppercase;
  color: #f7aa3a;
}

.footer .footer-top .footer-menu-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__logo--box {
  height: 45px;
  margin-bottom: 20px;
}

.footer__logo {
  max-height: 45px;
}

.body_link a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out 0s;
}

.body_link a:focus,
.body_link a:hover {
  opacity: 0.76;
  color: #f7aa3a;
}

.footer .footer-top .footer-menu-links ul li a {
  display: block;
  font-size: 17px;
  line-height: 40px;
  font-weight: 500;
  text-decoration: none;
  color: #1a202c;
  transition: opacity 0.2s ease-in-out 0s;
}

.footer .footer-top .footer-menu-links ul li a:focus,
.footer .footer-top .footer-menu-links ul li a:hover {
  opacity: 0.76;
  color: #f7aa3a;
}

.footer .footer-top .footer-menu-links ul li.current a {
  font-weight: 700;
}

.footer .footer-bottom {
  padding: 16px;
  border-top: 1px solid #f7aa3a;
  text-align: center;
}

.footer .footer-bottom .copy-rights p {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1a202c;
}

.contact-container {
  max-width: 550px;
  width: 100%;
}

.contact-container p {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  color: #1a202c;
}

/* Navbar */
.navbar {
  background: linear-gradient(45deg, #273c88, #ee2498 32%, #ef8f38);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 16px;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.navbar__img--box a {
  padding: 2px;
}

.navbar__img--box {
  width: 52px;
  height: 52px;
  padding-block: 2px;
}

.navbar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar__link {
  font-size: 17.6px;
  font-weight: 500;
  line-height: 26.4px;
  position: relative;
  color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.navbar__link::before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 0;
  transition: height 0.2s ease-in-out 0s;
}

.navbar__link:hover::before {
  height: 4px;
}
.nav_menuu .nav-holder.current a {
  font-weight: 700;
}

/* Imprint */
.imprint {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 16px;
}

.imprint__header--main-title {
  font-size: 52.8px;
  font-weight: 500;
  line-height: 63.36px;
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
  padding: 48px 0;
}

.imprint__content--title h5 {
  font-size: 22px;
  font-weight: 500;
  line-height: 26.4px;
  margin: 0 0 8px 0;
  color: rgba(0, 0, 0, 0.8);
}

.imprint__content--subtext p {
  font-size: 17.6px;
  font-weight: 400;
  line-height: 26.4px;
  margin: 0 0 16px 0;
  color: rgba(0, 0, 0, 0.8);
}

.imprint__content--subtext-link {
  color: #e74b55;
  transition: all 0.3s ease-in-out;
}

.imprint__content--subtext-link:hover {
  color: #b93c44;
}

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

/* Privacy */
.page__container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Page */
.page__main--title {
  padding: 48px 0;
}

.page__main--title h1 {
  font-size: 52.8px;
  font-weight: 500;
  line-height: 63.36px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 8px;
}

.page__text--content h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 52.8px;
  color: rgba(0, 0, 0, 0.8);
}

.page__text--content ol,
.page__text--content p {
  font-size: 17.6px;
  font-weight: 400;
  line-height: 26.4px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 16px;
}

.page__text--content ol {
  padding-left: 32px;
}

/*===============HAMBERG MENU IS HERE================*/
.hamburger {
  align-items: center;
  display: flex;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  padding: 0.5rem;
  z-index: 9999999;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 22px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  width: 40px;
  height: 3px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner:after,
.hamburger-inner:before {
  content: "";
  display: block;
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    opacity 0.1s linear;
}

.hamburger .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is-active .hamburger-inner:after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s linear 0.22s;
}

.hamburger.is-active .hamburger-inner:before {
  top: 0;
  transform: rotate(-90deg);
}
.nav-brand {
  height: 45px;
}
.nav-brand img{
  max-height: 45px;
}
.fixed_l_icon {
  position: fixed;
  width: calc(100% - 30px);
  left: 15px;
  top: 50px;
}
/*===============HAMBERG MENU IS END HERE================*/

/* Media Queries */
@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }
  .nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hamburger.hamburger--collapse {
    display: block;
  }
}
@media screen and (max-width: 1250px) {
  .body__update--chart-row {
    flex-wrap: wrap;
  }
  .body__update--chart-col {
    max-width: 100%;
  }
  .body__update--col {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .imprint__header--main-title {
    font-size: 50px;
    line-height: 61px;
  }

  .imprint__content--title h5 {
    font-size: 21px;
    line-height: 25px;
  }

  .imprint__content--subtext p {
    font-size: 17px;
    line-height: 26px;
  }
}

@media screen and (max-width: 820px) {
  .header {
    padding: 36px 0;
  }

  .main--container {
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .header__container--left-content {
    width: 100%;
  }

  .header__container--right-content {
    width: 100%;
  }

  .middle {
    margin-bottom: 20px;
  }

  .middle__container--left {
    width: 100%;
    padding-top: 20px;
  }

  .middle__container--right {
    width: 100%;
    margin-top: 0;
    box-shadow: 0 0 20px -2px #d6d6d6 !important;
  }

  .form--input-box {
    max-width: 100%;
  }

  .form--input-box input {
    max-width: 100%;
  }

  .input__targetheight {
    max-width: 94% !important;
  }

  .footer .footer-top {
    flex-wrap: wrap;
  }

  .contact-container {
    max-width: 100%;
  }

  .footer-menu-links {
    width: 100%;
  }

  .imprint__header--main-title {
    font-size: 46px;
    line-height: 55px;
    padding: 40px 0;
  }

  .page__main--title h1 {
    font-size: 46px;
    line-height: 55px;
  }

  .page__text--content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}

@media screen and (max-width: 767px) {
  .nav-header {
    padding: 12px 0 !important;
  }
  .body__updated--heading {
    font-size: 26px;
    line-height: 42px;
  }
  .mobile_show {
    position: fixed;
  }
  .weight-target-status {
    margin: 30px 0;
    flex-wrap: wrap;
  }

  .btn-mehr {
    max-width: 300px;
  }

  .imprint__header--main-title {
    font-size: 33px;
    line-height: 39px;
    padding: 30px 0;
  }

  .page__main--title {
    padding: 30px 0;
  }
  .nav-wrapper {
    display: flex;
    flex-direction: row;
  }
  .nav-wrapper_inner {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow: auto;
    background: #f7aa3a;
    z-index: 1;
    width: 100%;
    display: none;
  }
  .mobile_show {
    display: block;
  }

  .nav_menuu {
    display: block;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding-top: 120px;
    text-align: center;
    justify-content: center !important;
  }
  .nav-brand {
    position: relative;
    z-index: 10;
  }
  .nav-holder {
    margin-bottom: 20px;
    font-size: 28px;
  }
}

@media screen and (max-width: 576px) {
  .navbar__link--hidden {
    display: none;
  }
  .nav-holder a {
    font-size: 18px;
  }

  .navbar__link {
    order: 2;
  }

  .navbar__img--box {
    order: 1;
  }

  .page__main--title h1 {
    font-size: 33px;
    line-height: 40px;
  }

  .page__text--content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .form__choose-btn input {
    width: 94px;
  }

  .body__updated--heading {
    font-size: 20px;
    line-height: 34px;
  }
}

@media screen and (max-width: 440px) {
  .page__main--title h1 {
    font-size: 28px;
    line-height: 30px;
  }

  .page__text--content h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

@media screen and (max-width: 380px) {
  .middle__container--form {
    padding: 20px;
  }
}
.more_packages {
  text-decoration: none;
}

.nav-header {
  position: relative;
  z-index: 9999;
  background: #f7aa3a;
  background: linear-gradient(230deg, #fb8a86 10%, #fcc15b 30%, #fde173 50%, #fb8a86);
  padding: 20px 0;
  width: 100%;
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18.4px;
  font-weight: 600;
  flex-direction: row !important;
}
.nav_menuu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0 !important;
}

ul.nav_menuu {
  list-style-type: none;
}
.nav-logo {
  width: 100%;
  max-width: 60px;
}
.nav-holder a {
  color: #000;
  text-decoration: none;
  padding: 0px;
}
.nav-holder a:hover {
  color: #2d2a2a;
  text-decoration: none;
}
.nav-holder {
  margin: 5px 27px;
}
.nav-holder.last {
  margin-right: 0px;
}
.hamburger.hamburger--collapse {
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .nav-holder {
    margin: 5px 10px;
    font-size: 16px;
  }
}

/*----------*/
.page-header {
  background: #f7f7f7;
}
.selects .selector-wrapper .locale-selector {
  margin: 0px 4px !important;
}

.accordion-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.accordion-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-body {
  ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}
.neos-contentcollection > .accordion-item:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.neos-contentcollection > .accordion-item:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.neos-contentcollection > .accordion-item > .accordion-header {
  border-radius: 0;
  margin-bottom: -1px;
}
.neos-contentcollection > .accordion-item > .accordion-header button {
  width: 100% !important;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: left;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}

.product-list {
  list-style: none;
  padding: 0 1rem;
}
.product-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  margin-bottom: 8px;
}
.product-list li svg {
  width: 1rem;
  height: 1rem;
  color: #f7aa3a;
  flex-shrink: 0;
  transform: translateY(0px) !important;
}
@media (max-width: 576px) {
  .product-list li {
    gap: 6px;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .product-list li svg {
    width: 12px;
    height: 12px;
  }
}
