@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 auto !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", serif;
}

#site-header,
.page-header,
#site-footer {
  display: none;
}

.brand_imgs_inner {
  max-height: 100px;
}

img {
  height: 100%;
  width: auto;
}

.quiz-wrapper {
  background: #FFFFFF;
}

.quiz_container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .quiz_container {
    padding-inline: 16px;
  }
}

.pics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 64px;
  align-items: center;
  justify-items: center;
  background: rgba(47, 146, 100, 0.2);
  border-radius: 20px;
  padding: 38px 90px;
}

.pics img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.pics img:nth-child(1),
.pics img:nth-child(2),
.pics img:nth-child(3) {
  grid-row: 1;
}

.pics img:nth-child(2) {
  height: 55px;
}

.pics img:nth-child(4) {
  justify-self: start;
  grid-column: span 2;
  grid-row: 2;
}

.pics img:nth-child(5) {
  height: 51px;
  grid-column: 3;
  grid-row: 2;
}

.pics img:nth-child(6) {
  width: 171px;
  justify-self: start;
  height: 40px;
  grid-column: span 2;
  grid-row: 3;
}

.pics img:nth-child(7) {
  grid-column: 3;
  grid-row: 3;
}

.quiz_header {
  background: linear-gradient(178.53deg, #36A26F 2.71%, #2A6147 103.64%);
  border-radius: 0 0 20px 20px;
}

.quiz_header .content {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quiz_header .content .header_logo svg {
  width: 140px;
  height: 31px;
}

.header_logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 32px 0px 0px;
  gap: 10px;
  margin: 0 auto;
  width: 145px;
  height: 35px;
}

.header_logo img {
  margin-top: 8px;
  width: 113px;
  height: 35px;
}

@media screen and (max-width: 1024px) {
  .header_logo img {
    margin-top: 0;
  }
}

.step_counter {
  padding-top: 12px;
  width: 34px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  text-align: right;
  color: #FFFFFF;
  margin-inline: 0 !important;
}

@media screen and (max-width: 1024px) {
  .step_counter {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .step_counter {
    font-size: 14px;
  }
}

.widget_progress {
  backdrop-filter: blur(8px);
  border-radius: 12px;
}

/*.quiz_progress_bar {*/
/*    background: #FFFFFF;*/
/*    border-radius: 6px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding: 0px;*/
/*    gap: 10px;*/
/*    isolation: isolate;*/
/*    margin: 0 auto;*/
/*}*/
.quiz_progress_bar {
  position: relative;
}

.quiz_progress_bar .progress {
  margin: 0;
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  width: 12.5%;
  transition: width 0.4s ease;
}

.quiz_progress_bar .progress::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  z-index: 1;
}

.quiz_progress_bar .progress img,
.quiz_progress_bar .progress figure {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  margin: 0;
}

.quiz_progress_bar .progress img {
  border-radius: 50%;
  width: 24px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.quiz_progress_bar .progress img:hover {
  transform: translateY(-50%) scale(1.1);
}

.quiz_progress_bar .progress img:active {
  transform: translateY(-50%) scale(0.95);
}

.quiz_progress_bar::before {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  z-index: 0;
}

.quiz_sec {
  padding: 64px 0px;
  overflow: hidden;
}

.questionary_wrap,
.questionary_wrap_data {
  h2 {
    margin-bottom: 16px !important;
  }
}

@media screen and (max-width: 1024px) {

  .questionary_wrap,
  .questionary_wrap_data {
    padding-inline: 56px;
  }
}

@media screen and (max-width: 767px) {

  .questionary_wrap,
  .questionary_wrap_data {
    padding-inline: 0px;
  }
}

.step_6 .questionary_wrap_data {
  h2 {
    margin-bottom: 32px !important;
  }
}

.quiz_head {
  text-align: center;
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.017em;
  color: #000000;
}

.step_8 .quiz_container {
  padding-inline: 56px;
}

@media screen and (max-width: 767px) {
  .step_8 .quiz_container {
    padding-inline: 16px;
  }
}

.questionary_wrap .quiz_head {
  text-align: center;
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.017em;
  color: #000000;
}

.questionary_wrap_data .quiz_head {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.017em;
  color: #000000;
  margin-bottom: 16px !important;
}

.questionary_wrap_data p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 32px !important;

  &.message {
    color: #dc2626;
  }
}

.questionary_wrap .dec {
  text-align: center;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.avocado_bg {
  position: absolute;
  height: 336px;
  right: -230px;
  top: -90px;
  background: url(../images/avocado_background.png);
  filter: drop-shadow(0px 4px 4px rgba(70, 92, 54, 0.15));
}

.quiz_sec .quiz_step:not(.active) {
  display: none;
}

.quiz_sec .mb_24 {
  margin-bottom: 24px !important;
}

.quiz_sec .mt_12 {
  margin-top: 16px !important;
}

.quiz_sec .btn_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
}

.quiz_sec .btn_container .btn {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
  padding: 16px;
  gap: 32px;
  background: rgba(47, 146, 100, 0.1);
  border: 1px solid rgba(47, 146, 100, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .quiz_sec .btn_container .btn {
    text-align: left;
  }
}

.quiz_sec .btn_container .btn span {
  font-family: 'Roboto Condensed';
  font-weight: 400;
  font-size: 24px;
  color: #141936;
}

.quiz_sec .btn_container .btn:hover {
  /*background-color: #649e4c;*/
  background-color: #2F9264;
  border-color: white;
  color: white;
}

.quiz_sec .btn_container .btn .img_txt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quiz_sec .btn_container .btn .img_txt img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/**/
.quiz_data_text {
  margin-top: 32px;
  margin-bottom: 48px;
  text-align: center;
  justify-items: center;
}

.quiz_data_text p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  color: #141936;
  justify-content: center;
}

.quiz_data_text img {
  width: 100%;
  margin: 0px auto;
  max-width: 153px;
  padding-top: 0.25rem;
}

.quiz_step_flex {
  gap: 24px;
}

@media screen and (max-width: 1024px) {
  .quiz_step_flex {
    padding-inline: 56px;
  }
}

@media screen and (max-width: 767px) {
  .quiz_step_flex {
    padding-inline: 0px;
  }
}

.quiz_step_review {
  padding: 20px;
  background: rgba(47, 146, 100, 0.2);
  border-radius: 20px;
}

.review_details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  gap: 4px;
}

.review_details img {
  width: 136px;
  height: 32px;
}

.review_details p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.quiz_step_review h4 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  margin-bottom: 6px !important;
}

.quiz_step_review p {
  font-weight: 400;
  color: #141936;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5rem;
}

.review_user .user_profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.user_profile img {
  width: 64px;
  height: 64px;
}

.user_info {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 26px;
}

.user_info span:nth-child(1) {
  font-weight: 700;
  font-family: 'Inter';
}

.user_info span:nth-child(2) {
  font-weight: 400;
  font-family: 'Inter';
}

.review_user .verified_customer {
  justify-content: inherit;
  gap: 4px;
}

.quiz_step_review svg {
  display: block;
}

.review_user .verified_customer h6 {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.review_user .verified_customer svg {
  width: 18px;
  height: 18px;
}

/*step 4*/
.nutrim_main {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .nutrim_main {
    padding-inline: 56px;
  }
}

@media screen and (max-width: 767px) {
  .nutrim_main {
    padding-inline: 0px;
  }
}

.nutrim_left_column,
.nutrim_right_column {
  width: 100%;
  position: relative;
}

.nutrim_wrap_text {
  margin-bottom: 24px;
}

.nutrim_button {
  cursor: pointer;
  margin-top: 32px;
  margin-bottom: 32px;
  justify-self: center;
  order: 1;
  text-decoration: none;
  color: black
}

.nutrim_wrap_text h2 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.017em;
  color: #000000;
}

.nutrim_wrap_text p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

.nutrim_wrap_pic {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 10px;
  isolation: isolate;
  position: relative;

  img {
    width: 100%;
    height: auto;
  }
}

.nutrim_wrap_pic_caption {
  text-align: center;
  box-sizing: border-box;
  align-items: center;
  padding: 12px;
  position: absolute;
  height: 78px;
  left: 0px;
  right: 0px;
  top: 0px;
  background: rgba(255, 224, 224, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 0px 0px 16px 16px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.017em;
  color: #152D21;
  width: 100%;
}

.nutrim_button {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  width: 358px;
  min-width: 64px;
  height: 48px;
  min-height: 48px;
  background: linear-gradient(180deg, #FFE100 0%, #FFC800 100%);
  box-shadow: 0px 2px 8px rgba(39, 39, 39, 0.2);
  border-radius: 8px;
  border: none;
}

@media screen and (max-width: 767px) {
  .nutrim_button {
    width: 100%;
  }
}

.review_last_button {
  align-self: center;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  width: 358px;
  min-width: 64px;
  height: 48px;
  min-height: 48px;
  background: linear-gradient(180deg, #FFE100 0%, #FFC800 100%);
  box-shadow: 0px 2px 8px rgba(39, 39, 39, 0.2);
  border-radius: 8px;
  border: none;
  margin-top: 48px;
  margin-inline: auto;
  text-decoration: none;
  color: black;
}

@media screen and (max-width: 767px) {
  .data_btn {
    margin-top: 16px;
  }

  .review_last_button {
    width: 100%;
  }
}

.data_button {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  min-width: 64px;
  height: 48px;
  min-height: 48px;
  background: linear-gradient(180deg, #FFE100 0%, #FFC800 100%);
  box-shadow: 0px 2px 8px rgba(39, 39, 39, 0.2);
  border-radius: 8px;
  border: none;
}

.nutrim_left_column h3 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 27px;
  line-height: 40px;
  letter-spacing: -0.017em;
  color: #000000;
  margin-bottom: 24px !important;
}

.nutrim_left_column p {
  font-weight: 400;
  color: #141936;
  margin-bottom: 0px;
  padding-bottom: 32px;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.nutrim_btn {
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0px auto;
  color: black;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  background-color: white;
  padding: 16px 48px;
  border-radius: 0.25rem;
  cursor: pointer;
}

.nutrim_btn svg path {
  fill: black;
}

.nutrim_left_box {
  padding: 12px;
  border-radius: 4px;
  background-color: #f6eeff;
  display: flex;
  margin-top: 24px;
  gap: 12px;
}

.nutrim_left_box_img {
  width: 40px;
}

.nutrim_left_box_img img {
  max-width: 40px;
}

.nutrim_left_box_text p {
  padding-bottom: 0px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.nutrim_btn:hover svg path {
  fill: white !important;
  transition: 0.3s;
}

.nutrim_btn:hover {
  background-color: #2F9264;
  border-color: white;
  color: white;
}

.nutrim_right_column {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 8px;
  gap: 10px;
  background: #FFFFFF;
  border: 2px solid #BDE9D4;
  border-radius: 20px;
}


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

.nutrim_right_img_text {
  background-color: #ffffff99;
  text-align: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: absolute;
  bottom: 20px;
  padding: 8px;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
}

.step_btn {
  cursor: pointer;
}

.nutrim_right_img_text h6 {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #141936;
}

.quiz_sec {
  position: relative;
}

.nutrim_right_img_text p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #2F9264;
  font-weight: 700;
}

.nutrim_left_img {
  position: absolute;
  bottom: 1.25rem;
  left: -10rem;
  max-width: 468px !important;
  width: 100%;
}

.nutrim_right_img {
  position: absolute;
  top: 0.75rem;
  right: -7rem;
  max-width: 352px !important;
  width: 100%;
}

/*step 4*/
/*step 5*/
.toggle_main_div {
  width: 100%;
  padding: 0px 150px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .toggle_main_div {
    padding: 0px 0px;
  }
}

.toggle-buttons {
  height: 64px;
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 0.125rem;
  background-color: #fff;
}

.toggle-buttons .radio_btn_field:nth-child(1) {
  border-radius: 11px 0px 0px 11px;
}

.toggle-buttons .radio_btn_field:nth-child(2) {
  border-radius: 0px 11px 11px 0px;
}

.toggle-buttons .radio_btn_field:nth-child(1) label {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  align-items: center;
  text-align: center;
  color: #01032F;
  border-radius: 11px 0px 0px 11px;
}

.toggle-buttons .radio_btn_field:nth-child(2) label {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  align-items: center;
  text-align: center;
  color: #01032F;
  border-radius: 0px 11px 11px 0px;
}

.text_small {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.toggle-buttons input[type="radio"] {
  height: 100%;
  appearance: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  cursor: pointer;
}

.toggle-buttons label {
  align-content: center;
  height: 100%;
  padding: 6px 8px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  color: #000;
  font-weight: 400;
  display: block;
  transition: all 0.3s ease;
}

.toggle-buttons input[type="radio"]:checked+label {
  height: 100%;
  background: linear-gradient(178.04deg, #145737 4.36%, #2E6B4E 23.89%, #2F9264 97.17%);
  color: #fff;
  /* White text */
  font-weight: 600;
}

.caps_size {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.caps_size .inner_caps_size {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 14px;
  background: #FFFFFF;
  border: 1px solid #BDE9D4;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  width: 100%;
}

.caps_size .nutrim_btn {
  width: 100%;
  justify-content: center;
}

.size_input_field {
  width: 100%;
  padding-bottom: 0.5rem;
  height: 58px;
  background-color: #fff;
  border: 1px solid #fff;
  position: relative;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.size_input_field label {
  cursor: text;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #343558;
}

.size_input_field input {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  outline: 2px solid transparent;
  outline-offset: 2px;
  color: #141936;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  border: 0px;
  width: 100%;
  appearance: none;
}

.size_input_field span {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
  align-items: center;
  color: #01032F;
}

.size_input_field:not(.focused) label {
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.size_input_field span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  right: 10px;
}

:root {
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-inset: inset;
  /* Define default value if required */
}

.size_input_field:focus-within {
  --tw-ring-opacity: 1;
  /*border-color: #3b82f6 !important;*/
  /*--tw-ring-color: rgba(59, 130, 246, 1); !* No !important in variables *!*/
  /*box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color),*/
  /*var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color),*/
  /*0 0 #0000 !important; !* Apply !important here *!*/
}

.size_input_field label {
  position: absolute;
  top: 0.2rem;
  transition: all 0.15s linear;
  display: inline-flex;
  color: #141936;
  font-size: 12px;
}

.required_field {
  border-color: #f87171;
}

.required_field label {
  font-size: 12px !important;
  top: 0.5rem !important;
  transform: inherit !important;
}

.radio_btn_field {
  background: rgba(47, 146, 100, 0.2);
  height: 100%;
  position: relative;
  width: 50%;
  cursor: pointer;
}

.message {
  color: #dc2626;
  padding-top: 0.5rem;
  display: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*step 5*/
/*step 7*/
.month_range,
.main_lose_weight .btn_dflex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 1.5rem;
}

.month_range p {
  color: #5e677d;
}

.nutrim_text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  gap: 21px;
  width: 248.15px;
  height: 26px;
  align-self: center;
}

.nutrim_text span {
  display: block;
}

.nutrim_text,
.nutrim_text p {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #152D21;
}

.nutrim_text p {
  gap: 0.5rem;
  margin: 0 !important;
}

.permanent_results_graph .nutrim_right_column {
  background-color: #fff;
}

.permanent_results_graph .nutrim_right_column h3 {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.017em;
  color: #152D21;
}

.permanent_results_graph .nutrim_right_column svg {
  width: 100%;
}

.brand_imgs_upper {
  padding: 40px 0px;
}

.brand_imgs_upper h2 {
  text-align: center;
  margin-bottom: 16px !important;
  font-size: 16px;
  font-weight: 600;
  color: rgb(20, 25, 54);
}

.brand_imgs_inner {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
}

.quiz_inner_step_7 {
  position: relative;
  /* padding: 40px 0px 0px; */
}

/*step 7*/
/*step 8*/
.main_lose_weight {
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
}

img {
  width: auto;
}

.main_lose_weight button {
  flex-direction: column;
  gap: 1rem !important;
  border: 2px solid #fff !important;
}

.main_lose_weight button:hover {
  background-color: #2F9264 !important;
  border-color: white !important;
}

.main_lose_weight .btn_dflex {
  padding-bottom: 0px !important;
  width: 100%;
}

/*step 8*/

/**/
.progress_bar_text {
  padding-top: 20px;
}

.active_progress_bar {
  position: relative;
  height: 4px;
  overflow: hidden;
  background: #2F9264;
  border-radius: 6px;
  flex: none;
  transition: width 0.99s linear;
  width: 0;
}

.animation_progress_bar {
  height: 4px;
  transition: width 0.99s linear;
  background: #BDE9D4;
  border-radius: 4px;
}

.checklist {
  display: flex;
  flex-direction: column;
  align-items: normal;
  padding: 0px;
  gap: 16px;
  padding-top: 20px;
}

.checklist li {
  display: flex;
  align-items: center;
  padding: 0px;
  gap: 12px;
  list-style: none;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  color: #000000;
}

.checklist li span {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2px 5px;
  gap: 10px;
  isolation: isolate;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #BEE4D2 100%) padding-box,
    linear-gradient(180deg, #46B27E 0%, #FFFFFF 100%) border-box;
  border: 1px solid transparent;
  border-radius: 100px;
}

.checklist li.completed span {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2px 5px;
  gap: 10px;
  isolation: isolate;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(180deg, #12603B 0%, #46B27E 100%) padding-box,
    linear-gradient(180deg, #46B27E 0%, #12603B 100%) border-box;
  border: 1px solid transparent;
  border-radius: 100px;
}

.checklist li span svg {
  width: 11px;
  height: 12px;
}

.checklist li span svg path {
  fill: #152D21;
  opacity: 0.6;
}

.checklist li.completed span svg path {
  fill: #fff;
  opacity: 1;
}

/**/

/*resut page start*/


.left_side p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #141936;

}

.left_side .graph_next_weight {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.017em;
  color: #E20F0F;
}

.date_achieve {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.017em;
  color: #000000;
}

.right_side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  background-color: white;
  border-radius: 4px;
}

.left_side h2 {}

.left_side h3 .weight_achieve {
  color: black;
}

.left_side h3 {
  font-size: 3.3rem;
  line-height: 4rem;
  font-weight: 600;
  color: white;
  padding: 0.5rem 0px;
}

.left_side p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgb(20, 25, 54);
}

.background_graph {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 16px;
  gap: 10px;
  background: rgba(47, 146, 100, 0.1);
  border: 2px solid #BDE9D4;
  border-radius: 20px;
}

.first_data_graph {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 60px;
}

.svg_resut_one svg {
  width: 100%;
}

.current_data_kg {
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
}

.current_data_kg p {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #152D21;
}

.current_date,
.achive_data_kg .achieve_date {
  font-family: 'Inter' !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 26px !important;
  color: #152D21 !important;
}

.achive_data_kg p {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #152D21;
}

.current_data_kg h4 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #152D21;
}


.achive_data_kg h4 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #2F9264;
}

.arrow_weight {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
  color: #FFFFFF;
}

.svg_resut_one {
  width: 100%;
  padding-top: 1.5rem;
}

.achive_data_kg {
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}

.days_count {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #152D21;
  width: 100%;
  text-align: center;
}

.second_result {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}

.sec_background {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
  gap: 6px;
  background: rgba(47, 146, 100, 0.2);
  border: 2px solid #BDE9D4;
  border-radius: 20px;
}

.sec_background_third {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 6px;
  background: rgba(47, 146, 100, 0.2);
  border: 2px solid #BDE9D4;
  border-radius: 20px;
}

.sec_background_third {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec_resut_left,
.sec_resut_right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 16px;
}

.sec_resut_left h2,
.sec_resut_right h2 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #141936;
}

.sec_resut_right h3,
.sec_resut_left h3 {
  font-family: 'Roboto Condensed';
  font-weight: 800;
  font-size: 54px;
  line-height: 62px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #333333;
}

.sec_resut_right p,
.sec_resut_left p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #141936;
}

.minute_sec {
  display: flex;
  gap: 10px;
  justify-content: end;
}

.minute_sec div {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
}

.third_result_div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  padding-top: 1.5rem;
  gap: 0.5rem;
}

.inner_result_third {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 16px;
}

.inner_result_third img {
  width: 40px;
}

.inner_result_third h2 {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #141936;
}

.alert_data p {
  gap: 4px;
  align-items: center;
  display: flex;
  font-family: 'Inter' !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 26px !important;
  text-align: center !important;
  color: #333333 !important;
}

.alert_data span {
  font-family: 'Roboto Condensed';
  font-weight: 800;
  font-size: 54px;
  line-height: 62px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #333333;
}

.gross_cm_data,
.weight_kg {
  font-family: 'Roboto Condensed';
  font-weight: 800;
  font-size: 54px;
  line-height: 62px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #333333;
}

.fourth_result_div {
  margin-top: 24px;
  align-items: center;
  background-color: white;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fourth_right_div {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 12px 12px 16px 8px;
  border: 2px solid #BDE9D4;
  border-radius: 20px;
}

.fourth_right_div_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
}

.ersten_monat {
  align-self: self-end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0px;
}

.fourth_result_div h5 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.017em;
  color: #141936;
}

.fourth_right_div svg {
  width: 100%;
}

.ersten_monat {
  text-align: right;
}

.ersten_monat span {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  text-align: right;
  color: #2F9264;
}

.ersten_monat p {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: right;
  color: #152D21;
}

.second_result h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  color: #141936;
}

.second_result h3 {
  font-weight: 700;
  padding-bottom: 30px;
  padding-top: 30px;
  font-size: 4rem;
  color: #141936;
  text-align: center;
  line-height: 4.5rem;
}

.second_result .rounded-lg {
  padding: 4px 8px;
  gap: 11px;
  background: rgba(251, 251, 251, 0.9);
  border-radius: 8px;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  display: flex;
  align-items: center;
  color: #F23C3C;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  display: flex;
  align-items: center;
}

.progress_color,
.progress_text {
  width: 100%;
  display: grid;
  position: relative;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.progress_text {
  gap: 0.25rem;
}

.active_progress_color {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  background-color: transparent;
  position: absolute;
  top: -6px;
  left: 10%;
}

.active_progress_color div {
  height: 52px;
  border-radius: 9999px;
  width: 10px;
  background-color: #000;
  border: 3px solid #d6e9e1;
}

.progress_text p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 14px !important;
  line-height: 26px;
  text-align: center;
  color: #152D21;
  color: #141936;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.progress_text p.active_text {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 14px !important;
  line-height: 26px;
  text-align: center;
  color: #152D21;
}

.progress_text .text_center {
  text-align: center;
}

.progress_text .text_right {
  text-align: right;
}

/*resut page end*/

/*upper header start*/

.upper_header {
  /* background-color: #145737; */
  text-align: center;
  padding: 28px 0px;
}

@media screen and (max-width: 767px) {
  .upper_header {
    padding-block: 8px;
  }

}

.inter {
  font-family: Inter;
}

.sibling_container {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .sibling_container {
    /* flex-direction: column; */
    gap: 4px;
    display: grid;
    grid-template-columns: 112px 1fr;
    column-gap: 14px;
  }
}

.sibling_container figure {
  width: 112px;
  height: 32px;
}

.sibling_container span {
  color: white;
  font-size: 24px;
  font-family: Roboto Condensed;
  font-weight: 800;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .sibling_container span {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter';
    order: 2;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .sibling_container figure {
    width: 112px;
    height: 28px;
    order: 1;
    grid-row: span 2;
  }
}

.text_wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media screen and (max-width: 767px) {
  .text_wrap {
    gap: 4px;
  }
}

.text_wrap .inter {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .text_wrap .inter {
    font-size: 12px;
  }
}

.first_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 16px;
  gap: 16px 32px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 1024px) {
  .first_header {
    padding-inline: 96px;
  }
}

@media screen and (max-width: 767px) {
  .first_header {
    padding: 8px 16px;

  }
}

.first_header_inner {
  display: flex;
  gap: 32px;
}

@media screen and (max-width: 1024px) {
  .first_header_inner {
    gap: 8px;
    width: 100%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .first_header_inner {
    gap: 8px;
  }
}

.first_header_div {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .first_header_div {
    gap: 7px;
  }
}

.first_header_div img {
  width: 32px;
  height: 32px;
}

@media screen and (max-width: 767px) {
  .first_header_div img {
    width: 24px;
    height: 24px;
  }
}

.first_header_div figcaption {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  color: #152D21;
}

@media screen and (max-width: 1024px) {
  .first_header_div figcaption {
    font-size: 12px;
    font-weight: 400;
  }
}


.first_header_div h3 {
  font-size: 16px;
  margin: 0px !important;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(20, 25, 54);
  font-family: Inter;
}

.bottom_header {
  max-width: 680px;
  margin-inline: auto;
  padding: 36px 0 26px;
}

@media screen and (max-width: 1024px) {
  .bottom_header {
    padding-inline: 56px;
  }
}

@media screen and (max-width: 767px) {
  .bottom_header {
    padding: 14px 16px 20px;
  }
}

.bottom_header .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15%;
}

@media screen and (max-width: 767px) {
  .bottom_header .content {
    min-height: 46px;
    margin-bottom: 8px;
  }
}

.header_btn {
  display: flex;
  align-items: center;
  padding: 12px 0px 0px;
  gap: 12px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 22px;
  color: #FFFFFF;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .header_btn {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .header_btn {
    font-size: 14px;
  }
}

/*upper header end*/

.nutri_btn {
  cursor: pointer;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2F9264;
  margin: 40px auto 0;
  border-radius: 4px;
  gap: 12px;
  color: white;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.4);
  border: 3px solid;
  font-size: 18px;
  font-weight: 700;
}

.nutri_btn:hover {
  background-color: #000000c7;
  transition: 0.3s;
}

/*result page card start css*/

.card_sec_latest {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 64px;
}


.card_sec_latest .sec_heading,
.review_sec_latest .sec_heading {
  font-size: 48px;
  font-family: "Inter", serif;
  font-weight: 600;
  text-align: center;
  color: white;
  line-height: 55px;
}

.review_sec_latest .sec_heading {
  color: black !important;
}

.container__2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 15px;
}

.card_sec_latest .card_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 32px;
  isolation: isolate;
}

.badge {
  position: absolute;
  width: 138.33px;
  height: 124.5px;
  transform: rotate(11.69deg) translateX(18%) translateY(-25%);
  right: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
  z-index: 4;
}



.title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 96px 0px;
  gap: 24px;
  z-index: 3;
}

.title_wrap .sec_heading {
  font-family: 'Roboto Condensed';
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.label_time {
  align-items: center;
  gap: 15px;
  font-family: Arial, sans-serif;
}

.time_boxes {
  display: flex;
  gap: 10px;
}

.time_box {
  background: linear-gradient(180deg, #F5FFF8 0%, #E2FFF2 100%);
  border-radius: 8px;
  padding: 15px 20px;
  min-width: 70px;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #152D21;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: Roboto Condensed;
}

.time_box_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.time_box_wrap span {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #FFFFFF;
}

.minute_sec {
  justify-content: space-around;
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: white;
  font-weight: 500;
}

.minute_sec div {
  height: 50px;
  display: flex;
  align-items: center;
}

.rec_background {
  position: absolute;
  height: 540px;
  left: 0px;
  right: 0px;
  background: linear-gradient(178.04deg, #145737 4.36%, #2E6B4E 23.89%, #2F9264 97.17%);

}

.card_sec_latest .card {
  z-index: 1;
  width: 680px;
  height: 351px;
  box-sizing: border-box;
  background: rgba(60, 163, 116, 0.2);
  border: 3px solid #FFC400;
  box-shadow: 0px 0px 20px #F3E19A;
  backdrop-filter: blur(50px);
  border-radius: 20px;
  position: relative;
}


.card .card_wrap {
  position: absolute;
  height: 287px;
  left: 11px;
  right: 11px;
}

.card_title_wrap {
  align-items: flex-start;
  padding: 0px;
  position: absolute;
  left: 29px;
  top: 24px;
}

.card_title_wrap .card_head {
  font-family: 'Roboto Condensed';
  font-weight: 900;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.card_title_wrap p {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
}

.card_sec_latest .card_label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdca40;
  border-radius: 12px;
  padding: 13px 16px;
  margin-bottom: 16px;
  font-family: "Inter", serif;
}

.card_sec_latest .card_label .label_head,
.card_label .label_time {
  width: 50%;
}

.card_sec_latest .card_label .label_head span {
  font-size: 16px;
  font-weight: 600;
  color: #323232;
  line-height: 1;
  font-family: "Inter", serif;
  line-height: 24px;
}

.card_img {
  position: absolute;
  width: 220px;
  height: 233.47px;
  left: calc(50% - 220px/2 - 151px);
  top: 100px;
}

.bottle {
  position: absolute;
  width: 209.52px;
  height: 209.52px;
  left: 0px;
  top: 0px;
}

.tablet {
  position: absolute;
  width: 124.94px;
  height: 124.94px;
  left: -8.98px;
  top: 114.02px;
  transform: rotate(-9.76deg);
}

.card_prise_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 8px;
  position: absolute;
  width: 234px;
  height: 191px;
  left: 345px;
}

.card_price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 6px;
}

.card_price .price span {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 90px;
  line-height: 80px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.card_price .price p {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 32px;
  line-height: 24px;
  display: flex;
  text-align: center;
  color: #FFFFFF;
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card_sec_latest .label_time {
  text-align: right;
}

.time_div {
  padding-bottom: 30px;
  align-content: center;
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  text-align: right;
}

.card_sec_latest .card_price {
  display: flex;
  gap: 10px;
}

.card_price sub {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.card_sec_latest .card_price .price sub {
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", serif;
  line-height: 1;
  padding-left: 5px;
}

.card_sec_latest .card_price .discount_tag span {
  margin-top: 3px;
  background-color: #c01818;
  color: white;
  font-size: 11.5px;
  font-weight: 600;
  font-family: "Inter", serif;
  padding: 6px 6px;
  width: fit-content;
  border-radius: 4px;
  line-height: 1;
  display: inline-block;
}

.card_sec_latest .card_prise_content {
  margin-top: 41px;
  border-bottom: 1px solid #ddd0ee;
}

.additional_book {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(243, 255, 249, 0.2);
  border-radius: 6px;
}

.additional_book span {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
}

.card_button {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  color: #152D21;
  width: 100%;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 48px;
  min-height: 48px;
  background: linear-gradient(180deg, #FFE100 0%, #FFC800 100%);
  box-shadow: 0px 2px 8px rgba(39, 39, 39, 0.2);
  border-radius: 8px;
}

.card_total_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  position: absolute;
  width: 233px;
  height: 100px;
  left: calc(45% - 233px/2 + 152.5px);
  top: 250px;
}

.total_wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 6px;
}

.total_block {
  text-align: center;

  span {
    font-size: 12px;
    font-family: Inter;
    font-weight: 600;
  }
}

.total_wrap span {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
}

.old_price {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-decoration-line: line-through;
  color: #FFFFFF;
}

.new_price {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 26px;
  line-height: 38px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.payment-icons {
  gap: 7.24px;
  list-style: none;
  display: flex;
  justify-content: center;
}

.payment-icons svg {
  filter: drop-shadow(0 1.28866px 2.57732px rgba(0, 0, 0, 0.15));
  height: auto;
}

.card_sec_latest .Curent_prise {
  padding: 10px 0px;
}

.card_sec_latest .Curent_prise span {
  font-size: 22px;
  font-weight: normal;
  font-family: "Inter", serif;
  line-height: 1;
  text-decoration: line-through;
  color: #141936;
}

.card_sec_latest .price_dec span {
  font-size: 14px;
  font-weight: 500;
  color: #141936;
  font-family: "Inter", serif;
}

.card_sec_latest .card_dec .head {
  margin-bottom: 4px;
  color: #2F9264;
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", serif;
  line-height: 24px;
}

.card_sec_latest .card_dec .dec {
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", serif;
  text-align: left;
  color: rgb(20, 25, 54);
}

.card_sec_latest .card_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #2F9264;
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  border: none;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
}

.card_sec_latest .card_btn:hover,
.review_sec_latest .review_btn:hover {
  background-color: #000000c7;
}

.card_sec_latest .card_btn span {
  color: white;
  font-size: 18px;
  font-weight: 700;
  font-family: "Inter", serif;
}

.review_sec_latest {
  padding: 80px 0px;
  background-color: #f2f5ee;
}

.review_sec_latest .header_outline {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 28px;
  font-family: "Inter", serif;
}

.review_sec_latest .header_outline .bold {
  font-weight: bolder;
}

.review_sec_latest .header_outline .under_line {
  text-decoration: underline;
  font-weight: bolder;
}

.review_sec_latest .review_sec_latest .sec_heading {
  margin: 21px 0px;
}

.review_sec_latest .sec_dec {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", serif;
  line-height: 28px;
  text-align: center;
}

.review_sec_latest .review_main_container {
  margin-top: 40px;
}

.review_sec_latest .review_main_container .review {
  background-color: white;
  width: calc(33.3% - 11px);
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review_sec_latest .review_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review_sec_latest .review_img {
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  border-radius: 100%;
  overflow: hidden;
}

.review_sec_latest .review_img img {
  width: 100%;
}

.review_sec_latest .review_profile {
  display: flex;
  gap: 10px;
}

.review_sec_latest .review_flag img {
  width: 18px;
  height: 10px;
  aspect-ratio: 1;
}

.review_sec_latest .review_flag .flag_name {
  font-size: 12px;
  font-family: "Inter", serif;
  line-height: 24px;
}

.review_sec_latest .review_flag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review_sec_latest .profile_name .name {
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", serif;
  line-height: 24px;
}

.review_sec_latest .review_subtitle span {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  font-family: "Inter", serif;
  color: black;
}

.women_img,
.man_img {
  height: 90px !important;
}

.review_sec_latest .review_star {
  margin: 10px 0px;
}

.review_sec_latest .review_heading {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Inter", serif;
}

.review_sec_latest .preview_dec {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #141936;
  font-family: "Inter", serif;
}

.review_sec_latest .review_main_container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.review_sec_latest .review_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #2F9264;
  width: 100%;
  cursor: pointer;
  margin-top: 16px;
  padding: 16px;
  border: none;
  outline: none;
  border-radius: 4px;
  transition: 0.2s;
  width: 100%;
  max-width: 368px;
  margin: 40px auto 0px auto;
}

.review_latest {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 120px;
  gap: 48px;
  max-width: 1280px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .review_latest {
    padding: 0 16px;
    width: 100%;
  }
}

.review_title_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
}

.review_title_wrap h3 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #152D21;
}

@media screen and (max-width: 767px) {
  .review_title_wrap h3 {
    font-size: 32px;
    line-height: 38px;
  }
}

.review_title_wrap p {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  color: #152D21;
}

@media screen and (max-width: 767px) {
  .review_title_wrap p {
    font-size: 16px;
    line-height: 24px;
  }
}

.photo_wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 37px;
}

@media screen and (max-width: 1024px) {
  .photo_wrap {
    display: none;
  }
}

.photo_wrap img {
  width: 200px;
  height: 200px;
}

.scroller {}

@media screen and (max-width: 1024px) {
  .scroller {
    overflow-x: scroll;
    width: 100vw;
    padding-inline: calc((100vw - 680px) / 2);
    /* padding-left: 196px; */
    /* max-width: calc(100vw - 96px); */
  }
}

@media screen and (max-width: 767px) {
  .scroller {
    padding-inline: 16px;
  }
}

.review_wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
}

@media screen and (max-width: 1024px) {
  .review_wrap {
    flex-wrap: nowrap;
  }
}

.review_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 6px;
  min-width: 276px;
}

.review_item h3 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #000000;
}

.review_desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  gap: 4px;
}

.review_desc p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

.review_desc img {
  height: 32px;
}

.review_user_profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 12px;
}

.review_user_profile img {
  width: 64px;
  height: 64px;
}

.review_user_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
}

.review_user_info span:nth-child(1) {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

.review_user_info span:nth-child(2) {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

/* .quiz_step_container {
        max-width: 680px;
        margin-inline: auto;
        @media (max-width: 1024px) {
          padding-inline: 96px;
        }
        @media (max-width: 768px) {
          padding-inline: 16px;
        }
      } */
.review_sec_latest .review_btn span {
  color: white;
  font-size: 18px;
  font-weight: 700;
  font-family: "Inter", serif;
}

.svg_right_arrow .xl\:hidden {
  display: none;
}

.svg_right_arrow .max-xl\:hidden {
  display: block;
}

@media (max-width: 1279px) {
  .review_sec_latest .review_main_container .review {
    width: calc(50% - 8px);
  }

  .svg_right_arrow .xl\:hidden {
    display: block;
  }

  .svg_right_arrow .max-xl\:hidden {
    display: none;
  }
}

@media (max-width: 854px) {

  .card_sec_latest .sec_heading,
  .review_sec_latest .sec_heading {
    font-size: 32px;
    line-height: 36px;
  }

  .card_sec_latest .main {
    width: 100%;
    max-width: 516px;
  }

  .card_sec_latest .card {
    min-width: 100%;
    padding: 16px;
  }

  .review_sec_latest .header_outline p {
    font-size: 14px;
    text-align: center;
    line-height: 20px;
  }

  .review_sec_latest .review_main_container .review {
    width: 100%;
  }

  .review_sec_latest {
    padding: 40px 0px;
  }
}



/*result page card end css*/

@media (max-width: 992px) {
  .main_lose_weight button {
    flex-direction: row;
  }

  .step_9 .nutrim_left_img,
  .step_9 .nutrim_right_img {
    display: none;
  }

  .max-md\:hidden {
    display: none;
  }

  .women_img,
  .man_img {
    height: 90px !important;
  }

  .first_header_div h3 {
    font-size: 8px;
  }

  .current_data_kg h4,
  .achive_data_kg h4 {
    font-family: 'Roboto Condensed';
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -0.02em;
    color: #152D21;
  }

  .achive_data_kg h4 {
    color: #2F9264;
  }

  .third_result_div {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0.5rem;
  }

  .current_date,
  .achive_data_kg .achieve_date {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .first_result_div,
  .second_result,
  .fourth_result_div {
    flex-direction: column;
  }

  .first_result_div {
    gap: 2rem;
  }

  .sec_resut_left,
  .sec_resut_right {
    padding: 1.5rem 1rem;
  }

  .fourth_result_div {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .fourth_result_div h5 {
    padding-bottom: 1rem;
  }

  .fourth_right_div {
    padding: 1.5rem 0 0;
    border-top: 1px solid #dedede;
  }

  .left_side,
  .right_side,
  .sec_resut_left,
  .sec_resut_right,
  .fourth_left_div,
  .fourth_right_div {
    width: 100%;
  }

  .step_10 .quiz_container {
    padding-inline: 56px;
  }
}

@media screen and (max-width: 767px) {
  .step_10 .quiz_container {
    padding-inline: 16px;
  }
}

.left_side h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.progress_text p {
  font-size: 11px !important;
  line-height: 1rem;
}

.ersten_monat p {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.fourth_result_div h5,
.ersten_monat span,
.left_side h3 {
  font-size: 2rem;
  line-height: 2.25rem;
}

.left_side h3 {
  padding: 0px;
}

.second_result h3 {
  font-size: 3rem;
  line-height: 1;
}

.inner_result_third {
  gap: 10px;
  padding: 1rem;
}

.inner_result_third p {
  font-size: 3rem;
  line-height: 1;
}

.nutrim_main {
  flex-direction: column-reverse;
}

.permanent_results_graph .nutrim_left_column,
.permanent_results_graph .nutrim_right_column {
  max-width: 100%;
}

.quiz_sec .quiz_step .quiz_head {
  font-size: 2rem;
  line-height: 2.25rem;
}

.permanent_results_graph .nutrim_left_column h3 {
  font-size: 1.5rem;
  line-height: 2rem;
}

.permanent_results_graph .nutrim_right_column h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.75rem;
}

.sec_resut_left,
.sec_resut_right {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.nutrim_left_column,
.nutrim_right_column {
  margin: auto;
}

.nutrim_btn {
  width: 100%;
  justify-content: center;
}

.nutrim_left_img {
  left: -7.5rem;
  max-width: 300px !important;
  top: 5rem;
  width: 100%;
  bottom: inherit;
}

.main_lose_weight {
  grid-template-columns: repeat(1, 1fr);
}

.nutrim_right_img {
  top: 0.75rem;
  right: -5rem;
  max-width: 250px !important;
}


@media (max-width: 767px) {
  .nutrim_left_img {
    max-width: 199px !important;
    left: -5rem;
  }

  .nutrim_right_img {
    max-width: 184px !important;
    right: -4rem;
  }
}

.product.main,
.products-video .products-wrapper .product.main {
  border-color: #ffc400;
  padding: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  border: 2px solid #ffc400;
  column-gap: .5rem;
  max-width: 680px;
  width: 100%;
  overflow: visible;
}

.product.main.black {
  box-shadow: none;
  border: 2px solid #bde9d4;

}

.product.main.black .background {
  box-shadow: none;
  border: none;
  background: hsla(0, 0%, 100%, .1);

}

.product.main.black .title,
.product.main.black .subtitle {
  color: #152D21
}

.product.main.black .price {
  color: #2f9264;
}

.product.main.black .books {
  background: rgba(46, 108, 79, .2);
  color: #152D21;
  border-radius: 8px;
}

.product.main.black .books .info {
  color: #152D21 !important;
}

.product.main.black .economy {

  color: #152D21;
}

@media screen and (max-width: 767px) {

  .product.main,
  .products-video .products-wrapper .product.main {
    padding: 1rem;
    max-width: calc(100vw - 32px);
  }
}

.product.main .background,
.products-video .products-wrapper .product.main .background {
  backdrop-filter: blur(50px);
  background: rgba(60, 163, 116, 0.2);
  border-radius: 20px;
  column-gap: 0.5rem;
  bottom: 0;
  box-shadow: 0 0 20px #f3e19a;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.product.main .title,
.products-video .products-wrapper .product.main .title {
  font-family: Roboto Condensed, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 36px;
  z-index: 11;
  grid-column: span 2 / span 2;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {

  .product.main .title,
  .products-video .products-wrapper .product.main .title {
    font-size: 30px;
    line-height: 32px;
  }
}

.product .subtitle,
.products-video .products-wrapper .product .subtitle {
  font-weight: 800;
  grid-column: span 1 / span 1;
  order: 1;
  font-family: Inter, sans-serif;
  font-size: 24px;
  z-index: 11;
  color: white;
}

@media screen and (max-width: 767px) {

  .product .subtitle,
  .products-video .products-wrapper .product .subtitle {
    font-size: 16px;
  }
}

.product .product-image,
.products-video .products-wrapper .product .product-image {
  aspect-ratio: 1 / 1;
  grid-row: span 6 / span 6;
  height: 230px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -3rem;
  order: 2;
  z-index: 11;
  position: relative;
}

@media screen and (max-width: 767px) {

  .product .product-image,
  .products-video .products-wrapper .product .product-image {
    height: 156px;
    grid-row: span 3 / span 3;
  }
}

.product .price,
.products-video .products-wrapper .product .price {
  font-size: 90px;
  line-height: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
  order: 1;
  z-index: 11;
}

.product .books,
.products-video .products-wrapper .product .books {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 14px;
  margin-top: 7px;
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  max-width: 234px;
  order: 3;
  width: 100%;

  .info {
    background-color: rgba(255, 255, 255, .2);
    border-radius: 6px;
    padding-bottom: .25rem;
    padding-top: .25rem;
    color: white;
    text-align: center;
    font-family: Inter;
    font-weight: 600;
    line-height: 26px;
  }
}

.product .product-image .books-image {
  max-width: 180px;
  position: absolute;
  bottom: -22%;
  transform: translateX(-25%);

  img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .product .product-image .books-image {
    max-width: 120px;
  }
}

.product .button {
  margin-left: auto;
  margin-right: auto;
  max-width: 234px;
  order: 3;
  padding-bottom: 1rem;
  padding-top: 1rem;
  width: 100%;
  z-index: 11;
}

.product .price,
.products-video .products-wrapper .product .price {
  font-size: 90px;
  line-height: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
  order: 1;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  font-family: Inter;
  font-weight: 700;
  justify-content: center;
  position: relative;
  z-index: 10;
  font-size: 90px;
  line-height: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
  order: 1;
  letter-spacing: -0.03em;
  color: white;
}

.product .price span,
.products-video .products-wrapper .product .price span {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
  margin-left: 0.5rem;
}

.product .price .ampule,
.products-video .products-wrapper .product .price .ampule {
  font-family: Roboto Condensed;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin-left: 10px;
  margin-top: 10px;
  max-width: 100%;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product .books,
.products-video .products-wrapper .product .books {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 14px;
  margin-top: 7px;
}

.product .button,
.products-video .products-wrapper .product .button {
  align-items: center;
  display: flex;
  font-size: 16px;
  justify-content: center;
  line-height: 1rem;
  margin-top: 7px;
  max-height: 3rem;
  overflow: visible;
  border-radius: 0.5rem;
  font-weight: 700;
  padding: 0.75rem 0;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 234px;
  order: 3;
  padding-bottom: 1rem;
  padding-top: 1rem;
  width: 100%;
  background-image: linear-gradient(180deg, #ffe100, #ffc800);
  box-shadow: 0 2px 8px rgba(39, 39, 39, 0.2);
  color: black;
  text-decoration: none;
}

.product .button svg,
.products-video .products-wrapper .product .button svg {
  right: -1rem;
  top: 0.5rem;
  position: absolute;
}

@media screen and (max-width: 767px) {

  .product .button svg,
  .products-video .products-wrapper .product .button svg {
    top: 1.5rem;
  }
}

.product .economy,
.products-video .products-wrapper .product .economy {
  grid-column: span 1 / span 1;
  order: 3;
  z-index: 11;
  margin-top: 1rem;
  font-family: Inter;
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  font-weight: 600;

  .before {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    margin-left: 6px;
    text-decoration-line: line-through;
  }

  .after {
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    margin-left: .5rem;
  }
}

@media screen and (max-width: 767px) {

  .product .economy,
  .products-video .products-wrapper .product .economy {
    grid-column: span 2 / span 2;
    margin-top: 0;
  }
}

.product .payment-icons,
.products-video .products-wrapper .product .payment-icons {
  grid-column: span 1 / span 1;
  order: 3;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.25rem;
  max-width: 186px;
}

@media screen and (max-width: 767px) {

  .product .payment-icons,
  .products-video .products-wrapper .product .payment-icons {
    grid-column: span 2 / span 2;
  }
}

.product .ship-text,
.products-video .products-wrapper .product .ship-text {
  grid-column: span 1 / span 1;
  order: 3;
  z-index: 11;
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {

  .product .ship-text,
  .products-video .products-wrapper .product .ship-text {
    grid-column: span 2 / span 2;
  }
}