/* ------------------------------------------------------------------------- */
/* master */
/* ------------------------------------------------------------------------- */

.calculator-bg {
    background-color: var(--support-orange-bg);
    min-height: calc(100vh - 80px);
}

.calculator-bg.step-0 {
    background-color: var(--primary-orange) !important;
    min-height: calc(100vh - 80px);
}

.calculator-card {
    height: fit-content;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0px 8px 16px 0px #FF73261A;
    padding: 24px;
    background-color: var(--primary-white);
}

.calculator-card > label {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

@media only screen and (max-width: 991px) {
    
    .calculator-card {
        padding: 16px !important;
    }

    .s12-a17a2ae6 {
        padding: 16px !important;
        margin: -16px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        border-top-right-radius: 16px;
        border-top-left-radius: 16px;
        position: relative !important;
    }

    .s12-46d667fd {
        flex-wrap: wrap;
    }

    .step-12-nutrition-summary {
        bottom: 0 !important;
        margin-bottom: -16px !important;
        padding-bottom: 16px !important;
    }

    .calculator-card-step-12-1,
    .calculator-card-step-12-2 {
        box-shadow: 0px 8px 16px 0px #FF73261A;
    }

    .step-12-nutrition-summary > div > p:nth-child(1) {
        color: #a5a5a9;
    }

    .s12-5aa961ae {
        height: 18px;
        margin-top: -4px;
        margin-left: 6px;
    }

}

@media only screen and (min-width: 992px) {
        
    .s12-46d667fd {
        box-shadow: 0px 8px 16px 0px #FF73261A;
    }

    .calculator-container {
        /* height: 75vh; */
        min-height: 75vh;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 992px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        padding-top: 24px;
    }

    .calculator-bg {
        background: url('/public/img/calculator/b5e102db-5078-4c02-83d3-23b6c635488c.png');
        background-size: 160px;
    }

    .calculator-bg.step-0 {
        background: url('/public/img/calculator/5113d937-ea1a-460e-baf6-4646156aa77c.png') !important;
        background-size: 160px !important;
    }

    .calculator-bg.step-13 {
        background: none;
        background-color: var(--support-orange-bg);
    }

    .calculator-card {
        /* max-height: 90%; */
        width: 600px;
        max-width: 60%;
    }

    .calculator-card-scroll {
        overflow-y: auto;
    }

    
    .calculator-card-step-12-1::-webkit-scrollbar,
    .calculator-card-step-12-2::-webkit-scrollbar {
        width: 8px;
        margin-left: 10px;
    }

    .calculator-card-step-12-1::-webkit-scrollbar-thumb,
    .calculator-card-step-12-2::-webkit-scrollbar-thumb {
        background: #e8e8e8; /* Color of the thumb */
        border-radius: 6px; /* Rounded corners */
    }

    .calculator-card-step-12-1::-webkit-scrollbar-thumb:hover,
    .calculator-card-step-12-1::-webkit-scrollbar-thumb:hover {
        background: #e1e1e1;
    }

    .calculator-card-step-12-1::-webkit-scrollbar-track,
    .calculator-card-step-12-2::-webkit-scrollbar-track {
        margin-right: 10px; /* Adjust the value as needed to control the spacing */
    }



    .calculator-card-step-12-1 {
        width: 400px !important;
        /* max-width: calc(40% - 0.75rem) !important; */
        max-width: 40% !important;
        /* height: 100% !important; */
        max-height: 70vh !important;
        /* height: fit-content !important; */
        overflow-y: scroll !important;
        overflow-x: clip !important;
        /* margin-top: 0.75rem; */
        /* margin-bottom: 0.75rem; */
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        /* background-color: #F9F9F9 !important; */
    }

    .calculator-card-step-12-2 {
        width: 600px !important;
        /* max-width: calc(60% - 0.75rem) !important; */
        max-width: 60% !important;
        /* height: 100% !important; */
        height: 70vh !important;
        max-height: 70vh !important;
        /* height: fit-content !important; */
        overflow-y: scroll !important;
        /* margin-top: 0.75rem; */
        /* margin-bottom: 0.75rem; */
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-left: 1px solid #e8e8e8;
    }

    #calculator_card_step_1,
    #calculator_card_step_1_female_desktop {
        position: absolute;
    }

    .s12-5aa961ae {
        height: 24px;
        margin-top: -8px;
        margin-left: 8px;
    }

}

.s12-69aed13e {
    box-shadow: unset !important;
}

.info-icon {
    color: #BDBDBD; 
    cursor: pointer; 
    font-size: 120%;
}

@media screen and (min-width: 992px) {
    .progress-container {
        margin-top: -24px;
    }
}

.progress-container {
    height: 8px;
    width: 400px;
    max-width: calc(100% - 2px);
    background-color: var(--primary-white-hover);
    border: 1px solid var(--primary-white);
    border-radius: 8px;
    box-sizing: content-box;
    position: relative;
}

.progress-bar {
    height: 8px;
    width: 9.33%;
    left: 0;
    background-color: var(--primary-orange);
    border-radius: 8px;
    position: absolute;
    transition: width 1s;
}

.progress-checkpoint {
    position:absolute;     
    top: 50%;
    transform:translate(-50%,-50%); 
    width:8px; 
    height:8px; 
    border-radius:100%; 
    background-color: var(--primary-white);
    border: 1px solid var(--primary-brown);
}

/* ------------------------------------------------------------------------- */
/* step 0 */
/* ------------------------------------------------------------------------- */

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

    .s0-95d81483 > img {
        width: 200px;
        max-width: 100%;
    }

    .s0-cea7605d {
        background-color: var(--primary-orange);
        border-radius: 16px;
        padding: 48px 24px;
        padding-top: 36px;
        height: 100%;
    }

    .s0-cea7605d > div > p {
        color: var(--primary-white) !important;
    }

}

.s0-95d81483 {
    text-align: center;
}

@media only screen and (min-width: 992px) {

    .s0-f7a85f00 {
        background-color: var(--primary-white);
        border-radius: 24px;
        padding: 40px;
    }

    .s0-71a5550f > .col-3 {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .s0-95d81483 > img {
        width: 100px;
        max-width: 100%;
    }

    .s0-97ede4ab {
        background-color: var(--primary-orange);
        border-radius: 100%;
        width: 24px;
        height: 24px;
        color: var(--primary-white);
        display: inline-block;
    }

}

/* ------------------------------------------------------------------------- */
/* step 1 */
/* ------------------------------------------------------------------------- */

.step-1-option {
    border-radius: 10rem;
    border: 1px solid var(--primary-white-hover);
    text-align: center;
    cursor: pointer;
    background-color: var(--primary-white);
}

.step-1-option-selected {
    border-color: var(--primary-orange);
}

.step-1-option:hover {
    filter: brightness(98%);
}

.step-1-female-card-arrow {
    position: absolute;
    bottom: 28px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-right: 18px solid var(--primary-white);
    left: -16px;
    top: 34%;
}

.dropdown-option-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    transition: all 400ms;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: .375rem;
}

.dropdown-option-container.hidden {
    border: none;
    max-height: 0;
}

.dropdown-option {
    padding: .375rem .75rem;
    cursor: pointer;
    transition: all 400ms;
}
.dropdown-option:hover {
    background-color: #f8f8f8;
}

.dropdown-clear-button {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    cursor: pointer;
    color: #bbbbbb;
}

/* ------------------------------------------------------------------------- */
/* step 2 */
/* ------------------------------------------------------------------------- */

.range-container {
    position: relative;
    margin-top: 2.2rem;
}

.range {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 10rem;
}

.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 10rem;
    border: 1px solid #FF7326;
    background-color: #fff;
    cursor: pointer;
}

.range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 10rem;
    border: 1px solid #FF7326;
    background-color: #fff;
    cursor: pointer;
}

.range-bubble-1 {
    background: var(--primary-white);
    color: #646466;
    padding: 4px 12px;
    position: absolute;
    border-radius: 8px;
    bottom: 36px;
    box-shadow: 0px 4px 6px -2px #10182808;
    box-shadow: 0px 12px 16px -4px #10182814;
    font-size: small;
    width: max-content;
}

.range-bubble-2 {
    position: absolute;
    bottom: 28px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-white);
}

.range-identify {
    position:absolute;
    width: 2px;
    height: 18px;
    top: 48%;
    background-color: #a5a5a9;
}

/* ------------------------------------------------------------------------- */
/* step 4 */
/* ------------------------------------------------------------------------- */

.step-4-current-bcs-option {
    background-color: var(--primary-white);
    border: 1px solid var(--primary-white);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0px 8px 16px 0px #FF73261A;
    cursor: pointer;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.step-4-current-bcs-option-selected {
    border: 1px solid var(--primary-orange);
}

.step-4-current-bcs-option:hover {
    filter: brightness(98%);
}

.step-4-is-ideal-bcs-3-card {
    position: relative;
    background-color: var(--primary-white); 
    border-radius: 8px; 
    width: fit-content; 
    margin-top: 30px;
}

.step-4-is-ideal-bcs-3-card-arrow {
    position: absolute;
    bottom: 28px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 18px solid var(--primary-white);
    left: 50%;
    top: calc(100% + 13px);
    transform: translateX(-50%);
}

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

    .col-20p {
        padding-left: 50px;
        padding-right: 50px;
    }

    .step-4-current-bcs-option {
        padding: 16px;
        border-radius: 16px;
        position: relative;
    }

    .step-4-current-bcs-check {
        padding: 2px;
        border: 1px solid var(--primary-orange);
        border-radius: 4px;
        position: absolute;
        top: 16px;
        right: 16px;
        color: var(--primary-orange);
    }

}

@media only screen and (min-width: 992px) {

    .step-4-current-bcs-option {
        transition: all .2s ease-in-out;
        transform: scale(0.95);
    }

    .step-4-current-bcs-option:hover {
        filter: brightness(98%);
        transform: scale(1.05);
    }

    .step-4-current-bcs-option-selected {
        transform: scale(1.05);
    }

    .step-4-current-bcs-description-tooltip {
        background-color: rgba(0, 0, 0, 0.8);
        color: var(--primary-white);
        border-radius: 4px;
        padding: 6px;
        font-size: small;
        position: absolute;
        width: max-content;
        text-align: start;
        transform: translateX(-50%);
    }

}

/* ------------------------------------------------------------------------- */
/* step 5 */
/* ------------------------------------------------------------------------- */

.step-5-hr {
    border-color: #cccccc;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-5-table {
    width: 100%;
    margin-bottom: -.5rem;
}

.step-5-table > tbody > tr > td {
    padding-top: .5rem;
    padding-bottom: .5rem;
    vertical-align: top;
}

.step-5-table > tbody > tr > td:nth-child(1) {
    width: 40%;
}

.step-5-table > tbody > tr > td:nth-child(1) > p {
    color: #a5a5a9;
    font-weight: bold;
}

.step-5-table > tbody > tr > td:nth-child(2) {
    width: 60%;
    padding-left: .5rem;
}

.step-5-bcs-option {
    border: 1px solid var(--primary-white-hover);
    border-radius: 4px;
}

.step-5-bcs-option.selected {
    border-color: var(--primary-orange);
}

/* ------------------------------------------------------------------------- */
/* step 6 */
/* ------------------------------------------------------------------------- */

.step-6-formular-option {
    border-radius: 1rem; 
    border: 1px solid var(--primary-white-hover); 
    text-align: center; 
    cursor: pointer;
    background-color: var(--primary-white);
    height: 100%;
}

.step-6-formular-option-mobile {
    border-radius: 10rem; 
    border: 1px solid var(--primary-white-hover); 
    text-align: center; 
    cursor: pointer;
    background-color: var(--primary-white);
    height: 100%;
    padding: .5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-6-formular-option > img {
    display: block;
    margin: auto;
}

.step-6-formular-option:hover {
    filter: brightness(98%);
}

.step-6-formular-option-selected,
.step-6-formular-option-mobile-selected {
    border-color: var(--primary-orange);
}

@media only screen and (min-width: 992px) {

    .step-6-formular-description-tooltip {
        background-color: rgba(0, 0, 0, 0.8);
        color: var(--primary-white);
        border-radius: 4px;
        padding: 6px;
        font-size: small;
        position: absolute;
        width: 200px;
        text-align: start;
        transform: translateX(-50%);
    }

}

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

    .step-6-formular-option {
        padding: 0 !important;
        text-align: center; 
        cursor: pointer;
        background-color: var(--primary-white);
        height: 100%;
        border: none;
    }

    .step-6-formular-option:hover {
        filter: unset;
    }

}

/* ------------------------------------------------------------------------- */
/* step 7-10 */
/* ------------------------------------------------------------------------- */

.step-7-10-ingredient-row-desktop {
    width: 992px;
    max-width: 100%;
    flex-wrap: unset;
    overflow-x: auto;
}

.step-7-10-ingredient-row-desktop::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.step-7-10-angle-disabled {
    color: #cccccc !important;
}

.step-7-10-angle-left {
    position: absolute;
    top: 50%;
    left: -36px;
    transform: translateY(-50%);
    color: var(--primary-brown);
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.step-7-10-angle-right {
    position: absolute;
    top: 50%;
    right: -36px;
    transform: translateY(-50%);
    color: var(--primary-brown);
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.step-7-10-ingredient-card {
    background-color: var(--primary-white);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid var(--primary-white-hover);
    cursor: pointer;
    height: 100%;
}

.step-7-10-ingredient-card-selected {
    border-color: var(--primary-orange);
}

.step-7-10-ingredient-card > p {
    font-size: 14px;
}

@media only screen and (max-width: 991px) {
    .step-7-10-ingredient-card > p {
        font-size: 12px !important;
    }
}

@media only screen and (min-width: 992px) {

    .step-7-10-ingredient-card {
        transition: all .2s ease-in-out;
        transform: scale(0.95);
    }

    .step-7-10-ingredient-card:hover {
        filter: brightness(98%);
        transform: scale(1.05);
    }

    .step-7-10-ingredient-card-selected {
        transform: scale(1.05);
    }

    .step-11-content-card {
        width: 100%;
        max-width: 100%;
        box-shadow: unset;
        background-color: var(--primary-white) !important;
    }

}

.step-11-title-card {
    background-color: var(--primary-orange);
    border-radius: 16px;
    padding: 16px;
}

/* ------------------------------------------------------------------------- */
/* section 1-1 */
/* ------------------------------------------------------------------------- */

.s1-1-ad982114 {
    width: 240px;
    position: absolute;
    right: -48px;
    bottom: -72px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.s1-1-ad982114:hover {
    transform: rotate(5deg);
}

.s1-1-5645234e {
    border-radius: 8px;
    background-color: var(--primary-white);
    text-align: center;
    padding: 8px;
    cursor: pointer;
    margin-top: 1.5rem;
}

.s1-1-5645234e > img {
    height: 60px;
    margin-right: .5rem;
}

.s1-1-897a48c1 {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #c69f8a4d;
    z-index: 1030;
    display: none;
}

.s1-1-58c57167 {
    background-color: var(--primary-light-cream);
    height: calc(100vh - 5.5rem);
    width: 500px;
    max-width: 80%;
    position: fixed;
    border-top-left-radius: 16px;
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 1031;
    box-shadow: 0px 4px 16px 0px #0000001A;
}

.s1-1-58c57167 > .content-title {
    margin: -1.5rem;
    background-color: var(--primary-light-cream);
    position: sticky;
    top: -1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.s1-1-58c57167 > .content-title > .la-times:nth-child(1) {
    font-size: 140%;
    cursor: pointer;
    position: absolute;
    left: 1.5rem;
}

.s1-1-58c57167 > .content-title > .la-times:nth-child(2) {
    font-size: 140%;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
}

@media screen and (min-width: 992px) {

    .s1-1-58c57167 {
        left: 100%;
        bottom: 0;
    }

    .s1-1-58c57167.showed {
        left: unset;
        right: 0;
    }

}

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

    .s1-1-58c57167 {
        width: 100%;
        max-width: unset;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        top: 100%;
        left: 0;
    }

    .s1-1-58c57167.showed {
        top: unset;
        bottom: 0;
        left: 0;
    }

}

/* ------------------------------------------------------------------------- */
/* step 12 */
/* ------------------------------------------------------------------------- */

.show-table {
    height: unset !important;
    opacity: 1 !important;
}

.step-12-nutrition-summary {
    background-color: var(--primary-white);
    position: sticky;
    box-shadow: 0px -6px 10px -6px rgba(0, 0, 0, .05);
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 0;
    margin-bottom: -24px;
    bottom: -24px;
}

.assessment-badge {
    color: var(--primary-white);
    border-radius: 1rem;
    width: 100%;
    font-size: small;
    overflow: hidden;
    height: 24px;
    position: relative;
}

.assessment-badge > div {
    height: 24px;
    position: absolute;
}

.assessment-badge > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    text-align: center;
}

.counter,
.counter-container {
    transition: all 0.5s ease;
}

.step-12-full-nutrition-detail-list-background {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1030;
    display: none;
}

.step-12-full-nutrition-detail-list-content {
    background-color: var(--primary-light-cream);
    height: calc(100vh - 5.5rem);
    width: 500px;
    max-width: 80%;
    position: fixed;
    border-top-left-radius: 16px;
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 1031;
}

.step-12-full-nutrition-detail-list-content > .content-title {
    margin: -1.5rem;
    background-color: var(--primary-light-cream);
    position: sticky;
    top: -1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    z-index: 1032;
}

.step-12-full-nutrition-detail-list-content > .content-title > .la-times {
    font-size: 140%;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
}

.step-12-full-nutrition-detail-list-content {
    width: 100%;
    max-width: unset;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    top: 100%;
    left: 0;
}

.step-12-full-nutrition-detail-list-content.showed {
    top: unset;
    bottom: 0;
    left: 0;
}


.product-header {
    margin-top: -4.5rem;
    padding-top: 10rem;
    padding-bottom: 8rem;
    background-color: var(--primary-orange);
}

/* container */

.ingredient-container-left {
    padding-left: 1rem;
    width: 100%;
    margin-left: auto;
    border: 1px solid black;
}

.ingredient-container-right {
    padding-right: 1rem;
    width: 100%;
    margin-right: auto;
    border: 1px solid black;
}

@media (min-width: 576px) {  
    .ingredient-container-left {
        max-width: calc(540px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(540px * 0.6);
    }
}

@media (min-width: 992px) {
    .ingredient-container-left {
        max-width: calc(720px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(720px * 0.6);
    }
}

@media (min-width: 992px) {
    .ingredient-container-left {
        max-width: calc(960px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(960px * 0.6);
    }
}

@media (min-width: 1200px) {
    .ingredient-container-left {
        max-width: calc(1140px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(1140px * 0.6);
    }
}

@media (min-width: 1400px) {
    .ingredient-container-left {
        max-width: calc(1320px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(1320px * 0.6);
    }
}

/* ----------------------------------------------------- */

.product-tab {
    padding: 8px 18px;
    padding-top: 10px;
    border-radius: 8px 8px 0 0;
    background-color: var(--support-medium-grey);
    color: var(--primary-white);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

#product_tab_m01.product-tab.selected {
    background-color: var(--primary-mixed-berries);
}

#product_tab_m02.product-tab.selected {
    background-color: var(--primary-superfood);
}

#product_tab_m03.product-tab.selected {
    background-color: var(--primary-seafood);
}

.product-detail-container {
    border-radius: 16px;
    border-top-left-radius: 0;
    position: relative;
    transition: all .2s ease-in-out;
}

.card-step {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.card-step > img {
    width: 100%;
}

.card-step > .step-label {
    background-color: var(--support-light-grey);
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
}

.card-step > .step {
    position: absolute;
    left: .5rem;
    top: .5rem;
    border-radius: 100%;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    width: 1.8rem;
    height: 1.8rem;
    padding-top: .25rem;
    text-align: center;
}

.product-full-ingredients-list-desktop {
    width: 220px;
    max-width: 30%;
    position: absolute;
    right: -52px;
    bottom: -48px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.product-full-ingredients-list-desktop:hover {
    transform: rotate(5deg);
}

.product-full-ingredients-list-mobile {
    border-radius: 8px;
    background-color: var(--primary-white);
    text-align: center;
    padding: 8px;
    cursor: pointer;
    margin-top: 1.5rem;
}

.product-full-ingredients-list-mobile > img {
    height: 60px;
    margin-right: .5rem;
}

.product-full-ingredients-list-background {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1030;
    display: none;
}

.product-full-ingredients-list-content {
    background-color: var(--primary-light-cream);
    height: calc(100vh - 5.5rem);
    width: 500px;
    max-width: 80%;
    position: fixed;
    border-top-left-radius: 16px;
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 1031;
}

.product-full-ingredients-list-content > .content-title {
    margin: -1.5rem;
    background-color: var(--primary-light-cream);
    position: sticky;
    top: -1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.product-full-ingredients-list-content > .content-title > .la-times:nth-child(1) {
    font-size: 140%;
    cursor: pointer;
    position: absolute;
    left: 1.5rem;
}

.product-full-ingredients-list-content > .content-title > .la-times:nth-child(2) {
    font-size: 140%;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
}

@media screen and (min-width: 992px) {

    .product-full-ingredients-list-content {
        left: 100%;
        bottom: 0;
    }

    .product-full-ingredients-list-content.showed {
        left: unset;
        right: 0;
    }

}

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

    .product-header {
        border-radius: 1rem;
        margin: 1rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: .5rem;
        padding-right: .5rem;
        height: auto;
        overflow: hidden;
        text-align: center;
    }

    .product-full-ingredients-list-content {
        width: 100%;
        max-width: unset;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        top: 100%;
        left: 0;
    }

    .product-full-ingredients-list-content.showed {
        top: unset;
        bottom: 0;
        left: 0;
    }

}

.s11-760b3d7c {
    background-color: rgba(0,0,0,0.6);
    color: white;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    padding: 2px 8px;
    z-index: 100;
    width: max-content;
    opacity: 0;
    transition: all 400ms;
}

.s11-62dc3e68 {
    position: relative;
    cursor: pointer;
}

.s11-62dc3e68:hover > .s11-760b3d7c {
    opacity: 1;
}

/* ------------------------------------------------------------------------- */
/* section 2 */
/* ------------------------------------------------------------------------- */

.s12-a17a2ae6 {
    background-color: var(--primary-orange);
    margin: -24px;
    padding: 24px;
    padding-bottom: 16px;
    position: sticky;
    top: -24px;
}

.s12-c923a6e7 {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 400ms;
}

.s12-06f7c05b {
    background-color: #f9f9f9;
    display: flex;
    cursor: pointer;
}

.s12-06f7c05b > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.s12-06f7c05b > div > p {
    padding: 8px 16px;
    font-size: 14px !important;
    font-weight: bold;
    margin-top: auto;
    margin-bottom: auto;
}

.s12-06f7c05b > div:nth-child(1) {
    width: 40%;
    justify-content: unset;
}

.s12-06f7c05b > div:nth-child(2) {
    width: 20%;
    text-align: center;
    background-color: var(--support-orange-1);
}

.s12-06f7c05b > div:nth-child(3) {
    width: 40%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.s12-06f7c05b > div:nth-child(3) > p {
    padding: 0 16px !important;
}

.s12-06f7c05b > div:nth-child(3) > p:nth-child(1) {
    width: 100%;
    background-color: #e8e8e8;
}

.s12-06f7c05b > div:nth-child(3) > p:nth-child(2),
.s12-06f7c05b > div:nth-child(3) > p:nth-child(3) {
    width: 50%;
}

.s12-9e5f70ba {
    border-bottom: 1px solid #e8e8e8;
    display: flex;
}

.s12-9e5f70ba > div {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s12-9e5f70ba > div > p {
    font-size: 14px !important;
}

.s12-9e5f70ba > div:nth-child(1) {
    width: 40%;
    justify-content: unset;
    flex-wrap: wrap;
}

.s12-9e5f70ba > div:nth-child(1) > p {
    width: 100%;
}

.s12-9e5f70ba > div:nth-child(2),
.s12-9e5f70ba > div:nth-child(3),
.s12-9e5f70ba > div:nth-child(4) {
    width: 20%;
    text-align: center;
}

.s12-06f7c05b > div:nth-child(2) {
    background-color: var(--support-orange-1);
}

.s12-9e5f70ba > div:nth-child(2) {
    background-color: var(--primary-light-cream);
}

@media screen and (max-width: 991px) {
    .s12-9e5f70ba > div > p {
        font-size: 12px !important;
    }
}

.s12-f707a3b5 {
    width: 160px;
    max-width: 50%;
    position: relative;
    text-align: center;
}

.s12-f707a3b5 > img {
    position: absolute;
    right: calc(100% + 6px);
    bottom: -32px;
}

@media screen and (max-width: 991px) {
    .s12-f707a3b5 > img {
        display: none !important;
    }
}

.s12-7cd50c8e {
    width: 120px;
    max-width: 100%;
    opacity: 0.1;
}

.s12-e2addee3 {
    width: 120px;
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 0%;
    object-fit: cover;
    object-position: bottom;
    transition: all 400ms;
    transform: translateX(-50%);
}

.s12-type {
    cursor: pointer;
    color: var(--primary-brown);
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 4px 8px;
    transition: all 400ms;
}

.s12-type.active {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}

.step-12-o02-remark {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--primary-white);
    border-radius: 4px;
    padding: 6px;
    font-size: small;
    position: absolute;
    width: 200px;
    text-align: start;
    z-index: 100000;
    font-size: 14px !important;
    left: -100%;
    transform: translateX(0);
}

.step-12-btn-calculate-batch {
    /* border-radius: 32px; */
    background-color: var(--primary-white);
    color: var(--primary-orange);
    font-weight: bold;
    border: none;
    width: 28px;
    text-align: center;
    transition: all 400ms ease;
    border: var(--bs-border-width) solid var(--bs-border-color);
    flex-shrink: 0;
    padding: 0;
}

.step-12-btn-calculate-batch:hover {
    filter: brightness(0.9);
}

.step-12-input:focus {
    border-color: var(--bs-border-color) !important;
    box-shadow: none !important;
}

.s12-e03525bd {
    cursor: pointer;
    background-color: #f9f9f9;
    padding: 8px 16px;
    font-weight: bold;
}


/* ------------------------------------------------------------------------ */
/* COMPLETE */
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------- */
/* section 1 */
/* ------------------------------------------------------------------------- */

.s1-bd576965 {
    margin-top: -80px;
    padding-top: 190px;
    padding-bottom: 110px;
    background-color: var(--primary-orange);
}

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

    .s1-efa91115 {
        width: var(--container-width);
        padding: 16px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .s1-bd576965 {
        margin: 0;
        border-radius: 16px;
        padding-top: 110px !important;
        padding-left: 16px;
        padding-right: 16px;
    }

}

/* ------------------------------------------------------------------------- */
/* section 2 */
/* ------------------------------------------------------------------------- */

.s2-8845a3bd {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    justify-content: center;
}

.s2-d52b9cc6 {
    position: absolute;
    right: calc(100% - 8px);
    top: 50%;
    height: 120px;
}

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

    .s2-8845a3bd {
        margin-top: 24px !important;
        gap: 16px !important;
    }
    
    .s2-db5c655d {
        width: calc(50% - 8px) !important;
    }

    .s2-db5c655d > img {
        width: 80px !important;
        margin-top: 8px !important;
    }
    
    .s2-a014de1a > img {
        width: 24px !important;
    }

    .s2-4f188a98 {
        width: 16px;
        height: 16px;
    }

    .s2-312315ac {
        width: 100% !important;
        padding: 24px !important;
    }

}

.s2-db5c655d {
    padding: 16px;
    border-radius: 16px;
    border: 2px solid #ffffff;
    width: calc(25% - 18px);
    cursor: pointer;
    position: relative;
    transition: all 400ms;
    background-color: white;
    margin-bottom: 24px;
}

.s2-db5c655d > p {
    position: absolute;
    top: calc(100% + 6px);
    color: var(--primary-orange);
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.s2-db5c655d.active {
    border: 2px solid #FF7326;
}

.s2-db5c655d:hover {
    box-shadow: 0px 4px 16px 0px #0000001a;
}

.s2-db5c655d:hover > img {
    transform: rotate(5deg);
}

.s2-db5c655d > img {
    width: 140px; 
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
    display: block;
    transition: all 400ms;
}

.s2-a014de1a {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
}

.s2-a014de1a > img {
    display: block;
    width: 44px;
}

.s2-312315ac {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    width: calc(66.6667% - 8px);
    background-color: var(--primary-light-cream);
}

/* .s2-d0089454 {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    padding: 8px;
    margin-right: -8px;
    margin-bottom: -8px;
    transition: all 400ms;
} */

@media screen and (min-width: 992px) {
    
    .s2-d0089454 {
        width: 64px;
        height: 64px;
        border-radius: 100%;
        padding: 8px;
        margin-right: -8px;
        margin-bottom: -8px;
        transition: all 400ms;
    }

    .s2-d0089454:hover {
        background-color: #f2f2f2;
    }

}

/* ------------------------------------------------------------------------- */
/* section 3 */
/* ------------------------------------------------------------------------- */

.s3-9645234e {
    width: 32px;
    height: 32px;
    background-color: #d9d9d9;
    border-radius: 100%;
    margin-left: 32px;
    margin-right: 8px;
    margin-top: -3px;
    flex-shrink: 0;
}

.s3-72445c55 {
    white-space: nowrap;
    position: relative;
    width: fit-content;
    animation: scroll_text 25s linear infinite;
    animation-delay: -5s;
}

@keyframes scroll_text {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(-100%);
    }
}

/* ------------------------------------------------------------------------- */
/* section 4 */
/* ------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------- */
/* section 5 */
/* ------------------------------------------------------------------------- */

.s5-a22dd622 {
    opacity: 1;
    transition: all 400ms;
}

.s5-a22dd622.hidden {
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.s5-a22dd622 > img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    object-fit: cover;
}

.s5-7f0c5b09 > div {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    /* background-color: #d9d9d9; */
    flex-shrink: 0;
}

.s5-7f0c5b09 > p {
    flex-shrink: 0;
    font-weight: bold;
}

.s5-e928ddbf {
    width: calc(20% - 19.2px);
    cursor: pointer;
    transition: all .2s ease-in-out;
    border-radius: 100%;
}

.s5-e928ddbf.selected,
.s5-e928ddbf:hover {
    transform: scale(1.2);
    border: 2px solid var(--primary-orange);
}

@media (max-width: 991px) {

    .s5-a22dd622 > h3 {
        font-size: 36px !important;
    }

    .s5-4a58a880 {
        flex-wrap: wrap;
    }

}

@media (min-width: 992px) {
    .s5-42f13afa {
        padding-top: 94px !important;
    }
}

.s5-8d39d7a0 {
    background-color: #ADD8F0;
    padding-left: 1000px;
    padding-right: 80px;
}

.s5-8d39d7a0 > div {
    width: calc(var(--container-width) * 0.4 - 80px);
    margin-left: auto;
    padding-left: 16px;
}

.s5-42f13afa {
    background-color: #F0F8FF;
    padding-right: 1000px;
    padding-left: 24px;
}

.s5-42f13afa > div {
    width: calc(var(--container-width) * 0.6 - 24px);
    padding-right: 16px;
}

@media (max-width: 991px) {

    .s5-8d39d7a0,
    .s5-42f13afa {
        padding-left: 16px;
        padding-right: 16px;
    }

    .s5-8d39d7a0 > div,
    .s5-42f13afa > div {
        width: 100%;
        padding: 0;
    }

}

/* ------------------------------------------------------------------------- */
/* section 6 */
/* ------------------------------------------------------------------------- */

/* container */

.ingredient-container-left {
    padding-left: 1rem;
    width: 100%;
    margin-left: auto;
    border: 1px solid black;
}

.ingredient-container-right {
    padding-right: 1rem;
    width: 100%;
    margin-right: auto;
    border: 1px solid black;
}

@media (min-width: 576px) {  
    .ingredient-container-left {
        max-width: calc(540px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(540px * 0.6);
    }
}

@media (min-width: 768px) {
    .ingredient-container-left {
        max-width: calc(720px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(720px * 0.6);
    }
}

@media (min-width: 992px) {
    .ingredient-container-left {
        max-width: calc(960px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(960px * 0.6);
    }
}

@media (min-width: 1200px) {
    .ingredient-container-left {
        max-width: calc(1140px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(1140px * 0.6);
    }
}

@media (min-width: 1400px) {
    .ingredient-container-left {
        max-width: calc(1320px * 0.4);
    }
    .ingredient-container-right {
        max-width: calc(1320px * 0.6);
    }
}

/* ----------------------------------------------------- */


.s7-b4b399a3 {
    padding: 8px 16px;
    background-color: var(--primary-blue);
}

.s7-5a2180ef {
    border-bottom: 1px solid #e8e8e8;
    padding: 16px;
}

.s7-d1fb5498 {
    color: var(--secondary-grey) !important;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 8px;
}

.default-accordion > .accordion-header > i {
    transition: all .2s ease-in-out;
}

.default-accordion.show > .accordion-header > i {
    transform: rotate(180deg);
}

.accordion-content {
    color: var(--primary-brown) !important;
    display: none;
    margin-top: 8px;
}