@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Book.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    font-family: "Gotham", sans-serif;
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.hidden {
    display: none !important;
}

.loading_cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    z-index: 1000;
}

.cover {
    position: fixed;
    background: #ffffff;
    border-radius: 30px;
    opacity: 0;
}

.cover.show {
    animation: fadeincover 500ms forwards, showcover 1s 500ms forwards, fadeoutcover 1s 1500ms forwards;
}

@keyframes fadeincover {
    100% {
        opacity: 1;
    }
}

@keyframes fadeoutcover {
    100% {
        opacity: 0;
    }
}

@keyframes showcover {
    100% {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        opacity: 1;
    }
}

.reg_modal {
    position: fixed;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    z-index: 100;
    font-size: 1rem;
    display: none;
}

.reg_modal .reg_modal_body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 600px;
}

.reg_modal .reg_modal_body button {
    font-size: 1rem;
    line-height: 1.875;
    font-weight: 400;
}

label {
    display: block;
    padding-bottom: 5px;
}

.check-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.check-container label {
    padding-bottom: 0;
}

.form-item {
    padding-bottom: 15px;
    position: relative;
}

.form-item .error {
    display: none;
    width: 100%;
    color: #ca3c57;
    font-size: 0.7rem;
    padding-top: 5px;
}

.form-input {
    width: 100%;
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
}

.breadcrumb_container {
    position: relative;
    top: 2rem;
    z-index: 2;
    height: 20px;
    opacity: 0;
    transition: 0.3s;
    padding-left: 2.375rem;
    padding-right: 2.375rem;
}

.breadcrumb_container.hidden {
    display: none;
}

.breadcrumb_container.show {
    opacity: 1;
}

.breadcrumb_container .breadcrumb {
    flex: 1 1 62.5%;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

@media (min-width: 48rem) {
    .breadcrumb_container .breadcrumb {
        margin-left: 18.75%;
        max-width: 62.5%;
    }
}

.breadcrumb_container .breadcrumb_inner {
    display: flex;
}

.breadcrumb_container .breadcrumb_inner .breadcrumb_percent {
    padding-right: 20px;
    flex: 0 0 auto;
    font-weight: bold;
    color: white;
}

.breadcrumb_container .breadcrumb_inner .breadcrumb_progress {
    flex: 1 1 0%;
    display: flex;
    -moz-box-pack: justify;
    justify-content: space-between;
    position: relative;
}

.breadcrumb_container .breadcrumb_inner .breadcrumb_progress:before {
    content: "";
    display: block;
    background: #008830;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 0;
}

.breadcrumb_container .breadcrumb_inner .breadcrumb_progress .progressbar {
    height: 3px;
    width: 0%;
    background: white;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    transition: width 0.3s cubic-bezier(0.58, 0, 0.56, 1);
}

.breadcrumb_container .breadcrumb_inner .breadcrumb_progress .progress_dots {
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background: #008830;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.breadcrumb_container .breadcrumb_inner .breadcrumb_progress .progress_dots:before {
    content: "";
    display: block;
    background: white;
    height: 20px;
    transition: width 0.1s cubic-bezier(0.58, 0, 0.56, 1);
    width: 0;
}

.breadcrumb_container .breadcrumb_inner .breadcrumb_progress .progress_dots.full:before {
    transition: width 0.3s cubic-bezier(0.58, 0, 0.56, 1) 0.3s;
    width: 100%;
}

.result, .result_details {
    display: flex;
    overflow: hidden;
    min-height: 100vh;
    margin-top: -20px;
    position: relative;
}

.result.hidden, .result_details.hidden {
    display: none;
}

.result .share .share_title, .result_details .share .share_title {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

@media (min-width: 48em) {
    .result .share .share_title, .result_details .share .share_title {
        margin-bottom: 1rem;
        font-size: 2.625rem;
        line-height: 1.19048;
    }
}

.result .share ul, .result_details .share ul {
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
}

.result .share ul li, .result_details .share ul li {
    position: relative;
    margin-left: 1rem;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    background-color: white;
}

.result .share ul li:first-child, .result_details .share ul li:first-child {
    margin-left: 0px;
}

.result .share ul li path, .result_details .share ul li path {
    fill: #02ba44;
    stroke: none;
}

.result .share ul li:last-of-type span, .result_details .share ul li:last-of-type span {
    width: 1rem;
    height: 1rem;
}

.result .share ul li:last-of-type path, .result_details .share ul li:last-of-type path {
    stroke: #02ba44;
    fill: none;
}

.result .share ul li button, .result_details .share ul li button {
    outline: none;
    cursor: pointer;
    background: transparent;
    display: inline-flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    padding: 0;
}

.result .share ul li button span, .result_details .share ul li button span {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
}

.result .share ul li .copied, .result_details .share ul li .copied {
    position: absolute;
    bottom: 50px;
    width: 260px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.58, 0, 0.56, 1);
    color: initial;
}

.result .share ul li .copied.show, .result_details .share ul li .copied.show {
    pointer-events: all;
    opacity: 1;
}

.result .share ul li .copied .copied_inner, .result_details .share ul li .copied .copied_inner {
    padding: 2rem;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    border-radius: 16px;
    position: relative;
    text-align: center;
}

.result .share ul li .copied .copied_inner:after, .result_details .share ul li .copied .copied_inner:after {
    content: "";
    position: absolute;
    border-width: 8px;
    border-style: solid;
    border-image: none;
    border-color: white transparent transparent;
    top: 99%;
    left: 50%;
    transform: translateX(-50%);
}

.result .share ul li .copied .copied_inner button, .result_details .share ul li .copied .copied_inner button {
    border: 0px;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    height: auto;
}

.result .share ul li .copied .copied_inner button span, .result_details .share ul li .copied .copied_inner button span {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
}

.result ul.question_container .item .header, .result_details ul.question_container .item .header {
    padding: 0 0 3rem 0;
}

.result ul.question_container .item .header .question_wrapper .question_inner, .result_details ul.question_container .item .header .question_wrapper .question_inner {
    text-align: center;
}

.result ul.question_container .item .header .question_wrapper .question_inner .question, .result_details ul.question_container .item .header .question_wrapper .question_inner .question {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 600;
    margin: 0px 0px 1.5rem;
}

@media (min-width: 48em) {
    .result ul.question_container .item .header .question_wrapper .question_inner .question, .result_details ul.question_container .item .header .question_wrapper .question_inner .question {
        font-size: 2.625rem;
        line-height: 1.19048;
    }
}

.result ul.question_container .item .header .question_wrapper .question_inner .info, .result_details ul.question_container .item .header .question_wrapper .question_inner .info {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 600;
    margin: 0px 0px 1.5rem;
}

.result ul.question_container .item .image, .result_details ul.question_container .item .image {
    z-index: -1;
}

.result ul.question_container .item .image:before, .result_details ul.question_container .item .image:before {
    content: "";
    position: absolute;
    inset: 0px;
    opacity: 0.7;
    background: rgba(51, 51, 51, 0.5);
    z-index: 1;
}

.result ul .answers ul.answer_container, .result_details ul .answers ul.answer_container {
    display: flex;
    flex-flow: column wrap;
}

@media (min-width: 30em) {
    .result ul .answers ul.answer_container, .result_details ul .answers ul.answer_container {
        flex-direction: row;
    }
}

.result ul .answers ul.answer_container .result_category, .result_details ul .answers ul.answer_container .result_category {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0.5rem;
}

@media (min-width: 30em) {
    .result ul .answers ul.answer_container .result_category, .result_details ul .answers ul.answer_container .result_category {
        width: 50%;
    }
}

@media (min-width: 48em) {
    .result ul .answers ul.answer_container .result_category, .result_details ul .answers ul.answer_container .result_category {
        padding: 1rem;
    }
}

.result ul .answers ul.answer_container .result_category .result_part, .result_details ul .answers ul.answer_container .result_category .result_part {
    position: relative;
    height: 100%;
    width: 100%;
}

.result ul .answers ul.answer_container .result_category .result_part .result_part_inner, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner {
    position: relative;
    border-radius: 30px;
    color: white;
    margin-bottom: 1.5rem;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 10px 2px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    -moz-box-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.result ul .answers ul.answer_container .result_category .result_part .result_part_inner:before, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner:before {
    content: "...";
    font-family: monospace;
    color: rgba(0, 0, 0, 0.3);
    font-size: 90px;
    letter-spacing: -27px;
    line-height: 0;
    height: 20px;
    width: 100%;
    text-align: right;
    padding: 0px 15px;
    box-sizing: border-box;
    margin: -25px 0px 20px;
    display: none;
}

.result ul .answers ul.answer_container .result_category .result_part .result_part_inner .donutProgressBar .donut-text text, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .donutProgressBar .donut-text text {
    transform: translate(0px, 9px);
}

@media (min-width: 30em) {
    .result ul .answers ul.answer_container .result_category .result_part .result_part_inner .donutProgressBar .donut-text text, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .donutProgressBar .donut-text text {
        transform: translate(0px, 7px);
    }
}

.result ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_icon, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_icon {
    position: absolute;
    height: initial;
    top: 30%;
    width: 65px;
    max-width: 20%;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 30em) {
    .result ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_icon, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_icon {
        top: 23%;
    }
}

.result ul .answers ul.answer_container .result_category .result_part .result_part_inner .cta, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .cta {
    font-size: 1rem;
    padding-top: 0.5rem;
}

@media (min-width: 48em) {
    .result ul .answers ul.answer_container .result_category .result_part .result_part_inner .cta, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .cta {
        font-size: 1.2rem;
    }
}

.result ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_card_title, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_card_title {
    line-height: 1.20833;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0rem;
}

@media (min-width: 48em) {
    .result ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_card_title, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_card_title {
        line-height: 1.1875;
        font-size: 1.5rem;
        letter-spacing: 0rem;
    }
}

@media (min-width: 72em) {
    .result ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_card_title, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_card_title {
        font-size: 1.8rem;
        letter-spacing: 0rem;
    }
}

@media (min-width: 90em) {
    .result ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_card_title, .result_details ul .answers ul.answer_container .result_category .result_part .result_part_inner .result_card_title {
        font-size: 2.3rem;
        letter-spacing: 0rem;
    }
}

.result .donutProgressBar, .result_details .donutProgressBar {
    display: inline-block;
    position: relative;
    color: #ffffff;
    text-align: center;
}

.result .donutProgressBar.overall, .result_details .donutProgressBar.overall {
    width: 14rem;
}

@media (min-width: 48em) {
    .result .donutProgressBar.overall, .result_details .donutProgressBar.overall {
        width: 20rem;
    }
}

.result .donutProgressBar .donut-text text, .result_details .donutProgressBar .donut-text text {
    transform: translate(0px, 3px);
}

.result .donutProgressBar .donut-percent, .result_details .donutProgressBar .donut-percent {
    fill: white;
    font-weight: 700;
    font-size: 0.5rem;
}

.close_details {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.close_details .close_btn {
    display: flex;
    background: white;
    width: 50px;
    height: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    border-radius: 100%;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.close_details .close_btn .close_btn_inner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    position: relative;
}

.category-diet {
    background-color: #da6a2a !important;
}

.category-activity {
    background-color: #ca3c57 !important;
}

.category-sleep {
    background-color: #997fbc !important;
}

.category-stress {
    background-color: #57bab7 !important;
}

.sources_title {
    padding-top: 20px;
    font-size: 1rem;
    line-height: 1.875;
    font-weight: 400;
    color: #043e19;
    text-align: right;
    cursor: pointer;
}

sup {
    cursor: pointer;
}

.category_sources div {
    padding: 5px 0;
}

.category_sources div.selected {
    font-weight: bold;
}

.result_details ul .answers {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.result_details ul .answers .close_container {
    display: flex;
    justify-content: end;
}

.result_details ul .answers .category_result {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 600;
    color: #02ba44;
    margin: 0px 0px 3.5rem;
}

.result_details ul .answers .advices_title {
    font-size: 1.1875rem;
    line-height: 1.68421;
    font-weight: 400;
    color: #02ba44;
    margin: 0px 0px 3.5rem;
}

.result_details ul .answers ul {
    list-style: initial;
    padding-top: initial;
    padding-right: initial;
    padding-bottom: initial;
    padding-left: 1.5rem;
    color: #043e19;
}

.result_details ul .answers ul li {
    font-size: 1rem;
    line-height: 1.875;
    font-weight: 400;
    color: #043e19;
}

.result_details .donutProgressBar {
    width: 18rem;
}

@media (min-width: 48em) {
    .result_details .donutProgressBar {
        width: 28rem;
    }
}

.tracker {
    display: flex;
    overflow: hidden;
    min-height: 100vh;
    margin-top: -20px;
    position: relative;
}

.tracker.hidden {
    display: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.question_container {
    display: flex;
    width: 100%;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

ul.question_container .item {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    overflow: hidden;
}

ul.question_container .item .image {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
}

ul.question_container .item .image img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    transition: none;
}

ul.question_container .item .header {
    position: relative;
    background-color: #02ba44;
    width: 120%;
    left: -10%;
    padding: 3rem 10% 50px;
    overflow: hidden;
    min-height: 0;
    display: flex;
    border-radius: 0px 0px 90% 90%/0px 0px 30vw 30vw;
    color: white;
    flex: 1 1 auto;
}

ul.question_container .item .header .question_wrapper {
    box-sizing: border-box;
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    margin: 0 0 2.5rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

@media (min-width: 48rem) {
    ul.question_container .item .header .question_wrapper {
        padding-left: 2.375rem;
        padding-right: 2.375rem;
    }
}

ul.question_container .item .header .question_wrapper .question_inner {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    max-width: 80%;
    margin-left: 10%;
}

@media (min-width: 72rem) {
    ul.question_container .item .header .question_wrapper .question_inner {
        flex: 1 1 62.5%;
        margin-left: 18.75%;
        max-width: 62.5%;
    }
}

ul.question_container .item .header .question_wrapper .question_inner .question {
    padding: 1.5rem 0px;
    font-size: 2rem;
    line-height: 1.19048;
    font-weight: 600;
}

@media (min-width: 48rem) {
    ul.question_container .item .header .question_wrapper .question_inner .question {
        font-size: 2.625rem;
    }
}

ul.question_container .item .header .question_wrapper .question_inner .question.main {
    font-size: 3.75rem;
}

ul.question_container .item .header .question_wrapper .question_inner .info {
    font-size: 1.1875rem;
    line-height: 1.47368;
    font-weight: 400;
}

ul.question_container .item .header .question_wrapper .question_inner .info.main {
    font-size: 2rem;
}

ul.question_container .item .header .question_wrapper .question_inner .theme_title {
    font-size: 0.875rem;
    line-height: 1.71429;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1.2rem;
    letter-spacing: 0.1rem;
}

@media (min-width: 48rem) {
    ul.question_container .item .header .question_wrapper .question_inner .theme_title {
        margin-top: 1.7rem;
    }
}

ul .answers {
    flex: 1 1 62.5%;
    padding-left: 2.375rem;
    padding-right: 2.375rem;
}

@media (min-width: 72rem) {
    ul .answers {
        margin-left: 18.75%;
        max-width: 62.5%;
    }
}

ul .answers ul.answer_container {
    margin-top: 2rem;
    padding-bottom: 70px;
}

ul .answers ul.answer_container .answer_item {
    margin-bottom: 1rem;
}

ul .answers ul.answer_container .answer_item button {
    background: none;
    color: #333333;
    box-shadow: #adadad 3px 10px 17px 0px;
    -moz-box-pack: start;
    justify-content: flex-start;
    font-size: 1rem;
    line-height: unset;
    font-weight: 400;
    width: 100%;
    transition: 0.3s;
}

ul .answers ul.answer_container .answer_item button:hover {
    scale: 1.1;
}

ul .answers ul.answer_container .answer_item button.active {
    background-color: #02ba44;
    color: white;
    box-shadow: rgba(173, 173, 173, 0.3) 3px 10px 17px 0px;
}

button {
    border: 0;
    background: linear-gradient(to top, #008830 0%, #03c046 100%);
    border-radius: 999px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    width: auto;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    height: 50px;
    padding: 0px 30px;
}

button[disabled] {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.buttons {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    box-sizing: border-box;
    position: sticky;
    bottom: 8%;
    z-index: 1;
}

.buttons.hidden {
    display: none;
}

.buttons .buttons_inner {
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    bottom: 1rem;
    width: 100%;
    z-index: 2;
    margin-top: -50px;
}

.buttons .buttons_inner .navigation {
    font-size: 1rem;
    line-height: 1.875;
    font-weight: 400;
}

.buttons .buttons_inner .navigation:focus {
    outline: none;
    box-shadow: none;
    border: 1px dashed white;
}

/*# sourceMappingURL=styles.css.map */
