*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

body .content {
    overflow: hidden !important;
}

body .content .area {
    width: 100%;
}

.lang-selector .dropdown .dropdown-contiainer .dropdown-menu-lang-dropdown {
    box-sizing: unset !important;
}

.container {
    max-width: 1360px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.button-disabled {
    background-color: #D2C5AC!important;
    color: #BDA475!important;
    cursor: default!important;
}

@media(min-width: 0px) {

    .col {
        flex-basis: 100%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 100%;
    }

    .col-sm-3 {
        flex-basis: 25%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 25%;
    }

    .col-sm-4 {
        flex-basis: 33.3333%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 33.3333%;
    }

    .col-sm-5 {
        flex-basis: 41.6667%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 41.6667%;
    }

    .col-sm-6 {
        flex-basis: 50%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 50%;
    }

    .col-sm-7 {
        flex-basis: 58.3333%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 58.3333%;
    }

    .col-sm-8 {
        flex-basis: 66.666667%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        flex-basis: 75%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 75%;
    }

    .col-sm-12 {
        flex-basis: 100%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 100%;
    }

    /* ----- Download ----- */
    .download {
        position: relative;
    }

    .download .download-background-image {
        background-image: url("/~/static/images/mobile/bg/download-background.png");
        content: "";
        display: none;
        background-position: center top;
        background-size: cover;
        position: absolute;
        inset: 0px;
        z-index: -1;
    }

    [data-theme="dark"] .download .download-background-image {
        background-image: url("/~/static/images/mobile/bg/download-background-dark.png");
    }

    .download .download-container {
        position: relative;
        max-width: 1360px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* ----- Download Header ----- */

    .download .download-header {
        position: relative;
        width: 100%;
    }

    /* .download .download-header-china:not(.active) {
        display: none;
    } */

    .download .download-header-container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .download .download-header-content h1 {
        font-size: 16px;
        font-weight: 700;
        line-height: 120%;
        text-transform: uppercase;
    }

    [data-theme="dark"] .download .download-header-content {
        color: #ffffff;
    }

    .download .download-header-content span {
        font-size: 12px;
        font-weight: 700;
        line-height: 140%;
        text-transform: uppercase;
        color: #222939;
    }

    [data-theme="dark"] .download .download-header-content span {
        color: #ffffff;
    }

    .download .download-header-content::after {
        width: 24px;
        height: 2px;
        margin-top: 12px;
        content: "";
        background-color: #CAAB72;
        display: flex;
    }

    /* ----- Page Toggle ----- */

    .page-toggle {
        position: relative;
        width: 100%;
        margin-bottom: 48px;
    }

    .page-toggle .page-toggle-container {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .page-toggle .page-toggle-container .page-toggle-wrapper {
        position: relative;
        width: 328px;
        display: flex;
        align-items: center;
        background-color: #E9EAEB;
        border-radius: 56px;
        padding: 4px 2px;
        gap: 4px;
    }

    [data-theme="dark"] .page-toggle .page-toggle-container .page-toggle-wrapper {
        background-color: #383e4d;
    }

    .page-toggle .page-toggle-container .page-toggle-wrapper::before {
        content: '';
        position: absolute;
        width: 50%;
        height: 100%;
        left: 0%;
        border-radius: 56px;
        background-color: #ffffff;
        transition: all 0.3s;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05), 0px 4px 16px 0px rgba(0, 0, 0, 0.05), 0px 8px 32px 0px rgba(0, 0, 0, 0.05);
    }

    [data-theme="dark"] .page-toggle .page-toggle-container .page-toggle-wrapper::before {
        background-color: #222939;
    }

    .page-toggle.active .page-toggle-container .page-toggle-wrapper::before {
        left: 50%;
    }

    .page-toggle .page-toggle-container .page-toggle-wrapper .page-toggle-button {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        height: 56px;
        /* padding: 0px 24px; */
        padding: 0px 15px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        z-index: 1;
        color: #7A7F88;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        text-align: center;
    }

    .page-toggle .page-toggle-container .page-toggle-wrapper .page-toggle-button.active {
        color: #222939;
    }

    [data-theme="dark"] .page-toggle .page-toggle-container .page-toggle-wrapper .page-toggle-button.active {
        color: #ffffff;
    }

    .page-toggle .page-toggle-container .page-toggle-wrapper .page-toggle-button span {
        background-color: #c9334e;
        color: #ffffff;
        font-size: 8px;
        font-weight: 700;
        height: 20px;
        padding: 0px 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 2px;
    }

    /* ----- Download Data ----- */

    .download .download-data {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    /* .download .download-data-china:not(.active) {
        display: none;
    } */

    .download .download-data-container {
        display: flex;
        flex-wrap: wrap;
        column-gap: 12px;
    }

    .download .download-data-card {
        margin-bottom: 8px;
        position: relative;
    }

    .download .download-data-accordion {
        border-radius: 8px;
        background-color: #ffffff;
        margin-bottom: 24px;
    }

    .donwload .download-data-accordion:has(.download-data-accordion-header.active) {
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05), 0px 8px 16px 0px rgba(0, 0, 0, 0.05), 0px 16px 32px 0px rgba(0, 0, 0, 0.05);
    }

    [data-theme="dark"] .download .download-data-accordion {
        background-color: #222939;
    }

    .download .download-data-accordion-header {
        display: flex;
        padding: 16px;
        align-items: center;
        width: 100%;
        background-color: #E9EAEB;
        border-radius: 8px;
    }

    .download .download-data-accordion-header.active {
        display: flex;
        padding: 16px;
        align-items: center;
        width: 100%;
        background-color: #4e5461;
        border-radius: 8px;
    }

    [data-theme="dark"] .download .download-data-accordion-header {
        background-color: #383e4d;
    }

    [data-theme="dark"] .download .download-data-accordion-header.active {
        background-color: #4e5461;
    }

    .download .download-data-accordion .download-data-accordion-header-text {
        color: #222939;
        font-size: 12px;
        font-weight: 700;
        line-height: 140%;
        text-transform: uppercase;
    }

    .download .download-data-accordion-header.active .download-data-accordion-header-text {
        color: #ffffff;
    }

    [data-theme="dark"] .download .download-data-accordion .download-data-accordion-header-text {
        color: #ffffff;
    }

    .download .download-data-accordion-header-icon {
        /* transform: rotate(0deg);
        transition: transform 150ms; */
        margin-left: auto;
    }

    /* .download .download-data-accordion-header.active .download-data-accordion-header-icon {
        transform: rotate(180deg);
    } */

    .download .download-data-accordion-header-icon img.close {
        display: block;
    }

    .download .download-data-accordion-header.active .download-data-accordion-header-icon img.close {
        display: none;
    }

    .download .download-data-accordion-header-icon img.open {
        display: none;
    }

    .download .download-data-accordion-header.active .download-data-accordion-header-icon img.open {
        display: block;
    }

    .download .download-data-accordion-body {
        display: none;
        padding: 16px;
    }

    .download .download-data-accordion-body.active {
        display: block;
    }

    .download .download-data-accordion-body-header {
        color: #222939;
        font-size: 14px;
        font-weight: 700;
        line-height: 140%;
        margin-bottom: 16px;
    }

    [data-theme="dark"] .download .download-data-accordion-body-header {
        color: #ffffff;
    }

    .download .download-data-accordion-body-container {
        display: flex;
        flex-wrap: wrap;
    }

    .download .download-data-accordion-body-card {
        margin-bottom: 16px;
    }

    .download .download-data-accordion-body-card-container {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        background-color: #F4F4F5;
        border-radius: 8px;
    }

    [data-theme="dark"] .download .download-data-accordion-body-card-container {
        background-color: #2d3443;
    }

    .download .download-data-accordion-body-card-image {
        position: relative;
    }

    .download .download-data-accordion-body-card-image img {
        display: block;
        height: auto;
        width: 100%;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .download .download-data-accordion-body-card-count {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: -4px;
        bottom: 0px;
        border: 4px solid #ffffff;
        background-color: #ffffff;
        border-radius: 4px;
    }

    .download .download-data-accordion-body-card-count span {
        background-color: #caab72;
        text-transform: uppercase;
        color: #222939;
        font-size: 10px;
        font-weight: 700;
        border-radius: 4px;
        padding: 4px 12px;
        line-height: 14px;
    }

    .download .download-data-accordion-body-card-content {
        padding: 12px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .download .download-data-accordion-body-card-content-text {
        text-align: center;
        color: #4E5461;
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
    }

    [data-theme="dark"] .download .download-data-accordion-body-card-content-text {
        color: #ffffff;
    }

    .download .download-ios-toggle-tab-china:not(.active) {
        display: none;
    }

    .download .download-ios-toggle-tab-menu {
        position: relative;
        width: 100%;
        border-radius: 10px;
        padding: 2px;
        background-color: #E9EAEB;
        display: flex;
        margin-bottom: 16px;
        gap: 8px;
    }

    [data-theme="dark"] .download .download-ios-toggle-tab-menu {
        background-color: #383e4d;
    }

    .download .download-ios-toggle-tab-menu-button {
        color: #222939;
        text-align: center;
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        width: 50%;
        padding: 7px 16px;
        cursor: pointer;
        border-radius: 8px;
    }

    .download .download-ios-toggle-tab-menu-button.active {
        font-weight: 700;
        background-color: #ffffff;
        box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.08), 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    }

    [data-theme="dark"] .download .download-ios-toggle-tab-menu-button {
        color: #ffffff;
    }

    [data-theme="dark"] .download .download-ios-toggle-tab-menu-button.active {
        background-color: #232939;
    }

    .download .download-ios-toggle-tab-content:not(.active) {
        display: none;
    }

    .download .download-data-card-container {
        position: relative;
        display: flex;
        filter: drop-shadow(rgba(0, 0, 0, 0.2) 2px 2px 5px);
    }

    .download .download-data-card-left {
        position: absolute;
        width: 80px;
        height: 100%;
        background: url(/~/static/images/mobile/bg/mobile_half.svg) no-repeat;
        background-size: cover !important;
    }

    [data-theme="dark"] .download .download-data-card-left {
        background: url(/~/static/images/mobile/bg/mobile_dark_half.svg) no-repeat;
    }

    .download .download-data-card-image {
        display: block;
        top: 5px;
        left: 10px;
        position: absolute;
    }

    .download .download-data-card-image img {
        width: 40px;
        height: 40px;
    }

    .download .download-data-card-right {
        width: 100%;
        background-color: #f9f9f9;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 0px 5px 5px 0px;
        margin-left: 80px;
        padding-top: 12px;
        height: 174px;
    }

    [data-theme="dark"] .download .download-data-card-right {
        background-color: #232939;
    }

    .download .download-data-card-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .download .download-data-card-content-title {
        color: #222939;
        font-size: 12px;
        font-weight: 700;
        line-height: 140%;
    }

    [data-theme="dark"] .download .download-data-card-content-title {
        color: #ffffff;
    }

    .download .download-data-card-content-description {
        color: #4E5461;
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
    }

    [data-theme="dark"] .download .download-data-card-content-description {
        color: #d3d4d7;
    }

    .download .download-data-card-content-info {
        color: #7A7F88;
        font-size: 10px;
        font-weight: 400;
        line-height: 140%;
    }

    [data-theme="dark"] .download .download-data-card-content-info {
        color: #a7a9b0
    }

    .download .download-data-card-content-button {
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: 24px;
        padding: 0px 16px;
    }

    .download .download-data-card-content-button-ios-enterprise-register,
    .download .download-data-card-content-button-ios-enterprise-download {
        display: none;
    }

    .download .download-data-card-content-button-link {
        background-color: #caab72;
        color: #222939;
        border-radius: 200px;
        outline: none;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 700;
        width: 100%;
        height: 40px;
        box-shadow: none;
        padding: 0px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none !important;
        transition: all .5s;
        cursor: pointer;
        box-sizing: border-box;
    }

    .download .download-data-card-content-button-link:hover {
        background-color: #d7c095;
    }

    .download .download-data-card-qr-image {
        display: none;
        margin-left: auto;
        margin-right: auto;
    }

    .download .download-data-card-qr-text {
        display: none;
    }

    /* ----- Features ----- */

    .features {
        display: none;
    }

    /* .features-china:not(.active) {
        display: none;
    } */

    /* ----- Installation ----- */

    .installation {
        display: none;
    }

    /* .installation-china:not(.active) {
        display: none;
    } */
}

@media(min-width: 767.5px) {

    .col-md-3 {
        flex-basis: 25%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 25%;
    }

    .col-md-4 {
        flex-basis: 33.3333%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 33.3333%;
    }

    .col-md-5 {
        flex-basis: 41.6667%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 41.6667%;
    }

    .col-md-6 {
        flex-basis: 50%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 50%;
    }

    .col-md-7 {
        flex-basis: 58.3333%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 58.3333%;
    }

    .col-md-8 {
        flex-basis: 66.666667%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 66.666667%;
    }

    .col-md-9 {
        flex-basis: 75%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 75%;
    }

    .col-md-12 {
        flex-basis: 100%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 100%;
    }

    .download .download-background-image {
        display: block;
        width: 425px;
        height: 400px;
    }

    /* ----- Download Header ----- */

    .download .download-header-container {
        width: 427px;
        padding-top: 48px;
        text-align: center;
    }

    .download .download-header-content h1 {
        font-size: 24px;
    }

    .download .download-header-content::after {
        margin-left: auto;
        margin-right: auto;
        width: 48px;
        height: 4px;
        margin-top: 16px;
        content: "";
        background-color: #CAAB72;
        display: flex;
    }

    /* ----- Download Data ----- */

    .download .download-data-container {
        column-gap: 8px;
        flex-wrap: nowrap;
    }

    .download .download-data-card {
        margin-bottom: 0px;
    }

    .download .download-data-card-left {
        width: 80px;
        /* background: url(/~/static/images/mobile/bg/tablet_half.svg) no-repeat; */
    }

    /* [data-theme="dark"] .download .download-data-card-left {
        background: url(/~/static/images/mobile/bg/tablet_dark_half.svg) no-repeat;
    } */

    .download .download-data-card-image {
        top: 10px;
        left: 12px;
    }

    .download .download-data-card-image img {
        width: 40px;
        height: 40px;
    }

    .download .download-data-card-right {
        margin-left: 80px;
        height: 203px;
    }

    .download .download-data-card-content {
        gap: 8px;
    }

    [data-currency="USD"] .download .download-data-card-content,
    [data-currency="CAD"] .download .download-data-card-content,
    [data-currency="EUR"] .download .download-data-card-content {
        gap: 16px;
    }

    .download .download-data-card-content-description {
        font-size: 10px;
    }

    /* ----- Features ----- */

    .features {
        position: relative;
        display: block;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .features .features-background-image {
        background-image: url("/~/static/images/mobile/bg/feature-background.png");
        content: "";
        display: block;
        background-position: center top;
        background-size: cover;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 425px;
        height: 400px;
        z-index: -1;
    }

    [data-theme="dark"] .features .features-background-image {
        background-image: url("/~/static/images/mobile/bg/feature-background-dark.png");
    }

    .features .features-container {
        display: flex;
        position: relative;
        max-width: 1360px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

    .features .features-column {
        display: flex;
        align-items: center;
    }

    .features .features-column img {
        width: 100%;
        height: auto;
        display: block;
    }

    .features .features-card-container {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        row-gap: 48px;
    }

    .features .features-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .features .features-card-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 16px;
    }

    .features .features-card-image img {
        width: 90px;
        height: 90px;
    }

    .features .features-card-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .features .features-card-content-text {
        color: #222939;
        width: 120px;
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        line-height: 140%;
    }

    [data-theme="dark"] .features .features-card-content-text {
        color: #ffffff;
    }

    /* ----- Installation ----- */

    .installation {
        display: block;
        position: relative;
        padding-bottom: 32px;
    }

    .installation .installation-header {
        color: #222939;
        font-size: 20px;
        font-weight: 700;
        line-height: 120%;
        text-transform: uppercase;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    [data-theme="dark"] .installation .installation-header {
        color: #ffffff;
    }

    .installation .installation-header::after {
        width: 24px;
        height: 2px;
        background-color: #CAAB72;
        content: "";
        display: block;
        margin-top: 12px;
    }

    .installation .installation-tab-menu-container {
        display: flex;
    }

    .installation .installation-tab-menu-button:first-child {
        margin-right: 8px;
    }

    .installation .installation-tab-menu-button {
        cursor: pointer;
        display: flex;
        height: 48px;
        padding: 0px 24px;
        justify-content: center;
        align-items: center;
        border-radius: 8px 8px 0px 0px;
        background-color: #E9EAEB;
        color: #7A7F88;
    }

    [data-theme="dark"] .installation .installation-tab-menu-button {
        background-color: #383e4d;
    }

    .installation .installation-tab-menu-button.active {
        background-color: #ffffff;
        color: #222939;
    }

    [data-theme="dark"] .installation .installation-tab-menu-button.active {
        color: #ffffff;
        background-color: #222939;
    }

    .installation .installation-tab-menu-button-text {
        font-size: 14px;
        font-weight: 700;
        line-height: 140%;
        text-transform: uppercase;
    }

    .installation .installation-tab-menu-button-icon {
        margin-left: 6px;
    }

    .installation .installation-tab-menu-button-icon svg {
        fill: currentcolor;
    }

    .installation .installation-tab-menu-button .installation-tab-menu-button-icon img {
        filter: brightness(0) saturate(100%) invert(54%) sepia(2%) saturate(1973%) hue-rotate(181deg) brightness(90%) contrast(79%);
    }

    .installation .installation-tab-menu-button.active .installation-tab-menu-button-icon img {
        filter: brightness(0) saturate(100%) invert(10%) sepia(8%) saturate(3554%) hue-rotate(184deg) brightness(98%) contrast(85%);
    }

    /* [data-theme="dark"] .installation .installation-tab-menu-button .installation-tab-menu-button-icon img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(1062%) hue-rotate(175deg) brightness(98%) contrast(87%);
    } */

    [data-theme="dark"] .installation .installation-tab-menu-button.active .installation-tab-menu-button-icon img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(2%) hue-rotate(127deg) brightness(111%) contrast(100%);
    }

    .installation .installation-tab-menu-button.android .installation-tab-menu-button-icon img {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }

    .installation .installation-tab-menu-button.android .installation-tab-menu-button-icon svg {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }

    .installation .installation-tab-menu-button.ios .installation-tab-menu-button-icon img {
        width: 16px;
        height: 16px;
    }

    .installation .installation-tab-menu-button.ios .installation-tab-menu-button-icon svg {
        width: 16px;
        height: 16px;
    }

    .installation .installation-tab-panel-content {
        background-color: #ffffff;
        border-radius: 0px 8px 8px 8px;
        box-shadow: 0px 4px 8px 0px rgba(34, 41, 57, 0.10);
    }

    [data-theme="dark"] .installation .installation-tab-panel-content {
        background-color: #232939;
    }

    .installation .installation-tab-panel-content:not(.active) {
        display: none;
    }

    .installation .installation-tab-panel-container {
        padding: 20px 20px;
    }

    .installation .installation-tab-panel-header {
        color: #222939;
        margin-bottom: 16px;
        padding-left: 6px;
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
        text-transform: uppercase;
    }

    [data-theme="dark"] .installation .installation-tab-panel-header {
        color: #FFFFFF;
    }

    .installation .installation-tab-panel-sub-menu {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
        padding-left: 6px;
    }

    .installation .installation-tab-panel-sub-menu-button {
        color: #7A7F88;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        text-transform: uppercase;
    }

    .installation .installation-tab-panel-sub-menu-button.active {
        color: #222939;
    }

    [data-theme="dark"] .installation .installation-tab-panel-sub-menu-button {
        color: #d3d4d7;
    }

    [data-theme="dark"] .installation .installation-tab-panel-sub-menu-button.active {
        color: #ffffff;
    }

    .installation .installation-tab-panel-sub-menu-divider {
        background-color: #7A7F88;
        width: 2px;
        height: 20px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .installation .installation-tab-panel-steps {
        position: relative;
    }

    .installation .installation-tab-panel-steps-container {
        display: flex;
        flex-wrap: wrap;
    }

    .installation .installation-tab-panel-sub-content:not(.active) {
        display: none;
    }

    .installation .installation-tab-panel-steps-card {
        position: relative;
        padding-left: 6px;
        padding-right: 6px;
        padding-bottom: 12px;
    }

    .installation .installation-tab-panel-steps-card-container {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        background-color: #F4F4F5;
        border-radius: 8px;
    }

    [data-theme="dark"] .installation .installation-tab-panel-steps-card-container {
        background-color: #2d3443;
    }

    .installation .installation-tab-panel-steps-card-image {
        position: relative;
    }

    .installation .installation-tab-panel-steps-card-image img {
        display: block;
        height: auto;
        width: 100%;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .installation .installation-tab-panel-steps-card-count {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: -4px;
        bottom: 0px;
        border: 4px solid rgb(255, 255, 255);
        background-color: rgb(255, 255, 255);
        border-radius: 4px;
    }

    .installation .installation-tab-panel-steps-card-count span {
        background-color: #caab72;
        text-transform: uppercase;
        color: #222939;
        font-size: 10px;
        font-weight: 700;
        border-radius: 4px;
        padding: 4px 12px;
        line-height: 14px;
    }

    .installation .installation-tab-panel-steps-card-content {
        padding: 16px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .installation .installation-tab-panel-steps-card-content-text {
        text-align: center;
        color: #4E5461;
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
    }

    [data-theme="dark"] .installation .installation-tab-panel-steps-card-content-text {
        color: #ffffff;
    }
}

@media(min-width: 1023.5px) {

    .col-lg-3 {
        flex-basis: 25%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 25%;
    }

    .col-lg-4 {
        flex-basis: 33.3333%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 33.3333%;
    }

    .col-lg-5 {
        flex-basis: 41.6667%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 41.6667%;
    }

    .col-lg-6 {
        flex-basis: 50%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 50%;
    }

    .col-lg-7 {
        flex-basis: 58.3333%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 58.3333%;
    }

    .col-lg-8 {
        flex-basis: 66.666667%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        flex-basis: 75%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 75%;
    }

    .col-lg-12 {
        flex-basis: 100%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 100%;
    }

    .download .download-background-image {
        width: 425px;
        height: 400px;
    }

    .download .download-header-container {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .download .download-data-container {
        column-gap: 8px;
    }

    .download .download-data-card-left {
        width: 80px;
        /* background: url(/~/static/images/mobile/bg/desktop_half.svg) no-repeat; */
    }

    /* [data-theme="dark"] .download .download-data-card-left {
        background: url(/~/static/images/mobile/bg/desktop_dark_half.svg) no-repeat;
    } */

    .download .download-data-card-image {
        top: 5px;
        left: 12px;
    }

    .download .download-data-card-image img {
        width: 48px;
        height: 48px;
    }

    .download .download-data-card-right {
        display: flex;
        margin-left: 80px;
        padding-top: 16px;
        padding-bottom: 24px;
        height: 203px;
        column-gap: 8px;
    }

    [data-currency="USD"] .download .download-data-card-content,
    [data-currency="CAD"] .download .download-data-card-content,
    [data-currency="EUR"] .download .download-data-card-content {
        gap: 12px;
    }

    .download .download-data-card-content-title {
        font-size: 14px;
    }

    [data-currency="USD"] .download .download-data-card-content-title,
    [data-currency="CAD"] .download .download-data-card-content-title,
    [data-currency="EUR"] .download .download-data-card-content-title {
        font-size: 14px;
    }

    .download .download-data-card-content-description {
        font-size: 12px;
    }

    [data-currency="USD"] .download .download-data-card-content-description,
    [data-currency="CAD"] .download .download-data-card-content-description,
    [data-currency="EUR"] .download .download-data-card-content-description {
        font-size: 12px;
    }

    .download .download-data-card-content-info {
        font-size: 10px;
    }

    .download .download-data-card-content-button {
        position: unset;
        margin-top: auto;
        padding: 0px;
    }

    .download .download-data-card-content-button-link {
        width: fit-content;
    }

    .download .download-data-card-qr {
        margin-left: auto;
        /* display: flex;
        flex-direction: column;
        align-items: center; */
        /* justify-content: center; */
    }

    [data-currency="CNY"] .download .download-data-card-qr-ios-enterprise {
        display: block;
    }

    .download .download-data-card-qr-ios-enterprise {
        display: none;
    }

    [data-currency="USD"] .download .download-data-card-qr,
    [data-currency="CAD"] .download .download-data-card-qr,
    [data-currency="EUR"] .download .download-data-card-qr {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .download .download-data-card-qr-image {
        display: block;
        width: 64px;
        height: 64px;

        /* For Two Cards Only */
        /* width: 112px;
        height: 112px; */
    }

    [data-currency="USD"] .download .download-data-card-qr-image,
    [data-currency="CAD"] .download .download-data-card-qr-image,
    [data-currency="EUR"] .download .download-data-card-qr-image {
        width: 112px;
        height: 112px;
    }

    .download .download-data-card-qr-text {
        /* For Two Cards Only */
        margin-top: 4px;
        display: block;
        color: #A7A9B0;
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
        text-align: center;
    }

    [data-currency="USD"] .download .download-data-card-qr-text,
    [data-currency="CAD"] .download .download-data-card-qr-text,
    [data-currency="EUR"] .download .download-data-card-qr-text {
        margin-top: 4px;
        display: block;
        color: #A7A9B0;
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
        text-align: center;
    }

    /* ----- Features ----- */

    .features .features-background-image {
        width: 425px;
        height: 400px;
    }

    .features .features-card-container {
        row-gap: 32px;
    }

    .features .features-card {
        padding-left: 12px;
        padding-right: 12px;
    }

    .features .features-card-image {
        margin-bottom: 20px;
    }

    .features .features-card-image img {
        width: 120px;
        height: 120px;
    }

    .features .features-card-content-text {
        width: 174px;
        font-size: 14px;
    }

    /* ----- Installation ----- */

    .installation .installation-tab-panel-steps-card-content-text {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {

    .download .download-data-card-content-title {
        font-size: 16px;
    }

    [data-currency="USD"] .download .download-data-card-content-title,
    [data-currency="CAD"] .download .download-data-card-content-title,
    [data-currency="EUR"] .download .download-data-card-content-title {
        font-size: 16px;
    }

    .download .download-data-card-content-description {
        font-size: 14px;
    }

    [data-currency="USD"] .download .download-data-card-content-description,
    [data-currency="CAD"] .download .download-data-card-content-description,
    [data-currency="EUR"] .download .download-data-card-content-description {
        font-size: 14px;
    }

    .download .download-data-card-conten-info {
        font-size: 12px;
    }
}

@media (min-width: 1365.5px) {

    .col-xl-3 {
        flex-basis: 25%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 25%;
    }

    .col-xl-4 {
        flex-basis: 33.3333%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 33.3333%;
    }

    .col-xl-5 {
        flex-basis: 41.6667%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 41.6667%;
    }

    .col-xl-6 {
        flex-basis: 50%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 50%;
    }

    .col-xl-7 {
        flex-basis: 58.3333%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 58.3333%;
    }

    .col-xl-8 {
        flex-basis: 66.666667%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 66.666667%;
    }

    .col-xl-9 {
        flex-basis: 75%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 75%;
    }

    .col-xl-12 {
        flex-basis: 100%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        max-width: 100%;
    }

    .download {
        position: unset;
    }

    .download .download-background-image {
        width: 850px;
        height: 800px;
        top: 150px;
    }

    .download .download-data-container {
        column-gap: 12px;
    }

    .download .download-header-container {
        /* width: 700px; */
        width: 840px;
        padding-top: 64px;
        padding-bottom: 96px;
    }

    .download .download-header-content h1
     {
        font-size: 35px;
    }

    .download .download-header-content::after {
        margin-top: 22px;
    }

    .download .download-data-card-left {
        width: 96px;
    }

    .download .download-data-card-image {
        top: 0px;
        left: 8px;
    }

    .download .download-data-card-image img {
        width: 64px;
        height: 64px;
    }

    .download .download-data-card-right {
        margin-left: 96px;
        height: 232px;
        column-gap: 16px;
    }

    [data-currency="USD"] .download .download-data-card-content,
    [data-currency="CAD"] .download .download-data-card-content,
    [data-currency="EUR"] .download .download-data-card-content {
        gap: 16px;
    }

    .download .download-data-card-content-title {
        font-size: 16px;
    }

    [data-currency="USD"] .download .download-data-card-content-title,
    [data-currency="CAD"] .download .download-data-card-content-title,
    [data-currency="EUR"] .download .download-data-card-content-title {
        font-size: 16px;
    }

    .download .download-data-card-content-description {
        font-size: 14px;
    }

    [data-currency="USD"] .download .download-data-card-content-description,
    [data-currency="CAD"] .download .download-data-card-content-description,
    [data-currency="EUR"] .download .download-data-card-content-description {
        font-size: 14px;
    }

    .download .download-data-card-content-info {
        font-size: 12px;
    }

    .download .download-data-card-content-button-link {
        display: inline-flex;
        height: 48px;
        padding: 0px 24px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        border-radius: 200px;
        color: #222939;
        font-size: 14px;
        font-weight: 700;
        line-height: 100%;
        text-transform: uppercase;
        text-decoration: none;
    }

    .download .download-data-card-qr-image {
        width: 88px;
        height: 88px;

        /* For Two Cards Only */
        /* width: 112px;
        height: 112px; */
    }

    [data-currency="USD"] .download .download-data-card-qr-image,
    [data-currency="CAD"] .download .download-data-card-qr-image,
    [data-currency="EUR"] .download .download-data-card-qr-image {
        width: 112px;
        height: 112px;
    }

    .download .download-data-card-qr-text {
        margin-top: 4px;
        display: block;
        color: #A7A9B0;
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
        text-align: center;
    }

    /* ----- Features ----- */

    .features {
        position: unset;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .features .features-background-image {
        width: 850px;
        height: 800px;
        bottom: unset;
    }

    .features .features-card-container {
        row-gap: 48px;
    }

    /* ----- Installation ----- */

    .installation {
        position: relative;
        padding-bottom: 32px;
    }

    .installation .installation-header {
        font-size: 24px;
        font-weight: 700;
        line-height: 120%;
        text-transform: uppercase;
    }

    .installation .installation-tab-panel-container {
        padding: 20px 24px;
    }

    .installation .installation-tab-panel-steps-card-count span {
        font-size: 14px;
        line-height: 140%;
    }

    .installation .installation-tab-panel-steps-card-content {
        padding: 25px 16px;
    }

    .installation .installation-tab-panel-steps-card-content-text {
        text-align: center;
        font-size: 16px;
    }
}

.flex-center {
    align-items: center;
    justify-content: center;
}