@font-face {
    font-family: "DMSans";
    src: url('../fonts/DMSans-Variable.ttf');
}

@font-face {
    font-family: "Inter";
    src: url('../fonts/Inter-Variable.ttf');
}

@font-face {
    font-family: "Satoshi";
    src: url('../fonts/Satoshi-Variable.ttf');
}

@font-face {
    font-family: "SFProText";
    src: url('../fonts/SFProText-Semibold.ttf');
}

:root {
    --c_primary: #1D7CA9;
    --c_primaryDark: #145E78;
    --c_primaryLt: #3FB4E8;
    --c_black: #000000;
    --c_dark: #170F49;
    --c_gray: #434343;
    --c_gray2: #6F6C90;
    --c_danger: #EA4335;
    --c_success: #00804F;
    --c_white: #ffffff;
    --bg_primary: #1D7CA9;
    --bg_primaryLt: #3FB4E8;
    --bg_black: #000000;
    --bg_dark: #262626;
    --bg_light: #F5F5E2;
    --bg_light2: #F7F7FF;
    --bg_light3: #F5F4F7;
    --bg_light4: #FAFAFA;
    --bg_danger: #FF0000;
    --bg_success: #00804F;
    --bg_body: #FFFFF0;
    --bg_white: #FFFFFF;
    --b_light: #F0F0F0;
    --b_light2: #E7E7DA;
    --b_input: #DADADA;
    --text_outline: #074561;
    --ff_DMSans: "DMSans", sans-serif;
    --ff_Inter: "Inter", sans-serif;
    --ff_Satoshi: "Satoshi";
    --ff_SFProText: "SFProText";
    --max_width: 48rem;
}

body {
    color: var(--c_dark);
    line-height: 1.4;
    font-family: var(--ff_Satoshi);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    min-height: 100svh;
    background-color: var(--bg_primaryLt);
    display: -ms-grid;
    display: grid;
    place-items: center;
}

.preloader_logo {
    position: relative;
    display: -ms-grid;
    display: grid;
    place-items: center;
    width: 16.375rem;
    height: 5.25rem;
    border-radius: 50%;
}

.preloader_logo::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.26);
    -webkit-animation: bgPluse 3s ease-out infinite;
    animation: bgPluse 3s ease-out infinite;
}

.preloader_logo img {
    width: 70.99%;
    -webkit-animation: logoPluse 3s ease-out infinite;
    animation: logoPluse 3s ease-out infinite;
}

@-webkit-keyframes bgPluse {

    0%,
    100% {
        -webkit-filter: blur(32px);
        filter: blur(32px);
    }

    50% {
        -webkit-filter: blur(23px);
        filter: blur(23px);
    }
}

@keyframes bgPluse {

    0%,
    100% {
        -webkit-filter: blur(32px);
        filter: blur(32px);
    }

    50% {
        -webkit-filter: blur(23px);
        filter: blur(23px);
    }
}

@-webkit-keyframes logoPluse {

    0%,
    100% {
        width: 70.99%;
    }

    50% {
        width: 54.96%;
    }
}

@keyframes logoPluse {

    0%,
    100% {
        width: 70.99%;
    }

    50% {
        width: 54.96%;
    }
}

a {
    color: var(--c_primary);
}

.container {
    position: relative;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: var(--max_width);
}

.c_primary {
    color: var(--c_primary);
}

.c_primaryDark {
    color: var(--c_primaryDark);
}

.c_primaryLt {
    color: var(--c_primaryLt);
}

.c_black {
    color: var(--c_black);
}

.c_dark {
    color: var(--c_dark);
}

.c_gray {
    color: var(--c_gray);
}

.c_gray2 {
    color: var(--c_gray2);
}

.c_danger {
    color: var(--c_danger);
}

.c_success {
    color: var(--c_success);
}

.c_white {
    color: var(--c_white);
}

.bg_primary {
    background-color: var(--bg_primary);
}

.bg_primaryLt {
    background-color: var(--bg_primaryLt);
}

.bg_black {
    background-color: var(--bg_black);
}

.bg_dark {
    background-color: var(--bg_dark);
}

.bg_light {
    background-color: var(--bg_light);
}

.bg_light2 {
    background-color: var(--bg_light2);
}

.bg_light3 {
    background-color: var(--bg_light3);
}

.bg_light4 {
    background-color: var(--bg_light4);
}

.bg_danger {
    background-color: var(--bg_danger);
}

.bg_success {
    background-color: var(--bg_success);
}

.bg_body {
    background-color: var(--bg_body);
}

.bg_white {
    background-color: var(--bg_white);
}

.b_light {
    border-color: var(--b_light);
}

.b_light2 {
    border-color: var(--b_light2);
}

.ff_DMSans {
    font-family: var(--ff_DMSans);
}

.ff_Inter {
    font-family: var(--ff_Inter);
}

.ff_Satoshi {
    font-family: var(--ff_Satoshi);
}

.ff_SFProText {
    font-family: var(--ff_SFProText);
}

.fs_10 {
    font-size: 0.625rem;
}

.fs_12 {
    font-size: 0.75rem;
}

.fs_14 {
    font-size: 0.875rem;
}

.fs_15 {
    font-size: 0.9375rem;
}

.fs_16 {
    font-size: 1rem;
}

.fs_18 {
    font-size: 1.125rem;
}

.fs_19 {
    font-size: 1.1875rem;
}

.fs_20 {
    font-size: 1.25rem;
}

.fs_21 {
    font-size: 1.3125rem;
}

.fs_22 {
    font-size: 1.375rem;
}

.fs_24 {
    font-size: 1.5rem;
}

.fs_26 {
    font-size: 1.625rem;
}

.fs_28 {
    font-size: 1.75rem;
}

.fs_30 {
    font-size: 1.875rem;
}

.fs_32 {
    font-size: 2rem;
}

.fs_34 {
    font-size: 2.125rem;
}

.fs_36 {
    font-size: 2.25rem;
}

.fs_40 {
    font-size: 2.5rem;
}

.fs_52 {
    font-size: 3.25rem;
}

.fw_black {
    font-weight: 900;
}

.max_w_300 {
    max-width: 18.75rem;
}

.max_w_400 {
    max-width: 25rem;
}

.p_12 {
    padding: 0.75rem;
}

.p_14 {
    padding: 0.875rem;
}

.p_36 {
    padding: 2.25rem;
}

.px_10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.px_12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py_6 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
}

.py_8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py_14 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.py_20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py_50 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
}

.mb_6 {
    margin-bottom: 0.375rem;
}

.mb_8 {
    margin-bottom: 0.5rem;
}

.mb_10 {
    margin-bottom: 0.625rem;
}

.mb_12 {
    margin-bottom: 0.75rem;
}

.mb_14 {
    margin-bottom: 0.875rem;
}

.mb_18 {
    margin-bottom: 1.125rem;
}

.mb_20 {
    margin-bottom: 1.25rem;
}

.mb_24 {
    margin-bottom: 1.5rem;
}

.mb_28 {
    margin-bottom: 1.75rem;
}

.mb_32 {
    margin-bottom: 2rem;
}

.mb_48 {
    margin-bottom: 3rem;
}

.mb_60 {
    margin-bottom: 3.75rem;
}

.mx_0 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}

.rounded_6 {
    border-radius: 0.375rem;
}

.rounded_10 {
    border-radius: 0.625rem;
}

.rounded_12 {
    border-radius: 0.75rem;
}

.rounded_16 {
    border-radius: 1rem;
}

.rounded_20 {
    border-radius: 1.25rem;
}

.rounded_24 {
    border-radius: 1.5rem;
}

.gap_6 {
    gap: 0.375rem;
}

.gap_10 {
    gap: 0.625rem;
}

.gap_12 {
    gap: 0.75rem;
}

.gap_14 {
    gap: 0.875rem;
}

.gap_16 {
    gap: 1rem;
}

.gap_y_20 {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
}

.gy_18 {
    --bs-gutter-y: 1.125rem;
}

.gy_20 {
    --bs-gutter-y: 1.25rem;
}

.shadow_sm {
    -webkit-box-shadow: 0rem 0.3125rem 1rem rgba(8, 15, 52, 0.06);
    box-shadow: 0rem 0.3125rem 1rem rgba(8, 15, 52, 0.06);
}

.text_outline {
    color: var(--c_white);
    text-shadow: -1px -1px 0 var(--text_outline), 1px -1px 0 var(--text_outline), -1px 1px 0 var(--text_outline), 1px 1px 0 var(--text_outline), 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn {
    font-weight: 700;
    padding: 0.6667em 0.8333em;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.btn:active {
    -webkit-transform: scale(0.96);
    -ms-transform: scale(0.96);
    transform: scale(0.96);
}

.btn img {
    height: 2em;
}

.btn_primary {
    --bs-btn-color: var(--c_white);
    --bs-btn-bg: var(--bg_primary);
    --bs-btn-border-color: var(--bg_primary);
    --bs-btn-hover-color: var(--c_white);
    --bs-btn-hover-bg: var(--bg_primaryLt);
    --bs-btn-hover-border-color: var(--bg_primaryLt);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--c_white);
    --bs-btn-active-bg: var(--bg_primaryLt);
    --bs-btn-active-border-color: var(--bg_primaryLt);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--c_white);
    --bs-btn-disabled-bg: var(--bg_primary);
    --bs-btn-disabled-border-color: var(--bg_primary);
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.btn_primaryLt {
    --bs-btn-color: var(--c_white);
    --bs-btn-bg: var(--bg_primaryLt);
    --bs-btn-border-color: var(--bg_primaryLt);
    --bs-btn-hover-color: var(--c_white);
    --bs-btn-hover-bg: var(--bg_primary);
    --bs-btn-hover-border-color: var(--bg_primary);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--c_white);
    --bs-btn-active-bg: var(--bg_primary);
    --bs-btn-active-border-color: var(--bg_primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--c_white);
    --bs-btn-disabled-bg: var(--bg_primaryLt);
    --bs-btn-disabled-border-color: var(--bg_primaryLt);
}

.btn_cta {
    position: relative;
    color: var(--c_white);
    font-weight: 900;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.738rem 1rem;
    border-radius: 1.25rem;
    background-color: var(--bg_color);
    border: 1px solid var(--border_color);
    -webkit-box-shadow: 0rem 0.5rem 0rem 0rem var(--border_color);
    box-shadow: 0rem 0.5rem 0rem 0rem var(--border_color);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 0.5rem;
}

.btn_cta.flash_effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: -o-linear-gradient(160deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 55%);
    background-image: linear-gradient(-70deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 55%);
    background-repeat: no-repeat;
    background-size: 200% 100%;
    background-position: -100% 0;
    -webkit-animation: flashMove 2s infinite;
    animation: flashMove 2s infinite;
    pointer-events: none;
    border-radius: inherit;
}

.btn_xsm {
    font-size: 0.6875rem;
    font-weight: 900;
    padding: 0.375rem 0.625rem;
}

.cta_logo {
    height: 2.25rem;
    width: auto;
}

.btn_cta:active {
    -webkit-transform: translateY(0.3rem);
    -ms-transform: translateY(0.3rem);
    transform: translateY(0.3rem);
    -webkit-box-shadow: 0rem 0.2rem 0rem 0rem var(--border_color);
    box-shadow: 0rem 0.2rem 0rem 0rem var(--border_color);
}

.cta_note {
    position: relative;
    color: var(--bg_color);
    font-size: 0.75rem;
    line-height: 1;
    background: var(--bs-white);
    border: 1px solid var(--border_color);
    -webkit-box-shadow: -2px -2px 1px var(--note_shadow);
    box-shadow: -2px -2px 1px var(--note_shadow);
    border-radius: 0.25rem 0rem 0.25rem 0.25rem;
    padding: 0.25rem 0.375rem;
    margin-right: -1.3125rem;
}

.cta_note::after {
    content: "";
    display: block;
    border: 2px solid var(--bs-black);
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    position: absolute;
    top: -0.25rem;
    right: 0px;
}

.cta_primary {
    --bg_color: var(--bg_primaryLt);
    --border_color: #1186B9;
    --note_shadow: rgba(17, 135, 185, 0.24);
}

.cta_secondary,
.cta_whatsapp {
    --bg_color: #292929;
    --border_color: #151515;
    --note_shadow: rgba(21, 21, 21, 0.25);
}

.cta_tiktok {
    --bg_color: #ffffff;
    color: #000000;
    --border_color: #151515;
    --shadow: rgba(21, 21, 21, 0.25);
}

.cta_whatsapp {
    font-size: 0.875rem;
}

.cta_shopee {
    --bg_color: #EE4E2E;
    --border_color: #881701;
    --note_shadow: rgba(137, 23, 1, 0.25);
}

.cta_tokopedia {
    --bg_color: #42B549;
    --border_color: #2D8332;
    --note_shadow: rgba(45, 131, 50, 0.25);
}

@-webkit-keyframes flashMove {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

@keyframes flashMove {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.badge_text {
    color: var(--c_white);
    font-weight: 900;
    text-shadow: -1px -1px 0 var(--text_outline), 1px -1px 0 var(--text_outline), -1px 1px 0 var(--text_outline), 1px 1px 0 var(--text_outline);
    letter-spacing: 0.03em;
    -webkit-transform: rotate(-2.94deg) skew(-5deg);
    -ms-transform: rotate(-2.94deg) skew(-5deg);
    transform: rotate(-2.94deg) skew(-5deg);
    background: -o-linear-gradient(left, rgba(15, 106, 150, 0) 0%, rgba(15, 106, 150, 0.8) 20.15%, rgba(15, 106, 150, 0.8) 80%, rgba(15, 106, 150, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(15, 106, 150, 0)), color-stop(20.15%, rgba(15, 106, 150, 0.8)), color-stop(80%, rgba(15, 106, 150, 0.8)), to(rgba(15, 106, 150, 0)));
    background: linear-gradient(90deg, rgba(15, 106, 150, 0) 0%, rgba(15, 106, 150, 0.8) 20.15%, rgba(15, 106, 150, 0.8) 80%, rgba(15, 106, 150, 0) 100%);
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    padding-left: 1em;
    padding-right: 1em;
    margin-left: auto;
    margin-right: auto;
}

.bg_bubble {
    position: absolute;
    width: 14rem;
    height: 13rem;
    background: #FAFFAF;
    -webkit-filter: blur(5.5rem);
    filter: blur(5.5rem);
}

.bubble_tr {
    top: 0rem;
    right: -7.5rem;
}

.bubble_tl {
    top: 0rem;
    left: -7.5rem;
}

.hide_scrollbar::-webkit-scrollbar {
    display: none;
}

.hide_scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hover_underline {
    cursor: pointer;
    text-decoration: none;
}

.hover_underline:hover {
    text-decoration: underline;
}


/* _______________ start home page _______________ */

.main {
    position: relative;
    max-width: var(--max_width);
    margin-left: auto;
    margin-right: auto;
    background-color: var(--bg_body);
    overflow: hidden;
    min-height: calc(100svh - 2.0625rem);
}

.h_full {
    min-height: 100svh;
}


/* floating btns */

.floating_box {
    position: fixed;
    z-index: 100;
    right: 1.5rem;
    bottom: 1.5rem;
    text-align: right;
}

.floating_btns {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-bottom: 2.5rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
}

.floating_box:not(.show__btns) .floating_btns {
    -webkit-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0;
    pointer-events: none;
}

.floating_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0.5rem 0.875rem 0.5rem 0.625rem;
    background: var(--bs-white);
    border: 1px solid #F0F0F0;
    -webkit-box-shadow: 0rem 0.25rem 0.625rem rgba(0, 0, 0, 0.15);
    box-shadow: 0rem 0.25rem 0.625rem rgba(0, 0, 0, 0.15);
    border-radius: 50rem;
    margin-left: auto;
    font-weight: 900;
    text-decoration: none;
    color: var(--c_dark);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.floating_btn:active {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.floating_btns .floating_btn {
    margin-bottom: 0.75rem;
}

.floating_btn img {
    height: 1.5rem;
}

.floating_tglBtn {
    position: relative;
    z-index: 2;
}

.floating_tglBtn img,
.bag_shake {
    -webkit-animation: shake 5s;
    animation: shake 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
}

@-webkit-keyframes shake {

    0%,
    20% {
        -webkit-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }

    10%,
    30% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    50%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes shake {

    0%,
    20% {
        -webkit-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }

    10%,
    30% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    50%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}


/* hero section */

.hero_section {
    position: relative;
    padding: 4.375rem 0rem;
    background-image: url('../img/home/field.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 120% 56%;
}

.hero_sectionLeaf {
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 6rem;
}

.hero_logo {
    width: 8.9375rem;
    height: 1.6169rem;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 0.625rem;
}

.hero_badgeText {
    font-size: 2rem;
    line-height: 2.6875rem;
}

.hero_prdBox {
    position: relative;
    padding-bottom: 115%;
}

.hero_prdBox>* {
    position: absolute;
}

.hero_prdImg {
    top: 0;
    left: 0;
    width: 100%;
    height: 86.956%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transform: translateX(15%) rotate(15deg);
    -ms-transform: translateX(15%) rotate(15deg);
    transform: translateX(15%) rotate(15deg);
    -webkit-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    transform-origin: bottom center;
}

.pg_loaded .hero_prdImg {
    -webkit-animation: sprayMotion 2s ease-out forwards;
    animation: sprayMotion 2s ease-out forwards;
}

@-webkit-keyframes sprayMotion {
    0% {
        -webkit-transform: translateX(15%) rotate(12deg);
        transform: translateX(15%) rotate(12deg);
    }

    20% {
        -webkit-transform: translateX(0%) rotate(-6deg);
        transform: translateX(0%) rotate(-6deg);
    }

    40% {
        -webkit-transform: translateX(0%) rotate(3deg);
        transform: translateX(0%) rotate(3deg);
    }

    60% {
        -webkit-transform: translateX(0%) rotate(-2deg);
        transform: translateX(0%) rotate(-2deg);
    }

    80%,
    100% {
        -webkit-transform: translateX(0%) rotate(0deg);
        transform: translateX(0%) rotate(0deg);
    }
}

@keyframes sprayMotion {
    0% {
        -webkit-transform: translateX(15%) rotate(12deg);
        transform: translateX(15%) rotate(12deg);
    }

    20% {
        -webkit-transform: translateX(0%) rotate(-6deg);
        transform: translateX(0%) rotate(-6deg);
    }

    40% {
        -webkit-transform: translateX(0%) rotate(3deg);
        transform: translateX(0%) rotate(3deg);
    }

    60% {
        -webkit-transform: translateX(0%) rotate(-2deg);
        transform: translateX(0%) rotate(-2deg);
    }

    80%,
    100% {
        -webkit-transform: translateX(0%) rotate(0deg);
        transform: translateX(0%) rotate(0deg);
    }
}

.hero_prdPodium {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 18.6956%;
    -o-object-fit: contain;
    object-fit: contain;
}

.hero_prdInfo {
    text-align: left;
    position: relative;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    border-radius: 50rem;
    background: var(--bg_primary);
    -webkit-box-shadow: 0rem 0.5rem 0.75rem rgba(0, 0, 0, 0.3);
    box-shadow: 0rem 0.5rem 0.75rem rgba(0, 0, 0, 0.3);
    margin: -1.25rem auto auto;
    border: 2px solid var(--bg_primaryLt);
    padding: 0rem 0rem 0rem 1rem;
}

.hero_prdInfoInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding: 0.25rem 2rem 0.25rem 0.25rem;
    background: -o-linear-gradient(top, #FFFFFF 0%, #E1E1E1 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#E1E1E1));
    background: linear-gradient(180deg, #FFFFFF 0%, #E1E1E1 100%);
    -webkit-box-shadow: 0rem 0.5rem 0.625rem rgba(0, 28, 93, 0.45);
    box-shadow: 0rem 0.5rem 0.625rem rgba(0, 28, 93, 0.45);
    border-radius: 50rem;
    border: 2px solid var(--bg_primary);
}

.hero_prdInfoNum {
    color: var(--c_white);
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 2.25rem;
    font-weight: 900;
    width: 3.625rem;
    height: 3.625rem;
    min-width: 3.625rem;
    background: #076E54;
    border-radius: 50%;
    border: 1px solid #098364;
}

.hero_prdLeaf1 {
    top: 11.7%;
    left: 18%;
    width: 7%;
    -webkit-transform: translateY(-400%) rotate(0deg);
    -ms-transform: translateY(-400%) rotate(0deg);
    transform: translateY(-400%) rotate(0deg);
}

.hero_prdLeaf2 {
    bottom: 18.47%;
    left: 24%;
    width: 20%;
    -webkit-transform: translateY(-400%) rotate(0deg);
    -ms-transform: translateY(-400%) rotate(0deg);
    transform: translateY(-400%) rotate(0deg);
}

.pg_loaded .hero_prdLeaf1,
.pg_loaded .hero_prdLeaf2 {
    -webkit-animation: fallFromTop 4s linear forwards;
    animation: fallFromTop 4s linear forwards;
}

@-webkit-keyframes fallFromTop {
    0% {
        -webkit-transform: translateY(-400%) rotate(0deg);
        transform: translateY(-400%) rotate(0deg);
    }

    25% {
        -webkit-transform: translateY(-300%) rotate(15deg);
        transform: translateY(-300%) rotate(15deg);
    }

    50% {
        -webkit-transform: translateY(-200%) rotate(-15deg);
        transform: translateY(-200%) rotate(-15deg);
    }

    75% {
        -webkit-transform: translateY(-100%) rotate(10deg);
        transform: translateY(-100%) rotate(10deg);
    }

    100% {
        -webkit-transform: translateY(0%) rotate(0deg);
        transform: translateY(0%) rotate(0deg);
    }
}

@keyframes fallFromTop {
    0% {
        -webkit-transform: translateY(-400%) rotate(0deg);
        transform: translateY(-400%) rotate(0deg);
    }

    25% {
        -webkit-transform: translateY(-300%) rotate(15deg);
        transform: translateY(-300%) rotate(15deg);
    }

    50% {
        -webkit-transform: translateY(-200%) rotate(-15deg);
        transform: translateY(-200%) rotate(-15deg);
    }

    75% {
        -webkit-transform: translateY(-100%) rotate(10deg);
        transform: translateY(-100%) rotate(10deg);
    }

    100% {
        -webkit-transform: translateY(0%) rotate(0deg);
        transform: translateY(0%) rotate(0deg);
    }
}

@media(min-width:576px) {
    .h_full {
        min-height: auto;
    }
}


/* product info section */

.info_section {
    position: relative;
}

.b_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
}

.b_left::before {
    content: "";
    display: block;
    border-left: 1rem solid var(--c_primaryDark);
    border-right: 0.375rem solid #053C4F;
}

.bl_sm {
    border-left: 0.25rem solid var(--c_primary);
    padding-left: 0.5rem;
}

.info_prdBox {
    position: relative;
    padding-bottom: 100%;
}

.info_prdBox>* {
    position: absolute;
}

.info_prdBg {
    top: 10%;
    left: 20%;
    width: 60%;
    height: 80%;
    border-radius: 2rem;
    -o-object-fit: cover;
    object-fit: cover;
}

.info_prdImg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.info_item {
    line-height: 1.1;
    font-size: 0.875rem;
    color: var(--c_gray);
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0.8rem;
    gap: 0.4rem;
    border: 1px solid var(--b_light2);
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 0.75rem;
}

.info_item:nth-of-type(2n+2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.info_itemIcon {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    border: 1px solid var(--b_light);
    border-radius: 50%;
    background-color: #076E54;
}

.info_itemIcon img {
    padding: 0.25rem;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.info_item:nth-of-type(2n+2) .info_itemIcon {
    margin-right: -2rem;
}

.info_item:nth-of-type(2n+1) .info_itemIcon {
    margin-left: -2rem;
}

.info_item_1 {
    top: 15%;
    left: 55%;
    -webkit-animation: item_floating_1 6s linear infinite;
    animation: item_floating_1 6s linear infinite;
}

.info_item_2 {
    top: 35%;
    right: 55%;
    -webkit-animation: item_floating_2 6s linear infinite;
    animation: item_floating_2 6s linear infinite;
}

.info_item_3 {
    top: 50%;
    left: 47%;
    -webkit-animation: item_floating_3 6s linear infinite;
    animation: item_floating_3 6s linear infinite;
}

.info_item_4 {
    top: 80%;
    left: 10%;
    -webkit-animation: item_floating_4 6s linear infinite;
    animation: item_floating_4 6s linear infinite;
}

@-webkit-keyframes item_floating_1 {
    0% {
        -webkit-transform: rotate(3.59deg) translate(1.65px, -4.75px);
        transform: rotate(3.59deg) translate(1.65px, -4.75px);
    }

    25% {
        -webkit-transform: rotate(2deg) translate(6px, 7px);
        transform: rotate(2deg) translate(6px, 7px);
    }

    50% {
        -webkit-transform: rotate(0deg) translate(12.1px, 19px);
        transform: rotate(0deg) translate(12.1px, 19px);
    }

    75% {
        -webkit-transform: rotate(-2.94deg) translate(21px, -3.96px);
        transform: rotate(-2.94deg) translate(21px, -3.96px);
    }

    100% {
        -webkit-transform: rotate(3.59deg) translate(1.65px, -4.75px);
        transform: rotate(3.59deg) translate(1.65px, -4.75px);
    }
}

@keyframes item_floating_1 {
    0% {
        -webkit-transform: rotate(3.59deg) translate(1.65px, -4.75px);
        transform: rotate(3.59deg) translate(1.65px, -4.75px);
    }

    25% {
        -webkit-transform: rotate(2deg) translate(6px, 7px);
        transform: rotate(2deg) translate(6px, 7px);
    }

    50% {
        -webkit-transform: rotate(0deg) translate(12.1px, 19px);
        transform: rotate(0deg) translate(12.1px, 19px);
    }

    75% {
        -webkit-transform: rotate(-2.94deg) translate(21px, -3.96px);
        transform: rotate(-2.94deg) translate(21px, -3.96px);
    }

    100% {
        -webkit-transform: rotate(3.59deg) translate(1.65px, -4.75px);
        transform: rotate(3.59deg) translate(1.65px, -4.75px);
    }
}

@-webkit-keyframes item_floating_2 {
    0% {
        -webkit-transform: rotate(0deg) translate(12px, 6px);
        transform: rotate(0deg) translate(12px, 6px);
    }

    25% {
        -webkit-transform: rotate(3.35deg) translate(21px, 7.49px);
        transform: rotate(3.35deg) translate(21px, 7.49px);
    }

    50% {
        -webkit-transform: rotate(2.01deg) translate(0.89px, -6.67px);
        transform: rotate(2.01deg) translate(0.89px, -6.67px);
    }

    75% {
        -webkit-transform: rotate(-1.5deg) translate(6px, 2px);
        transform: rotate(-1.5deg) translate(6px, 2px);
    }

    100% {
        -webkit-transform: rotate(0deg) translate(12px, 6px);
        transform: rotate(0deg) translate(12px, 6px);
    }
}

@keyframes item_floating_2 {
    0% {
        -webkit-transform: rotate(0deg) translate(12px, 6px);
        transform: rotate(0deg) translate(12px, 6px);
    }

    25% {
        -webkit-transform: rotate(3.35deg) translate(21px, 7.49px);
        transform: rotate(3.35deg) translate(21px, 7.49px);
    }

    50% {
        -webkit-transform: rotate(2.01deg) translate(0.89px, -6.67px);
        transform: rotate(2.01deg) translate(0.89px, -6.67px);
    }

    75% {
        -webkit-transform: rotate(-1.5deg) translate(6px, 2px);
        transform: rotate(-1.5deg) translate(6px, 2px);
    }

    100% {
        -webkit-transform: rotate(0deg) translate(12px, 6px);
        transform: rotate(0deg) translate(12px, 6px);
    }
}

@-webkit-keyframes item_floating_3 {
    0% {
        -webkit-transform: rotate(-2deg) translate(10px, 10px);
        transform: rotate(-2deg) translate(10px, 10px);
    }

    25% {
        -webkit-transform: rotate(2deg) translate(4px, -5px);
        transform: rotate(2deg) translate(4px, -5px);
    }

    75% {
        -webkit-transform: rotate(-1.5deg) translate(16px, -2px);
        transform: rotate(-1.5deg) translate(16px, -2px);
    }

    100% {
        -webkit-transform: rotate(-2deg) translate(10px, 10px);
        transform: rotate(-2deg) translate(10px, 10px);
    }
}

@keyframes item_floating_3 {
    0% {
        -webkit-transform: rotate(-2deg) translate(10px, 10px);
        transform: rotate(-2deg) translate(10px, 10px);
    }

    25% {
        -webkit-transform: rotate(2deg) translate(4px, -5px);
        transform: rotate(2deg) translate(4px, -5px);
    }

    75% {
        -webkit-transform: rotate(-1.5deg) translate(16px, -2px);
        transform: rotate(-1.5deg) translate(16px, -2px);
    }

    100% {
        -webkit-transform: rotate(-2deg) translate(10px, 10px);
        transform: rotate(-2deg) translate(10px, 10px);
    }
}

@-webkit-keyframes item_floating_4 {
    0% {
        -webkit-transform: rotate(0deg) translate(11px, 1px);
        transform: rotate(0deg) translate(11px, 1px);
    }

    25% {
        -webkit-transform: rotate(3.43deg) translate(-2.26px, -12px);
        transform: rotate(3.43deg) translate(-2.26px, -12px);
    }

    75% {
        -webkit-transform: rotate(2.33deg) translate(18.06px, 8.02px);
        transform: rotate(2.33deg) translate(18.06px, 8.02px);
    }

    100% {
        -webkit-transform: rotate(0deg) translate(11px, 1px);
        transform: rotate(0deg) translate(11px, 1px);
    }
}

@keyframes item_floating_4 {
    0% {
        -webkit-transform: rotate(0deg) translate(11px, 1px);
        transform: rotate(0deg) translate(11px, 1px);
    }

    25% {
        -webkit-transform: rotate(3.43deg) translate(-2.26px, -12px);
        transform: rotate(3.43deg) translate(-2.26px, -12px);
    }

    75% {
        -webkit-transform: rotate(2.33deg) translate(18.06px, 8.02px);
        transform: rotate(2.33deg) translate(18.06px, 8.02px);
    }

    100% {
        -webkit-transform: rotate(0deg) translate(11px, 1px);
        transform: rotate(0deg) translate(11px, 1px);
    }
}

.info_divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.info_divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 18.75rem;
}

.info_divider .shape-fill {
    fill: #FFFFFF;
}

.b_top::before {
    content: "";
    display: block;
    width: 2rem;
    border-bottom: 3px solid var(--c_primary);
    margin-bottom: 0.5rem;
}

.b_top.text-center::before {
    margin-left: auto;
    margin-right: auto;
}


/* cuma butum section */

.cb_section {
    padding: 5rem 0rem;
    background-image: -o-linear-gradient(top, #D8EFF8, #d8eff800 32%), url('../img/home/cb-bg.webp');
    background-image: -webkit-gradient(linear, left top, left bottom, from(#D8EFF8), color-stop(32%, #d8eff800)), url('../img/home/cb-bg.webp');
    background-image: linear-gradient(to bottom, #D8EFF8, #d8eff800 32%), url('../img/home/cb-bg.webp');
    background-repeat: no-repeat;
    background-position: center top, center 70%;
    background-size: contain, cover;
    position: relative;
}

.cb_leaf {
    position: absolute;
    right: -6.25rem;
    bottom: -5.625rem;
    width: 13.75rem;
    height: 12.25rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.cb_imgBoxWrap {
    background-image: url("../img/home/cb-img-bg.webp");
    background-repeat: no-repeat;
    background-size: 100% 288px;
}

.cb_imgBox {
    position: relative;
    padding-bottom: 110.5%;
}

.cb_imgBox>* {
    position: absolute;
}

.cb_warranty_card {
    color: var(--c_white);
    font-weight: 700;
    left: 20.5%;
    right: 20.5%;
    top: 32%;
    padding-bottom: 6.25rem;
    background: var(--bs-white);
    -webkit-box-shadow: 0rem 0rem 0.875rem rgba(0, 0, 0, 0.25);
    box-shadow: 0rem 0rem 0.875rem rgba(0, 0, 0, 0.25);
    border-radius: 1.125rem;
}

.cb_warranty_card>div {
    position: relative;
    padding: 1rem 1rem 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    -webkit-animation: breathingShadow 2.5s infinite;
    animation: breathingShadow 2.5s infinite;
}

.cb_warranty_card>div::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: -o-linear-gradient(left, #FFB62E, #CA1003);
    background: -webkit-gradient(linear, left top, right top, from(#FFB62E), to(#CA1003));
    background: linear-gradient(to right, #FFB62E, #CA1003);
    -webkit-animation: breathing 3s infinite;
    animation: breathing 3s infinite;
    border-radius: inherit;
}

.cb_warranty_card>div::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: -o-linear-gradient(top, #D41302, #950002);
    background: -webkit-gradient(linear, left top, left bottom, from(#D41302), to(#950002));
    background: linear-gradient(to bottom, #D41302, #950002);
    border-radius: inherit;
}

.cb_img {
    left: 0;
    bottom: 0;
    height: 45.9276%;
}

@-webkit-keyframes breathing {
    0% {
        -webkit-transform: scale(2.5, 3) rotateZ(0deg);
        transform: scale(2.5, 3) rotateZ(0deg);
    }

    33.33% {
        -webkit-transform: scale(2.5, 3) rotateZ(90deg);
        transform: scale(2.5, 3) rotateZ(90deg);
    }

    66.66% {
        -webkit-transform: scale(2.5, 3) rotateZ(180deg);
        transform: scale(2.5, 3) rotateZ(180deg);
    }

    100% {
        -webkit-transform: scale(2.5, 3) rotateZ(360deg);
        transform: scale(2.5, 3) rotateZ(360deg);
    }
}

@keyframes breathing {
    0% {
        -webkit-transform: scale(2.5, 3) rotateZ(0deg);
        transform: scale(2.5, 3) rotateZ(0deg);
    }

    33.33% {
        -webkit-transform: scale(2.5, 3) rotateZ(90deg);
        transform: scale(2.5, 3) rotateZ(90deg);
    }

    66.66% {
        -webkit-transform: scale(2.5, 3) rotateZ(180deg);
        transform: scale(2.5, 3) rotateZ(180deg);
    }

    100% {
        -webkit-transform: scale(2.5, 3) rotateZ(360deg);
        transform: scale(2.5, 3) rotateZ(360deg);
    }
}

@-webkit-keyframes breathingShadow {
    0% {
        -webkit-box-shadow: 0px 0px 7px 2px #CC1102;
        box-shadow: 0px 0px 7px 2px #CC1102;
    }

    50% {
        -webkit-box-shadow: 0px 0px 12px 6px #CC1102;
        box-shadow: 0px 0px 12px 6px #CC1102;
    }

    100% {
        -webkit-box-shadow: 0px 0px 7px 2px #CC1102;
        box-shadow: 0px 0px 7px 2px #CC1102;
    }
}

@keyframes breathingShadow {
    0% {
        -webkit-box-shadow: 0px 0px 7px 2px #CC1102;
        box-shadow: 0px 0px 7px 2px #CC1102;
    }

    50% {
        -webkit-box-shadow: 0px 0px 12px 6px #CC1102;
        box-shadow: 0px 0px 12px 6px #CC1102;
    }

    100% {
        -webkit-box-shadow: 0px 0px 7px 2px #CC1102;
        box-shadow: 0px 0px 7px 2px #CC1102;
    }
}

@media(max-width:359.98px) {
    .cb_warranty_card {
        left: 12%;
        right: 12%;
    }
}


/* pricing section */

.flash_sale_section {
    position: relative;
    padding: 5rem 0rem 2.5rem;
}

.flash_sale_section .bg_bubble {
    top: 3.75rem;
    left: 8%;
}

.price_box {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: auto auto -56px auto;
    -webkit-transform: rotate(-4deg) skew(-5deg);
    -ms-transform: rotate(-4deg) skew(-5deg);
    transform: rotate(-4deg) skew(-5deg);
}

.price_box>* {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.price_old {
    background-color: var(--bs-white);
    padding: 0.125rem 0.625rem;
    position: relative;
}

.price_old::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    border-bottom: 2px solid var(--bs-danger);
}

.price_current {
    position: relative;
    color: var(--c_white);
    font-weight: 900;
    line-height: 1;
    background-color: #df2c0f;
    padding: 0.5rem 1rem;
    margin-left: 0.6rem;
}

.price_current::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 2.25rem;
    height: 1.25rem;
    background-color: #990c00;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.price_discount {
    color: var(--c_white);
    font-weight: 900;
    background-color: #262626;
    margin-left: 1rem;
    padding: 0.3rem 0.5rem;
}

.vertical_supper {
    vertical-align: super;
}

.flash_sale_info {
    background: var(--bs-white);
    border: 1px solid var(--b_light2);
    -webkit-box-shadow: 0rem 0.25rem 1.5rem var(--b_light2);
    box-shadow: 0rem 0.25rem 1.5rem var(--b_light2);
    border-radius: 1.5rem;
    overflow: hidden;
}

.flash_sale_countdown {
    padding: 4.375rem 1rem 3.5rem;
    background-color: #F9C700;
    background-image: url("../img/home/flash-sale-bg.svg");
    background-repeat: no-repeat;
    background-position: top right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
}

.countdown_badge {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--c_white);
    text-shadow: -1px -1px 0 var(--c_black), 1px -1px 0 var(--c_black), -1px 1px 0 var(--c_black), 1px 1px 0 var(--c_black);
}

.countdown_badge span {
    padding: 4px;
    background-color: var(--bg_danger);
    border: 1px solid var(--c_black);
    -webkit-box-shadow: 1px 1px 0px 0px var(--c_black);
    box-shadow: 1px 1px 0px 0px var(--c_black);
    border-radius: 4px;
    text-shadow: none;
}

.flash_sale_content {
    background-color: var(--bs-white);
    border-radius: 2.5rem 0rem 0rem 0rem;
    padding: 0.625rem 1.25rem 2.25rem;
    margin-top: -2.5rem;
}


/* faq section */

.faq_section {
    position: relative;
    padding: 3.125rem 0rem;
}

.accordion-item {
    overflow: hidden;
    border: 1px solid var(--b_light) !important;
    border-radius: 0.75rem !important;
    -webkit-box-shadow: 0rem 0.3125rem 1rem rgba(8, 15, 52, 0.06);
    box-shadow: 0rem 0.3125rem 1rem rgba(8, 15, 52, 0.06);
    margin-bottom: 1rem;
}

.accordion-item:last-of-type {
    margin-bottom: 0rem;
}

.accordion-button {
    font-weight: 500;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0.875rem 0.75rem;
    box-shadow: none !important;
    background: transparent !important;
}

.accordion-button::after {
    content: "\2b";
    width: 1.75rem;
    height: 1.75rem;
    color: var(--c_primaryLt);
    background: var(--bg_light2);
    border-radius: 0.5rem;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.accordion-button:not(.collapsed)::after {
    content: "\f068";
    color: var(--c_white);
    background: var(--bg_primaryLt);
}

.accordion-body {
    color: var(--c_gray2);
    font-size: 0.875rem;
    font-family: var(--ff_DMSans);
    padding: 0 0.75rem 0.875rem;
}

.accordion-body p:last-of-type {
    margin-bottom: 0rem;
}

.faq_leaf {
    position: absolute;
    right: -10rem;
    top: -8rem;
    width: 13.75rem;
    height: 12.25rem;
    -o-object-fit: contain;
    object-fit: contain;
}


/* testimonials section */

.testimonials_section {
    position: relative;
    padding: 3.125rem 0rem;
}

.testimonial_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 18.625rem 1rem 18.625rem;
    grid-template-columns: repeat(2, 18.625rem);
    gap: 1rem;
    padding: 1rem 1.25rem;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}

.testimonial_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0.875rem;
    gap: 1rem;
    /* width: 18.625rem; */
    background: var(--bs-white);
    border: 1px solid var(--b_light2);
    -webkit-box-shadow: 0rem 0.3125rem 1rem rgba(8, 15, 52, 0.1);
    box-shadow: 0rem 0.3125rem 1rem rgba(8, 15, 52, 0.1);
    border-radius: 1rem;
}

.review_img {
    width: 2.875rem;
    min-width: 2.875rem;
    height: 2.875rem;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.5rem;
}

.user_img {
    width: 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.testimonials_leaf {
    position: absolute;
    bottom: -2rem;
    left: -10rem;
    width: 13.75rem;
    height: 12.25rem;
    -o-object-fit: contain;
    object-fit: contain;
}

@media(min-width: 768px) {
    .testimonial_list {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (18.625rem)[3];
        grid-template-columns: repeat(3, 18.625rem);
    }
}


/* research section */

.research_section {
    position: relative;
    padding: 2.5rem 0rem;
}

.h_510 {
    height: 31.875rem;
}

.research_user {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bs-white);
    -webkit-box-shadow: 0rem 0.3125rem 1rem rgba(172, 158, 128, 0.16);
    box-shadow: 0rem 0.3125rem 1rem rgba(172, 158, 128, 0.16);
    border-radius: 1rem;
    margin: -2.125rem auto auto;
}


/* media or news */

.media_section {
    position: relative;
    padding: 2.5rem 0rem;
}

.img_box {
    position: relative;
    overflow: hidden;
}

.box_media {
    padding-bottom: 56.571%;
}

.img_box img {
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.h_198 {
    height: 12.375rem;
}

.media_leaf {
    position: absolute;
    right: -2rem;
    top: -1rem;
    width: 4.25rem;
    height: 4.25rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.single__item .gprev,
.single__item .gnext {
    display: none;
}


/* articles section */

.articles_section {
    position: relative;
    padding: 2.5rem 0rem;
}

.article_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 0rem 1.25rem;
}

.article_item {
    width: 12.25rem;
    color: var(--c_dark);
    display: block;
    text-decoration: none;
}

.box_article {
    padding-bottom: 127.551%;
}

.box_square {
    padding-bottom: 100%;
}

.article_item .img_box img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform-origin: 10% 50%;
    -ms-transform-origin: 10% 50%;
    transform-origin: 10% 50%;
}

.article_item:hover .img_box img {
    -webkit-transform: scale(1.22);
    -ms-transform: scale(1.22);
    transform: scale(1.22);
}

.gap_x_16 {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}

@media(min-width:768px) {
    .box_md_media {
        padding-bottom: 56.571%;
    }
}


/* _______________ end home page _______________ */


/* _______________ start news page _______________ */


/* header */

.header {
    z-index: 1050;
    background-color: var(--bs-white);
    -webkit-box-shadow: 0rem 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
    box-shadow: 0rem 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
}

.header.scroll_bg:not(.show_shadow) {
    background-color: transparent !important;
}

.header.scroll_shadow:not(.show_shadow) {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.header>.container>.d-flex {
    padding: 0.625rem 0rem;
    min-height: 3.625rem;
}

.header a.d-inline-block {
    text-decoration: none;
}

.header_logo {
    /* width: 6.25rem;
    height: 1.1875rem; */
    width: 8.9375rem;
    height: 1.6169rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.header.scroll_bg.show_shadow .logo_white,
.header.scroll_bg:not(.show_shadow) .logo_def {
    display: none;
}

.header~.main {
    padding-top: 3.625rem;
}


/* modal */

.modal-header {
    padding: 1rem 1.5rem;
}

.modal-body {
    overflow: scroll;
    max-height: calc(100vh - 11.25rem);
    padding: 0.5rem 1.5rem 1.5rem;
}

.modal__bottom {
    overflow: hidden;
}

.modal__clsBtn {
    padding: 0.8rem;
    width: 100%;
    text-align: center;
    background-color: transparent;
    border: none;
    line-height: 0;
}

.modal__clsBtn::before {
    content: "";
    display: inline-block;
    width: 2.9375rem;
    height: 0.375rem;
    border-radius: 1.875rem;
    background: #DDD;
}

.modal__bottom.fade .modal-dialog {
    position: absolute;
    bottom: 0px;
    margin: 0px;
    width: 100%;
    max-width: var(--max_width);
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

.modal__bottom.show .modal-dialog {
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.modal__bottom .modal-content {
    border-radius: 1.5rem 1.5rem 0rem 0rem;
    border: none;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    color: var(--c_dark) !important;
    position: absolute !important;
    top: 50% !important;
    width: 2rem !important;
    height: 2rem !important;
    background: rgba(0, 0, 0, 0.3) !important;
    -webkit-box-shadow: 0rem 0.25rem 0.25rem rgba(0, 0, 0, 0.21) !important;
    box-shadow: 0rem 0.25rem 0.25rem rgba(0, 0, 0, 0.21) !important;
    -webkit-backdrop-filter: blur(0.25rem) !important;
    backdrop-filter: blur(0.25rem) !important;
    border-radius: 50% !important;
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}

.owl-carousel .owl-prev {
    left: -0.5rem !important;
}

.owl-carousel .owl-next {
    right: -0.5rem !important;
}


/* _______________ end news page _______________ */


/* _______________ start article page _______________ */

.share_tglBtn {
    position: fixed;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem;
    gap: 0.375rem;
    left: 1.25rem;
    bottom: 1.5rem;
    background: var(--bs-white);
    -webkit-box-shadow: 0rem 0.25rem 0.9375rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0rem 0.25rem 0.9375rem rgba(0, 0, 0, 0.15) !important;
    border-radius: 50rem;
    outline: none !important;
}

.share_tglBtn:hover,
.share_tglBtn:active {
    background: var(--bs-white) !important;
}

.share_icon {
    color: var(--c_white);
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    width: 2.875rem;
    min-width: 2.875rem;
    height: 2.875rem;
    border-radius: 50%;
}

.share_tglBtn .share_icon {
    font-size: 0.9rem;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
}

.share_icon_link {
    color: var(--c_dark);
    border: 1px solid var(--b_light);
}

.share_icon_fb {
    background-color: #337FFF;
}

.share_icon_tt {
    background-color: #000000;
}

.share_icon_wa {
    background-color: #00D95F;
}

.share_link {
    color: var(--c_dark);
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 4px;
    border-radius: 50rem;
}

.share_link:hover {
    background-color: var(--bg_light2);
}


/* _______________ end article page _______________ */


/* _______________ start voucher counter page _______________ */

.form-control {
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 0.575rem 0.75rem;
    border: 1px solid var(--b_input);
    border-radius: 0.375rem;
}

.form-control:focus {
    border-color: var(--c_primaryLt);
    -webkit-box-shadow: none;
    box-shadow: none;
    /* box-shadow: 0 0 0 .12rem rgba(13,110,253,.25); */
}

.hide_arrow::-webkit-outer-spin-button,
.hide_arrow::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hide_arrow {
    -moz-appearance: textfield;
}

.number-picker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--b_input);
    border-radius: 0.375rem;
    padding: 2px;
    gap: 0.5rem;
}

.number-picker:focus-within {
    border-color: var(--c_primaryLt);
}

.number-picker input {
    font-weight: 700;
    border: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding: 0.45rem 0.75rem;
    text-align: center;
}

.number-picker .decrease,
.number-picker .increase {
    width: 2.5rem;
    border: none;
    border-radius: inherit;
    background-color: transparent;
    line-height: 1;
}

.number-picker .decrease:hover,
.number-picker .increase:hover {
    background-color: var(--bg_light2);
}

.number-picker i {
    border: 1px solid var(--b_light2);
    font-size: 0.75rem;
    padding: 0.25rem 0.2813rem;
    border-radius: 50%;
    line-height: 1;
}

div.error {
    color: var(--c_danger);
    font-size: 0.75rem;
    font-weight: 500;
    padding-top: 0.5rem;
}

.toast {
    font-size: 0.875rem;
    font-weight: 700;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.75rem;
}

.toast_success {
    color: var(--c_white);
    background: var(--bg_success);
    border: none;
}

.toast_error {
    color: var(--c_white);
    background: #EA4335;
    border: none;
}

.toast_success .toast-body,
.toast_error .toast-body {
    padding: 0.75rem 1rem;
}

.toast_success .toast-body i,
.toast_error .toast-body i {
    font-size: 1.2em;
    margin-right: 0.4rem;
}


/* _______________ end voucher counter page _______________ */


/* _______________ start form page _______________ */


/* validate serial number */

.term_icon {
    font-size: 0.875rem;
    color: var(--c_primary);
    display: -ms-grid;
    display: grid;
    place-items: center;
    padding: 0.25rem;
    width: 1.75rem;
    height: 1.75rem;
    background: #E1F6FF;
    border-radius: 0.625rem;
}

.w_80 {
    width: 5rem;
    min-width: 5rem;
}


/* personal information */

.form_breadcrumb {
    position: fixed;
    z-index: 1040;
    top: 3.625rem;
    left: 0;
    width: 100%;
    padding: 1rem 0rem;
    background: #F3F5F9;
    border-bottom: 1px solid #E3E9F3;
}

.form_breadcrumb .breadcrumb {
    font-size: 0.625rem;
    font-weight: 700;
    margin-bottom: 0;
}

.form_breadcrumb .breadcrumb-item>span {
    color: var(--c_white);
    width: 1rem;
    height: 1rem;
    display: -ms-inline-grid;
    display: inline-grid;
    place-items: center;
    background: var(--bg_success);
    border-radius: 50%;
    margin-right: 0.25rem;
}

.form_breadcrumb .breadcrumb-item.current span {
    background: var(--bg_primaryLt);
}

.form_breadcrumb .breadcrumb-item.current~.breadcrumb-item span {
    background: var(--c_dark);
}

.form_breadcrumb a {
    color: var(--c_success);
    text-decoration: none;
}

.form_breadcrumb .breadcrumb-item.current a {
    color: var(--c_primaryLt);
    pointer-events: none;
}

.form_breadcrumb .breadcrumb-item.current~.breadcrumb-item a {
    color: var(--c_dark);
    pointer-events: none;
}

.check_input {
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 0.575rem 0.75rem;
    border: 1px solid var(--b_input);
    border-radius: 0.375rem;
}

.check_input {
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

input:checked~.check_input {
    background-color: #EEFAFF;
    border-color: var(--c_primaryLt);
}

.iti {
    width: 100%;
}

.iti__search-input {
    padding: 0.3rem 0.5rem;
}

.iti__search-input:focus {
    outline: 1px solid var(--c_primaryLt);
}

.iti .iti__selected-dial-code {
    font-size: 0.875rem;
}

.pincode-input-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
}

.pincode-input-container .form-control {
    text-align: center;
}

.pincode-input-container .pincode-input-error {
    display: none !important;
}

.email_inpGroup:not(.show_sendBtn) .otp_sendBtn {
    display: none;
}

.email_inpGroup:not(.show_sendBtn) .form-control {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.show_sendBtn~.otp_msg,
.otp_msg:not(.show_countdown) .otp_countdown,
.otp_msg:not(.show_resendBtn) .otp_resendBtn {
    display: none;
}

.is-invalid .pincode-input-text {
    border-color: var(--c_danger);
}

.is-valid .pincode-input-text {
    border-color: var(--bs-success);
}

.welcomeModal .modal-content {
    background-image: url("../img/home/leaf-fly.webp"), url("../img/home/leaf-fly.webp");
    background-repeat: no-repeat;
    background-size: 6.875rem;
    background-position: top -2rem right -3rem, left -3rem bottom -2rem;
}

.cursor_pointer {
    cursor: pointer;
}


/* sleep habits page */

.form_step_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    min-height: calc(100svh - 280px);
}

.time-picker-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.time-picker-wrapper input[type="time"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.wheel-picker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding: 10px;
    margin: auto;
}

.picker-wrapper {
    position: relative;
    font-size: 30px;
    font-weight: 700;
}

.picker-wrapper:nth-child(2)>div {
    line-height: 1;
}

.picker-column {
    height: 200px;
    width: 60px;
    overflow-y: scroll;
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.picker-column::-webkit-scrollbar {
    display: none;
}

.wheel-item {
    scroll-snap-align: center;
    text-align: center;
    height: 40px;
    line-height: 40px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 70%;
    opacity: 0.2;
    color: #999;
}

.wheel-item.selected--1,
.wheel-item.selected-1 {
    font-size: 90%;
    opacity: 0.8;
}

.wheel-item.selected--2,
.wheel-item.selected-2 {
    font-size: 75%;
    opacity: 0.3;
}

.wheel-item.selected-0 {
    font-size: 100%;
    font-weight: bold;
    opacity: 1;
    color: #000;
}

.highlight-bar {
    position: absolute;
    top: 80px;
    height: 40px;
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    pointer-events: none;
    z-index: 2;
}


/* rating bar */

.rating_bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.3rem;
}

.rating_bar input {
    display: none;
}

.rating_bar label,
.rating_badge {
    color: var(--c_white);
    font-size: 0.7rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    padding: 0.625rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.rating_bar label:nth-of-type(1),
.rating_badge_1 {
    background-color: #DC3134;
}

.rating_bar label:nth-of-type(2),
.rating_badge_2 {
    background-color: #E65C24;
}

.rating_bar label:nth-of-type(3),
.rating_badge_3 {
    background-color: #ED7A19;
}

.rating_bar label:nth-of-type(4),
.rating_badge_4 {
    background-color: #F39410;
}

.rating_bar label:nth-of-type(5),
.rating_badge_5 {
    background-color: #FAB104;
}

.rating_bar label:nth-of-type(6),
.rating_badge_6 {
    background-color: #E3B709;
}

.rating_bar label:nth-of-type(7),
.rating_badge_7 {
    background-color: #ACA91A;
}

.rating_bar label:nth-of-type(8),
.rating_badge_8 {
    background-color: #7D9E28;
}

.rating_bar label:nth-of-type(9),
.rating_badge_9 {
    background-color: #489139;
}

.rating_bar label:nth-of-type(10),
.rating_badge_10 {
    background-color: #01804F;
}

.rating_bar input:checked~label {
    color: var(--c_gray2);
    background-color: var(--bg_light3);
}

@media(max-width:399.98px) {
    .form_breadcrumb .breadcrumb {
        font-size: 0.6rem;
    }
}


/*  */

#temperature .rs-range-color {
    background: #3FB4E8;
}

#temperature .rs-path-color {
    background: -o-radial-gradient(bottom, ellipse, rgba(255, 255, 255, 1) 0%, rgba(169, 173, 174, 1) 34%, rgba(255, 255, 255, 1) 66%, rgba(5, 0, 0, 1) 100%);
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 1) 0%, rgba(169, 173, 174, 1) 34%, rgba(255, 255, 255, 1) 66%, rgba(5, 0, 0, 1) 100%);
}

#temperature .rs-handle {
    border: none;
    background: -o-radial-gradient(center, ellipse, rgba(63, 180, 232, 1) 0%, rgba(63, 180, 232, 0.5) 34%, rgb(63, 180, 232, 0) 100%);
    background: radial-gradient(ellipse at center, rgba(63, 180, 232, 1) 0%, rgba(63, 180, 232, 0.5) 34%, rgb(63, 180, 232, 0) 100%);
}

#temperature .rs-handle-dot::after {
    background-color: #3FB4E8;
    border-color: white;
}

#temperature .rs-border {
    border-color: white;
}

#temperature .rs-full .rs-tooltip,
#temperature .rs-input.rs-tooltip-text {
    font-size: 1.5rem;
}

.rangeslider {
    margin-left: auto;
    margin-right: auto;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 20px !important;
    overflow: hidden;
}

.rangeslider--vertical {
    width: 60px !important;
    min-height: 160px !important;
    background-color: #F5F4F7 !important;
}

.rangeslider__handle {
    display: none !important;
}

.rangeslider__fill {
    border-radius: 0px !important;
    background: #3FB4E8 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}


/* success form */

.form_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    min-height: calc(100svh - 220px);
}

.pwd_inpItem {
    position: relative;
}

.pwd_inpItem .form-control {
    padding-right: 46px;
}

.pwd_inpItem .pwd_tglBtn {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    max-width: 40px;
    height: 40px;
    border: none;
    background-size: 18px;
    background-color: transparent;
}

.pwd_inpItem .pwd_tglBtn:hover {
    background-size: 20px;
}

.pwd_inpItem .pwd_tglBtn:active {
    background-size: 14px;
}

.pwd_inpItem:not(.show_pwd) .fa-eye {
    display: none;
}

.pwd_inpItem.show_pwd .fa-eye-slash {
    display: none;
}


.inp_withIcon {
    padding-left: 36px;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 12px center;
}

.inp_username {
    background-image: url("../img/form/icon-user.svg");
}

.inp_password {
    background-image: url("../img/form/icon-password.svg");
}

.inp_email {
    background-image: url("../img/form/icon-email.svg");
}


/* _______________ end form page _______________ */


/* _______________ start login page _______________ */

.bg_cover {
    background-repeat: no-repeat;
    background-size: cover;
}

.form_section {
    position: relative;
    background-color: var(--bg_white);
    border-radius: 1rem 1rem 0rem 0rem;
    margin-top: -1rem;
}


/* _______________ end login page _______________ */


/* _______________ start home 2 page _______________ */

.bottom_header~.main {
    padding-bottom: 4.375rem;
}

.bottom_header~.main~footer {
    margin-bottom: 4.375rem;
}

.header_prfImg {
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    border-radius: 50%;
}

.bottom_header {
    position: fixed;
    z-index: 1030;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg_white);
    box-shadow: 0rem -0.25rem 1.5rem rgba(0, 0, 0, 0.2);
}

.bottom_nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 0;
    padding: 0;
}

.bottom_nav_item {
    flex-grow: 1;
}

.bottom_nav_link {
    color: var(--c_dark);
    font-size: 0.75rem;
    display: block;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    padding: 0.875rem 0.3rem 0.875rem;
    border-top: 3px solid transparent;
}

.bottom_nav_link div {
    color: var(--c_gray2);
}

.bottom_nav_link:hover {
    color: var(--c_primaryLt);
    background: linear-gradient(180deg, rgba(63, 180, 232, 0) 0%, rgba(63, 180, 232, 0.1) 100%);
}

.bottom_nav_link.active {
    color: var(--c_primaryLt);
    border-top-color: var(--c_primaryLt);
    background: linear-gradient(180deg, rgba(63, 180, 232, 0) 0%, rgba(63, 180, 232, 0.1) 100%);
}

.bottom_nav_link.active div {
    color: var(--c_primaryLt);
}

.bottom_nav_link i {
    font-size: 1.25rem;
}

.tracking_section {
    position: relative;
    z-index: 1;
    padding: 1rem 0rem;
    border-radius: 0rem 0rem 1rem 1rem;
    background-color: var(--bg_white);
}

#tracking_accordion .accordion-item {
    padding: 0.25rem;
    background: #E8F7FE;
    border: 1px solid #E4F3F4;
    border-radius: 1rem;
    box-shadow: none !important;
}

#tracking_accordion .accordion-button {
    padding: 0.625rem;
    gap: 0.75rem;
    background: var(--bg_white) !important;
    border-radius: 0.75rem;
}

#tracking_accordion .accordion-button::after {
    content: "\f078";
    color: var(--c_gray2);
    background: transparent;
}

#tracking_accordion .accordion-button:not(.collapsed)::after {
    content: "\f078";
    color: var(--c_gray2);
    background: transparent;
}

#tracking_accordion .accordion-body {
    padding: 0.625rem;
}

.tracking_section .progress,
.tracking_section .progress-stacked {
    --bs-progress-height: 0.5rem;
    --bs-progress-bg: #222222;
}

.tracking_section .progress-bar-striped {
    background: linear-gradient(90deg, #00D855 0.35%, #00B4FF 2.77%, #6C48FF 5.47%, #000000 7.73%, #FC90FF 10.1%, #90D8FF 12.61%, #FCFCFF 14.99%, #FC0000 17.31%, #FCD855 19.62%, #00D855 21.9%, #00B4FF 24.1%, #6C48FF 26.09%, #000000 28.19%, #FC90FF 30.39%, #90D8FF 32.59%, #FCFCFF 34.9%, #FC0000 37.42%, #FCD855 39.95%, #00D855 42.58%, #00B4FF 44.94%, #6C48FF 47.52%, #000000 49.91%, #FC90FF 52.63%, #90D8FF 55.34%, #FCFCFF 58.14%, #FC0000 60.95%, #FCD855 63.84%, #00D855 66.65%, #00B4FF 69.59%, #6C48FF 72.53%, #000000 75.37%, #FC90FF 78.22%, #90D8FF 81.16%, #FCFCFF 84.1%, #FC0000 86.8%, #FCD855 89.55%, #00D855 92.35%, #00B4FF 95.1%, #6C48FF 97.81%);
    background-size: 2850px;
    animation: 15s linear infinite progress-bar-stripes
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 100%
    }

    100% {
        background-position-x: 0%;
    }
}
.tracking_section .tracking_failed{
    border-color: #EA4335 !important;
    background: #EA43351a;
}
.tracking_section .tracking_completed{
    border-color: #00804F !important;
    background: #00804F1a;
}
.report_section {
    background-image: url("../img/home2/bg-moon.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -1rem;
    margin-bottom: -1rem;
    padding: 3.5rem 0rem;
    overflow: hidden;
}

.report_item {
    color: var(--c_dark);
    display: block;
    padding: 1rem;
    min-height: 7.375rem;
    background: var(--bg_white);
    border-radius: 1.875rem;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    text-decoration: none;
}

.report_item.locked {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(7px);
}

.report_item.completed {
    color: var(--c_white);
    border: 1px solid #42B576;
    background: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_505_6354)'%3E%3Cpath d='M7 26C22.2 26 26 21.9236 26 7' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_505_6354' x='0' y='0' width='33.5' height='33.5' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='3.5' result='effect1_foregroundBlur_505_6354'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A"), linear-gradient(129deg, #00804F 5.79%, #42B576 95.21%);
    box-shadow: 0rem 0.25rem 1.25rem rgba(255, 255, 255, 0.2);
    background-repeat: no-repeat;
    background-size: 1.125rem, cover;
    background-position: right 0.5rem bottom 0.5rem, center center;
}
.report_item.failed {
    color: var(--c_white);
    border: 1px solid #eb4c2c;
    background: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_505_6354)'%3E%3Cpath d='M7 26C22.2 26 26 21.9236 26 7' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_505_6354' x='0' y='0' width='33.5' height='33.5' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='3.5' result='effect1_foregroundBlur_505_6354'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A"), linear-gradient(129deg, #A21B00 5.79%, #EE4E2E 95.21%);
    box-shadow: 0rem 0.25rem 1.25rem rgba(255, 255, 255, 0.2);
    background-repeat: no-repeat;
    background-size: 1.125rem, cover;
    background-position: right 0.5rem bottom 0.5rem, center center;
    pointer-events: none;
}

.report_slider .owl-item.active .report_item {
    transform: scale(1.2);
}

.report_slider .owl-item.active~.owl-item.active .report_item {
    transform: scale(1);
}

.report_title {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.375rem;
}

.report_desc {
    opacity: 0;
    font-size: 0.6rem;
    margin-bottom: 0.375rem;
}

.owl-item.active .report_desc {
    opacity: 1;
}

.owl-item.active~.owl-item.active .report_desc {
    opacity: 0;
}

.report_btn {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--c_white);
    padding: 0.375rem 0.625rem;
    border-radius: 50rem;
    text-decoration: none;
    background: #3BA9D9;
    border: 1px solid #359AC6;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.report_item.locked .report_btn,
.report_item.failed .report_btn {
    background: transparent;
    border: 1px solid var(--c_white);
    box-shadow: none;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}

.report_item.completed .report_btn {
    color: #42B576;
    background: var(--bg_white);
    border: 1px solid var(--c_white);
}

.report_btn::before {
    content: "\f304";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.2rem;
}

.report_item.locked .report_btn::before {
    content: "\f023";
}

.report_item.failed .report_btn::before {
    content: "\f057";
}

.report_item.completed .report_btn::before {
    content: "\f058";
    font-weight: 400;
}

.report_slider .owl-stage-outer {
    overflow: visible;
}

.survey_section {
    padding: 1.25rem 0rem;
    background-color: var(--bg_white);
    border-radius: 1rem 1rem 0rem 0rem;
}

.survey_card {
    text-decoration: none;
    color: var(--c_dark);
    padding: 1rem;
    gap: 1rem;
    background: var(--bg_white);
    border: 1px solid #EDEDED;
    box-shadow: 0rem 0.25rem 0.375rem rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.survey_card .gauage_slider {
    position: absolute;
    top: 2.625rem;
    right: -1.625rem;
}

.gauage_slider {
    pointer-events: none;
}

.gauage_slider.theme__red {
    --range_color: conic-gradient(from 60.35deg at 50% 100%, #F71514 0deg, rgba(44, 101, 188, 0) 213.75deg, #F71514 360deg);
    --range_path: #fffbf6;
    --handle_bg: linear-gradient(to right, #FF6453 0.85%, #F71111 94.91%);
    --shadow: 0px 0px 5px rgba(247, 20, 20, 0.5);
}

.gauage_slider.theme__orange {
    --range_color: conic-gradient(from 60.35deg at 50% 100%, #F98225 0deg, rgba(44, 101, 188, 0) 213.75deg, #F98225 360deg);
    --range_path: #fffbf6;
    --handle_bg: linear-gradient(to right, #FFC353 0.85%, #F76911 94.91%);
    --shadow: 0px 0px 5px rgba(255, 195, 83, 0.5);
}

.gauage_slider.theme__green {
    --range_color: conic-gradient(from 60.35deg at 50% 100%, #53FF59 0deg, rgba(44, 101, 188, 0) 213.75deg, #53FF59 360deg);
    --range_path: #fffbf6;
    --handle_bg: linear-gradient(to right, #53FF59 0.85%, #00804F 94.91%);
    --shadow: 0px 0px 5px rgba(83, 255, 89, 0.5);
}

.gauage_slider.theme__blue {
    --range_color: conic-gradient(from 60.35deg at 50% 100%, #2C65BC 0deg, rgba(44, 101, 188, 0) 213.75deg, #2C65BC 360deg);
    --range_path: #fffbf6;
    --handle_bg: linear-gradient(to right, #2EAAC0 0.85%, #2C65BC 94.91%);
    --shadow: 0px 0px 5px rgba(44, 101, 188, 0.5);
}

.c__orange {
    color: #F87419;
}

.c__red {
    color: #CE391B;
}

.c__red {
    color: #00804F;
}

.c__red {
    color: #2C65BC;
}

.gauage_slider .rs-bar.rs-start .rs-seperator,
.gauage_slider .rs-bar.rs-end .rs-seperator {
    border: none;
}

.gauage_slider .rs-handle {
    background-color: transparent;
    margin: 0px 0px 0px 0px !important;
}

.gauage_slider .rs-handle:before {
    display: block;
    content: " ";
    position: absolute;
    z-index: 1;
    height: 1.375rem;
    width: 1.375rem;
    right: -0.6875rem;
    bottom: -0.6875rem;
    border-radius: 6.25rem;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 57.81%, rgba(10, 4, 34, 0.3) 100%), #FFFFFF;
    box-shadow: var(--shadow);
}

.gauage_slider .rs-handle::after {
    content: "";
    display: block;
    width: 3.75rem !important;
    height: 0.5rem !important;
    background: var(--handle_bg);
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
    margin-top: -4px;
    filter: drop-shadow(--shadow);
}

.gauage_slider .rs-outer {
    border: none;
}

.gauage_slider .rs-block .rs-inner {
    opacity: 0;
}

.gauage_slider .rs-range-color {
    background: var(--range_color);
    opacity: 0.5;
    filter: blur(2px);
}

.gauage_slider .rs-path-color {
    background: var(--range_path);
    filter: blur(2px);
}

.survey_grdBox {
    height: 1.6875rem;
    background: #2C3840;
    border-radius: 1rem;
    box-shadow: 0rem -0.6875rem 0rem #4D6371, 0rem -1.375rem 0rem #7998AC, 0rem -2.0625rem 0rem #CBD5DD, 0rem -2.75rem 0rem #F5F5F5;
    margin-top: 5.5rem;
}

.survey_video_thumbnail {
    height: 6rem;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.survey_card2 {
    color: var(--c_white);
    padding: 1rem;
    background-color: #2C3840;
    background-image: url("../img/home2/leaf.webp"), url("../img/home2/leaf.webp");
    background-repeat: no-repeat;
    background-size: 7.3125rem;
    background-position: right -61px top -18px, left -96px bottom -42px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    position: relative;
}
.survey_card2_faild::before{
    content: "";
    display: block;
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 0rem;
    width: 0.1875rem;
    background: #CE391B;
    border-radius: 0rem 0.625rem 0.625rem 0rem;
}
.survey_card2 .dicount_card {
    font-size: 0.875rem;
    background: #3BA9D9;
    border: 1px solid #2683AC;
    box-shadow: 0rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
    border-radius: 0.625rem;
}

.survey_card2 .dicount_card span {
    display: inline-block;
    padding: 0.375rem 0.5rem;
}

.survey_card2 .dicount_card span:first-child {
    border-right: 2px dashed var(--c_dark);
}

.survey_card2 .share_opts {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0.375rem;
    gap: 0.375rem;
    background: #2C3840;
    border: 1px solid #F1F1F1;
    border-radius: 50rem;
}

.share_opt img {
    width: 1.75rem;
}

.modal .gauage_slider {
    position: absolute;
    z-index: 0;
    top: 8.25rem;
    right: -3.875rem;
}

.modal .gauage_slider~* {
    position: relative;
    z-index: 2;
}

.modal .gauage_slider .rs-handle::after {
    width: 7.5rem !important;
}

.score_item {
    color: var(--c_white);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem 2.625rem;
    gap: 1.25rem;
    border-radius: 1rem 1rem 0rem 0rem;
}

.score_item:not(:first-of-type) {
    position: relative;
    margin-top: -1.5rem;
}

.score_item:last-of-type {
    padding: 1.25rem;
    border-radius: 1rem;
}

.score_item>div:first-of-type {
    font-size: 1.25rem;
}

.score_item>div:last-of-type {
    font-size: 2.875rem;
    line-height: 1;
}

.score_item:nth-of-type(1) {
    color: #2C3840;
    background: rgba(245, 245, 245, 0.7);
    backdrop-filter: blur(2px);
}

.score_item:nth-of-type(2) {
    color: #2C3840;
    background: #CBD5DD;
}

.score_item:nth-of-type(3) {
    background: #7998AC;
}

.score_item:nth-of-type(4) {
    background: #4D6371;
}

.score_item:nth-of-type(5) {
    background: #2C3840;
}

.lg_modal .modal-body {
    max-height: calc(100svh - 5rem)
}

.copyToClipboard {
    user-select: none;
    cursor: pointer;
}

#dailyReportOffcanvas.showLoader {}

#dailyReportOffcanvas.showLoader #bedTime,
#dailyReportOffcanvas.showLoader #reportImageWrap,
#dailyReportOffcanvas.showLoader #wakeUpTime,
#dailyReportOffcanvas.showLoader #sleepQuality,
#dailyReportOffcanvas.showLoader #sleepDuration {
    position: relative;
    display: inline-block;
    color: transparent !important;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

#dailyReportOffcanvas.showLoader #bedTime::before,
#dailyReportOffcanvas.showLoader #reportImageWrap::before,
#dailyReportOffcanvas.showLoader #wakeUpTime::before,
#dailyReportOffcanvas.showLoader #sleepQuality::before,
#dailyReportOffcanvas.showLoader #sleepDuration::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left:0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right,
            #eeeeee 0%,
            #dddddd 50%,
            #eeeeee 100%);
    background-size: 300%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -100%;
    }

    100% {
        background-position: 100%;
    }
}

.ginner_container{
    min-height: 100svh;
}
.ginner_container .gslide-description{
    color: var(--c_white);
    max-width: 100%;
    background: transparent !important;
}
.ginner_container .gdesc-inner{
    padding: 1.25rem !important;
}
.ginner_container .gslide-title{
    color: var(--c_white) !important;
    font-size: 0.75rem !important;
    font-weight: 700;
    margin-bottom: 0.4rem !important;
}
.ginner_container .gslide-desc{
    font-size: 1rem !important;
    font-weight: 300 !important;
}
@media(max-width:575.98px){
    .glightbox-mobile .ginner_container .gslide-description{
        padding: 0rem !important;
    }
}

.celebrate_box{
    position: fixed;
    z-index: 1051;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: 0.3s;
}
.celebrate_box.show{
    opacity: 1;
}
.celebrate_box img{
    width: 100%;
}
.lastModal .modal-content{
    color: #ffffff;
    background:url("../img/home2/tutorial-image.jpg"), linear-gradient(180deg, #3BA9D9 0%, #2766F8 100%);
    background-repeat: no-repeat;
    background-size: 100%, cover;
    background-blend-mode: multiply;
    box-shadow: 0px 7.34545px 18.3636px rgba(42, 109, 245, 0.5);
    border: none;
    border-radius: 16px;
}
.report_carousel .owl-dots {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.report_carousel .owl-dot {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 2px;
    background: #ffffff6e !important;
}

.report_carousel .owl-dot::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background-color: #FFFFFF;
}

.report_carousel .owl-dot.active::before {
    -webkit-animation: increase_width 5s linear;
            animation: increase_width 5s linear
}

.report_carousel .owl-dot.active~.owl-dot::before {
    width: 0%;
}
.report_carousel .slide_item{
    padding: 80px 32px 36px;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.report_carousel .slide_item_1{
    color: #ffffff;
    background:linear-gradient(180deg, #00000025 0%, rgba(0, 0, 0, 0) 100%), url("../img/home2/slider-bg-1.png"),#D73E5F;
    background-repeat: no-repeat;
    background-size:100% 100px, 100% 307px,cover;
    background-position:top center, bottom center,center;
}
.report_carousel .slide_item_2{
    color: #ffffff;
    background:linear-gradient(180deg, #00000025 0%, rgba(0, 0, 0, 0) 100%), url("../img/home2/slider-bg-2.png"),#3BA9D9;
    background-repeat: no-repeat;
    background-size:100% 100px, 309px auto,cover;
    background-position:top center, bottom right,center;
}
.report_carousel .slide_item_3{
    color: #ffffff;
    background:linear-gradient(180deg, #00000025 0%, rgba(0, 0, 0, 0) 100%), url("../img/home2/slider-bg-3.png"),#3B8169;
    background-repeat: no-repeat;
    background-size:100% 100px, 100% 610px,cover;
    background-position:top center, top center,center;
}
.report_carousel .slide_item_4{
    color: #ffffff;
    background:linear-gradient(180deg, #00000025 0%, rgba(0, 0, 0, 0) 100%), url("../img/home2/slider-bg-4.png"),#1D1D1D;
    background-repeat: no-repeat;
    background-size:100% 100px, 100% 495px,cover;
    background-position:top center, bottom center,center;
}
.report_carousel .slide_item_5{
    /* color: #ffffff; */
    background:linear-gradient(180deg, #00000025 0%, rgba(0, 0, 0, 0) 100%), url("../img/home2/slider-bg-5.png"),#DAB505;
    background-repeat: no-repeat;
    background-size: 100% 100px, 242px 280px,cover;
    background-position:top center, top right,center;
}

@-webkit-keyframes increase_width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes increase_width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
.weekly_report_chart{
    margin: auto;
}
/* _______________ end home 2 page _______________ */


/* _______________ start timeline page _______________ */

.timeline {}

.timeline_item {
    position: relative;
    display: flex;
    gap: 0.5rem;
    padding-bottom: 1rem;
}

.timeline_item::before {
    content: "";
    display: block;
    position: absolute;
    left: 18px;
    top: 36px;
    height: calc(100% - 36px);
    border-left: 1px solid #C4C4C4;
}

.timeline_item:last-of-type:before {
    content: none;
}

.timeline_icon img {
    width: 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}

.timeline_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0.75rem;
    gap: 0.5rem;
    background: var(--bg_white);
    border: 1px solid #F0F0F0;
    box-shadow: 0rem 0.3125rem 1rem rgba(8, 15, 52, 0.06);
    border-radius: 0.75rem;
    flex-grow: 1;
}

.badge_primary {
    color: #3C79DE;
    background-color: #ECF3FE;
}

.badge_success {
    color: #008000;
    background-color: rgba(0, 128, 0, 0.1);
}

.inline_avatar {
    width: 1.375rem;
    min-width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    object-fit: cover;
}


/* _______________ end timeline page _______________ */


/* _______________ start help page _______________ */

.chatbot_section {
    position: fixed;
    bottom: 4.3125rem;
    left: 0rem;
    width: 100%;
    color: var(--c_white);
    background-color: #2C3840;
    padding: 0.75rem 0rem;
    border-radius: 0.75rem 0.75rem 0rem 0rem;
}


/* _______________ end help page _______________ */


/* _______________ start report form page _______________ */

#reportForm .form_step_box {
    min-height: calc(100svh - 11.25rem);
}

.image_upload_wrapper {
    position: relative;
    width: 13.625rem;
    margin: auto;
}

.upload_box {
    width: 13.625rem;
    height: 13.625rem;
    position: relative;
    border: 2px dashed #DADADA;
    border-radius: 0.625rem;
    padding: 0.625rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.upload_box:hover {
    border-color: #007bff;
}

.image_preview {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.image_upload_text img {
    width: 84px;
    height: 84px;
    margin-bottom: 12px;
}

.image_upload_text div {
    font-size: 14px;
    color: var(--c_dark);
    width: 100%;
    text-align: center;
}

.preview_img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.reset_image {
    position: absolute;
    top: 16px;
    right: 16px;
}

#reportForm div.error {
    text-align: center;
}

.offcanvas,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm,
.offcanvas-xl,
.offcanvas-xxl {
    --bs-offcanvas-zindex: 1051;
}

/* _______________ end report form page _______________ */