.header-top {
    z-index: 999;
    color: #383838;
    position: relative;
}

.how-to-use-container {
    background-color: #fff6e2;
    padding: 10px 0;
}

/* Compact sticky header on scroll */
.zebra-header-compact .header-utility-bar {
    display: none;
}
.zebra-header-compact .header-main-row {
    height: 64px;
}
.zebra-header-compact .header-logo {
    height: 2.25rem;
}
.header-main-row {
    transition: height 0.3s ease;
}
.header-logo {
    transition: height 0.3s ease;
}

.how-to-use-container .flex {
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.how-to-use-container .social-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.how-to-use-container .gradient-button {
    display: inline-flex;
    align-items: center;
}

.how-to-use-container .social-buttons path {
    fill: #333;
}

.how-to-use-container .social-buttons .social-media-link {
    margin-left: 0;
}

.orange-text {
    color: #f6a41a;
}
.blue-text {
    color: #4a77e2;
}
.green-text {
    color: #3bae73;
}
.red-text {
    color: #f94b45;
}
.gradient-text {
    background-image: linear-gradient(45deg, #3bae73, #f6a41a);

    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.h-border {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #3bae73, #f6a41a);
}

.gradient-button {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.gradient-button:not(.how-to-use-button) .bg {
    background-color: #f6f6f6;
}

.gradient-button .bg {
    background-color: #fff6e2;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}
.gradient-button .bg:hover {
    background-color: #f3e5c9;
}

.gradient-button .bg img {
    width: 12px;
    height: 7px;
    object-fit: contain;
}

.gradient-button .border {
    background: linear-gradient(to right, #3bae73, #f6a41a);
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: 14px;
}

.gradient-button .bg span {
    font-size: 12px;
    font-weight: 500;
    color: #383838;
    line-height: 1;
    display: block;
}

.how-to-use-container .gradient-button.how-to-use-button {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}
.how-to-use-container .gradient-button.how-to-use-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 18px -6px rgba(246, 164, 26, 0.5);
}
.how-to-use-container .gradient-button.how-to-use-button .border {
    background: linear-gradient(90deg, #3bae73, #f6a41a, #f6a41a, #3bae73);
    background-size: 250% 100%;
    animation: howto-border-flow 4s linear infinite;
}
@keyframes howto-border-flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 250% 50%;
    }
}
.how-to-use-container .gradient-button.how-to-use-button .bg img {
    animation: howto-arrow-bounce 1.6s ease-in-out infinite;
}
@keyframes howto-arrow-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

.how-to-use {
    user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(60px);
    position: fixed;
    z-index: 1001;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

.how-to-use.active {
    user-select: auto;
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.2);
}

.how-to-use .background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.how-to-use .background img.main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-to-use.step-01 .background img.top-left {
    position: absolute;
    top: -42px;
    left: 0;
    width: 120px;
    height: 120px;
    z-index: 1;
    object-fit: contain;
}

.how-to-use.step-01 .background img.bottom-left {
    position: absolute;
    bottom: -50px;
    left: -60px;
    width: 200px;
    height: 200px;
    z-index: 1;
    object-fit: contain;
}

.how-to-use.step-02 .background img.top-left {
    position: absolute;
    top: -42px;
    right: 0;
    width: 120px;
    height: 120px;
    z-index: 1;
    object-fit: contain;
    transform: scaleX(-1);
}

.how-to-use.step-02 .background img.bottom-left {
    position: absolute;
    bottom: -50px;
    right: -60px;
    width: 200px;
    height: 200px;
    z-index: 1;
    object-fit: contain;
    transform: scaleX(-1);
}

.how-to-use .container {
    position: relative;
    z-index: 1;
}

.how-to-use .container .h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.how-to-use .container h2 {
    font-size: 34px;
    line-height: 38px;
    font-weight: 700;
    margin: 0;
}

.how-to-use .container .top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.how-to-use .container .top > * {
    max-width: 240px;
}

.how-to-use .container .top span {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.how-to-use .container > .flex {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.how-to-use .container > .flex .item {
    flex: 1;
}

.how-to-use .container > .flex .item .step-top {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.how-to-use .container > .flex .item .step-top > div {
    font-size: 22px;
    font-weight: 500;
}

.how-to-use .container > .flex .item .step-top .orange-text,
.how-to-use .container > .flex .item .step-top .blue-text,
.how-to-use .container > .flex .item .step-top .red-text,
.how-to-use .container > .flex .item .step-top .green-text {
    font-weight: 700;
    transform: translateY(-8px);
}

.how-to-use .container > .flex .item .step-top img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.how-to-use .container > .flex .item:nth-child(1) .step-top img {
    color: #f6a41a;
}
.how-to-use .container > .flex .item:nth-child(2) .step-top img {
    color: #4a77e2;
}
.how-to-use .container > .flex .item:nth-child(3) .step-top img {
    color: #3bae73;
}
.how-to-use .container > .flex.step-02 .item:nth-child(1) .step-top img {
    color: #f94b45;
}
.how-to-use .container > .flex.step-02 .item:nth-child(2) .step-top img {
    color: #f6a41a;
}
.how-to-use .container > .flex.step-02 .item:nth-child(3) .step-top img {
    color: #3bae73;
}

.how-to-use .container > .flex .item .step-content {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.how-to-use .container > .flex .item .step-content h6 {
    font-size: 60px;
    font-weight: 700;
    width: 70px;
    min-width: 70px;
    text-align: center;
    margin: 0;
}

.how-to-use .container > .flex .item .step-content p {
    font-size: 13px;

    line-height: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.how-to-use .container > .flex.step-01 .item:nth-child(2) {
    transform: translateY(-60px);
}

.how-to-use .container > .flex.step-02 .item:nth-child(2) {
    transform: translateY(85px);
}
.how-to-use .container > .flex.step-02 {
    padding-top: 23px;
}

.how-to-use.step-01 .container .bottom-image {
    margin-top: -30px;
}
.how-to-use .container .bottom-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.how-to-use .container .centered-button {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.how-to-use .container .centered-button .gradient-button .bg {
    background-color: #f6f6f6;
}
.how-to-use .container .centered-button .gradient-button.next img {
    transform: rotate(270deg);
}
.how-to-use .container .centered-button .gradient-button.previous img {
    transform: rotate(90deg);
}

.how-to-use .container .dots {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.how-to-use .container .dots .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    border-color: #c1c1c1;
    position: relative;
    cursor: pointer;
}

.how-to-use .container .dots .dot.active:before {
    background-color: #3bae73;
    position: absolute;
    content: "";
    border-radius: 50%;
    display: inline-block;
    width: 12px;
    height: 12px;
    left: 1px;
    top: 1px;
}

.how-to-use .hidden {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

.how-to-use .logo {
    position: absolute;
    top: -40px;
    width: 420px;
    height: 420px;
    right: -220px;
    z-index: -1;
    transition: all 0.4s ease;
    user-select: none;
    pointer-events: none;
    opacity: 0.25;
}
.how-to-use .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.how-to-use.step-02 .logo {
    top: 50%;
}

.how-to-use .close-button {
    position: absolute;
    z-index: 99999;
    top: -7px;
    right: 16px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-to-use .close-button:hover {
    opacity: 1;
}
.how-to-use .close-button img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.header-top-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}
.header-top-overlay.open {
    display: block;
}

.how-to-use .mobile,
.how-to-use .web {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.how-to-use .web .container {
    padding: 36px 15px 0 15px;
}

@media screen and (max-width: 1024px) {
    .how-to-use .container .flex {
        gap: 30px !important;
    }
    .how-to-use .step-top {
        flex-direction: column !important;
    }
    .how-to-use .step-top img {
        width: 40px !important;
        height: 40px !important;
    }
    .how-to-use .step-top > div {
        font-size: 18px !important;
        text-align: center !important;
    }
    .how-to-use .step-content {
        flex-direction: column !important;
        position: relative;
    }
    .how-to-use .step-content h6 {
        margin: 0 !important;
        font-size: 20px !important;
        position: absolute;
        left: -30px;
        top: -30px;
        background-color: #fff;
        border-radius: 100%;
        width: 30px !important;
        min-width: 30px !important;
        height: 30px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    }
}

@media screen and (max-width: 768px) {
    .how-to-use .web {
        display: none;
    }
    .how-to-use .mobile {
        display: block;
        min-height: calc(100vh - 42px);
    }

    .how-to-use-container .social-buttons {
        display: none;
    }
    .how-to-use-container .flex {
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {
    .how-to-use .web {
        display: block;
        height: 610px;
    }
    .how-to-use .mobile {
        display: none;
    }
    .how-to-use .close-button {
        top: 48px;
    }
}

@media screen and (min-width: 1650px) {
    .how-to-use .web {
        height: 648px;
    }
}

.how-to-use .mobile {
    padding: 20px 10px 0 10px;
    font-family: "Inter", sans-serif;
}

.how-to-use .mobile .top {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}
.how-to-use .mobile .top h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.how-to-use .mobile .top span {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: -8px;
}
.how-to-use .mobile .top h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 24px;
}
.how-to-use .mobile ._row {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
}
.how-to-use .mobile ._row:nth-child(2n) {
    flex-direction: row;
}
.how-to-use .mobile ._row img {
    max-width: 120px;
}
.how-to-use .mobile ._row ._item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.how-to-use .mobile ._row ._item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.how-to-use .mobile ._row ._item ._top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.how-to-use .mobile ._row ._item ._top div {
    font-size: 13px;
}
.how-to-use .mobile ._row ._item ._top div:first-child {
    margin-bottom: -4px;
    font-weight: 600;
    color: #383838;
}

.how-to-use .mobile ._row ._item ._top .orange-text,
.how-to-use .mobile ._row ._item ._top .blue-text,
.how-to-use .mobile ._row ._item ._top .red-text,
.how-to-use .mobile ._row ._item ._top .green-text {
    font-weight: 700;
}
.how-to-use .mobile ._row ._item ._content {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.how-to-use .mobile ._row ._item ._content p {
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}
.how-to-use .mobile ._row ._item ._content h6 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    width: 36px;
    min-width: 36px;
    text-align: center;
}
.how-to-use .mobile .centered {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
}
.how-to-use .mobile .centered .gradient-button.next-mobile img {
    transform: rotate(270deg);
}
.how-to-use .mobile .centered .gradient-button.previous-mobile img {
    transform: rotate(90deg);
}

.how-to-use .mobile .container > main {
    position: relative;
}
.how-to-use .mobile .container > main ._row {
    position: relative;
    z-index: 1;
}

.how-to-use .mobile .container > main .bg {
    position: absolute;
    z-index: 0;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
    object-fit: contain;
    object-position: center;
    user-select: none;
    pointer-events: none;
}

.how-to-use-container .container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}
@media (min-width: 640px) {
    .how-to-use-container .container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .how-to-use-container .container {
        padding: 0 2rem;
    }
}

.how-to-use .container {
    max-width: 1352px;
    margin: 0 auto;
}

.how-to-use .container .top .howto-subtitle {
    font-size: 13px;
    font-weight: 500;
    line-height: 17px;
    color: #383838;
    max-width: 320px;
    margin: 0;
}

.how-to-use-container .social-media-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e8e0cd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.how-to-use-container .social-media-link:hover {
    background-color: #f3e5c9;
}
.how-to-use-container .social-media-link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.how-to-use .step-image {
    display: block;
    max-height: 280px;
    margin: 0 auto;
}

.how-to-use .mobile main.step-01 ._row:nth-child(1) ._top img,
.how-to-use .mobile main.step-01 ._row:nth-child(1) > img {
    color: #f6a41a;
}
.how-to-use .mobile main.step-01 ._row:nth-child(2) ._top img,
.how-to-use .mobile main.step-01 ._row:nth-child(2) > img {
    color: #4a77e2;
}
.how-to-use .mobile main.step-01 ._row:nth-child(3) ._top img,
.how-to-use .mobile main.step-01 ._row:nth-child(3) > img {
    color: #3bae73;
}
.how-to-use .mobile main.step-02 ._row:nth-child(1) ._top img,
.how-to-use .mobile main.step-02 ._row:nth-child(1) > img {
    color: #f94b45;
}
.how-to-use .mobile main.step-02 ._row:nth-child(2) ._top img,
.how-to-use .mobile main.step-02 ._row:nth-child(2) > img {
    color: #f6a41a;
}
.how-to-use .mobile main.step-02 ._row:nth-child(3) ._top img,
.how-to-use .mobile main.step-02 ._row:nth-child(3) > img {
    color: #3bae73;
}
