@font-face{font-family:'SuisseScreenTrial';src:url('../../custom/fonts/SuisseScreenTrial-Regular.otf') format('opentype');font-weight:normal;font-style:normal}
@font-face{font-family:'Satoshi_Regular';src:url('../../custom/fonts/Satoshi-Regular.otf') format('opentype');font-weight:normal;font-style:normal}
@font-face{font-family:'Roboto';src:url('../../custom/fonts/Roboto-VariableFont.ttf') format('truetype');font-weight:normal;font-style:normal}

/* Common styles */
/* Import Google Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --font-card: 'SuisseScreenTrial';
    --font-Satoshi: 'Satoshi_Regular';
    --forest_Green : #1B3B13;
    --vibrant_Lime : #D5FA99;
    --dark_forest_Green : #142D0E;
    --Deep_Plum : #781945;
    --Green_BG : #D3D6BB;
    --airy_cream : #F0F1E9;
}

body {
    background-color: var(--airy_cream);
}

h1,h2,h3,h4,h5,h6 {
    margin:0;
    font-weight:400;
    font-family: var(--heading), sans-serif;
    font-size: 48px;
    letter-spacing: -2%;
}
p {
    font-size: 20px;
    font-weight:400;
    margin:0;
    font-family: var(--font-Satoshi);
}

.primary-btn-default {
  background-color: var(--forest_Green);
  color: var(--vibrant_Lime);
  padding: 12px 24px;
  width: fit-content;
  border-radius: 50px;
  font-size: 22px;
  text-decoration: none !important;
}

.secondary-btn-default:hover {
  color: #D6AEFF;
}

.primary-btn-default:hover {
  color: var(--vibrant_Lime);
}


.primary-btn-default:focus-visible,
.secondary-btn-default:focus-visible,
.secondary-btn-default:focus,
.primary-btn-default:focus {
  outline: none;
  border-radius: 50px;
}

.secondary-btn-default {
  background: transparent;
  border: 1px solid #D6AEFF;
  padding: 8px 20px;
  font-size: 18px;
  color: #D6AEFF;
  border-radius: 50px;
  text-decoration:none; 
}


@media only screen and (max-width:767px) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 40px;
    }

    p {
        font-size: 18px;
    }

    .primary-btn-default,
    .secondary-btn-default {
        font-size: 18px;
        padding: 8px 20px;
    }
}

/* hero section css starts here */
.the-persona-wrapper{
    padding: 30px 0px 20px;
}

.persona-main {
    width: 100%;
    min-height: 500px;
    background-color: #D7D3B8;
    border-radius: 20px;
    padding: 0px 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    box-shadow: 0px 36px 36.8px 0px #D5D5D573;
    overflow: hidden;
}

.hero_supple_img img{
    width: 500px;
    position: relative;
    top: 60px;
}

.persona-wrapper-head {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.persona-wrapper-head h1,
.persona-wrapper-head h2 {
    font-size: 56px;
    color: var(--forest_Green);
    font-family: var(--heading), sans-serif;
    margin-bottom: 0;
    white-space: nowrap;
}

.persona-wrapper-head p {
    font-size: 18px;
    font-family: var(--font-Satoshi);
    color: var(--forest_Green);
}

.persona-wrapper-head a {
    background: var(--forest_Green);
    color: var(--vibrant_Lime);
    font-family: var(--font-Satoshi);
    font-size: 18px;
    border-radius: 30px;
    padding: 12px 20px;
    text-decoration: none;
    width: 56%;
    text-align: center;
    margin-top: 25px;
}

.ndc-functions {
  margin-top: 18px;
}

.view_supplement_facts{
    text-decoration: none;
    color: var(--forest_Green) !important;
    font-size: 24px ;
    font-weight: 600;
}

.login-to-add{
  border: 1px solid var(--forest_Green);
  background-color: var(--forest_Green);
  color: var(--vibrant_Lime);
  padding: 12px 24px;
  width: fit-content !important;
  border-radius: 50px;
  font-family: var(--font-Satoshi);
  font-size: 22px;
  transition: 0.5s ease;
}

.login-to-add:focus-visible,
.login-to-add:focus,
.primary_cta:focus-visible,
.primary_cta:focus {
  border-radius: 50px;
  outline: none;
}

.login-to-add:hover {
  background-color: var(--vibrant_Lime);
  color: var(--forest_Green);
  border-color: var(--vibrant_Lime);
  transition: 0.5s ease;
}

@media screen and (max-width: 767px) {
    .persona-main {
        box-shadow: 0px 36px 36.8px 0px #D5D5D573;
        background-color: #D7D3B8;
        min-height: 600px;
        padding: 30px 40px;
        justify-content: flex-start;
        text-align: center;
        flex-direction: column;
    }

    .the-persona-wrapper {
        padding: 20px !important;
    }

    .persona-wrapper-head {
        max-width: 100%;
        margin: 0 auto;
    }

    .persona-wrapper-head h1 {
        font-size: 34px;
        margin: 0;
        text-align: left;
        white-space: normal;
    }

    .persona-wrapper-head h2 {
        font-size: 24px;
        margin: 0;
    }

    .persona-wrapper-head p {
        text-align: left;
    }
}

@media screen and (max-width: 1300px) {
    .container {
        max-width: unset;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .persona-main {
        padding: 40px;
        min-height: 450px;
        align-items: center;
    }

    .persona-wrapper-head {
        max-width: 350px;
    }

    .persona-wrapper-head h1 {
        font-size: 30px;
    }

    .persona-wrapper-head p {
        font-size: 16px;
    }

    .persona-wrapper-head a {
        width: 70%;
    }

    .ndc-item img {
        height: 400px !important;
    }

    .ndc-flex img {
      height: 76px !important;
    }
}

.content_area {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 65px;
}

.ndc-right-head h1 {
    font-family: var(--heading), sans-serif;
    color: #1B3B13;
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
}

.ndc-right-for-you {
  padding: 80px 0;
}

.ndc-flex {
    display: flex;
    gap: 12px;
    align-items: center;
    border-radius: 20px;
    background: #00000033;
    backdrop-filter: blur(30px);
    margin: 0 16px 32px;
    padding: 10px;
    height:150px;
}

.ndc-item img {
    width: 100%;
    max-width: 429px;
    height: 466px;
    border-radius: 20px;
    position: relative;
    object-fit: contain;
}

.ndc-flex img {
    width: 100%;
    height: 76px;
    max-width: 76px;
   object-fit: cover;
}

.ndc-content p {
    color: #FFFFFF;
}

.ndc-name {
    font-family: var(--heading), sans-serif;
    font-size: 24px;
}

.ndc-desc {
    font-size: 12px;
    font-family: var(--font-Satoshi);
}

.ndc-icon-class {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #142D0E;
    opacity: 0.3;
    display: inline-block;
    border-radius: 50%;
    margin-left: 10px;
}

.owl-dots .owl-dot.active span {
    opacity: 1;
}

.ndc-icon-class {
    width: 100%;
}

.allergen-section-head {
    color: #1B3B13;
}

.allergen-section-head h1 {
    font-family: var(--heading), sans-serif;
    font-size: 34px;
}

.allergen-section-head p {
    font-size: 18px;
    font-family: var(--font-Satoshi);
}

.allergen-inner img {
    width: 23px;
    height: 23px;
}

.allergen-inner {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border: 1px solid #1B3B13;
    border-radius: 24px;
    padding: 12px 24px;
    width: 100%;
    height: 80px;
}

.allergen-section-flex {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
    max-width: 900px;
    margin: auto;
}

.allergen-inner span {
    color: var(--forest_Green);
    font-family: var(--font-Satoshi);
    font-weight: 700;
    text-align: left;
    font-size: 18px;
}

.allergen-section {
    text-align: center;
    background-color: #D3D6BB;
    padding: 50px;
}

.ndc-function img {
    width: 16px;
    height: 16px;
}

.ndc-function {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ndc-function span {
    font-size: 16px;
    color: var(--forest_Green);
    font-family: var(--font-Satoshi);
    text-align: left;
}


@media screen and (max-width:767px) {
    .ndc-right-head h1 {
        font-size: 36px;
    }
    .ndc-item img {
        height: 100%;
        width: 100%;
        max-width: unset;
    }

    .ndc-flex img {
        display: none !important;
    }

    .ndc-flex {
        padding: 13px 17px;
        height: fit-content;
        margin: 0 16px;
    }

    .ndc-icon-class {
        bottom: 45px;
    }

    .right-wrapper {
        padding: 0px 20px;
    }

    .allergen-section {
        padding: 72px 32px;
    }

    .allergen-section .content_area,
    .atla_footer_section .content_area {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0px;
    }

    .allergen-section-flex {
        flex-direction: column;
    }

    .atla_footer_section {
        padding: 64px 32px;
    }
}
/* pill information section css starts here */

.pillInfo_section {
  background-color: var(--Deep_Plum);
}

.pillInfo_section .container {
  padding: 80px 0;
  color: var(--vibrant_Lime);
}

.pillInfo_section .container h2 {
  letter-spacing: -2%;
  text-align: center;
  margin-bottom: 40px;
}

.pillInfo_wrapper {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
}

.research_says h3, 
.how_to_take h3, 
.why_it_works h3, 
.when_to_take h3 {
  font-size: 32px;
  letter-spacing: -2%;
}

.research_says p, 
.how_to_take p, 
.why_it_works p,
.when_to_take p {
  font-size: 16px;
  line-height: 150%;
  padding-top: 15px;
}

.how_info {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.when_icons {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.pill_part_one,
.pill_part_three {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

@media only screen and (max-width:1300px) {
    .pillInfo_section .container {
        max-width: unset;
        padding: 80px 40px;
    }

    .pillInfo_wrapper {
        gap: 25px;
    }
}

@media only screen and (max-width:1200px) {
    .research_says h3,
    .how_to_take h3, 
    .why_it_works h3, 
    .when_to_take h3 {
        font-size: 24px;
    }

    .how_to_take .secondary-btn-default {
        font-size: 15px;
    }
}

@media only screen and (max-width:1024px) {
    .pillInfo_section .container h2 {
        text-align: left;
    }

    .pillInfo_wrapper {
        grid-template-columns: 100%;
        gap: 32px;
    }

    .pill_part_two {
        display: flex;
        justify-content: center;
    }

    .pill_part_two img {
        max-height: 400px;
    }

    .pillInfo_section .container {
        padding: 80px 32px;
    }
}

/* drug interaction section css starts here */

.drug_interaction_section {
  padding: 80px 0;
}

.drug_interaction_section .drug_wrapper {
  display: grid;
  grid-template-columns: 60% auto;
  gap: 48px;
  align-items: center;
}

.drug_info p {
  font-size: 18px;
}

.pill_interaction {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.interactions {
  background-color: var(--Green_BG);
  padding: 12px 24px;
  border-radius: 24px;
}

.interactions h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -2%;
  margin-bottom: 8px;
}

.interactions p {
  font-size: 14px;
}

@media only screen and (max-width:1440px) {
    .drug_interaction_section .drug_wrapper {
        grid-template-columns: 55% auto;
    }

    .drug_interaction_section {
        padding: 80px 40px;
    }
}

@media only screen and (max-width:1200px) {
    .drug_interaction_section {
        padding: 80px 32px;
    }

    .drug_interaction_section .container {
        max-width: unset;
    }

    .drug_interaction_section .drug_wrapper {
        gap: 30px;
    }
}

@media only screen and (max-width:1024px) {
    .drug_interaction_section .drug_wrapper {
        grid-template-columns: 100%;
    }
}

@media only screen and (max-width:600px) {
    .drug_info h2 {
        font-size: 32px;
    }
}
/* supplement facts css starts here */

.supple_table {
    border: 1px solid var(--forest_Green);
    font-family: var(--font-Satoshi);
    font-size: 13px;
    margin: 0 0 15px;
    padding: 20px;
    color: var(--forest_Green);
    border-radius: 10px;
}

.supple_table_top h2 {
    font-family: "Arial";
    font-weight: 700;
    font-size: 42px;
    margin: 0 0 5px;
    color: var(--forest_Green)
}

.supple_table_top p {
    color: var(--forest_Green);
    font-family: var(--font-Satoshi);
    font-size: 14px
}

.supple_table_top {
    border-bottom: 8px solid var(--forest_Green)
}

.supple_list_body {
    border-bottom: 8px solid var(--forest_Green)
}

.supple_lists li {
    border-bottom: 1px solid var(--forest_Green);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 0
}

.supple_list_head li {
    border-bottom: 4px solid var(--forest_Green)
}

.supple_lists li .supple_name {
    width: 60%
}

.supple_lists li .supple_name.indent {
    padding-left: 20px
}

.amount_per_serving {
    text-align: left;
    min-width: 100px
}

.daily_value {
    text-align: left;
    min-width: 42px
}

.supple_list_head li span {
    font-family: var(--font-Satoshi);
    line-height: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.supple_list_footer {
    padding-top: 10px
}

.supple_list_footer p {
    color: var(--forest_Green);
    font-size: 13px;
    margin: 0
}

.supple_bottom_text p {
    color: var(--forest_Green);
    font-family: var(--font-Satoshi);
    font-size: 12px;
    margin: 0 0 20px
}

.supple_list_body.calories_section ul ul {
    padding-left: 20px
}

.supple_list_body.calories_section ul:last-child ul li:last-child {
    border-bottom: none
}
.buttons_qty_wrapper {
    margin: 0 0 15px;
}

.buttons_qty_wrapper .form-group {
    margin: 0 0 0 15px;
}

.buttons_qty_wrapper .form-group select.form-control {
    height: 60px;
    padding: 10px 35px 10px 15px;
    min-width: 80px;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    cursor: pointer;
    background-image: url("../images/select-bg.png");
    background-repeat: no-repeat;
    background-position: right 15px center;
    font-size: 16px;
    
}

.supplements-section {
  padding: 80px 64px;
}

.howtotake_wrapper {
  padding: 64px;
  backdrop-filter: blur(20px);
  gap: 56px;
  align-items: center;
  border-radius: 24px;
  /* border: 1px solid rgba(213, 250, 153, 0.5); */
  box-shadow: rgba(213, 250, 153, 0.5) 1px 0px 1px;
}

.howtotake_left {
  margin: auto;
}

.howtotake_left img {
  max-height: 600px;
}

.howtotake_right_content {
  background-color: var(--airy_cream);
  padding: 20px;
  border-radius: 24px;
}

@media only screen and (max-width:1440px) {
    .howtotake_left img {
        max-height: 500px;
    }
}

@media only screen and (max-width:1280px) {
    .howtotake_left img {
        max-height: 400px;
    }

    .supplements-section .supp_gradientbg.container {
        max-width: unset;
    }
}

@media only screen and (max-width:1024px) {
    .howtotake_wrapper {
        flex-direction: column;
    }
}

@media only screen and (max-width:767px) {
    .supplements-section {
        padding: 64px 30px;
    }
    .howtotake_wrapper {
        padding: 64px 12px;
    }

    .supple_table_top h2 {
        font-size: 28px;
    }

    .supple_table {
        font-size: 12px;
    }
}

@media only screen and (max-width:480px) {
    .howtotake_right_content {
        padding: 4px;
        border-radius: 15px;
    }

    .supple_table {
        padding: 8px;
    }
}

/* Is this supplement right section starts here */
.suppleRight-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 64px 80px;
}

.suppleRight-wrapper .primary-btn-default {
  margin-top: 32px;
}

.suppleRight-wrapper img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.suppleRight-wrapper p {
  max-width: 500px;
  text-align: center;
  font-family: "Roboto";
}

@media only screen and (max-width:767px) {
    .suppleRight-wrapper {
        padding: 60px 32px;
    }

.suppleRight-wrapper img {
    width: 180px;
    height: 100px;
    margin-bottom: 30px;
}

.allergen-section-head h1 {
    text-transform: capitalize;
}


.view_supplement_facts {
    font-size: 18px;
    padding: 10px;
}

.ndc-item {
    height: 400px;
    width: fit-content;
    position: relative;
    margin: auto;
}
    .suppleRight-wrapper h2 {
        font-size: 34px;
        text-align: center;
        margin-bottom: 28px;
    }
}

@media only screen and (max-width:380px) {
    .how_to_take .secondary-btn-default {
        font-size: 12px;
    }
}

/* login popup css */

#loginPopup .modal-dialog,
#goToDashboard .modal-dialog {
  max-width: 900px;
  position: relative;
}

.close {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 30px;
  right: 25px;
}

#loginPopup .modal-body,
#goToDashboard .modal-body {
  max-width: fit-content;
  margin: 120px auto;
}

#loginPopup .modal-content,
#goToDashboard .modal-content {
  background-color: var(--airy_cream);
  border-radius: 24px;
  box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}

#loginPopup h2,
#goToDashboard h2 {
  font-size: 32px;
  text-align: center;
  font-weight: 600;
}

.forgot-pass {
    width: 100%;
    display: flex;
    justify-content: right;
}

.forgot-pass a {
  text-align: right;
  width: 100%;
  font-size: 14px;
  color: var(--forest_Green);
  font-family: var(--font-Satoshi);
  font-weight: 500;
}

.email-field input, 
.password-field input {
  border: 1px solid var(--forest_Green);
  border-radius: 10px;
  background-color: transparent;
  padding-left: 36px;
  -webkit-box-shadow: 0 0 0 1000px var(--airy_cream) inset !important;
}

.email-field,
.password-field {
    position: relative;
}

.email-field:before{
    content: "";
    position: absolute;
    left: 14px;
    background-image: url("../images/greenMail.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 17px;
    height: 15px;
    bottom: 11px;
}

.password-field:before{
    content: "";
    position: absolute;
    left: 14px;
    background-image: url("../images/greenLock.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 17px;
    width: 15px;
    bottom: 11px;
}

.show_hide {
  position: absolute;
  right: 14px;
  top: 39px;
}

.login-wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-wrapper label {
  color: var(--forest_Green);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-Satoshi);
  margin-bottom: 3px;
}

.primary_cta {
  width: 100%;
  padding: 8px 0;
  background-color: var(--forest_Green);
  border: 1px solid var(--forest_Green);
  color: var(--vibrant_Lime);
  border-radius: 50px;
  font-size: 22px;
  font-family: var(--font-Satoshi);
}

.addorder_btns {
  margin-top: 24px;
}

#goToDashboard .secondary-btn-default {
  border-color: var(--forest_Green);
  color: var(--forest_Green);
  font-size: 22px;
  width: 330px;
}

#goToDashboard .primary_cta {
  max-width: 330px;
}

.btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin: 57px auto 0;
    width: fit-content;
}

#goToDashboard p {
  font-size: 24px;
  margin-top: 10px;
}

#infoBody {
  padding: 0;
  padding-top: 42px;
  background-color: #F0F1E9;
}

.modal__head {
  position: absolute;
  background-color: transparent;
  border: none;
  right: 0;
}

.go_to_dashboard{
    text-align: center;
    text-decoration: none !important;
    color: var(--vibrant_Lime) !important;
}

@media only screen and (max-width: 767px) {
  .content_area {
    padding: 0 15px;
  }
}