@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');

@font-face {
  font-family: LiberationSans-Regular;
  src: url(../fonts/LiberationSans-Regular.ttf);
}

html {
  height: 100%;
}

.bg {
  background: #6441A5;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #6441A5, #2a0845);
  /* Chrome 10-25, Safari 5.1-6 */
  background-image: url(../images/bg.jpeg);
  background-position: top center;
  background-size: 100%;
}


.bg1 {
  background: #6441A5;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #6441A5, #2a0845);
  /* Chrome 10-25, Safari 5.1-6 */
  background-image: url(../images/bg1.jpeg);
  background-position: top center;
  background-size: 100%;
}


body {
  font-family: "Reddit Sans", sans-serif;
}

.bg-ylw {
  background-color: #FAF2E8;
  height: 100vh;
}

.text-end-c {
  text-align: right;
}

.text-start-c {
  text-align: left;
}

.heading {
  font-family: "Reddit Sans", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.w-logo {
  width: 30%;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {}

#footer {
  position: absolute;
  bottom: 0rem;
  width: 100%;
  height: 2.5rem;
  /* Footer height */
}

#footer p {
  font-size: 14px;
  line-height: 2.8;
}

.modal-backdrop {
  opacity: 0.5 !important;
}

.modal-content {
  background-color: rgb(255 255 255 / 85%);
  /* Adjust opacity here */
}

.lngg {
  position: absolute;
  bottom: 0;
  left: 1%;
}

.gender_text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.c_button_blue {
  background-color: #AB8DDB;
  border-color: #AB8DDB;
}

.c_button_green {
  background-color: #00857A;
  border-color: #00857A;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
}

.sub_heading {
  font-family: "Reddit Sans", sans-serif;
  font-size: 22px;
}

/*form styles*/
#msform {
  text-align: center;
  position: relative;
  border-radius: 1px;

}

.error {
  border: 2px solid rgb(226, 99, 67) !important;
}

.errMsg {
  text-align: left !important;
  font-size: 16px !important;
}

#msform fieldset {
  border: 0 none;
  border-radius: 0px;
  box-sizing: border-box;
  height: fit-content;
  background-color: transparent;
  /*stacking fieldsets above each other*/
  position: relative;
  padding: 20px;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}

/*inputs*/
#msform input,
#msform textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 10px;
  font-family: "Reddit Sans", sans-serif;
  width: 100%;
  box-sizing: border-box;
  color: #2C3E50;
  font-size: 13px;
}



#msform input:focus,
#msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #000;
  outline-width: 0;
  transition: All 0.5s ease-in;
  -webkit-transition: All 0.5s ease-in;
  -moz-transition: All 0.5s ease-in;
  -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
  width: 100px;
  background: #000;
  font-weight: bold;
  color: #fff;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #000;
}

#msform .action-button-previous {
  width: 100px;
  background: #C5C5F1;
  font-weight: bold;
  color: #fff;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

label {
  border: 1.8px solid rgb(178, 191, 190) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  font-family: "Reddit Sans", sans-serif !important;
  line-height: 26px !important;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #C5C5F1;
}


.w-95 {
  width: 96% !important;
}

/*headings*/
.fs-title {
  font-size: 22px;
  color: #000;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: "Reddit Sans", sans-serif;
  text-align: left;
}

.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}

#progressbar li {
  list-style-type: none;
  color: #000;
  text-transform: uppercase;
  font-size: 9px;
  width: 5.2%;
  float: left;
  position: relative;
  letter-spacing: 1px;
  margin-left: auto;
  margin-right: auto;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 10px;
  height: 10px;
  line-height: 26px;
  display: block;
  font-size: 1px;
  color: #E6DBCF;
  background: #E6DBCF;
  border-radius: 25px;
  margin: 0 auto 10px auto;
  z-index: 1 !important;
  position: relative;
}

/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #E6DBCF;
  position: absolute;
  left: -50%;
  top: 4px;
}

#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #000;
  color: #fff;
}


/* Not relevant to this form */
.dme_link {
  margin-top: 30px;
  text-align: center;
}

.dme_link a {
  background: #000;
  font-weight: bold;
  color: #000;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 5px 25px;
  font-size: 12px;
}

.dme_link a:hover,
.dme_link a:focus {
  background: #C5C5F1;
  text-decoration: none;
}

.w-50-c {
  width: 50%;
}

.previous {
  background-color: unset !important;
  margin-top: 10px;
  color: #000 !important;
}

.main-heading {
  text-align: center;
  margin-top: 30px;
  font-family: LiberationSans-Regular;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;

}

.sub-heading {
  text-align: center;
  margin-bottom: 20px;
  font-family: LiberationSans-Regular;
  font-size: 15px;
  font-weight: 700;
  text-align: center;

}

.custom-btn-group {
  text-align: center;
  margin-bottom: 20px;
}

.btn-custom {
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  box-shadow: 1px 1px 0px 0px #EEEEEE;
  background-color: #000;
  border: unset;
}

.info-box {
  padding: 15px;
  border-radius: 8px;
}

.info {
  border: solid 1px #DFDFDF;
  min-width: 162px;
  height: 46px;
  border-radius: 8px !important;
  letter-spacing: 1px;
  line-height: 34px;
  font-weight: 500;
  font-size: 19.38px;
}

.result-box {
  background-color: white;
  color: black;
  padding: 15px;
  border-radius: 8px;
}

.lifestyle-box {
  background-color: white;
  color: black;
  padding: 15px;
  border-radius: 8px;
}



.bmi-box {
  display: flex;
  align-items: center;
  background: #eee;
  padding: 1rem;
}

.bmi-value {
  background-color: #CDEBD4;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 600;
  margin-right: 10px;
  padding: 1rem 1rem;
  border-radius: 5px;
  min-width: 64px;
}

.bmi-text {
  color: #989179;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
}

.bmi-text1 {
  font-size: 13px;
  color: #0E1312;
  font-weight: 600;
}

.bmi-value-1 {
  background-color: #FB9379;
  width: 64px;
  height: 64px;
  padding: 3.2px 12.81px 4.02px 12.8px;
  border-radius: 5px;
  opacity: 0px;
  font-size: 24px;
  font-weight: 600;
  color: #0E1312;
  margin-right: 10px;
}

.orange-box {
  background-color: #F6D8BC;
  border-radius: 10px;
  padding: 10px;
  margin-top: 2rem !important;
}

.bmi-category {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  text-align: left;
}

.card-heading {
  color: #404040;
  font-weight: 400;
  font-size: 13.78px;
  border-bottom: solid 1px #DFDFDF;
  margin-top: 20px;
}

.list li {
  font-size: 13.23px;
  font-weight: 400;
  color: #404040;
  border-bottom: solid 1px #DFDFDF;
  padding-top: 10px;
  padding-bottom: 10px;
}

.fw-500 {
  font-weight: 600 !important;
}

.card-content {
  font-size: 13.23px;
  font-weight: 500;
  color: #404040;
}

.yellow {
  color: #FDF1C9;
}

.green {
  color: #CDEBD4;
}

.orange {
  color: #F6D8BC;
}

.pink {
  color: #FB9379;
}

.default {
  color: #888 !important;
}

.bad-bg {
  color: #FB9379 !important;
}

.average-bg {
  color: #CCC !important;
}

.good-bg {
  color: #CDEBD4 !important;
}

.yellow-bg {
  background-color: #FDF1C9 !important;
}

.green-bg {
  background-color: #CDEBD4 !important;
}

.default-bg {
  background-color: #E3D4BF !important;
}

.orange-bg {
  background-color: #F6D8BC !important;
}

.pink-bg {
  background-color: #FB9379 !important;
}

@media (min-width: 430px) and (max-width: 932px) {

  #msform {
    min-height: 65vh !important;
  }

  #msform .action-button {
    border-radius: 0px;
    margin: 0px;
    position: absolute;
    top: 50vh !important;
    margin-left: 0px !important;
    left: 18px !important;
    width: 90% !important;
  }

}

@media (min-width: 320px) and (max-width: 480px) {


  .info {
    background-color: #fff !important;
    width: 100%;
    margin-bottom: 10px;
  }

  .btn-custom {
    margin-bottom: 10px !important;
  }

  .w-50-c {
    width: 90%;
  }

  .m-5 {
    margin: 2rem !important;
  }

  html {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  body {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: repeat !important;
  }

  .cont {
    background-color: unset !important;
  }

  .min-vh-100 {
    min-height: unset !important;
  }

  .card {
    border: unset !important;
    background: unset !important;
  }

  .logo {
    margin-left: auto;
    margin-right: auto;
    margin-top: -60px;
    background-color: #fff;
    border-radius: 100%;
    padding: 5px;
    width: 30% !important;
  }


  #msform {
    background-color: #fff;
    border-radius: 0.3rem;
    min-height: 75vh;
    position: relative;
  }

  .previous {
    background-color: unset !important;
    margin-top: 10px;
    color: #000 !important;
  }

  .force-txt-black {
    color: #000 !important;
    text-align: center;
    margin-top: 10px;
  }

  #msform .action-button {
    border-radius: 0px;
    margin: 0px;
    position: absolute;
    top: 50vh;
    margin-left: 0px !important;
    left: 18px !important;
    width: 90% !important;
  }

  /* .next{
        left: 0px;
        position:fixed;
        bottom:10px;
        font-size:14px;
        width:100% !important;
        font-weight:normal;
        border:1px solid #d97b6c;
      }     */

}