﻿ a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, button, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, input, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, select, small, span, strike, strong, sub, summary, sup, table, tbody, td, textarea, tfoot, th, thead, time, tr, tt, u, ul, var, video {
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: baseline;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
            display: block;
        }

        body {
            line-height: 1;
        }

        a {
            text-decoration: none;
        }

        ol, ul {
            list-style: none;
        }

        blockquote, q {
            quotes: none;
        }

            blockquote:after, blockquote:before, q:after, q:before {
                content: '';
                content: none;
            }

        table {
            border-collapse: collapse;
            border-spacing: 0;
        }

        .ladi-loading {
            z-index: 900000000000;
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: rgba(0,0,0,.1);
        }

            .ladi-loading .loading {
                width: 80px;
                height: 80px;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                margin: auto;
                overflow: hidden;
                position: absolute;
            }

                .ladi-loading .loading div {
                    position: absolute;
                    width: 6px;
                    height: 6px;
                    background: #fff;
                    border-radius: 50%;
                    animation: ladi-loading 1.2s linear infinite;
                }

                    .ladi-loading .loading div:nth-child(1) {
                        animation-delay: 0s;
                        top: 37px;
                        left: 66px;
                    }

                    .ladi-loading .loading div:nth-child(2) {
                        animation-delay: -.1s;
                        top: 22px;
                        left: 62px;
                    }

                    .ladi-loading .loading div:nth-child(3) {
                        animation-delay: -.2s;
                        top: 11px;
                        left: 52px;
                    }

                    .ladi-loading .loading div:nth-child(4) {
                        animation-delay: -.3s;
                        top: 7px;
                        left: 37px;
                    }

                    .ladi-loading .loading div:nth-child(5) {
                        animation-delay: -.4s;
                        top: 11px;
                        left: 22px;
                    }

                    .ladi-loading .loading div:nth-child(6) {
                        animation-delay: -.5s;
                        top: 22px;
                        left: 11px;
                    }

                    .ladi-loading .loading div:nth-child(7) {
                        animation-delay: -.6s;
                        top: 37px;
                        left: 7px;
                    }

                    .ladi-loading .loading div:nth-child(8) {
                        animation-delay: -.7s;
                        top: 52px;
                        left: 11px;
                    }

                    .ladi-loading .loading div:nth-child(9) {
                        animation-delay: -.8s;
                        top: 62px;
                        left: 22px;
                    }

                    .ladi-loading .loading div:nth-child(10) {
                        animation-delay: -.9s;
                        top: 66px;
                        left: 37px;
                    }

                    .ladi-loading .loading div:nth-child(11) {
                        animation-delay: -1s;
                        top: 62px;
                        left: 52px;
                    }

                    .ladi-loading .loading div:nth-child(12) {
                        animation-delay: -1.1s;
                        top: 52px;
                        left: 62px;
                    }

        @keyframes ladi-loading {
            0%,100%,20%,80% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.5);
            }
        }

        .ladipage-message {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 10000000000;
            background: rgba(0,0,0,.3);
        }

            .ladipage-message .ladipage-message-box {
                width: 400px;
                max-width: calc(100% - 50px);
                height: 160px;
                border: 1px solid rgba(0,0,0,.3);
                background-color: #fff;
                position: fixed;
                top: calc(50% - 155px);
                left: 0;
                right: 0;
                margin: auto;
                border-radius: 10px;
            }

                .ladipage-message .ladipage-message-box span {
                    display: block;
                    background-color: rgba(6,21,40,.05);
                    color: #000;
                    padding: 12px 15px;
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 16px;
                    border-top-left-radius: 10px;
                    border-top-right-radius: 10px;
                }

                .ladipage-message .ladipage-message-box .ladipage-message-text {
                    display: -webkit-box;
                    font-size: 14px;
                    padding: 0 20px;
                    margin-top: 16px;
                    line-height: 20px;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    word-break: break-word;
                }

                .ladipage-message .ladipage-message-box .ladipage-message-close {
                    display: block;
                    position: absolute;
                    right: 15px;
                    bottom: 10px;
                    margin: 0 auto;
                    padding: 10px 0;
                    border: none;
                    width: 80px;
                    text-transform: uppercase;
                    text-align: center;
                    color: #000;
                    background-color: #e6e6e6;
                    border-radius: 5px;
                    text-decoration: none;
                    font-size: 14px;
                    line-height: 14px;
                    font-weight: 600;
                    cursor: pointer;
                    outline: 0;
                }

        .lightbox-screen {
            display: none;
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            z-index: 9000000080;
            background: rgba(0,0,0,.5);
        }

            .lightbox-screen .lightbox-close {
                position: absolute;
                z-index: 9000000090;
                cursor: pointer;
            }

            .lightbox-screen .lightbox-hidden {
                display: none;
            }

            .lightbox-screen .lightbox-close {
                width: 16px;
                height: 16px;
                margin: 10px;
                background-repeat: no-repeat;
                background-position: center center;
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23fff%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M23.4144%202.00015L2.00015%2023.4144L0.585938%2022.0002L22.0002%200.585938L23.4144%202.00015Z%22%3E%3C%2Fpath%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2.00015%200.585938L23.4144%2022.0002L22.0002%2023.4144L0.585938%202.00015L2.00015%200.585938Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

        body {
            font-size: 12px;
            -ms-text-size-adjust: none;
            -moz-text-size-adjust: none;
            -o-text-size-adjust: none;
            -webkit-text-size-adjust: none;
            background-color: #fff;
        }

        .overflow-hidden {
            overflow: hidden;
        }

        .ladi-transition {
            transition: all 150ms linear 0s;
        }

        .z-index-1 {
            z-index: 1;
        }

        .opacity-0 {
            opacity: 0;
        }

        .height-0 {
            height: 0 !important;
        }

        .pointer-events-none {
            pointer-events: none;
        }

        .transition-parent-collapse-height {
            transition: height 150ms linear 0s;
        }

        .transition-parent-collapse-top {
            transition: top 150ms linear 0s;
        }

        .transition-readmore {
            transition: height 350ms linear 0s;
        }

        .transition-collapse {
            transition: height 150ms linear 0s;
        }

        body.grab {
            cursor: grab;
        }

        .ladi-wraper {
            width: 100%;
            min-height: 100%;
            overflow: hidden;
            touch-action: manipulation;
        }

        .ladi-container {
            position: relative;
            margin: 0 auto;
            height: 100%;
        }

        .ladi-overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            pointer-events: none;
        }

        .ladi-element {
            position: absolute;
        }

        @media (hover: hover) {
            .ladi-check-hover {
                opacity: 0;
            }
        }

        .ladi-section {
            margin: 0 auto;
            position: relative;
        }
        @media (max-width: 768px) {
	.ladi-section {
        left: 0!important;
        width:100%;
        }
}
            .ladi-section[data-tab-id] {
                display: none;
            }

            .ladi-section.selected[data-tab-id] {
                display: block;
            }

            .ladi-section .ladi-section-background {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                pointer-events: none;
                overflow: hidden;
            }

        .ladi-gallery {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

            .ladi-gallery .ladi-gallery-view {
                position: absolute;
                overflow: hidden;
            }

                .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item {
                    background-size: cover;
                    background-repeat: no-repeat;
                    background-position: center center;
                    width: 100%;
                    height: 100%;
                    position: relative;
                    display: none;
                    transition: transform 500ms ease-in-out;
                    -webkit-backface-visibility: hidden;
                    backface-visibility: hidden;
                    -webkit-perspective: 1000px;
                    perspective: 1000px;
                }

                    .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item.play-video {
                        cursor: pointer;
                    }

                        .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item.play-video:after {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            margin: auto;
                            width: 60px;
                            height: 60px;
                            background: url(/source/ladipage-play.svg?v=1.0) no-repeat center center;
                            background-size: contain;
                            pointer-events: none;
                            cursor: pointer;
                        }

                    .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item.next, .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item.selected.right {
                        left: 0;
                        transform: translate3d(100%, 0, 0);
                    }

                    .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item.prev, .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item.selected.left {
                        left: 0;
                        transform: translate3d(-100%, 0, 0);
                    }

                        .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item.next.left, .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item.prev.right, .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item.selected {
                            left: 0;
                            transform: translate3d(0, 0, 0);
                        }

                .ladi-gallery .ladi-gallery-view > .selected, .ladi-gallery .ladi-gallery-view > .next, .ladi-gallery .ladi-gallery-view > .prev {
                    display: block;
                }

                .ladi-gallery .ladi-gallery-view > .selected {
                    left: 0;
                }

                .ladi-gallery .ladi-gallery-view > .next, .ladi-gallery .ladi-gallery-view > .prev {
                    position: absolute;
                    top: 0;
                    width: 100%;
                }

                .ladi-gallery .ladi-gallery-view > .next {
                    left: 100%;
                }

                .ladi-gallery .ladi-gallery-view > .prev {
                    left: -100%;
                }

                    .ladi-gallery .ladi-gallery-view > .next.left, .ladi-gallery .ladi-gallery-view > .prev.right {
                        left: 0;
                    }

                .ladi-gallery .ladi-gallery-view > .selected.left {
                    left: -100%;
                }

                .ladi-gallery .ladi-gallery-view > .selected.right {
                    left: 100%;
                }

            .ladi-gallery .ladi-gallery-control {
                position: absolute;
                overflow: hidden;
            }

            .ladi-gallery .ladi-gallery-view .ladi-gallery-view-arrow {
                position: absolute;
                top: calc(50% - (33px) / 2);
                cursor: pointer;
                z-index: 90000040;
            }

            .ladi-gallery .ladi-gallery-view .ladi-gallery-view-arrow-left {
                left: 5px;
                transform: rotateY(180deg);
                -webkit-transform: rotateY(180deg);
            }

            .ladi-gallery .ladi-gallery-view .ladi-gallery-view-arrow-right {
                right: 5px;
            }

            .ladi-gallery .ladi-gallery-control .ladi-gallery-control-arrow {
                position: absolute;
                cursor: pointer;
                z-index: 90000040;
            }

            .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box {
                position: relative;
            }

                .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item {
                    background-size: cover;
                    background-repeat: no-repeat;
                    background-position: center center;
                    float: left;
                    position: relative;
                    cursor: pointer;
                    filter: invert(15%);
                }

                    .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item.play-video:after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        margin: auto;
                        width: 30px;
                        height: 30px;
                        background: url(/source/ladipage-play.svg?v=1.0) no-repeat center center;
                        background-size: contain;
                        pointer-events: none;
                        cursor: pointer;
                    }

                    .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item:hover {
                        filter: none;
                    }

                    .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item.selected {
                        filter: none;
                    }

                    .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item:last-child {
                        margin-right: 0 !important;
                        margin-bottom: 0 !important;
                        ;
                    }

            .ladi-gallery .ladi-gallery-view .ladi-gallery-view-arrow, .ladi-gallery .ladi-gallery-control .ladi-gallery-control-arrow {
                width: 33px;
                height: 33px;
                background-repeat: no-repeat;
                background-position: center center;
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23000%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.00015%200.585938L18.4144%2012.0002L7.00015%2023.4144L5.58594%2022.0002L15.5859%2012.0002L5.58594%202.00015L7.00015%200.585938Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            .ladi-gallery.ladi-gallery-bottom .ladi-gallery-view {
                top: 0;
                width: 100%;
            }

            .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control {
                width: 100%;
                bottom: 0;
            }

                .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control .ladi-gallery-control-arrow {
                    top: calc(50% - (33px) / 2);
                }

                .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control .ladi-gallery-control-arrow-left {
                    left: 0px;
                    transform: rotateY(180deg) scale(0.6);
                    -webkit-transform: rotateY(180deg) scale(0.6);
                }

                .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control .ladi-gallery-control-arrow-right {
                    right: 0px;
                    transform: scale(0.6);
                    -webkit-transform: scale(0.6);
                }

                .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control .ladi-gallery-control-box {
                    display: -webkit-inline-flex;
                    display: inline-flex;
                    left: 0;
                    transition: left 150ms ease-in-out;
                }

        .ladi-box {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        #SECTION_POPUP .ladi-container {
            z-index: 90000070;
        }

            #SECTION_POPUP .ladi-container > .ladi-element {
                z-index: 90000070;
                position: fixed;
                display: none;
            }

                #SECTION_POPUP .ladi-container > .ladi-element[data-fixed-close="true"] {
                    position: relative !important;
                }

                #SECTION_POPUP .ladi-container > .ladi-element.hide-visibility {
                    display: block !important;
                    visibility: hidden !important;
                }

        #SECTION_POPUP .popup-close {
            position: absolute;
            right: 0px;
            top: 0px;
            z-index: 9000000080;
            cursor: pointer;
            width: 16px;
            height: 16px;
            margin: 10px;
            background-repeat: no-repeat;
            background-position: center center;
            background-image: url("data:image/svg+xml;utf8, %3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23000%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M23.4144%202.00015L2.00015%2023.4144L0.585938%2022.0002L22.0002%200.585938L23.4144%202.00015Z%22%3E%3C%2Fpath%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2.00015%200.585938L23.4144%2022.0002L22.0002%2023.4144L0.585938%202.00015L2.00015%200.585938Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
        }

        .ladi-popup {
            position: absolute;
            width: 100%;
            height: 100%;
        }

            .ladi-popup .ladi-popup-background {
                height: 100%;
                width: 100%;
                pointer-events: none;
            }

        .ladi-countdown {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
        }

            .ladi-countdown .ladi-countdown-background {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                background-size: inherit;
                background-attachment: inherit;
                background-origin: inherit;
                display: table;
                pointer-events: none;
            }

            .ladi-countdown .ladi-countdown-text {
                position: absolute;
                width: 100%;
                height: 100%;
                text-decoration: inherit;
                display: table;
                pointer-events: none;
            }

                .ladi-countdown .ladi-countdown-text span {
                    display: table-cell;
                    vertical-align: middle;
                }

            .ladi-countdown > .ladi-element {
                text-decoration: inherit;
                background-size: inherit;
                background-attachment: inherit;
                background-origin: inherit;
                position: relative;
                display: inline-block;
            }

                .ladi-countdown > .ladi-element:last-child {
                    margin-right: 0px !important;
                }

        .ladi-button {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

            .ladi-button:active {
                transform: translateY(2px);
                transition: transform .2s linear;
            }

            .ladi-button .ladi-button-background {
                height: 100%;
                width: 100%;
                pointer-events: none;
                transition: inherit;
            }

            .ladi-button > .ladi-button-headline, .ladi-button > .ladi-button-shape {
                width: 100%!important;
                height: 100%!important;
                top: 0!important;
                left: 0!important;
                display: table;
                user-select: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
            }

                .ladi-button > .ladi-button-shape .ladi-shape {
                    margin: auto;
                    top: 0;
                    bottom: 0;
                }

                .ladi-button > .ladi-button-headline .ladi-headline {
                    display: table-cell;
                    vertical-align: middle;
                }

        .ladi-checkout-product-cart-icon .ladi-cart-number {
            position: absolute;
            top: -2px;
            right: -7px;
            background: #f36e36;
            text-align: center;
            min-width: 18px;
            min-height: 18px;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            border-radius: 100%;
            z-index: 90000000;
            padding: 3px 4px;
        }

        .ladi-checkout-product-add-to-cart .ladi-button .loading-dots {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .ladi-checkout-product-add-to-cart .ladi-button .loading-dots p {
                display: inline-block;
                font-size: 32px;
                line-height: 1;
                animation: .6s infinite loading;
            }

                .ladi-checkout-product-add-to-cart .ladi-button .loading-dots p:first-child {
                    animation-delay: 0s;
                }

                .ladi-checkout-product-add-to-cart .ladi-button .loading-dots p:nth-child(2) {
                    animation-delay: .2s;
                }

                .ladi-checkout-product-add-to-cart .ladi-button .loading-dots p:nth-child(3) {
                    animation-delay: .4s;
                }

        @keyframes loading {
            0%,100% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }
        }

        .ladi-form .ladi-form-checkout-bump-offer-check.multiple.checked:before, .ladi-form .ladi-form-checkout-payment-check.multiple.checked:before {
            --url:url("data:image/svg+xml,%0A%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M18.71%207.20998C18.617%207.11625%2018.5064%207.04186%2018.3846%206.99109C18.2627%206.94032%2018.132%206.91418%2018%206.91418C17.868%206.91418%2017.7373%206.94032%2017.6154%206.99109C17.4936%207.04186%2017.383%207.11625%2017.29%207.20998L9.84%2014.67L6.71%2011.53C6.61348%2011.4367%206.49954%2011.3634%206.37468%2011.3142C6.24983%2011.265%206.1165%2011.2409%205.98232%2011.2432C5.84814%2011.2455%205.71573%2011.2743%205.59265%2011.3278C5.46957%2011.3812%205.35824%2011.4585%205.265%2011.555C5.17176%2011.6515%205.09845%2011.7654%205.04924%2011.8903C5.00004%2012.0152%204.97591%2012.1485%204.97823%2012.2827C4.98055%2012.4168%205.00928%2012.5492%205.06277%2012.6723C5.11627%2012.7954%205.19348%2012.9067%205.29%2013L9.13%2016.84C9.22296%2016.9337%209.33356%2017.0081%209.45542%2017.0589C9.57728%2017.1096%209.70799%2017.1358%209.84%2017.1358C9.97201%2017.1358%2010.1027%2017.1096%2010.2246%2017.0589C10.3464%2017.0081%2010.457%2016.9337%2010.55%2016.84L18.71%208.67998C18.8115%208.58634%2018.8925%208.47269%2018.9479%208.34619C19.0033%208.21969%2019.0319%208.08308%2019.0319%207.94498C19.0319%207.80688%2019.0033%207.67028%2018.9479%207.54378C18.8925%207.41728%2018.8115%207.30363%2018.71%207.20998Z%22%20fill%3D%22%231852FA%22%2F%3E%0A%3C%2Fsvg%3E%0A");
            pointer-events: none;
            top: -1px;
            left: -1px;
            transform: none;
        }

        .ladi-form, .ladi-form .ladi-form-item-container {
            position: absolute;
            width: 100%;
            height: 100%;
        }

            .ladi-form > .ladi-element, .ladi-form > .ladi-element .ladi-form-item-container, .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-item span[data-checked=true], .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control:not(.ladi-form-control-select) {
                text-transform: inherit;
                text-decoration: inherit;
                text-align: inherit;
                letter-spacing: inherit;
                color: inherit;
                background-size: inherit;
                background-attachment: inherit;
                background-origin: inherit;
            }

            .ladi-form .ladi-button > .ladi-button-headline {
                color: initial;
                font-size: initial;
                font-weight: initial;
                text-transform: initial;
                text-decoration: initial;
                font-style: initial;
                text-align: initial;
                letter-spacing: initial;
                line-height: initial;
            }

            .ladi-form [data-form-checkout-item=bump_offer] .ladi-form-item, .ladi-form > [data-quantity=true] .ladi-form-item-container {
                overflow: hidden;
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item {
                text-transform: inherit;
                text-decoration: inherit;
                text-align: inherit;
                letter-spacing: inherit;
                color: inherit;
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item-background {
                background-size: inherit;
                background-attachment: inherit;
                background-origin: inherit;
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select {
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                background-size: 9px 6px!important;
                background-position: right .5rem center;
                background-repeat: no-repeat;
                padding-right: 24px;
                text-transform: inherit;
                text-align: inherit;
                letter-spacing: inherit;
                color: inherit;
                background-size: inherit;
                background-attachment: inherit;
                background-origin: inherit;
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-item, .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-item span[data-checked=false] {
                text-transform: inherit;
                text-align: inherit;
                letter-spacing: inherit;
                background-size: inherit;
                background-attachment: inherit;
                background-origin: inherit;
                color: inherit;
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-2 {
                width: calc(100% / 2 - 5px);
                max-width: calc(100% / 2 - 5px);
                min-width: calc(100% / 2 - 5px);
            }

                .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-2:nth-child(3), .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-3:nth-child(3), .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-3:nth-child(4) {
                    margin-left: 7.5px;
                }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-3 {
                width: calc(100% / 3 - 5px);
                max-width: calc(100% / 3 - 5px);
                min-width: calc(100% / 3 - 5px);
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select option {
                color: initial;
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select:not([data-selected=""]) {
                text-decoration: inherit;
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-item {
                text-decoration: inherit;
                vertical-align: middle;
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-box-item {
                display: inline-block;
                width: fit-content;
            }

            .ladi-form > .ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-item span {
                user-select: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
            }

            .ladi-form .ladi-form-item-title-value {
                font-weight: 700;
                word-break: break-word;
            }

            .ladi-form .ladi-form-label-container {
                position: relative;
                width: 100%;
            }

            .ladi-form .ladi-form-control-file {
                background-repeat: no-repeat;
                background-position: calc(100% - 5px) center;
            }

            .ladi-form .ladi-form-label-container .ladi-form-label-item {
                display: inline-block;
                cursor: pointer;
                position: relative;
                border-radius: 0!important;
                user-select: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
            }

                .ladi-form .ladi-form-label-container .ladi-form-label-item.image {
                    background-size: cover;
                    background-repeat: no-repeat;
                    background-position: center;
                }

                .ladi-form .ladi-form-label-container .ladi-form-label-item.no-value {
                    display: none!important;
                }

                .ladi-form .ladi-form-label-container .ladi-form-label-item.text.disabled {
                    opacity: .35;
                }

                .ladi-form .ladi-form-label-container .ladi-form-label-item.image.disabled {
                    opacity: .2;
                }

                .ladi-form .ladi-form-label-container .ladi-form-label-item.color.disabled {
                    opacity: .15;
                }

                .ladi-form .ladi-form-label-container .ladi-form-label-item.selected:before {
                    content: '';
                    width: 0;
                    height: 0;
                    bottom: -1px;
                    right: -1px;
                    position: absolute;
                    border-width: 0 0 15px 15px;
                    border-color: transparent;
                    border-style: solid;
                }

                .ladi-form .ladi-form-label-container .ladi-form-label-item.selected:after {
                    content: '';
                    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 12 12' viewBox='0 0 12 12' x='0' fill='%23fff' y='0'%3E%3Cg%3E%3Cpath d='m5.2 10.9c-.2 0-.5-.1-.7-.2l-4.2-3.7c-.4-.4-.5-1-.1-1.4s1-.5 1.4-.1l3.4 3 5.1-7c .3-.4 1-.5 1.4-.2s.5 1 .2 1.4l-5.7 7.9c-.2.2-.4.4-.7.4 0-.1 0-.1-.1-.1z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
                    background-repeat: no-repeat;
                    background-position: bottom right;
                    width: 7px;
                    height: 7px;
                    bottom: 0;
                    right: 0;
                    position: absolute;
                }

            .ladi-form .ladi-form-item {
                width: 100%;
                height: 100%;
                position: absolute;
            }

            .ladi-form .ladi-form-item-background {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                pointer-events: none;
            }

            .ladi-form .ladi-form-item.ladi-form-checkbox {
                height: auto;
                padding: 0 5px;
            }

            .ladi-form .ladi-form-item .ladi-form-control {
                background-color: transparent;
                min-width: 100%;
                min-height: 100%;
                max-width: 100%;
                max-height: 100%;
                width: 100%;
                height: 100%;
                padding: 0 5px;
                color: inherit;
                font-size: inherit;
                border: none;
            }

            .ladi-form .ladi-form-item.ladi-form-checkbox.ladi-form-checkbox-vertical .ladi-form-checkbox-item {
                margin-top: 0!important;
                margin-left: 0!important;
                margin-right: 0!important;
                display: flex;
                align-items: center;
                border: none;
            }

            .ladi-form .ladi-form-item.ladi-form-checkbox.ladi-form-checkbox-horizontal .ladi-form-checkbox-item {
                margin-top: 0!important;
                margin-left: 0!important;
                margin-right: 10px!important;
                display: inline-flex;
                align-items: center;
                border: none;
                position: relative;
            }

            .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item input {
                margin-right: 5px;
                display: block;
            }

            .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item span {
                cursor: default;
                word-break: break-word;
            }

            .ladi-form .ladi-form-item textarea.ladi-form-control {
                resize: none;
                padding: 5px;
            }

            .ladi-form .ladi-button {
                cursor: pointer;
            }

                .ladi-form .ladi-button .ladi-headline {
                    cursor: pointer;
                    user-select: none;
                }

            .ladi-form .ladi-element .ladi-form-otp::-webkit-inner-spin-button, .ladi-form .ladi-element .ladi-form-otp::-webkit-outer-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

            .ladi-form .ladi-element .ladi-form-item .button-get-code {
                display: none;
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto 0;
                line-height: initial;
                padding: 5px 10px;
                height: max-content;
                cursor: pointer;
                user-select: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
            }

                .ladi-form .ladi-element .ladi-form-item .button-get-code.hide-visibility {
                    display: block!important;
                    visibility: hidden!important;
                }

            .ladi-form .ladi-form-checkout-bump-offer-product.option-2, .ladi-form .ladi-form-item.otp-resend .button-get-code, .ladi-form [data-form-checkout-item=payment] .ladi-form-checkout-payment-content div > span {
                display: block;
            }

            .ladi-form .ladi-form-item.otp-countdown:before {
                content: attr(data-countdown-time) "s";
                position: absolute;
                top: 0;
                bottom: 0;
                margin: auto 0;
                height: max-content;
                line-height: initial;
            }

            .ladi-form [data-variant=true] select option[disabled] {
                background: #fff;
                color: #b8b8b8!important;
            }

        .ladi-google-recaptcha-checkbox {
            position: absolute;
            display: inline-block;
            transform: translateY(-100%);
            margin-top: -5px;
            z-index: 90000010;
        }

        .ladi-element[data-form-checkout-item] {
            padding: 0;
        }

        .ladi-form .ladi-form-checkout-title {
            margin-bottom: 8px;
        }

        .ladi-form .ladi-element[data-form-checkout-item] .ladi-form-item, .ladi-form .ladi-element[data-form-checkout-item] .ladi-form-item-container {
            height: auto!important;
            position: unset!important;
        }

        .ladi-form .ladi-form-checkout-box {
            gap: 12px;
            display: flex;
            flex-flow: column;
            margin: 8px 12px;
            margin-top: 14px!important;
            padding-bottom: 14px;
            border-left: none!important;
            border-right: none!important;
            border-top: none!important;
            border-radius: 0!important;
        }

            .ladi-form .ladi-form-checkout-box:last-child {
                border: none!important;
                padding-bottom: 4px;
            }

            .ladi-form .ladi-form-checkout-box:first-child, .ladi-form .ladi-form-checkout-bump-offer-product .item-product:first-child {
                margin-top: 0;
            }

        .ladi-form .ladi-form-checkout-payment-item {
            display: flex;
            flex-flow: row;
            gap: 12px;
            align-items: center;
            --check-size:18px;
            --width-quantity:65px;
        }

        .ladi-form .ladi-form-checkout-payment-check {
            --border-size:1px;
            width: var(--check-size);
            height: var(--check-size);
            flex: 0 0 var(--check-size);
            border: var(--border-size) solid;
            border-radius: 100%;
            display: block;
            position: relative;
        }

            .ladi-form .ladi-form-checkout-payment-check.checked:before {
                content: "";
                width: calc(var(--check-size)/ 2);
                height: calc(var(--check-size)/ 2);
                border-radius: inherit;
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                transform: translate(calc(50% - var(--border-size)),calc(50% - var(--border-size)));
            }

            .ladi-form .ladi-form-checkout-bump-offer-check.multiple, .ladi-form .ladi-form-checkout-payment-check.multiple {
                border-radius: 4px;
            }

                .ladi-form .ladi-form-checkout-payment-check.multiple.checked:before {
                    content: "";
                    -webkit-mask-image: var(--url);
                    mask-image: var(--url);
                    width: var(--check-size);
                    height: var(--check-size);
                    -webkit-mask-size: var(--check-size);
                    mask-size: var(--check-size);
                    background-color: #fff;
                    position: absolute;
                }

        .ladi-form .ladi-form-checkout-payment-content, .ladi-form .ladi-form-checkout-product-content {
            display: flex;
            flex-flow: row;
            --gap:10px;
            gap: var(--gap);
            align-items: center;
            width: calc(100% - var(--width-quantity) - var(--check-size) - var(--gap) * 2);
        }

            .ladi-form .ladi-form-checkout-payment-content img, .ladi-form .ladi-form-checkout-product-content img {
                width: 36px;
                max-height: 36px;
                border-radius: 4px;
            }

            .ladi-form .ladi-form-checkout-payment-content div, .ladi-form .ladi-form-checkout-product-content div {
                display: flex;
                flex-flow: column;
            }

                .ladi-form .ladi-form-checkout-payment-content div > span, .ladi-form .ladi-form-checkout-product-content div > span {
                    font-size: inherit;
                }

                    .ladi-form .ladi-form-checkout-payment-content div > span.small, .ladi-form .ladi-form-checkout-product-content div > span.small {
                        font-size: 80%;
                        opacity: .8;
                    }

                .ladi-form .ladi-form-checkout-payment-content div .price.price-compare, .ladi-form .ladi-form-checkout-product-content div .price.price-compare {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    flex-direction: row!important;
                }

        .ladi-form .ladi-form-checkout-payment-quantity, .ladi-form .ladi-form-checkout-product-quantity {
            position: relative;
            --icon-size:calc(var(--check-size) * 0.8);
        }

            .ladi-form .ladi-form-checkout-payment-quantity input, .ladi-form .ladi-form-checkout-product-quantity input {
                padding: 4px calc(var(--check-size)) 4px 8px;
                border-radius: 8px;
                position: relative;
                width: var(--width-quantity);
                min-height: 34px;
                border: 1px solid;
                background-color: transparent;
                top: 0;
                left: 0;
                display: block;
            }

                .ladi-form .ladi-form-checkout-payment-quantity input::-webkit-inner-spin-button, .ladi-form .ladi-form-checkout-payment-quantity input::-webkit-outer-spin-button {
                    -webkit-appearance: none;
                    margin: 0;
                }

            .ladi-form .ladi-form-checkout-payment-quantity .up {
                width: var(--icon-size);
                height: var(--icon-size);
                top: -1px;
                right: 5px;
                cursor: pointer;
                display: block;
                position: absolute;
            }

                .ladi-form .ladi-form-checkout-payment-quantity .up:before {
                    content: '';
                    --url:url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.14645%206.14645C3.34171%205.95118%203.65829%205.95118%203.85355%206.14645L8%2010.2929L12.1464%206.14645C12.3417%205.95118%2012.6583%205.95118%2012.8536%206.14645C13.0488%206.34171%2013.0488%206.65829%2012.8536%206.85355L8.35355%2011.3536C8.15829%2011.5488%207.84171%2011.5488%207.64645%2011.3536L3.14645%206.85355C2.95118%206.65829%202.95118%206.34171%203.14645%206.14645Z%22%20fill%3D%22black%22%20transform%3D%22rotate(180%208%208)%22%2F%3E%3C%2Fsvg%3E");
                    -webkit-mask-image: var(--url);
                    mask-image: var(--url);
                    display: block;
                    position: absolute;
                    width: var(--icon-size);
                    height: var(--icon-size);
                    pointer-events: none;
                    top: 4px;
                    left: 2px;
                    -webkit-mask-size: var(--icon-size);
                    mask-size: var(--icon-size);
                }

            .ladi-form .ladi-form-checkout-payment-quantity .down {
                width: var(--icon-size);
                height: var(--icon-size);
                right: 5px;
                cursor: pointer;
                display: block;
                position: absolute;
                bottom: 3px;
            }

                .ladi-form .ladi-form-checkout-payment-quantity .down:before {
                    content: '';
                    --url:url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.14645%206.14645C3.34171%205.95118%203.65829%205.95118%203.85355%206.14645L8%2010.2929L12.1464%206.14645C12.3417%205.95118%2012.6583%205.95118%2012.8536%206.14645C13.0488%206.34171%2013.0488%206.65829%2012.8536%206.85355L8.35355%2011.3536C8.15829%2011.5488%207.84171%2011.5488%207.64645%2011.3536L3.14645%206.85355C2.95118%206.65829%202.95118%206.34171%203.14645%206.14645Z%22%20fill%3D%22black%22%2F%3E%0A%3C%2Fsvg%3E");
                    -webkit-mask-image: var(--url);
                    mask-image: var(--url);
                    display: block;
                    position: absolute;
                    width: var(--icon-size);
                    height: var(--icon-size);
                    pointer-events: none;
                    left: 2px;
                    -webkit-mask-size: var(--icon-size);
                    mask-size: var(--icon-size);
                }

        .ladi-form [data-form-checkout-item=payment] .ladi-form-item {
            display: table;
        }

            .ladi-form [data-form-checkout-item=payment] .ladi-form-item .ladi-form-checkout-payment-content {
                width: calc(100% - 18px);
            }

                .ladi-form [data-form-checkout-item=payment] .ladi-form-item .ladi-form-checkout-payment-content div {
                    display: table-cell;
                    vertical-align: middle;
                    padding: 0 6px;
                    cursor: pointer;
                    width: 100%;
                    position: relative;
                }

                    .ladi-form [data-form-checkout-item=payment] .ladi-form-item .ladi-form-checkout-payment-content div.arrow:before {
                        content: '';
                        --url:url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.14645%203.14645C6.34171%202.95118%206.65829%202.95118%206.85355%203.14645L11.3536%207.64645C11.5488%207.84171%2011.5488%208.15829%2011.3536%208.35355L6.85355%2012.8536C6.65829%2013.0488%206.34171%2013.0488%206.14645%2012.8536C5.95118%2012.6583%205.95118%2012.3417%206.14645%2012.1464L10.2929%208L6.14645%203.85355C5.95118%203.65829%205.95118%203.34171%206.14645%203.14645Z%22%20fill%3D%22black%22%2F%3E%0A%3C%2Fsvg%3E");
                        -webkit-mask-image: var(--url);
                        mask-image: var(--url);
                        position: absolute;
                        width: 20px;
                        height: 20px;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        display: block;
                        margin: auto;
                        -webkit-mask-size: 100%;
                        mask-size: 100%;
                    }

        .ladi-form [data-form-checkout-item=total_price] {
            display: flex;
            flex-flow: column;
            gap: 3px;
            justify-content: center;
        }

            .ladi-form [data-form-checkout-item=total_price] .line {
                display: inline-flex;
                justify-content: space-between;
                align-items: center;
            }

            .ladi-form [data-form-checkout-item=total_price] .title-number-price.big, .ladi-form [data-form-checkout-item=total_price] .title-price.big {
                font-weight: 700;
                font-size: 130%;
            }

            .ladi-form [data-form-checkout-item=total_price] .title-number-price {
                font-size: 115%;
            }

            .ladi-form [data-form-checkout-item=total_price] .space {
                border-top: 1px solid;
                margin: 15px 0 10px;
            }

        .ladi-form .ladi-form-checkout-bump-offer-checkbox {
            display: flex;
            flex-flow: row;
            gap: 8px;
            padding: 8px;
            margin: 12px 8px 0;
            border-radius: 8px;
            align-items: center;
            --check-size-bumpoffer:18px;
            --width-quantity-bumpoffer:60px;
        }

            .ladi-form .ladi-form-checkout-bump-offer-checkbox.checkbox-bump-offer-1 {
                background-color: #3c72f9;
                margin: 0;
            }

                .ladi-form .ladi-form-checkout-bump-offer-checkbox.checkbox-bump-offer-1 p {
                    color: #fff;
                }

            .ladi-form .ladi-form-checkout-bump-offer-checkbox.checkbox-bump-offer-2 {
                background-color: #fde298;
                margin: 12px 0 4px;
            }

            .ladi-form .ladi-form-checkout-bump-offer-checkbox.checkbox-bump-offer-3 {
                background-color: #f3f4f5;
                margin: 8px 0 0;
                padding: 4px 8px;
                width: max-content;
            }

                .ladi-form .ladi-form-checkout-bump-offer-checkbox.checkbox-bump-offer-3 .ladi-form-checkout-bump-offer-check {
                    width: 12px;
                    height: 12px;
                    flex: 0 0 12px;
                }

        .ladi-form .ladi-form-checkout-bump-offer-check {
            --border-size:1px;
            width: var(--check-size-bumpoffer);
            height: var(--check-size-bumpoffer);
            flex: 0 0 var(--check-size-bumpoffer);
            border: var(--border-size) solid #cfd3d8;
            background-color: #fff;
            border-radius: 100%;
            display: block;
            position: relative;
        }

            .ladi-form .ladi-form-checkout-bump-offer-check.checked:before {
                content: "";
                width: calc(var(--check-size-bumpoffer)/ 2);
                height: calc(var(--check-size-bumpoffer)/ 2);
                border-radius: inherit;
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                transform: translate(calc(50% - var(--border-size)),calc(50% - var(--border-size)));
            }

            .ladi-form .ladi-form-checkout-bump-offer-check.multiple.checked:before {
                content: "";
                -webkit-mask-image: var(--url);
                mask-image: var(--url);
                width: var(--check-size-bumpoffer);
                height: var(--check-size-bumpoffer);
                -webkit-mask-size: var(--check-size-bumpoffer);
                mask-size: var(--check-size-bumpoffer);
                background-color: #000;
                position: absolute;
            }

        .ladi-form .ladi-form-checkout-bump-offer-checkbox.checkbox-bump-offer-3 .ladi-form-checkout-bump-offer-check.multiple.checked:before {
            top: -5px;
            left: -3px;
        }

        .ladi-form .ladi-form-checkout-bump-offer-product {
            display: flex;
            flex-flow: row;
            gap: 16px;
            margin: 8px 12px;
            align-items: center;
            border-left: none!important;
            border-right: none!important;
            border-top: none!important;
            border-radius: 0!important;
        }

            .ladi-form .ladi-form-checkout-bump-offer-product.option-1 {
                display: block!important;
                padding-bottom: 8px;
            }

        .ladi-form .ladi-form-item:last-child .ladi-form-checkout-bump-offer-product {
            border: none!important;
        }

        .ladi-form .ladi-form-checkout-bump-offer-product .item-product {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-top: 16px;
            margin-bottom: 12px;
        }

            .ladi-form .ladi-form-checkout-bump-offer-product .item-product:last-child {
                margin-bottom: 0;
            }

            .ladi-form .ladi-form-checkout-bump-offer-product .item-product img {
                width: 48px;
                height: 48px;
                border-radius: 4px;
                overflow: hidden;
            }

            .ladi-form .ladi-form-checkout-bump-offer-product .item-product .item-product-title {
                font-size: 90%;
                opacity: .6;
            }

            .ladi-form .ladi-form-checkout-bump-offer-product .item-product .item-product-description {
                color: #9fa7b1;
                text-overflow: ellipsis;
                overflow: hidden;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
            }

        .ladi-form .ladi-form-checkout-bump-offer-product .item-detail {
            display: flex;
            flex-direction: column;
        }

            .ladi-form .ladi-form-checkout-bump-offer-product .item-detail .shock-promotion-label {
                background-color: #ef9300;
                width: max-content;
                border-radius: 4px;
                padding: 2px 8px;
                color: #fff;
                margin-bottom: 4px;
                font-weight: 600;
            }

            .ladi-form .ladi-form-checkout-bump-offer-product .item-detail .pr-name {
                font-weight: 400;
                font-size: 120%;
                line-height: 1.4;
            }

            .ladi-form .ladi-form-checkout-bump-offer-product .item-detail .pr-price {
                font-weight: 400;
                line-height: 1.4;
            }

            .ladi-form .ladi-form-checkout-bump-offer-product .item-detail span a {
                text-decoration: line-through;
                opacity: .6;
            }

            .ladi-form .ladi-form-checkout-bump-offer-product .item-detail .special {
                background-color: #e01a1a;
                padding: 2px 8px;
                margin-right: 6px;
                color: #fff;
                border-radius: 4px;
                font-size: 80%;
            }

        .ladi-form [data-form-checkout-item=coupon_code] .content-discount-block {
            padding: 12px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ladi-form [data-form-checkout-item=coupon_code] .ladi-form-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ladi-form [data-form-checkout-item=coupon_code] .content-discount-block .title {
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .ladi-form [data-form-checkout-item=coupon_code] .content-discount-block .placeholder span, .ladi-form [data-form-checkout-item=coupon_code] .content-discount-block .title span {
                font-weight: 400;
                font-size: 100%;
                line-height: 1.4;
            }

            .ladi-form [data-form-checkout-item=coupon_code] .content-discount-block .title i {
                width: 16px;
                height: 16px;
                mask-image: url(/ladiui/icons/ldicon-discount-coupon.svg);
                display: inline-block;
                mask-size: cover;
            }

        .ladi-form [data-form-checkout-item=coupon_code] .content-discount-block .placeholder {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

            .ladi-form [data-form-checkout-item=coupon_code] .content-discount-block .placeholder i {
                width: 16px;
                height: 16px;
                mask-image: url(/ladiui/icons/new-ldicon-arrow-left.svg);
                display: inline-block;
                mask-size: cover;
                background-color: #6d6d6d!important;
            }

        .ladi-video {
            position: absolute;
            width: 100%;
            height: 100%;
            cursor: pointer;
            overflow: hidden;
        }

            .ladi-video .ladi-video-background {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                pointer-events: none;
            }

        .button-unmute {
            cursor: pointer;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

            .button-unmute div {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22m%2021.48%2C17.98%20c%200%2C-1.77%20-1.02%2C-3.29%20-2.5%2C-4.03%20v%202.21%20l%202.45%2C2.45%20c%20.03%2C-0.2%20.05%2C-0.41%20.05%2C-0.63%20z%20m%202.5%2C0%20c%200%2C.94%20-0.2%2C1.82%20-0.54%2C2.64%20l%201.51%2C1.51%20c%20.66%2C-1.24%201.03%2C-2.65%201.03%2C-4.15%200%2C-4.28%20-2.99%2C-7.86%20-7%2C-8.76%20v%202.05%20c%202.89%2C.86%205%2C3.54%205%2C6.71%20z%20M%209.25%2C8.98%20l%20-1.27%2C1.26%204.72%2C4.73%20H%207.98%20v%206%20H%2011.98%20l%205%2C5%20v%20-6.73%20l%204.25%2C4.25%20c%20-0.67%2C.52%20-1.42%2C.93%20-2.25%2C1.18%20v%202.06%20c%201.38%2C-0.31%202.63%2C-0.95%203.69%2C-1.81%20l%202.04%2C2.05%201.27%2C-1.27%20-9%2C-9%20-7.72%2C-7.72%20z%20m%207.72%2C.99%20-2.09%2C2.08%202.09%2C2.09%20V%209.98%20z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
                width: 60px;
                height: 60px;
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                margin: auto;
                background-color: rgba(0, 0, 0, 0.5);
                border-radius: 100%;
                background-size: 90%;
                background-repeat: no-repeat;
                background-position: center center;
            }

        .ladi-group {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .ladi-shape {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

            .ladi-shape .ladi-cart-number {
                position: absolute;
                top: -2px;
                right: -7px;
                background: #f36e36;
                text-align: center;
                width: 18px;
                height: 18px;
                line-height: 18px;
                font-size: 12px;
                font-weight: bold;
                color: #fff;
                border-radius: 100%;
            }

        .ladi-image {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

            .ladi-image .ladi-image-background {
                background-repeat: no-repeat;
                background-position: left top;
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                position: absolute;
                margin: 0 auto;
                width: 100%;
                height: 100%;
                pointer-events: none;
            }

        .ladi-headline {
            width: 100%;
            display: inline-block;
            word-break: break-word;
            background-size: cover;
            background-position: center center;
        }

            .ladi-headline a {
                text-decoration: underline;
            }

        .ladi-paragraph {
            width: 100%;
            display: inline-block;
            word-break: break-word;
        }

            .ladi-paragraph a {
                text-decoration: underline;
            }

        .ladi-line {
            position: relative;
        }

            .ladi-line .ladi-line-container {
                border-bottom: 0 !important;
                border-right: 0 !important;
                width: 100%;
                height: 100%;
            }

        a[data-action] {
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            cursor: pointer;
        }

        a:visited {
            color: inherit;
        }

        a:link {
            color: inherit;
        }

        [data-opacity="0"] {
            opacity: 0;
        }

        [data-hidden="true"] {
            display: none;
        }

        [data-action="true"] {
            cursor: pointer;
        }

        .ladi-hidden {
            display: none;
        }

        .ladi-animation-hidden {
            visibility: hidden !important;
            opacity: 0 !important;
        }

        .element-click-selected {
            cursor: pointer;
        }

        .is-2nd-click {
            cursor: pointer;
        }

        .ladi-button-shape.is-2nd-click, .ladi-accordion-shape.is-2nd-click {
            z-index: 3;
        }

        .backdrop-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 90000060;
        }

        .backdrop-dropbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 90000040;
        }

        .ladi-lazyload {
            background-image: none !important;
        }

        .ladi-list-paragraph ul li.ladi-lazyload:before {
            background-image: none !important;
        }

        .ladi-element.ladi-auto-scroll {
            overflow-x: auto;
            overflow-y: hidden;
            width: 100% !important;
            left: 0 !important;
            -webkit-overflow-scrolling: touch;
        }

        [data-hint]:not([data-timeout-id-copied]):before, [data-hint]:not([data-timeout-id-copied]):after {
            display: none !important;
        }

        .ladi-section.ladi-auto-scroll {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
        }

        .ladi-gallery .ladi-gallery-view > .ladi-gallery-view-item {
            transition: transform 300ms ease-in-out;
        }
        body {
            direction: ltr;
        }

        .ladi-wraper {
            margin: 0 auto;
            width: 420px;
        }
@media (max-width: 768px) {
    .ladi-wraper {
            width: 100%;
        }
}
        body {
            font-family: Roboto, sans-serif;
        }
        #SECTION9 {
            height: 94px;
        }

            #SECTION9 > .ladi-section-background, #BOX21 > .ladi-box, #BOX23 > .ladi-box {
                background-color: rgb(255, 255, 255);
            }

        #BOX24 {
            width: 265px;
            height: 30px;
            top: 10.5px;
            left: 13.5px;
        }

            #BOX24 > .ladi-box, #BOX2 > .ladi-box, #BOX26 > .ladi-box, #BOX7 > .ladi-box, #BOX13 > .ladi-box, #BOX28 > .ladi-box, #BOX30 > .ladi-box {
                border-radius: 0px;
            }

            #BOX24 > .ladi-box {
                background-color: rgb(241, 241, 243);
            }

                #BOX24 > .ladi-box:hover, #BOX25 > .ladi-box:hover, #BOX2 > .ladi-box:hover, #BOX26 > .ladi-box:hover, #BOX7 > .ladi-box:hover, #BOX12 > .ladi-box:hover, #BOX13 > .ladi-box:hover, #BOX27 > .ladi-box:hover, #BOX28 > .ladi-box:hover, #BOX30 > .ladi-box:hover, #BOX21 > .ladi-box:hover, #BOX19 > .ladi-box:hover, #BOX23 > .ladi-box:hover {
                    opacity: 1;
                }

        #SHAPE59 {
            width: 30.5px;
            height: 30.5px;
            top: 11.75px;
            left: 14.5px;
        }

            #SHAPE59 svg:last-child {
                fill: rgb(29, 29, 29);
            }

        #PARAGRAPH18 {
            width: 210px;
            top: 16px;
            left: 45px;
        }

            #PARAGRAPH18 > .ladi-paragraph {
                font-size: 15.59px;
                line-height: 1.6;
                color: rgb(125, 125, 125);
            }

        #GROUP68 {
            width: 109.5px;
            height: 29px;
            top: 11.75px;
            left: 294px;
        }

        #SHAPE60 {
            width: 29px;
            height: 29px;
        }

        #SHAPE60, #PARAGRAPH19, #GALLERY1, #GROUP95, #PEN_TOOL81, #GROUP45, #PEN_TOOL1, #HEADLINE17, #SHAPE8, #SHAPE6, #SHAPE12, #SHAPE11, #SHAPE10, #BOX12, #BOX30, #IMAGE56, #IMAGE56 > .ladi-image > .ladi-image-background, #SHAPE13, #SHAPE18, #SHAPE27, #IMAGE24, #SHAPE37, #IMAGE46, #SHAPE68, #SHAPE73, #IMAGE58 > .ladi-image > .ladi-image-background, #IMAGE68 > .ladi-image > .ladi-image-background, #IMAGE72 > .ladi-image > .ladi-image-background, #BOX21, #FORM_ITEM2, #BOX19, #GROUP58, #PARAGRAPH14, #PARAGRAPH15, #IMAGE67 > .ladi-image > .ladi-image-background, #POPUP2, #FORM_ITEM8 {
            top: 0px;
            left: 0px;
        }

            #SHAPE60 svg:last-child, #SHAPE61 svg:last-child, #SHAPE62 svg:last-child {
                fill: rgb(10, 10, 10);
            }

        #SHAPE61 {
            width: 24.75px;
            height: 24.75px;
            top: 4.25px;
            left: 43.5px;
        }

        #GROUP67 {
            width: 22px;
            height: 14px;
            top: 0px;
            left: 56.787px;
        }

        #BOX25 {
            width: 20px;
            height: 14px;
            top: 0px;
            left: 1px;
        }

            #BOX25 > .ladi-box {
                border-radius: 73px;
                background-color: rgb(243, 63, 88);
            }

        #PARAGRAPH19 {
            width: 22px;
        }

            #PARAGRAPH19 > .ladi-paragraph {
                font-size: 8px;
                line-height: 1.6;
                color: rgb(255, 255, 255);
                text-align: center;
            }

        #SHAPE62 {
            width: 22px;
            height: 22px;
            top: 4.25px;
            left: 87.5px;
        }

        #HEADLINE84 {
            width: 74px;
            top: 54px;
            left: 28px;
        }

            #HEADLINE84 > .ladi-headline {
                font-size: 14px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(0, 0, 0);
                text-align: center;
            }

        #HEADLINE85, #HEADLINE86, #HEADLINE87 {
            width: 63px;
        }

        #HEADLINE85 {
            top: 54px;
            left: 134.333px;
        }

            #HEADLINE85 > .ladi-headline, #HEADLINE86 > .ladi-headline, #HEADLINE87 > .ladi-headline {
                font-size: 14px;
                line-height: 1.6;
                color: rgb(0, 0, 0);
                text-align: center;
            }

        #HEADLINE86 {
            top: 54px;
            left: 229.667px;
        }

        #HEADLINE87 {
            top: 54px;
            left: 325px;
        }

        #LINE5, #LINE7, #LINE8 {
            width: 420px;
        }
@media (max-width: 768px) {#LINE5, #LINE7, #LINE8 {
            width: 100%;
        }
}
        #LINE5 {
            top: 76px;
            left: 0px;
        }

            #LINE5 > .ladi-line > .ladi-line-container {
                border-top: 2px solid rgb(233, 233, 233);
                border-right: 2px solid rgb(233, 233, 233);
                border-bottom: 2px solid rgb(233, 233, 233);
                border-left: 0px !important;
            }

            #LINE5 > .ladi-line, #LINE6 > .ladi-line, #LINE7 > .ladi-line, #LINE8 > .ladi-line {
                width: 100%;
                padding: 8px 0px;
            }

        #LINE6, #HEADLINE25 {
            width: 83px;
        }

        #LINE6 {
            top: 76px;
            left: 25px;
        }

            #LINE6 > .ladi-line > .ladi-line-container {
                border-top: 2px solid rgb(18, 18, 18);
                border-right: 2px solid rgb(18, 18, 18);
                border-bottom: 2px solid rgb(18, 18, 18);
                border-left: 0px !important;
            }

        #SECTION1 {
            height: 471.73px;
        }

        #BOX2 {
            width: 217.333px;
            height: 52.9996px;
            top: 418px;
            left: 0px;
        }

            #BOX2 > .ladi-box {
                background-image: linear-gradient(90deg, rgb(223, 38, 52), rgb(245, 85, 70));
                background-color: initial;
                background-size: initial;
                background-origin: initial;
                background-position: initial;
                background-repeat: initial;
                background-attachment: initial;
                -webkit-background-clip: initial;
            }

        #BOX26 {
            width: 230.467px;
            height: 52.9996px;
            top: 418px;
            left: 205.2px;
        }

            #BOX26 > .ladi-box {
                background-image: linear-gradient(270deg, rgb(255, 209, 17), rgb(249, 212, 35));
                background-color: initial;
                background-size: initial;
                background-origin: initial;
                background-position: initial;
                background-repeat: initial;
                background-attachment: initial;
                -webkit-background-clip: initial;
                transform: skewX(-22deg);
            }

        #GALLERY1 {
            width: 420px;
            height: 419px;
        }
@media (max-width: 768px) {#GALLERY1 {
            width: 100%;
        }
}
            #GALLERY1 > .ladi-gallery > .ladi-gallery-view {
                height: calc(100% + 0px);
            }

            #GALLERY1 > .ladi-gallery > .ladi-gallery-control, #SECTION_POPUP {
                height: 0px;
            }

            #GALLERY1 > .ladi-gallery > .ladi-gallery-control {
                display: none;
            }

                #GALLERY1 > .ladi-gallery > .ladi-gallery-control > .ladi-gallery-control-box > .ladi-gallery-control-item {
                    width: 0px;
                    height: 0px;
                    margin-right: 0px;
                }

            #GALLERY1 .ladi-gallery .ladi-gallery-view-item[data-index="0"] {
                background-image: url("/Images/s750x750/image-shopee-01-20250427150202-w-hze.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-control-item[data-index="0"] {
                background-image: url("/Images/s400x400/image-shopee-01-20250427150202-w-hze.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-view-item[data-index="1"] {
                background-image: url("/Images/s750x750/so-11-01-20250507040552-llnix.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-control-item[data-index="1"] {
                background-image: url("/Images/s400x400/so-11-01-20250507040552-llnix.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-view-item[data-index="2"] {
                background-image: url("/Images/s750x750/so-13-01-20250507040552-iv3e0.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-control-item[data-index="2"] {
                background-image: url("/Images/s400x400/so-13-01-20250507040552-iv3e0.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-view-item[data-index="3"] {
                background-image: url("/Images/s750x750/1000g-20250427150202-2icvi.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-control-item[data-index="3"] {
                background-image: url("/Images/s400x400/1000g-20250427150202-2icvi.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-view-item[data-index="4"] {
                background-image: url("/Images/s750x750/image-shopee-08-20250427150202-du3my.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-control-item[data-index="4"] {
                background-image: url("/Images/s400x400/image-shopee-08-20250427150202-du3my.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-view-item[data-index="5"] {
                background-image: url("/Images/s750x750/image-shopee-05-20250427150202-0t7t1.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-control-item[data-index="5"] {
                background-image: url("/Images/s400x400/image-shopee-05-20250427150202-0t7t1.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-view-item[data-index="6"] {
                background-image: url("/Images/s750x750/image-shopee-04-20250427150202-pm29e.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-control-item[data-index="6"] {
                background-image: url("/Images/s400x400/image-shopee-04-20250427150202-pm29e.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-view-item[data-index="7"] {
                background-image: url("/Images/s750x750/image-shopee-03-20250427150202-gfugw.jpg");
            }

            #GALLERY1 .ladi-gallery .ladi-gallery-control-item[data-index="7"] {
                background-image: url("/Images/s400x400/image-shopee-03-20250427150202-gfugw.jpg");
            }

        #HEADLINE10, #HEADLINE89 {
            width: 146px;
        }

        #HEADLINE10 {
            top: 422.264px;
            left: 257px;
        }

            #HEADLINE10 > .ladi-headline {
                font-size: 18px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(20, 27, 36);
                text-align: left;
            }

        #SHAPE7 {
            width: 11.85px;
            height: 18.9432px;
            top: 427.292px;
            left: 240.001px;
        }

            #SHAPE7.ladi-animation > .ladi-shape, #SHAPE51.ladi-animation > .ladi-shape {
                animation-name: flash;
                animation-delay: 1s;
                animation-duration: 1s;
                animation-iteration-count: infinite;
            }

            #SHAPE7 svg:last-child {
                fill: rgb(20, 27, 36);
            }

        #HEADLINE89 {
            top: 444.735px;
            left: 257px;
        }

            #HEADLINE89 > .ladi-headline {
                font-size: 14px;
                line-height: 1.6;
                color: rgb(20, 27, 36);
                text-align: left;
            }

        #GROUP94, #GROUP95, #PEN_TOOL81, #GROUP3, #GROUP45, #PEN_TOOL1 {
            width: 130.073px;
            height: 44.1066px;
        }

        #GROUP94 {
            top: 374.557px;
            left: 113px;
        }

        #PEN_TOOL81 svg:last-child {
            fill: url("#PEN_TOOL81_mobile_gradient");
        }

        #HEADLINE133, #HEADLINE6 {
            width: 60px;
        }

        #HEADLINE133 {
            top: 13.053px;
            left: 25px;
        }

            #HEADLINE133 > .ladi-headline, #HEADLINE6 > .ladi-headline {
                font-size: 14px;
                font-weight: bold;
                font-style: italic;
                line-height: 1.6;
                color: rgb(255, 255, 255);
                text-transform: uppercase;
                text-align: left;
            }

        #HEADLINE134 {
            width: 46px;
            top: 7.5533px;
            left: 78px;
        }

            #HEADLINE134 > .ladi-headline {
                font-size: 12px;
                line-height: 1.2;
                color: rgb(0, 0, 0);
                text-align: left;
            }

        #GROUP3 {
            top: 374.557px;
            left: -1px;
        }

        #PEN_TOOL1 svg:last-child {
            fill: url("#PEN_TOOL1_mobile_gradient");
        }

        #HEADLINE6 {
            top: 13.221px;
            left: 13px;
        }

        #HEADLINE4 {
            width: 62px;
            top: 9.553px;
            left: 63px;
        }

            #HEADLINE4 > .ladi-headline {
                font-size: 12px;
                line-height: 1.2;
                color: rgb(255, 255, 255);
                text-align: left;
            }

        #GROUP97, #GROUP58 {
            width: 221.819px;
            height: 34px;
        }

        #GROUP97 {
            top: 419.5px;
            left: 8.6915px;
        }

        #HEADLINE149, #HEADLINE64 {
            width: 114px;
            top: 0px;
            left: 107.819px;
        }

            #HEADLINE149 > .ladi-headline {
                font-size: 21px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(255, 255, 255);
                text-align: left;
            }

        #SHAPE82, #SHAPE48 {
            width: 19.75px;
            height: 19.75px;
            top: 7.125px;
            left: 0px;
        }

            #SHAPE82 > .ladi-shape, #SHAPE48 > .ladi-shape {
                transform: rotate(137deg);
            }

            #SHAPE82 svg:last-child {
                fill: rgb(255, 255, 255);
            }

        #HEADLINE150, #HEADLINE67 {
            width: 104px;
            top: 4px;
            left: 25.819px;
        }

            #HEADLINE150 > .ladi-headline {
                font-size: 16px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(255, 255, 255);
                text-align: left;
            }

        #PARAGRAPH30 {
            width: 190px;
            top: 444.735px;
            left: -7.4415px;
        }

            #PARAGRAPH30 > .ladi-paragraph, #PARAGRAPH21 > .ladi-paragraph {
                font-size: 14px;
                font-style: italic;
                line-height: 1.6;
                color: rgb(255, 255, 255);
                text-align: center;
            }

        #SECTION2 {
            height: 537px;
        }

        #HEADLINE117 {
            width: 392px;
            top: 405.666px;
            left: 17.5px;
        }

            #HEADLINE117 > .ladi-headline {
                font-size: 14px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(0, 0, 0);
                text-align: left;
            }

        #HEADLINE14 {
            width: 363px;
        }

        #HEADLINE14, #PARAGRAPH21 {
            top: 21.3px;
            left: 17.5px;
        }

            #HEADLINE14 > .ladi-headline {
                font-size: 18px;
                line-height: 1.4;
                color: rgb(0, 0, 0);
                text-align: left;
            }

        #LINE1 {
            height: 22px;
            top: 81.9875px;
            left: 124.5px;
        }

            #LINE1 > .ladi-line > .ladi-line-container {
                border-top: 0px !important;
                border-right: 1.5px solid rgb(228, 228, 228);
                border-bottom: 1.5px solid rgb(228, 228, 228);
                border-left: 1.5px solid rgb(228, 228, 228);
            }

            #LINE1 > .ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

        #GROUP18 {
            width: 87px;
            height: 22px;
            top: 81.9875px;
            left: 141.5px;
        }

        #HEADLINE17 {
            width: 68px;
        }

            #HEADLINE17 > .ladi-headline {
                font-size: 16px;
                line-height: 1.4;
                color: rgb(138, 138, 145);
                text-align: left;
            }

        #HEADLINE19 {
            width: 34px;
            top: 0px;
            left: 53px;
        }

            #HEADLINE19 > .ladi-headline {
                font-size: 16px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(22, 24, 36);
                text-align: left;
            }

        #GROUP19 {
            width: 182.5px;
            height: 22px;
            top: 81.9875px;
            left: 230.5px;
        }

        #SHAPE8 {
            width: 17.5px;
            height: 19.4748px;
        }

            #SHAPE8 svg:last-child, #SHAPE51 svg:last-child {
                fill: rgb(28, 191, 192);
            }

        #HEADLINE20, #PARAGRAPH22 {
            width: 161px;
        }

        #HEADLINE20 {
            top: 0px;
            left: 21.5px;
        }

            #HEADLINE20 > .ladi-headline {
                font-size: 16px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(28, 191, 192);
                text-align: left;
            }

        #GROUP17 {
            width: 116px;
            height: 22.0625px;
            top: 81.9875px;
            left: 17.5px;
        }

        #SHAPE6 {
            width: 16.5px;
            height: 16.5px;
        }

            #SHAPE6 svg:last-child {
                fill: url("#SHAPE6_mobile_gradient");
            }

        #HEADLINE15, #HEADLINE34 {
            width: 56px;
        }

        #HEADLINE15 {
            top: 0px;
            left: 20px;
        }

            #HEADLINE15 > .ladi-headline, #HEADLINE33 > .ladi-headline, #HEADLINE34 > .ladi-headline {
                font-size: 16px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(0, 0, 0);
                text-align: left;
            }

        #HEADLINE16 {
            width: 51px;
            top: 0.0625px;
            left: 65px;
        }

            #HEADLINE16 > .ladi-headline {
                font-size: 16px;
                line-height: 1.4;
                color: rgb(44, 93, 186);
                text-align: left;
            }

        #BOX7 {
            width: 420px;
            height: 48px;
            top: 168px;
            left: 0px;
        }
@media (max-width: 768px) {
        #BOX7 {
            width: 100%;
        }
}
            #BOX7 > .ladi-box, #BOX13 > .ladi-box, #SECTION6 > .ladi-section-background {
                background-color: rgb(249, 249, 249);
            }

        #HEADLINE25 {
            top: 236.5px;
            left: 17.5px;
        }

            #HEADLINE25 > .ladi-headline, #HEADLINE28 > .ladi-headline, #HEADLINE31 > .ladi-headline, #HEADLINE113 > .ladi-headline, #HEADLINE37 > .ladi-headline, #HEADLINE95 > .ladi-headline, #HEADLINE98 > .ladi-headline, #HEADLINE109 > .ladi-headline, #HEADLINE105 > .ladi-headline {
                font-size: 15px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(0, 0, 0);
                text-align: left;
            }

        #GROUP75 {
            width: 134.755px;
            height: 17.308px;
            top: 183.976px;
            left: 280.075px;
        }

        #HEADLINE24, #HEADLINE22, #HEADLINE93, #HEADLINE94, #HEADLINE96, #HEADLINE99, #HEADLINE101 {
            width: 115px;
        }

        #HEADLINE24 {
            top: 0.308px;
            left: 19.755px;
        }

            #HEADLINE24 > .ladi-headline, #HEADLINE23 > .ladi-headline, #HEADLINE22 > .ladi-headline {
                font-size: 12px;
                line-height: 1.4;
                color: rgb(0, 0, 0);
                text-align: left;
            }

        #SHAPE12 {
            width: 15.2659px;
            height: 15.266px;
        }

            #SHAPE12 svg:last-child, #SHAPE11 svg:last-child, #SHAPE10 svg:last-child {
                fill: rgb(255, 206, 113);
            }

        #GROUP21 {
            width: 123.458px;
            height: 17.883px;
            top: 183.976px;
            left: 156.617px;
        }

        #HEADLINE23 {
            width: 101px;
            top: 0.617px;
            left: 22.458px;
        }

        #SHAPE11 {
            width: 17.883px;
            height: 17.883px;
        }

        #GROUP20 {
            width: 138.117px;
            height: 20.5px;
            top: 183.059px;
            left: 18.5px;
        }

        #HEADLINE22 {
            top: 0.617px;
            left: 23.117px;
        }

        #SHAPE10 {
            width: 20.5px;
            height: 20.5px;
        }

        #HEADLINE28, #HEADLINE31 {
            width: 192px;
        }

        #HEADLINE28 {
            top: 301.5px;
            left: 17.5px;
        }

        #GROUP76 {
            width: 267.5px;
            height: 18px;
            top: 329.5px;
            left: 17.5px;
        }

        #BOX12 {
            width: 27px;
            height: 17px;
        }

            #BOX12 > .ladi-box {
                border-radius: 2px;
                background-color: rgb(79, 171, 126);
            }

        #HEADLINE29 {
            width: 25px;
            top: 2px;
            left: 2px;
        }

            #HEADLINE29 > .ladi-headline {
                font-size: 10px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(255, 255, 255);
                text-align: left;
            }

        #HEADLINE30 {
            width: 234px;
            top: 0px;
            left: 33.5px;
        }

            #HEADLINE30 > .ladi-headline, #HEADLINE32 > .ladi-headline {
                font-size: 13px;
                line-height: 1.4;
                color: rgb(112, 112, 112);
                text-align: left;
            }

        #BOX13 {
            width: 420px;
            height: 8px;
            top: 278.5px;
            left: 0px;
        }

@media (max-width: 768px) {
        #BOX13 {
            width: 100%;
        }
}
        #HEADLINE31 {
            top: 480.5px;
            left: 18.5px;
        }

        #HEADLINE32 {
            width: 394px;
            top: 511.5px;
            left: 17.5px;
        }

        #SHAPE64, #SHAPE66 {
            width: 25.641px;
            height: 25.641px;
        }

        #SHAPE64 {
            top: 21.3px;
            left: 377.359px;
        }

            #SHAPE64 svg:last-child {
                fill: rgb(71, 71, 71);
            }

        #BOX27 {
            width: 81.5px;
            height: 20px;
            top: 21.3px;
            left: 20px;
        }

            #BOX27 > .ladi-box {
                border-radius: 10px;
                background-color: rgb(254, 43, 84);
            }

        #PARAGRAPH21 {
            width: 87px;
        }

        #BOX28 {
            width: 404.308px;
            height: 48px;
            top: 112px;
            left: 8.6915px;
        }

            #BOX28 > .ladi-box {
                background-color: rgb(249, 245, 242);
            }

        #PARAGRAPH22 {
            top: 125px;
            left: 44.2px;
        }

            #PARAGRAPH22 > .ladi-paragraph {
                font-size: 14px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(156, 113, 49);
            }

        #SHAPE65 {
            width: 22.7px;
            height: 22.7px;
            top: 123px;
            left: 17.5px;
        }

            #SHAPE65 svg:last-child, #SHAPE66 svg:last-child {
                fill: rgb(156, 113, 49);
            }

        #PARAGRAPH23 {
            width: 199px;
            top: 125px;
            left: 177.859px;
        }

            #PARAGRAPH23 > .ladi-paragraph {
                font-size: 14px;
                line-height: 1.6;
                color: rgb(156, 113, 49);
            }

        #SHAPE66 {
            top: 123.179px;
            left: 372.859px;
        }

        #GROUP71, #BOX30 {
            width: 75.5556px;
            height: 24px;
        }

        #GROUP71 {
            top: 236.5px;
            left: 113px;
        }

        #BOX30 > .ladi-box, #SECTION5 > .ladi-section-background, #FORM2 .ladi-form-item-background, #FORM3 .ladi-form-item-background {
            background-color: rgb(248, 248, 248);
        }

        #HEADLINE91 {
            width: 55px;
            top: 3.5px;
            left: 10.2778px;
        }

            #HEADLINE91 > .ladi-headline {
                font-size: 12px;
                line-height: 1.4;
                color: rgb(0, 0, 0);
                text-align: center;
            }

        #LINE7 {
            top: 353.1px;
            left: 0px;
        }

            #LINE7 > .ladi-line > .ladi-line-container, #LINE8 > .ladi-line > .ladi-line-container {
                border-top: 1px solid rgb(233, 233, 233);
                border-right: 1px solid rgb(233, 233, 233);
                border-bottom: 1px solid rgb(233, 233, 233);
                border-left: 0px !important;
            }

        #HEADLINE113 {
            width: 110px;
            top: 375.68px;
            left: 17.5px;
        }

        #HEADLINE114 {
            width: 67px;
            top: 374.5px;
            left: 287.004px;
        }

            #HEADLINE114 > .ladi-headline {
                font-size: 14px;
                line-height: 1.4;
                color: rgb(146, 143, 143);
                text-decoration-line: line-through;
                text-align: center;
            }

        #HEADLINE115 {
            width: 48px;
            top: 374.5px;
            left: 342.835px;
        }

            #HEADLINE115 > .ladi-headline {
                font-size: 14px;
                line-height: 1.4;
                color: rgb(255, 9, 88);
                text-align: center;
            }

        #SHAPE78 {
            width: 18.641px;
            height: 18.641px;
            top: 375.68px;
            left: 387.646px;
        }

            #SHAPE78 svg:last-child, #SHAPE67 svg:last-child {
                fill: rgb(107, 107, 107);
            }

        #GROUP87, #IMAGE56, #IMAGE56 > .ladi-image > .ladi-image-background {
            width: 217.254px;
            height: 28.654px;
        }

        #GROUP87 {
            top: 400.339px;
            left: 13.5px;
        }

        #IMAGE56 > .ladi-image > .ladi-image-background {
            background-image: url("/Images/s550x350/1-20230922041846-a2w0l.png");
        }

        #HEADLINE116 {
            width: 183px;
            top: 5.327px;
            left: 17.127px;
        }

            #HEADLINE116 > .ladi-headline {
                font-size: 13px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(72, 190, 190);
                text-align: center;
            }

        #LINE8 {
            top: 457.1px;
            left: 1px;
        }

        #SECTION3 {
            height: 1301.79px;
        }

        #HEADLINE33 {
            width: 305px;
            top: 31.8px;
            left: 17.5px;
        }

        #HEADLINE44, #HEADLINE43, #HEADLINE98 {
            width: 374px;
        }

        #HEADLINE44 {
            top: 1251.75px;
            left: 19.5px;
        }

            #HEADLINE44 > .ladi-headline {
                font-size: 14px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(129, 129, 129);
                text-align: left;
            }

        #GROUP77 {
            width: 77.33px;
            height: 19.962px;
            top: 32.819px;
            left: 337.5px;
        }

        #HEADLINE92, #FORM2 .ladi-form-checkout-payment-quantity input, #FORM3 .ladi-form-checkout-payment-quantity input {
            width: 65px;
        }

        #HEADLINE92 {
            top: 1.481px;
            left: 0px;
        }

            #HEADLINE92 > .ladi-headline {
                font-size: 12px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(112, 112, 112);
                text-align: left;
            }

        #SHAPE67 {
            width: 19.962px;
            height: 19.962px;
            top: 0px;
            left: 57.368px;
        }

        #HEADLINE34 {
            top: 60.42px;
            left: 17.5px;
        }

        #GROUP78 {
            width: 98.5835px;
            height: 15.75px;
            top: 63.545px;
            left: 64.2083px;
        }

        #SHAPE13, #SHAPE14, #SHAPE15, #SHAPE16, #SHAPE17 {
            width: 15.75px;
            height: 15.75px;
        }

            #SHAPE13 svg:last-child, #SHAPE14 svg:last-child, #SHAPE15 svg:last-child, #SHAPE16 svg:last-child, #SHAPE17 svg:last-child, #SHAPE18 svg:last-child, #SHAPE23 svg:last-child, #SHAPE24 svg:last-child, #SHAPE25 svg:last-child, #SHAPE26 svg:last-child, #SHAPE27 svg:last-child, #SHAPE28 svg:last-child, #SHAPE29 svg:last-child, #SHAPE30 svg:last-child, #SHAPE31 svg:last-child, #SHAPE37 svg:last-child, #SHAPE38 svg:last-child, #SHAPE39 svg:last-child, #SHAPE40 svg:last-child, #SHAPE41 svg:last-child, #SHAPE68 svg:last-child, #SHAPE69 svg:last-child, #SHAPE70 svg:last-child, #SHAPE71 svg:last-child, #SHAPE72 svg:last-child, #SHAPE73 svg:last-child, #SHAPE74 svg:last-child, #SHAPE75 svg:last-child, #SHAPE76 svg:last-child, #SHAPE77 svg:last-child {
                fill: rgb(250, 206, 20);
            }

        #SHAPE14 {
            top: 0px;
            left: 20.7084px;
        }

        #SHAPE15 {
            top: 0px;
            left: 41.4167px;
        }

        #SHAPE16 {
            top: 0px;
            left: 62.1251px;
        }

        #SHAPE17 {
            top: 0px;
            left: 82.8335px;
        }

        #IMAGE8, #IMAGE14, #IMAGE24, #IMAGE46, #IMAGE49 {
            width: 28px;
            height: 28px;
        }

        #IMAGE8 {
            top: 95.13px;
            left: 19px;
        }

            #IMAGE8 > .ladi-image > .ladi-image-background {
                width: 31.4386px;
                height: 47.1579px;
                top: -0.210526px;
                left: -0.070133px;
                background-image: url("/Images/s350x350/1l0ebod020230922031847.jpg");
            }

            #IMAGE8 > .ladi-image, #IMAGE14 > .ladi-image, #IMAGE24 > .ladi-image, #IMAGE46 > .ladi-image, #IMAGE49 > .ladi-image {
                border-radius: 1000px;
            }

        #HEADLINE36 {
            width: 132px;
            top: 99.13px;
            left: 54px;
        }

            #HEADLINE36 > .ladi-headline, #HEADLINE38 > .ladi-headline, #HEADLINE42 > .ladi-headline, #HEADLINE97 > .ladi-headline, #HEADLINE100 > .ladi-headline {
                font-size: 14px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(0, 0, 0);
                text-align: left;
            }

        #GROUP25, #GROUP30, #GROUP34, #GROUP81, #GROUP84 {
            width: 74.6594px;
            height: 13.3188px;
        }

        #GROUP25 {
            top: 128.67px;
            left: 20px;
        }

        #SHAPE18, #SHAPE23, #SHAPE24, #SHAPE25, #SHAPE26, #SHAPE27, #SHAPE28, #SHAPE29, #SHAPE30, #SHAPE31, #SHAPE37, #SHAPE38, #SHAPE39, #SHAPE40, #SHAPE41, #SHAPE68, #SHAPE69, #SHAPE70, #SHAPE71, #SHAPE72, #SHAPE73, #SHAPE74, #SHAPE75, #SHAPE76, #SHAPE77 {
            width: 13.3188px;
            height: 13.3188px;
        }

        #SHAPE23, #SHAPE28, #SHAPE38, #SHAPE69, #SHAPE74 {
            top: 0px;
            left: 15.3352px;
        }

        #SHAPE24, #SHAPE29, #SHAPE39, #SHAPE70, #SHAPE75 {
            top: 0px;
            left: 30.6703px;
        }

        #SHAPE25, #SHAPE30, #SHAPE40, #SHAPE71, #SHAPE76 {
            top: 0px;
            left: 46.0055px;
        }

        #SHAPE26, #SHAPE31, #SHAPE41, #SHAPE72, #SHAPE77 {
            top: 0px;
            left: 61.3406px;
        }

        #HEADLINE37 {
            width: 382px;
            top: 179.3px;
            left: 20px;
        }

        #IMAGE10, #IMAGE11, #IMAGE15, #IMAGE16, #IMAGE17, #IMAGE25, #IMAGE26, #IMAGE47, #IMAGE48 {
            width: 89px;
            height: 90.021px;
        }

        #IMAGE10 {
            top: 251.29px;
            left: 18px;
        }

            #IMAGE10 > .ladi-image > .ladi-image-background {
                width: 99.193px;
                height: 91.17px;
                top: -1px;
                left: 0.936679px;
                background-image: url("/Images/s400x400/img_0804-copy-20250428035334-wmp6l.jpg");
            }

            #IMAGE10 > .ladi-image, #IMAGE11 > .ladi-image, #IMAGE15 > .ladi-image, #IMAGE16 > .ladi-image, #IMAGE17 > .ladi-image, #IMAGE25 > .ladi-image, #IMAGE26 > .ladi-image, #IMAGE47 > .ladi-image, #IMAGE48 > .ladi-image {
                border-radius: 4px;
            }

        #IMAGE11 {
            top: 251.29px;
            left: 117px;
        }

            #IMAGE11 > .ladi-image > .ladi-image-background {
                width: 91.2987px;
                height: 121.589px;
                top: -28px;
                left: -1px;
                background-image: url("/Images/s400x450/img_0936-copy-20250428035232-rxkaq.jpg");
            }

        #HEADLINE93 {
            top: 152.3px;
            left: 19px;
        }

            #HEADLINE93 > .ladi-headline, #HEADLINE94 > .ladi-headline, #HEADLINE96 > .ladi-headline, #HEADLINE99 > .ladi-headline, #HEADLINE101 > .ladi-headline {
                font-size: 12px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(146, 143, 143);
                text-align: left;
            }

        #GROUP82 {
            width: 387px;
            height: 224.181px;
            top: 364.578px;
            left: 18px;
        }

        #IMAGE14, #IMAGE49 {
            top: 0px;
            left: 1.5px;
        }

            #IMAGE14 > .ladi-image > .ladi-image-background {
                width: 42.1053px;
                height: 28.0701px;
                top: -0.210526px;
                left: -10.7368px;
                background-image: url("/Images/s350x350/1o8vbkda20230920035309.jpg");
            }

        #HEADLINE38, #HEADLINE42, #HEADLINE100 {
            width: 70px;
        }

        #HEADLINE38, #HEADLINE100 {
            top: 4px;
            left: 36.5px;
        }

        #GROUP30, #GROUP84 {
            top: 33.54px;
            left: 2.5px;
        }

        #IMAGE15 {
            top: 134.16px;
            left: 1.5px;
        }

            #IMAGE15 > .ladi-image > .ladi-image-background {
                width: 144.94px;
                height: 96.589px;
                top: -3px;
                left: -28px;
                background-image: url("/Images/s450x400/img_0978-copy-20250428040126-xaphi.jpg");
            }

        #IMAGE16 {
            top: 134.16px;
            left: 100.5px;
        }

            #IMAGE16 > .ladi-image > .ladi-image-background {
                width: 110.483px;
                height: 91.8388px;
                top: -3px;
                left: -12px;
                background-image: url("/Images/s450x400/img_0981-copy-20250428040126-zhwpm.jpg");
            }

        #IMAGE17 {
            top: 134.16px;
            left: 198.5px;
        }

            #IMAGE17 > .ladi-image > .ladi-image-background {
                width: 99.708px;
                height: 97.753px;
                top: -3px;
                left: -1.52px;
                background-image: url("/Images/s400x400/img_1044-copy-20250428040244-d0mhb.jpg");
            }

        #HEADLINE94, #HEADLINE101 {
            top: 55.722px;
            left: 1.5px;
        }

        #HEADLINE95, #HEADLINE102, #HEADLINE110 {
            width: 387px;
        }

        #HEADLINE95, #HEADLINE102 {
            top: 81.722px;
            left: 0px;
        }

        #GROUP79 {
            width: 375px;
            height: 245.183px;
            top: 618.578px;
            left: 19.5px;
        }

        #IMAGE24 > .ladi-image > .ladi-image-background {
            width: 30.1053px;
            height: 45.1579px;
            top: -2.21053px;
            left: -0.7368px;
            background-image: url("/Images/s350x350/FbXDW9fB20230922033528.jpeg");
        }

        #HEADLINE42, #HEADLINE97 {
            top: 4px;
            left: 35px;
        }

        #GROUP34, #GROUP81 {
            top: 33.54px;
            left: 1px;
        }

        #HEADLINE43, #HEADLINE98 {
            top: 77.17px;
            left: 1px;
        }

            #HEADLINE43 > .ladi-headline, #HEADLINE102 > .ladi-headline, #HEADLINE137 > .ladi-headline {
                font-size: 15px;
                line-height: 1.4;
                color: rgb(0, 0, 0);
                text-align: left;
            }

        #IMAGE25 {
            top: 155.162px;
            left: 1px;
        }

            #IMAGE25 > .ladi-image > .ladi-image-background {
                width: 93.2161px;
                height: 93.589px;
                top: -2px;
                left: -4px;
                background-image: url("/Images/s400x400/img_0679-copy-20250428042158-gl5ua.jpg");
            }

        #IMAGE26 {
            top: 155.162px;
            left: 100px;
        }

            #IMAGE26 > .ladi-image > .ladi-image-background {
                width: 139.656px;
                height: 93.104px;
                top: 0px;
                left: -34px;
                background-image: url("/Images/s450x400/img_0680-copy-20250428042158-mhw81.jpg");
            }

        #HEADLINE96, #HEADLINE99 {
            top: 54.722px;
            left: 0px;
        }

        #GROUP80 {
            width: 375px;
            height: 200.183px;
            top: 886.578px;
            left: 19px;
        }

        #IMAGE46 > .ladi-image > .ladi-image-background {
            width: 41.4474px;
            height: 33.1579px;
            top: -4.21053px;
            left: -7.7368px;
            background-image: url("/Images/s350x350/iddanqma20230922034543.jpg");
        }

        #HEADLINE97 {
            width: 93px;
        }

        #IMAGE47 {
            top: 110.162px;
            left: 0.5px;
        }

            #IMAGE47 > .ladi-image > .ladi-image-background {
                width: 142.63px;
                height: 93.589px;
                top: -3px;
                left: -43px;
                background-image: url("/Images/s450x400/img_0564-2-copy-20250428042853-lkkmg.jpg");
            }

        #IMAGE48 {
            top: 110.162px;
            left: 99.5px;
        }

            #IMAGE48 > .ladi-image > .ladi-image-background {
                width: 96.1458px;
                height: 130.374px;
                top: -15px;
                left: -3.12684px;
                background-image: url("/Images/s400x450/img_0572-2-copy-20250428042853-uf9vh.jpg");
            }

        #GROUP83 {
            width: 387px;
            height: 123.722px;
            top: 1108.58px;
            left: 19.5px;
        }

        #IMAGE49 > .ladi-image > .ladi-image-background {
            width: 36.7664px;
            height: 55.0922px;
            top: -9.21053px;
            left: -5.39791px;
            background-image: url("/Images/s350x400/3reebvah20230922034746.jpg");
        }

        #SECTION10 {
            height: 2788.7px;
        }

        #PARAGRAPH29, #HEADLINE137 {
            width: 388px;
        }

        #PARAGRAPH29 {
            top: 371.31px;
            left: 16px;
        }

            #PARAGRAPH29 > .ladi-paragraph {
                font-size: 15px;
                line-height: 1.6;
                color: rgb(43, 43, 43);
            }

        #HEADLINE109, #HEADLINE105 {
            width: 172px;
        }

        #HEADLINE109 {
            top: 338.94px;
            left: 16px;
        }

        #HEADLINE105 {
            top: 47.94px;
            left: 16px;
        }

        #HEADLINE104 {
            width: 235px;
            top: 15.94px;
            left: 16px;
        }

            #HEADLINE104 > .ladi-headline {
                font-size: 18px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(0, 0, 0);
                text-align: left;
            }

        #VIDEO2 {
            width: 400px;
            height: 225px;
            top: 90.51px;
            left: 10px;
        }

            #VIDEO2 > .ladi-video > .ladi-video-background {
                background-image: url("https://img.youtube.com/vi/Aq4ehmoFAD8/hqdefault.jpg");
                background-size: cover;
                background-origin: content-box;
                background-position: 50% 50%;
                background-repeat: no-repeat;
                background-attachment: scroll;
            }

        #SHAPE2 {
            width: 40px;
            height: 40px;
            top: 90.5px;
            left: 178px;
        }

            #SHAPE2 svg:last-child {
                fill: rgba(0, 0, 0, 0.5);
            }

        #HEADLINE137 {
            top: 506.01px;
            left: 16px;
        }

        #IMAGE58, #IMAGE58 > .ladi-image > .ladi-image-background {
            width: 388.5px;
            height: 388.5px;
        }

        #IMAGE58 {
            top: 822.01px;
            left: 16px;
        }

            #IMAGE58 > .ladi-image > .ladi-image-background {
                background-image: url("/Images/s700x700/image-shopee-05-20250427150202-0t7t1.jpg");
            }

        #IMAGE70, #IMAGE68, #IMAGE68 > .ladi-image > .ladi-image-background, #IMAGE72, #IMAGE72 > .ladi-image > .ladi-image-background {
            width: 361px;
            height: 361px;
        }

        #IMAGE70 {
            top: 1229.88px;
            left: 34px;
        }

            #IMAGE70 > .ladi-image > .ladi-image-background {
                width: 354.032px;
                height: 354.032px;
                top: 3.48463px;
                left: 3.48463px;
                background-image: url("/Images/s700x700/da-dung-20250507032732-x9pgz.jpg");
            }

            #IMAGE70 > .ladi-image, #IMAGE68 > .ladi-image, #IMAGE72 > .ladi-image {
                border-width: 1px;
                border-style: solid;
                border-color: rgb(192, 192, 192);
            }

        #IMAGE68 {
            top: 1759.48px;
            left: 29.5px;
        }

            #IMAGE68 > .ladi-image > .ladi-image-background, #IMAGE72 > .ladi-image > .ladi-image-background {
                background-image: url("/Images/s700x700/san-pham-moi-copy_11-20250507032349-pmqn4.jpg");
            }

        #HEADLINE140 {
            width: 180px;
            top: 1590.88px;
            left: 128.5px;
        }

            #HEADLINE140 > .ladi-headline, #HEADLINE141 > .ladi-headline, #HEADLINE146 > .ladi-headline {
                background-image: linear-gradient(rgb(220, 36, 48), rgb(123, 67, 151));
                background-color: initial;
                background-size: initial;
                background-origin: initial;
                background-position: initial;
                background-repeat: initial;
                background-attachment: initial;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            #HEADLINE140 > .ladi-headline {
                font-size: 34px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(0, 0, 0);
                text-align: center;
            }

        #HEADLINE141, #HEADLINE146 {
            width: 143px;
        }

        #HEADLINE141 {
            top: 2120.48px;
            left: 143px;
        }

            #HEADLINE141 > .ladi-headline, #HEADLINE146 > .ladi-headline {
                font-size: 40.34px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(0, 0, 0);
                text-align: center;
            }

        #HEADLINE142, #HEADLINE145, #HEADLINE147 {
            width: 333px;
        }

        #HEADLINE142 {
            top: 1650.48px;
            left: 52px;
        }

            #HEADLINE142 > .ladi-headline, #HEADLINE145 > .ladi-headline, #HEADLINE147 > .ladi-headline {
                font-size: 16px;
                line-height: 1.6;
                color: rgb(0, 0, 0);
                text-align: center;
            }

        #HEADLINE145 {
            top: 2185.48px;
            left: 48px;
        }

        #IMAGE72 {
            top: 2272.48px;
            left: 29.5px;
        }

        #HEADLINE146 {
            top: 2633.48px;
            left: 143px;
        }

        #HEADLINE147 {
            top: 2698.48px;
            left: 48px;
        }

        #SECTION5 {
            height: 958px;
        }

        #GROUP63, #BOX21 {
            width: 373.34px;
            height: 578.323px;
        }

        #GROUP63 {
            top: 326.677px;
            left: 23.33px;
        }

        #BOX21 > .ladi-box, #BOX23 > .ladi-box {
            border-radius: 7px;
            box-shadow: rgba(1, 1, 1, 0.2) 0px 0px 20px -10px;
        }

        #FORM2 {
            width: 307.682px;
            height: 521.63px;
            top: 26.1843px;
            left: 33.3974px;
        }

            #FORM2 > .ladi-form, #FORM3 > .ladi-form {
                font-size: 13px;
                line-height: 1.6;
                color: rgb(0, 0, 0);
            }

            #FORM2 .ladi-form .ladi-form-checkout-payment-item, #FORM3 .ladi-form .ladi-form-checkout-payment-item {
                --check-size: calc(13px * 1.5);
                --width-quantity: calc(13px * 2.5 + 30px);
            }

            #FORM2 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item span[data-checked="false"], #FORM2 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item .ladi-editing, #FORM2 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item .ladi-editing::placeholder, #FORM2 .ladi-form .ladi-survey-option .ladi-survey-option-label, #FORM2 .ladi-form-item .ladi-form-control::placeholder, #FORM2 .ladi-form-item select.ladi-form-control[data-selected=""], #FORM2 .ladi-form-checkout-payment-quantity input, #FORM3 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item span[data-checked="false"], #FORM3 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item .ladi-editing, #FORM3 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item .ladi-editing::placeholder, #FORM3 .ladi-form .ladi-survey-option .ladi-survey-option-label, #FORM3 .ladi-form-item .ladi-form-control::placeholder, #FORM3 .ladi-form-item select.ladi-form-control[data-selected=""], #FORM3 .ladi-form-checkout-payment-quantity input {
                color: rgb(0, 0, 0);
            }

            #FORM2:hover .overlay-checkout, #FORM3:hover .overlay-checkout {
                display: flex !important;
            }

            #FORM2 .ladi-form-item, #FORM3 .ladi-form-item {
                padding-left: 5px;
                padding-right: 5px;
            }

                #FORM2 .ladi-form-item.otp-countdown:before, #FORM3 .ladi-form-item.otp-countdown:before {
                    right: 10px;
                }

                #FORM2 .ladi-form-item.ladi-form-checkbox, #FORM3 .ladi-form-item.ladi-form-checkbox {
                    padding-left: 10px;
                    padding-right: 10px;
                }

            #FORM2 .ladi-form [data-form-checkout-item="product"] .ladi-form-checkout-payment-check.multiple.checked:before, #FORM2 .ladi-form [data-form-checkout-item="product"] .ladi-form-checkout-payment-check:not(.multiple).checked:before, #FORM2 .ladi-form [data-form-checkout-item="payment"] .ladi-form-checkout-payment-check.checked:before, #FORM2 .ladi-form [data-form-checkout-item="fee_shipping"] .ladi-form-checkout-payment-check.checked:before, #FORM2 .ladi-form-checkout-payment-quantity .up:before, #FORM2 .ladi-form-checkout-payment-quantity .down:before, #FORM2 [data-form-checkout-item="payment"] .ladi-form-item .ladi-form-checkout-payment-content div:before, #FORM3 .ladi-form [data-form-checkout-item="product"] .ladi-form-checkout-payment-check.multiple.checked:before, #FORM3 .ladi-form [data-form-checkout-item="product"] .ladi-form-checkout-payment-check:not(.multiple).checked:before, #FORM3 .ladi-form [data-form-checkout-item="payment"] .ladi-form-checkout-payment-check.checked:before, #FORM3 .ladi-form [data-form-checkout-item="fee_shipping"] .ladi-form-checkout-payment-check.checked:before, #FORM3 .ladi-form-checkout-payment-quantity .up:before, #FORM3 .ladi-form-checkout-payment-quantity .down:before, #FORM3 [data-form-checkout-item="payment"] .ladi-form-item .ladi-form-checkout-payment-content div:before {
                background-color: rgb(0, 0, 0);
            }

            #FORM2 .ladi-survey-option, #FORM3 .ladi-survey-option {
                text-align: left;
            }

            #FORM2 .ladi-form-item-container, #FORM2 .ladi-form-checkout-box, #FORM2 .ladi-form-checkout-bump-offer-product, #FORM2 .ladi-form-label-container .ladi-form-label-item, #FORM3 .ladi-form-item-container, #FORM3 .ladi-form-checkout-box, #FORM3 .ladi-form-checkout-bump-offer-product, #FORM3 .ladi-form-label-container .ladi-form-label-item {
                border-width: 1px;
                border-style: solid;
                border-color: rgb(183, 183, 183);
            }

                #FORM2 .ladi-form-item-container .ladi-form-item.ladi-form-quantity, #FORM3 .ladi-form-item-container .ladi-form-item.ladi-form-quantity {
                    width: calc(100% + 1px);
                }

                #FORM2 .ladi-form-item-container .ladi-form-quantity .button, #FORM2 .ladi-form [data-form-checkout-item="coupon_code"] .content-discount-block .placeholder i, #FORM3 .ladi-form-item-container .ladi-form-quantity .button, #FORM3 .ladi-form [data-form-checkout-item="coupon_code"] .content-discount-block .placeholder i {
                    background-color: rgb(183, 183, 183);
                }

            #FORM2 .ladi-form [data-form-checkout-item="total_price"] .space, #FORM2 .ladi-form-checkout-payment-quantity input, #FORM3 .ladi-form [data-form-checkout-item="total_price"] .space, #FORM3 .ladi-form-checkout-payment-quantity input {
                border-color: rgb(183, 183, 183);
            }

        #BUTTON3 {
            width: 306.453px;
            height: 52.1042px;
            top: 469.526px;
            left: 0px;
        }

            #BUTTON3 > .ladi-button > .ladi-button-background, #BUTTON7 > .ladi-button > .ladi-button-background {
                background-color: rgb(255, 9, 88);
            }

        #BUTTON_TEXT3, #BUTTON_TEXT7 {
            width: 306px;
        }

        #BUTTON_TEXT3 {
            top: 11.7235px;
            left: 0px;
        }

            #BUTTON_TEXT3 > .ladi-headline, #BUTTON_TEXT7 > .ladi-headline {
                font-size: 14px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(241, 243, 244);
                text-align: center;
            }

        #FORM_ITEM2 {
            width: 306.453px;
            height: 46.8938px;
        }

        #FORM_ITEM4, #FORM_ITEM7 {
            width: 306.453px;
            height: 45.5912px;
        }

        #FORM_ITEM4 {
            top: 57.4258px;
            left: 0px;
        }

        #FORM_ITEM6 {
            width: 306.453px;
            height: 43.5912px;
            top: 221.168px;
            left: 0.6145px;
        }

        #FORM_ITEM7 {
            top: 111.343px;
            left: 0.6145px;
        }

        #FORM_ITEM18 {
            width: 307.272px;
            height: 42px;
            top: 309.815px;
            left: 0.205px;
        }

        #FORM_ITEM19 {
            width: 307.682px;
            height: 42px;
            top: 396.792px;
            left: 0px;
        }

        #GROUP65 {
            width: 226.6px;
            height: 96.6456px;
            top: 202.393px;
            left: 88.1994px;
        }

        #HEADLINE74, #HEADLINE75, #HEADLINE76 {
            width: 41px;
        }

        #HEADLINE74 {
            top: 76.6327px;
            left: 181.609px;
        }

            #HEADLINE74 > .ladi-headline, #HEADLINE75 > .ladi-headline, #HEADLINE76 > .ladi-headline, #HEADLINE77 > .ladi-headline, #HEADLINE79 > .ladi-headline, #HEADLINE80 > .ladi-headline, #HEADLINE81 > .ladi-headline, #HEADLINE82 > .ladi-headline {
                font-size: 12px;
                line-height: 1.6;
                color: rgb(102, 102, 102);
                text-align: center;
            }

        #HEADLINE75 {
            top: 77.6456px;
            left: 122.704px;
        }

        #HEADLINE76 {
            top: 76.6327px;
            left: 63.969px;
        }

        #HEADLINE77 {
            width: 50px;
            top: 76.6327px;
            left: 0px;
        }

        #HEADLINE78, #HEADLINE83 {
            width: 197px;
        }

        #HEADLINE78 {
            top: 0px;
            left: 22.1175px;
        }

            #HEADLINE78 > .ladi-headline {
                font-size: 14px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(60, 60, 60);
                text-align: center;
            }

        #COUNTDOWN1 {
            width: 225.128px;
            height: 46.7073px;
            top: 27.887px;
            left: 1.4725px;
        }

            #COUNTDOWN1 > .ladi-countdown {
                font-size: 25px;
                font-weight: bold;
                color: rgb(255, 255, 255);
                text-align: center;
            }

                #COUNTDOWN1 > .ladi-countdown > .ladi-element, #COUNTDOWN2 > .ladi-countdown > .ladi-element {
                    width: calc(25% - 7.5px);
                    height: 100%;
                    margin-right: 10px;
                }

                #COUNTDOWN1 > .ladi-countdown .ladi-countdown-background, #COUNTDOWN2 > .ladi-countdown .ladi-countdown-background {
                    background-color: rgb(109, 109, 109);
                }

        #GROUP85, #BOX19 {
            width: 230px;
            height: 37.3333px;
        }

        #GROUP85 {
            top: 27.6767px;
            left: 90.7285px;
        }

        #BOX19 > .ladi-box {
            border-width: 1.2px;
            border-radius: 4px;
            border-style: solid;
            border-color: rgb(234, 151, 151);
            background-color: rgb(255, 243, 244);
        }

        #HEADLINE63 {
            width: 194px;
            top: 7.1666px;
            left: 28.9995px;
        }

            #HEADLINE63 > .ladi-headline {
                font-size: 17px;
                font-weight: bold;
                line-height: 1.4;
                color: rgb(255, 9, 88);
                text-align: center;
            }

        #SHAPE51 {
            width: 9.34778px;
            height: 14.9432px;
            top: 11.695px;
            left: 17.181px;
        }

        #HEADLINE110 {
            top: 79.31px;
            left: 12.2285px;
        }

            #HEADLINE110 > .ladi-headline, #HEADLINE72 > .ladi-headline {
                font-size: 18px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(0, 0, 0);
                text-align: center;
            }

        #HEADLINE111 {
            width: 269px;
            top: 108.31px;
            left: 71.2285px;
        }

            #HEADLINE111 > .ladi-headline {
                font-size: 16px;
                font-style: italic;
                line-height: 1.6;
                color: rgb(146, 143, 143);
                text-align: center;
            }

        #GROUP86 {
            width: 229.69px;
            height: 34px;
            top: 145.677px;
            left: 90.7285px;
        }

        #HEADLINE64 > .ladi-headline {
            font-size: 21px;
            font-weight: bold;
            line-height: 1.6;
            color: rgb(1, 1, 1);
            text-align: left;
        }

        #SHAPE48 svg:last-child {
            fill: rgb(255, 68, 106);
        }

        #HEADLINE67 > .ladi-headline {
            font-size: 16px;
            font-weight: bold;
            line-height: 1.6;
            color: rgb(1, 1, 1);
            text-align: left;
        }

        #HEADLINE112 {
            width: 37px;
            top: 4px;
            left: 192.69px;
        }

            #HEADLINE112 > .ladi-headline {
                font-size: 16px;
                line-height: 1.6;
                color: rgb(255, 216, 216);
                text-align: center;
            }

        #HEADLINE152, #HEADLINE153, #HEADLINE154 {
            width: 200px;
        }

        #HEADLINE152 {
            top: 537.28px;
            left: 59.4995px;
        }

            #HEADLINE152 > .ladi-headline, #HEADLINE153 > .ladi-headline, #HEADLINE154 > .ladi-headline {
                font-size: 18px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(255, 68, 106);
                text-align: left;
            }

        #HEADLINE153 {
            top: 628.28px;
            left: 58px;
        }

        #HEADLINE154 {
            top: 721.28px;
            left: 59.4995px;
        }

        #SECTION6 {
            height: 328px;
        }

        #HEADLINE72 {
            width: 376px;
            top: 100.177px;
            left: 23.33px;
        }

        #GROUP56 {
            width: 328px;
            height: 36px;
            top: 136.177px;
            left: 47.9997px;
        }

        #PARAGRAPH12, #PARAGRAPH13, #PARAGRAPH14, #PARAGRAPH15 {
            width: 308px;
        }

        #PARAGRAPH12 {
            top: 0px;
            left: 19.9995px;
        }

            #PARAGRAPH12 > .ladi-paragraph {
                font-size: 13px;
                line-height: 1.4;
                color: rgb(0, 0, 0);
                text-align: center;
            }

        #SHAPE52 {
            width: 18.167px;
            height: 18.167px;
            top: 2px;
            left: 0px;
        }

            #SHAPE52 svg:last-child, #SHAPE53 svg:last-child, #SHAPE54 svg:last-child, #SHAPE55 svg:last-child {
                fill: rgb(138, 138, 145);
            }

        #GROUP55 {
            width: 308px;
            height: 22px;
            top: 181.844px;
            left: 59.4995px;
        }

        #PARAGRAPH13 {
            top: 1px;
            left: 0px;
        }

            #PARAGRAPH13 > .ladi-paragraph, #PARAGRAPH14 > .ladi-paragraph, #PARAGRAPH15 > .ladi-paragraph {
                font-size: 13px;
                line-height: 1.6;
                color: rgb(0, 0, 0);
                text-align: center;
            }

        #SHAPE53 {
            width: 18.335px;
            height: 18.335px;
            top: 0px;
            left: 67.833px;
        }

        #GROUP54, #GROUP53 {
            width: 308px;
            height: 21px;
        }

        #GROUP54 {
            top: 213.51px;
            left: 59.4995px;
        }

        #SHAPE54 {
            width: 16.2px;
            height: 18px;
            top: 1.5px;
            left: 17.0005px;
        }

        #GROUP53 {
            top: 244.177px;
            left: 59.4995px;
        }

        #SHAPE55 {
            width: 15px;
            height: 15px;
            top: 3px;
            left: 42.0005px;
        }

        #IMAGE67, #IMAGE67 > .ladi-image > .ladi-image-background {
            width: 200px;
            height: 58.2072px;
        }

        #IMAGE67 {
            top: 23.7064px;
            left: 106px;
        }

            #IMAGE67 > .ladi-image > .ladi-image-background {
                background-image: url("/Images/s550x400/logo-ngang-20250428040805-lg1p_.png");
            }

        #POPUP2 {
            width: 391px;
            height: 422px;
            right: 0px;
            bottom: 0px;
            margin: auto;
        }

            #POPUP2 > .ladi-popup > .ladi-overlay, #POPUP2 > .ladi-popup > .ladi-popup-background, #POPUP2 > .ladi-popup {
                border-radius: 11px;
            }

                #POPUP2 > .ladi-popup > .ladi-popup-background {
                    background-color: rgb(228, 228, 228);
                }

        #BOX23 {
            width: 373.34px;
            height: 407px;
            top: 8.5px;
            left: 9.32969px;
        }

        #FORM3 {
            width: 306.545px;
            height: 250px;
            top: 135.5px;
            left: 42.7267px;
        }

        #BUTTON7 {
            width: 306.453px;
            height: 45.8717px;
            top: 204.128px;
            left: 0px;
        }

        #BUTTON_TEXT7 {
            top: 10.3211px;
            left: 0px;
        }

        #FORM_ITEM8 {
            width: 306.453px;
            height: 41.2845px;
        }

        #FORM_ITEM9, #FORM_ITEM10, #FORM_ITEM11 {
            width: 306.453px;
            height: 40.1377px;
        }

        #FORM_ITEM9 {
            top: 50.5566px;
            left: 0px;
        }

        #FORM_ITEM10 {
            top: 99.9664px;
            left: 0px;
        }

        #FORM_ITEM11 {
            top: 149.376px;
            left: 0.091834px;
        }

        #GROUP66 {
            width: 200.791px;
            height: 91.052px;
            top: 29.474px;
            left: 95.758px;
        }

        #HEADLINE79, #HEADLINE80, #HEADLINE81 {
            width: 36px;
        }

        #HEADLINE79 {
            top: 71.153px;
            left: 159.888px;
        }

        #HEADLINE80 {
            top: 72.052px;
            left: 107.604px;
        }

        #HEADLINE81 {
            top: 71.153px;
            left: 55.471px;
        }

        #HEADLINE82 {
            width: 44px;
            top: 71.153px;
            left: 0px;
        }

        #HEADLINE83 {
            top: 0px;
            left: 3.791px;
        }

            #HEADLINE83 > .ladi-headline {
                font-size: 16px;
                font-weight: bold;
                line-height: 1.6;
                color: rgb(60, 60, 60);
                text-align: center;
            }

        #COUNTDOWN2 {
            width: 199.821px;
            height: 41.4567px;
            top: 27.887px;
            left: 0px;
        }

            #COUNTDOWN2 > .ladi-countdown {
                font-family: "Open Sans", sans-serif;
                font-size: 25px;
                font-weight: bold;
                color: rgb(255, 255, 255);
                text-align: center;
            }
.iconx {
 z-index:2;
 position: relative;
}          
.alert-success {
    background: rgba(15,148,73,0.2);
    color: #0f9449;
    border: 1px solid #0f9449;
    border-radius: 0px;
    margin-top:15px;
}
.alert-danger {    
    background: rgba(255,36,0,0.2);
    color: #ff2400;
    border: 1px solid #ff2400;
    border-radius: 0px;
    margin-top:15px;
}
.btn-muangay {
font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  color: rgb(241, 243, 244);
  text-align: center;
  background-color:rgb(255, 9, 88);
  width:100%;
  padding:10px;
  cursor:pointer;
  position:relative;
}
.danggui {
color:#fff;
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
}
/*--------------------------------------------------------------
# spin
--------------------------------------------------------------*/
.spin::before{
	-webkit-animation: spin 1.2s infinite linear;
	-moz-animation: spin 1.2s infinite linear;
	-ms-animation: spin 1.2s infinite linear;
	-o-animation: spin 1.2s infinite linear;
	animation: spin 1.2s infinite linear;
}
@keyframes "spin" {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		-ms-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@-moz-keyframes spin {
	from {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-moz-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@-webkit-keyframes "spin" {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@-ms-keyframes "spin" {
	from {
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@-o-keyframes "spin" {
	from {
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-o-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}