/* Fonts */

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-Thin.ttf);
    font-weight: 100;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-ThinItalic.ttf);
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-ExtraLight.ttf);
    font-weight: 200;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-ExtraLightItalic.ttf);
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-Light.ttf);
    font-weight: 300;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-LightItalic.ttf);
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-MediumItalic.ttf);
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-SemiBoldItalic.ttf);
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-ExtraBold.ttf);
    font-weight: 800;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-ExtraBoldItalic.ttf);
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-Black.ttf);
    font-weight: 800;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-BlackItalic.ttf);
    font-weight: 900;
    font-style: italic;
}

/* Fonts end */

/* Grid */

:root {
    --container-width-sm: 100%;
    --container-width-md: 100%;
    --container-width-lg: 1080px;
    --container-width-xl: 1194px;
    --container-width-xxl: 1328px;
    --container-calc-width: 1200px;
    --container-padding: 24px;

    /* Mains */
    --color-black: #0F0F0F;
    --color-white: #FFFFFF;

    --color-primary-1: #2FD6AD;
    --color-primary-2: #4462F6;
    --color-secondary-1: #F2FFF5;
    --color-secondary-2: #6077EB;
    --gradient-primary: linear-gradient(180deg, #2FE5A1 0%, #4462F6 100%);

    /* Grays */
    --color-gray-1: #F9F9F9;
    --color-gray-2: #F1EEEE;
    --color-gray-3: #D9D9D9;
    --color-gray-4: #AAA9A9;
    --color-gray-5: #888B90;
    --color-gray-6: #5C5D62;
    --color-gray-7: #D3D3D3;
    --color-gray-8: #808080;

    /* Others */
    --color-blueish: #344054;
    --color-red: #D62C2C;
    --color-yellow: #FFD84D;
    --color-yellow-2: #F4A60F;
    --color-green: #4EC869;
    --color-green-2: #D1FADF;
    --color-blackish: #424242;
    --color-blackish-2: #141414;
    --color-whiteish: #EAECF0;

    /* Dashboard */
    --dashboard-sidebar-width: 17.5rem;
    --dashboard-mobile-menu-height: 5rem;

    /* Indexes */
    --dashboard-sidebar-index: 1051;
    --modal-index: 10020;
    --notifications-index: 10021;
}

html,
body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

body {
    background: var(--color-white);
    color: var(--color-black);
    font-family: Poppins, Arial, Helvetica, sans-serif;
    padding-top: 0;
    margin: 0;
    overflow-x: hidden;
}

*,
::before,
::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    outline: none !important;
}

b,
strong {
    font-weight: 700;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

img,
object,
embed {
    max-width: 100%;
    height: auto;
}

button {
    background: transparent;
    color: var(--color-black);
    border: none;
    border-radius: 0;
    outline: none;
    padding: 0;
    cursor: pointer;
}

input,
select,
textarea {
    background: transparent;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    color: var(--color-black);
    border: none;
    border-radius: 0;
    outline: none;
    padding: 0;
}

form {
    position: relative;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* Containers */
.container,
.container-fluid,
.container-calc {
    width: 100%;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    margin-right: auto;
    margin-left: auto;
}

.container-calc {
    max-width: var(--container-calc-width);
}

/* Containers end */

/* Utility classes */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.d-none {
    display: none;
}

.d-none-l {
    display: none;
}

.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-row {
    -webkit-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.justify-content-center {
    -webkit-justify-content: center;
    justify-content: center;
}

.justify-content-start {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.justify-content-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.align-items-center {
    -webkit-align-items: center;
    align-items: center;
}

.align-items-start {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.align-items-stretch {
    -webkit-align-items: stretch;
    align-items: stretch;
}

.align-items-baseline {
    -webkit-align-items: baseline;
    align-items: baseline;
}

@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}

/* Flex orders */
.order-1 {
    -webkit-order: 1;
    order: 1;
}

.order-2 {
    -webkit-order: 2;
    order: 2;
}

.order-3 {
    -webkit-order: 3;
    order: 3;
}

.order-4 {
    -webkit-order: 4;
    order: 4;
}

.order-5 {
    -webkit-order: 5;
    order: 5;
}

.order-6 {
    -webkit-order: 6;
    order: 6;
}

.order-7 {
    -webkit-order: 7;
    order: 7;
}

.order-8 {
    -webkit-order: 8;
    order: 8;
}

.order-9 {
    -webkit-order: 9;
    order: 9;
}

/* Rows */
.row-10 {
    margin-right: -10px;
    margin-left: -10px;
}

.row-15 {
    margin-right: -15px;
    margin-left: -15px;
}

.row-20 {
    margin-right: -20px;
    margin-left: -20px;
}

.row-25 {
    margin-right: -25px;
    margin-left: -25px;
}

.row-10 > * {
    padding-right: 10px;
    padding-left: 10px;
}

.row-15 > * {
    padding-right: 15px;
    padding-left: 15px;
}

.row-20 > * {
    padding-right: 20px;
    padding-left: 20px;
}

.row-25 > * {
    padding-right: 25px;
    padding-left: 25px;
}

[class*="row-"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

[class*="row-"] > * {
    flex: 0 0 auto;
}

/* Cols */
.col-1 {
    min-width: 8.3333333333%;
    max-width: 8.3333333333%;
    width: 8.3333333333%;
}

.col-2 {
    min-width: 16.66666667%;
    max-width: 16.66666667%;
    width: 16.66666667%;
}

.col-3 {
    min-width: 25%;
    max-width: 25%;
    width: 25%;
}

.col-4 {
    min-width: 33.33333333%;
    max-width: 33.33333333%;
    width: 33.33333333%;
}

.col-5 {
    min-width: 41.66666667%;
    max-width: 41.66666667%;
    width: 41.66666667%;
}

.col-6 {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}

.col-7 {
    min-width: 58.33333333%;
    max-width: 58.33333333%;
    width: 58.33333333%;
}

.col-8 {
    min-width: 66.66666667%;
    max-width: 66.66666667%;
    width: 66.66666667%;
}

.col-9 {
    min-width: 75%;
    max-width: 75%;
    width: 75%;
}

.col-10 {
    min-width: 83.33333333%;
    max-width: 83.33333333%;
    width: 83.33333333%;
}

.col-11 {
    min-width: 91.66666667%;
    max-width: 91.66666667%;
    width: 91.66666667%;
}

.col-12 {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.pt-0 {
    padding-top: 0;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.ms-auto {
    margin-left: auto;
}

.me-auto {
    margin-right: auto;
}

.ms-0 {
    margin-left: 0;
}

.me-0 {
    margin-right: 0;
}

.mt-auto {
    margin-top: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-auto {
    margin-bottom: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.list-clear {
    padding: 0;
    margin: 0;
    list-style: none;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-break-all {
    word-break: break-all;
}

/* Utility classes end */

/* Responsive */
/* SM */
@media (min-width: 576px) {
    .container {
        max-width: var(--container-width-sm);
    }

    .d-sm-none {
        display: none;
    }

    .d-sm-block {
        display: block;
    }

    .d-sm-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .flex-sm-wrap {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-sm-row {
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    .flex-sm-row-reverse {
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-sm-column {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .flex-sm-column-reverse {
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .justify-content-sm-center {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .justify-content-sm-start {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }

    .justify-content-sm-end {
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }

    .justify-content-sm-between {
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .align-items-sm-center {
        -webkit-align-items: center;
        align-items: center;
    }

    .align-items-sm-start {
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .align-items-sm-end {
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }

    .align-items-sm-stretch {
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    .align-items-sm-baseline {
        -webkit-align-items: baseline;
        align-items: baseline;
    }

    .order-sm-1 {
        -webkit-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -webkit-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -webkit-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -webkit-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -webkit-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -webkit-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -webkit-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -webkit-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -webkit-order: 9;
        order: 9;
    }

    .row-sm-10 {
        margin-right: -10px;
        margin-left: -10px;
    }

    .row-sm-15 {
        margin-right: -15px;
        margin-left: -15px;
    }

    .row-sm-20 {
        margin-right: -20px;
        margin-left: -20px;
    }

    .row-sm-25 {
        margin-right: -25px;
        margin-left: -25px;
    }

    .row-sm-10 > * {
        padding-right: 10px;
        padding-left: 10px;
    }

    .row-sm-15 > * {
        padding-right: 15px;
        padding-left: 15px;
    }

    .row-sm-20 > * {
        padding-right: 20px;
        padding-left: 20px;
    }

    .row-sm-25 > * {
        padding-right: 25px;
        padding-left: 25px;
    }

    .col-sm-1 {
        min-width: 8.3333333333%;
        max-width: 8.3333333333%;
        width: 8.3333333333%;
    }

    .col-sm-2 {
        min-width: 16.66666667%;
        max-width: 16.66666667%;
        width: 16.66666667%;
    }

    .col-sm-3 {
        min-width: 25%;
        max-width: 25%;
        width: 25%;
    }

    .col-sm-4 {
        min-width: 33.33333333%;
        max-width: 33.33333333%;
        width: 33.33333333%;
    }

    .col-sm-5 {
        min-width: 41.66666667%;
        max-width: 41.66666667%;
        width: 41.66666667%;
    }

    .col-sm-6 {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .col-sm-7 {
        min-width: 58.33333333%;
        max-width: 58.33333333%;
        width: 58.33333333%;
    }

    .col-sm-8 {
        min-width: 66.66666667%;
        max-width: 66.66666667%;
        width: 66.66666667%;
    }

    .col-sm-9 {
        min-width: 75%;
        max-width: 75%;
        width: 75%;
    }

    .col-sm-10 {
        min-width: 83.33333333%;
        max-width: 83.33333333%;
        width: 83.33333333%;
    }

    .col-sm-11 {
        min-width: 91.66666667%;
        max-width: 91.66666667%;
        width: 91.66666667%;
    }

    .col-sm-12 {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .pt-sm-0 {
        padding-top: 0;
    }

    .pt-sm-10 {
        padding-top: 10px;
    }

    .pt-sm-20 {
        padding-top: 20px;
    }

    .pt-sm-30 {
        padding-top: 30px;
    }

    .pt-sm-40 {
        padding-top: 40px;
    }

    .pt-sm-50 {
        padding-top: 50px;
    }

    .pt-sm-60 {
        padding-top: 60px;
    }

    .pt-sm-70 {
        padding-top: 70px;
    }

    .pt-sm-80 {
        padding-top: 80px;
    }

    .pt-sm-90 {
        padding-top: 90px;
    }

    .pt-sm-100 {
        padding-top: 100px;
    }

    .pb-sm-0 {
        padding-bottom: 0;
    }

    .pb-sm-10 {
        padding-bottom: 10px;
    }

    .pb-sm-20 {
        padding-bottom: 20px;
    }

    .pb-sm-30 {
        padding-bottom: 30px;
    }

    .pb-sm-40 {
        padding-bottom: 40px;
    }

    .pb-sm-50 {
        padding-bottom: 50px;
    }

    .pb-sm-60 {
        padding-bottom: 60px;
    }

    .pb-sm-70 {
        padding-bottom: 70px;
    }

    .pb-sm-80 {
        padding-bottom: 80px;
    }

    .pb-sm-90 {
        padding-bottom: 90px;
    }

    .pb-sm-100 {
        padding-bottom: 100px;
    }

    .ms-sm-auto {
        margin-left: auto;
    }

    .me-sm-auto {
        margin-right: auto;
    }

    .ms-sm-0 {
        margin-left: 0;
    }

    .me-sm-0 {
        margin-right: 0;
    }

    .mt-sm-auto {
        margin-top: auto;
    }

    .mt-sm-0 {
        margin-top: 0;
    }

    .mt-sm-10 {
        margin-top: 10px;
    }

    .mt-sm-20 {
        margin-top: 20px;
    }

    .mt-sm-30 {
        margin-top: 30px;
    }

    .mt-sm-40 {
        margin-top: 40px;
    }

    .mt-sm-50 {
        margin-top: 50px;
    }

    .mt-sm-60 {
        margin-top: 60px;
    }

    .mt-sm-70 {
        margin-top: 70px;
    }

    .mt-sm-80 {
        margin-top: 80px;
    }

    .mt-sm-90 {
        margin-top: 90px;
    }

    .mt-sm-100 {
        margin-top: 100px;
    }

    .mb-sm-auto {
        margin-bottom: auto;
    }

    .mb-sm-0 {
        margin-bottom: 0;
    }

    .mb-sm-10 {
        margin-bottom: 10px;
    }

    .mb-sm-20 {
        margin-bottom: 20px;
    }

    .mb-sm-30 {
        margin-bottom: 30px;
    }

    .mb-sm-40 {
        margin-bottom: 40px;
    }

    .mb-sm-50 {
        margin-bottom: 50px;
    }

    .mb-sm-60 {
        margin-bottom: 60px;
    }

    .mb-sm-70 {
        margin-bottom: 70px;
    }

    .mb-sm-80 {
        margin-bottom: 80px;
    }

    .mb-sm-90 {
        margin-bottom: 90px;
    }

    .mb-sm-100 {
        margin-bottom: 100px;
    }

    .list-sm-clear {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .text-sm-center {
        text-align: center;
    }

    .text-sm-left {
        text-align: left;
    }

    .text-sm-right {
        text-align: right;
    }

    .text-sm-justify {
        text-align: justify;
    }
}


/* MD */

@media (min-width: 768px) {
    .container {
        max-width: var(--container-width-md);
    }

    .d-md-none {
        display: none;
    }

    .d-md-block {
        display: block;
    }

    .d-md-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .flex-md-wrap {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-md-row {
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    .flex-md-row-reverse {
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-md-column {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .flex-md-column-reverse {
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .justify-content-md-center {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .justify-content-md-start {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }

    .justify-content-md-end {
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }

    .justify-content-md-between {
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .align-items-md-center {
        -webkit-align-items: center;
        align-items: center;
    }

    .align-items-md-start {
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .align-items-md-end {
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }

    .align-items-md-stretch {
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    .align-items-md-baseline {
        -webkit-align-items: baseline;
        align-items: baseline;
    }

    .order-md-1 {
        -webkit-order: 1;
        order: 1;
    }

    .order-md-2 {
        -webkit-order: 2;
        order: 2;
    }

    .order-md-3 {
        -webkit-order: 3;
        order: 3;
    }

    .order-md-4 {
        -webkit-order: 4;
        order: 4;
    }

    .order-md-5 {
        -webkit-order: 5;
        order: 5;
    }

    .order-md-6 {
        -webkit-order: 6;
        order: 6;
    }

    .order-md-7 {
        -webkit-order: 7;
        order: 7;
    }

    .order-md-8 {
        -webkit-order: 8;
        order: 8;
    }

    .order-md-9 {
        -webkit-order: 9;
        order: 9;
    }

    .row-md-10 {
        margin-right: -10px;
        margin-left: -10px;
    }

    .row-md-15 {
        margin-right: -15px;
        margin-left: -15px;
    }

    .row-md-20 {
        margin-right: -20px;
        margin-left: -20px;
    }

    .row-md-25 {
        margin-right: -25px;
        margin-left: -25px;
    }

    .row-md-10 > * {
        padding-right: 10px;
        padding-left: 10px;
    }

    .row-md-15 > * {
        padding-right: 15px;
        padding-left: 15px;
    }

    .row-md-20 > * {
        padding-right: 20px;
        padding-left: 20px;
    }

    .row-md-25 > * {
        padding-right: 25px;
        padding-left: 25px;
    }

    .col-md-1 {
        min-width: 8.3333333333%;
        max-width: 8.3333333333%;
        width: 8.3333333333%;
    }

    .col-md-2 {
        min-width: 16.66666667%;
        max-width: 16.66666667%;
        width: 16.66666667%;
    }

    .col-md-3 {
        min-width: 25%;
        max-width: 25%;
        width: 25%;
    }

    .col-md-4 {
        min-width: 33.33333333%;
        max-width: 33.33333333%;
        width: 33.33333333%;
    }

    .col-md-5 {
        min-width: 41.66666667%;
        max-width: 41.66666667%;
        width: 41.66666667%;
    }

    .col-md-6 {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .col-md-7 {
        min-width: 58.33333333%;
        max-width: 58.33333333%;
        width: 58.33333333%;
    }

    .col-md-8 {
        min-width: 66.66666667%;
        max-width: 66.66666667%;
        width: 66.66666667%;
    }

    .col-md-9 {
        min-width: 75%;
        max-width: 75%;
        width: 75%;
    }

    .col-md-10 {
        min-width: 83.33333333%;
        max-width: 83.33333333%;
        width: 83.33333333%;
    }

    .col-md-11 {
        min-width: 91.66666667%;
        max-width: 91.66666667%;
        width: 91.66666667%;
    }

    .col-md-12 {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .pt-md-0 {
        padding-top: 0;
    }

    .pt-md-10 {
        padding-top: 10px;
    }

    .pt-md-20 {
        padding-top: 20px;
    }

    .pt-md-30 {
        padding-top: 30px;
    }

    .pt-md-40 {
        padding-top: 40px;
    }

    .pt-md-50 {
        padding-top: 50px;
    }

    .pt-md-60 {
        padding-top: 60px;
    }

    .pt-md-70 {
        padding-top: 70px;
    }

    .pt-md-80 {
        padding-top: 80px;
    }

    .pt-md-90 {
        padding-top: 90px;
    }

    .pt-md-100 {
        padding-top: 100px;
    }

    .pb-md-0 {
        padding-bottom: 0;
    }

    .pb-md-10 {
        padding-bottom: 10px;
    }

    .pb-md-20 {
        padding-bottom: 20px;
    }

    .pb-md-30 {
        padding-bottom: 30px;
    }

    .pb-md-40 {
        padding-bottom: 40px;
    }

    .pb-md-50 {
        padding-bottom: 50px;
    }

    .pb-md-60 {
        padding-bottom: 60px;
    }

    .pb-md-70 {
        padding-bottom: 70px;
    }

    .pb-md-80 {
        padding-bottom: 80px;
    }

    .pb-md-90 {
        padding-bottom: 90px;
    }

    .pb-md-100 {
        padding-bottom: 100px;
    }

    .ms-md-auto {
        margin-left: auto;
    }

    .me-md-auto {
        margin-right: auto;
    }

    .ms-md-0 {
        margin-left: 0;
    }

    .me-md-0 {
        margin-right: 0;
    }

    .mt-md-auto {
        margin-top: auto;
    }

    .mt-md-0 {
        margin-top: 0;
    }

    .mt-md-10 {
        margin-top: 10px;
    }

    .mt-md-20 {
        margin-top: 20px;
    }

    .mt-md-30 {
        margin-top: 30px;
    }

    .mt-md-40 {
        margin-top: 40px;
    }

    .mt-md-50 {
        margin-top: 50px;
    }

    .mt-md-60 {
        margin-top: 60px;
    }

    .mt-md-70 {
        margin-top: 70px;
    }

    .mt-md-80 {
        margin-top: 80px;
    }

    .mt-md-90 {
        margin-top: 90px;
    }

    .mt-md-100 {
        margin-top: 100px;
    }

    .mb-md-auto {
        margin-bottom: auto;
    }

    .mb-md-0 {
        margin-bottom: 0;
    }

    .mb-md-10 {
        margin-bottom: 10px;
    }

    .mb-md-20 {
        margin-bottom: 20px;
    }

    .mb-md-30 {
        margin-bottom: 30px;
    }

    .mb-md-40 {
        margin-bottom: 40px;
    }

    .mb-md-50 {
        margin-bottom: 50px;
    }

    .mb-md-60 {
        margin-bottom: 60px;
    }

    .mb-md-70 {
        margin-bottom: 70px;
    }

    .mb-md-80 {
        margin-bottom: 80px;
    }

    .mb-md-90 {
        margin-bottom: 90px;
    }

    .mb-md-100 {
        margin-bottom: 100px;
    }

    .list-md-clear {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .text-md-center {
        text-align: center;
    }

    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }

    .text-md-justify {
        text-align: justify;
    }
}


/* LG */

@media (min-width: 992px) {
    .container {
        max-width: var(--container-width-lg);
        padding-right: var(--container-padding);
        padding-left: var(--container-padding);
    }

    .d-lg-none {
        display: none;
    }

    .d-lg-block {
        display: block;
    }

    .d-lg-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .flex-lg-wrap {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-lg-row {
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    .flex-lg-row-reverse {
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-lg-column {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .flex-lg-column-reverse {
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .justify-content-lg-center {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .justify-content-lg-start {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }

    .justify-content-lg-end {
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }

    .justify-content-lg-between {
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .align-items-lg-center {
        -webkit-align-items: center;
        align-items: center;
    }

    .align-items-lg-start {
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .align-items-lg-end {
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }

    .align-items-lg-stretch {
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    .align-items-lg-baseline {
        -webkit-align-items: baseline;
        align-items: baseline;
    }

    .order-lg-1 {
        -webkit-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -webkit-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -webkit-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -webkit-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -webkit-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -webkit-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -webkit-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -webkit-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -webkit-order: 9;
        order: 9;
    }

    .row-lg-10 {
        margin-right: -10px;
        margin-left: -10px;
    }

    .row-lg-15 {
        margin-right: -15px;
        margin-left: -15px;
    }

    .row-lg-20 {
        margin-right: -20px;
        margin-left: -20px;
    }

    .row-lg-25 {
        margin-right: -25px;
        margin-left: -25px;
    }

    .row-lg-10 > * {
        padding-right: 10px;
        padding-left: 10px;
    }

    .row-lg-15 > * {
        padding-right: 15px;
        padding-left: 15px;
    }

    .row-lg-20 > * {
        padding-right: 20px;
        padding-left: 20px;
    }

    .row-lg-25 > * {
        padding-right: 25px;
        padding-left: 25px;
    }

    .col-lg-1 {
        min-width: 8.3333333333%;
        max-width: 8.3333333333%;
        width: 8.3333333333%;
    }

    .col-lg-2 {
        min-width: 16.66666667%;
        max-width: 16.66666667%;
        width: 16.66666667%;
    }

    .col-lg-3 {
        min-width: 25%;
        max-width: 25%;
        width: 25%;
    }

    .col-lg-4 {
        min-width: 33.33333333%;
        max-width: 33.33333333%;
        width: 33.33333333%;
    }

    .col-lg-5 {
        min-width: 41.66666667%;
        max-width: 41.66666667%;
        width: 41.66666667%;
    }

    .col-lg-6 {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .col-lg-7 {
        min-width: 58.33333333%;
        max-width: 58.33333333%;
        width: 58.33333333%;
    }

    .col-lg-8 {
        min-width: 66.66666667%;
        max-width: 66.66666667%;
        width: 66.66666667%;
    }

    .col-lg-9 {
        min-width: 75%;
        max-width: 75%;
        width: 75%;
    }

    .col-lg-10 {
        min-width: 83.33333333%;
        max-width: 83.33333333%;
        width: 83.33333333%;
    }

    .col-lg-11 {
        min-width: 91.66666667%;
        max-width: 91.66666667%;
        width: 91.66666667%;
    }

    .col-lg-12 {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .pt-lg-0 {
        padding-top: 0;
    }

    .pt-lg-10 {
        padding-top: 10px;
    }

    .pt-lg-20 {
        padding-top: 20px;
    }

    .pt-lg-30 {
        padding-top: 30px;
    }

    .pt-lg-40 {
        padding-top: 40px;
    }

    .pt-lg-50 {
        padding-top: 50px;
    }

    .pt-lg-60 {
        padding-top: 60px;
    }

    .pt-lg-70 {
        padding-top: 70px;
    }

    .pt-lg-80 {
        padding-top: 80px;
    }

    .pt-lg-90 {
        padding-top: 90px;
    }

    .pt-lg-100 {
        padding-top: 100px;
    }

    .pb-lg-0 {
        padding-bottom: 0;
    }

    .pb-lg-10 {
        padding-bottom: 10px;
    }

    .pb-lg-20 {
        padding-bottom: 20px;
    }

    .pb-lg-30 {
        padding-bottom: 30px;
    }

    .pb-lg-40 {
        padding-bottom: 40px;
    }

    .pb-lg-50 {
        padding-bottom: 50px;
    }

    .pb-lg-60 {
        padding-bottom: 60px;
    }

    .pb-lg-70 {
        padding-bottom: 70px;
    }

    .pb-lg-80 {
        padding-bottom: 80px;
    }

    .pb-lg-90 {
        padding-bottom: 90px;
    }

    .pb-lg-100 {
        padding-bottom: 100px;
    }

    .ms-lg-auto {
        margin-left: auto;
    }

    .me-lg-auto {
        margin-right: auto;
    }

    .ms-lg-0 {
        margin-left: 0;
    }

    .me-lg-0 {
        margin-right: 0;
    }

    .mt-lg-auto {
        margin-top: auto;
    }

    .mt-lg-0 {
        margin-top: 0;
    }

    .mt-lg-10 {
        margin-top: 10px;
    }

    .mt-lg-20 {
        margin-top: 20px;
    }

    .mt-lg-30 {
        margin-top: 30px;
    }

    .mt-lg-40 {
        margin-top: 40px;
    }

    .mt-lg-50 {
        margin-top: 50px;
    }

    .mt-lg-60 {
        margin-top: 60px;
    }

    .mt-lg-70 {
        margin-top: 70px;
    }

    .mt-lg-80 {
        margin-top: 80px;
    }

    .mt-lg-90 {
        margin-top: 90px;
    }

    .mt-lg-100 {
        margin-top: 100px;
    }

    .mb-lg-auto {
        margin-bottom: auto;
    }

    .mb-lg-0 {
        margin-bottom: 0;
    }

    .mb-lg-10 {
        margin-bottom: 10px;
    }

    .mb-lg-20 {
        margin-bottom: 20px;
    }

    .mb-lg-30 {
        margin-bottom: 30px;
    }

    .mb-lg-40 {
        margin-bottom: 40px;
    }

    .mb-lg-50 {
        margin-bottom: 50px;
    }

    .mb-lg-60 {
        margin-bottom: 60px;
    }

    .mb-lg-70 {
        margin-bottom: 70px;
    }

    .mb-lg-80 {
        margin-bottom: 80px;
    }

    .mb-lg-90 {
        margin-bottom: 90px;
    }

    .mb-lg-100 {
        margin-bottom: 100px;
    }

    .list-lg-clear {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .text-lg-center {
        text-align: center;
    }

    .text-lg-left {
        text-align: left;
    }

    .text-lg-right {
        text-align: right;
    }

    .text-lg-justify {
        text-align: justify;
    }
}


/* XL */

@media (min-width: 1200px) {
    .container {
        max-width: var(--container-width-xl);
    }

    .d-xl-none {
        display: none;
    }

    .d-xl-block {
        display: block;
    }

    .d-xl-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .flex-xl-wrap {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-xl-row {
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    .flex-xl-row-reverse {
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-xl-column {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .flex-xl-column-reverse {
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .justify-content-xl-center {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .justify-content-xl-start {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }

    .justify-content-xl-end {
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }

    .justify-content-xl-between {
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .align-items-xl-center {
        -webkit-align-items: center;
        align-items: center;
    }

    .align-items-xl-start {
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .align-items-xl-end {
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }

    .align-items-xl-stretch {
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    .align-items-xl-baseline {
        -webkit-align-items: baseline;
        align-items: baseline;
    }

    .order-xl-1 {
        -webkit-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -webkit-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -webkit-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -webkit-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -webkit-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -webkit-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -webkit-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -webkit-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -webkit-order: 9;
        order: 9;
    }

    .row-xl-10 {
        margin-right: -10px;
        margin-left: -10px;
    }

    .row-xl-15 {
        margin-right: -15px;
        margin-left: -15px;
    }

    .row-xl-20 {
        margin-right: -20px;
        margin-left: -20px;
    }

    .row-xl-25 {
        margin-right: -25px;
        margin-left: -25px;
    }

    .row-xl-10 > * {
        padding-right: 10px;
        padding-left: 10px;
    }

    .row-xl-15 > * {
        padding-right: 15px;
        padding-left: 15px;
    }

    .row-xl-20 > * {
        padding-right: 20px;
        padding-left: 20px;
    }

    .row-xl-25 > * {
        padding-right: 25px;
        padding-left: 25px;
    }

    .col-xl-1 {
        min-width: 8.3333333333%;
        max-width: 8.3333333333%;
        width: 8.3333333333%;
    }

    .col-xl-2 {
        min-width: 16.66666667%;
        max-width: 16.66666667%;
        width: 16.66666667%;
    }

    .col-xl-3 {
        min-width: 25%;
        max-width: 25%;
        width: 25%;
    }

    .col-xl-4 {
        min-width: 33.33333333%;
        max-width: 33.33333333%;
        width: 33.33333333%;
    }

    .col-xl-5 {
        min-width: 41.66666667%;
        max-width: 41.66666667%;
        width: 41.66666667%;
    }

    .col-xl-6 {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .col-xl-7 {
        min-width: 58.33333333%;
        max-width: 58.33333333%;
        width: 58.33333333%;
    }

    .col-xl-8 {
        min-width: 66.66666667%;
        max-width: 66.66666667%;
        width: 66.66666667%;
    }

    .col-xl-9 {
        min-width: 75%;
        max-width: 75%;
        width: 75%;
    }

    .col-xl-10 {
        min-width: 83.33333333%;
        max-width: 83.33333333%;
        width: 83.33333333%;
    }

    .col-xl-11 {
        min-width: 91.66666667%;
        max-width: 91.66666667%;
        width: 91.66666667%;
    }

    .col-xl-12 {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .pt-xl-0 {
        padding-top: 0;
    }

    .pt-xl-10 {
        padding-top: 10px;
    }

    .pt-xl-20 {
        padding-top: 20px;
    }

    .pt-xl-30 {
        padding-top: 30px;
    }

    .pt-xl-40 {
        padding-top: 40px;
    }

    .pt-xl-50 {
        padding-top: 50px;
    }

    .pt-xl-60 {
        padding-top: 60px;
    }

    .pt-xl-70 {
        padding-top: 70px;
    }

    .pt-xl-80 {
        padding-top: 80px;
    }

    .pt-xl-90 {
        padding-top: 90px;
    }

    .pt-xl-100 {
        padding-top: 100px;
    }

    .pb-xl-0 {
        padding-bottom: 0;
    }

    .pb-xl-10 {
        padding-bottom: 10px;
    }

    .pb-xl-20 {
        padding-bottom: 20px;
    }

    .pb-xl-30 {
        padding-bottom: 30px;
    }

    .pb-xl-40 {
        padding-bottom: 40px;
    }

    .pb-xl-50 {
        padding-bottom: 50px;
    }

    .pb-xl-60 {
        padding-bottom: 60px;
    }

    .pb-xl-70 {
        padding-bottom: 70px;
    }

    .pb-xl-80 {
        padding-bottom: 80px;
    }

    .pb-xl-90 {
        padding-bottom: 90px;
    }

    .pb-xl-100 {
        padding-bottom: 100px;
    }

    .ms-xl-auto {
        margin-left: auto;
    }

    .me-xl-auto {
        margin-right: auto;
    }

    .ms-xl-0 {
        margin-left: 0;
    }

    .me-xl-0 {
        margin-right: 0;
    }

    .mt-xl-auto {
        margin-top: auto;
    }

    .mt-xl-0 {
        margin-top: 0;
    }

    .mt-xl-10 {
        margin-top: 10px;
    }

    .mt-xl-20 {
        margin-top: 20px;
    }

    .mt-xl-30 {
        margin-top: 30px;
    }

    .mt-xl-40 {
        margin-top: 40px;
    }

    .mt-xl-50 {
        margin-top: 50px;
    }

    .mt-xl-60 {
        margin-top: 60px;
    }

    .mt-xl-70 {
        margin-top: 70px;
    }

    .mt-xl-80 {
        margin-top: 80px;
    }

    .mt-xl-90 {
        margin-top: 90px;
    }

    .mt-xl-100 {
        margin-top: 100px;
    }

    .mb-xl-auto {
        margin-bottom: auto;
    }

    .mb-xl-0 {
        margin-bottom: 0;
    }

    .mb-xl-10 {
        margin-bottom: 10px;
    }

    .mb-xl-20 {
        margin-bottom: 20px;
    }

    .mb-xl-30 {
        margin-bottom: 30px;
    }

    .mb-xl-40 {
        margin-bottom: 40px;
    }

    .mb-xl-50 {
        margin-bottom: 50px;
    }

    .mb-xl-60 {
        margin-bottom: 60px;
    }

    .mb-xl-70 {
        margin-bottom: 70px;
    }

    .mb-xl-80 {
        margin-bottom: 80px;
    }

    .mb-xl-90 {
        margin-bottom: 90px;
    }

    .mb-xl-100 {
        margin-bottom: 100px;
    }

    .list-xl-clear {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .text-xl-center {
        text-align: center;
    }

    .text-xl-left {
        text-align: left;
    }

    .text-xl-right {
        text-align: right;
    }

    .text-xl-justify {
        text-align: justify;
    }
}


/* XXL */

@media (min-width: 1400px) {
    .container {
        max-width: var(--container-width-xxl);
    }

    .d-xxl-none {
        display: none;
    }

    .d-xxl-block {
        display: block;
    }

    .d-xxl-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .flex-xxl-wrap {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-xxl-row {
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    .flex-xxl-row-reverse {
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-xxl-column {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .flex-xxl-column-reverse {
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .justify-content-xxl-center {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .justify-content-xxl-start {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }

    .justify-content-xxl-end {
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }

    .justify-content-xxl-between {
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .align-items-xxl-center {
        -webkit-align-items: center;
        align-items: center;
    }

    .align-items-xxl-start {
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .align-items-xxl-end {
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }

    .align-items-xxl-stretch {
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    .align-items-xxl-baseline {
        -webkit-align-items: baseline;
        align-items: baseline;
    }

    .order-xxl-1 {
        -webkit-order: 1;
        order: 1;
    }

    .order-xxl-2 {
        -webkit-order: 2;
        order: 2;
    }

    .order-xxl-3 {
        -webkit-order: 3;
        order: 3;
    }

    .order-xxl-4 {
        -webkit-order: 4;
        order: 4;
    }

    .order-xxl-5 {
        -webkit-order: 5;
        order: 5;
    }

    .order-xxl-6 {
        -webkit-order: 6;
        order: 6;
    }

    .order-xxl-7 {
        -webkit-order: 7;
        order: 7;
    }

    .order-xxl-8 {
        -webkit-order: 8;
        order: 8;
    }

    .order-xxl-9 {
        -webkit-order: 9;
        order: 9;
    }

    .row-xxl-10 {
        margin-right: -10px;
        margin-left: -10px;
    }

    .row-xxl-15 {
        margin-right: -15px;
        margin-left: -15px;
    }

    .row-xxl-20 {
        margin-right: -20px;
        margin-left: -20px;
    }

    .row-xxl-25 {
        margin-right: -25px;
        margin-left: -25px;
    }

    .row-xxl-10 > * {
        padding-right: 10px;
        padding-left: 10px;
    }

    .row-xxl-15 > * {
        padding-right: 15px;
        padding-left: 15px;
    }

    .row-xxl-20 > * {
        padding-right: 20px;
        padding-left: 20px;
    }

    .row-xxl-25 > * {
        padding-right: 25px;
        padding-left: 25px;
    }

    .col-xxl-1 {
        min-width: 8.3333333333%;
        max-width: 8.3333333333%;
        width: 8.3333333333%;
    }

    .col-xxl-2 {
        min-width: 16.66666667%;
        max-width: 16.66666667%;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        min-width: 25%;
        max-width: 25%;
        width: 25%;
    }

    .col-xxl-4 {
        min-width: 33.33333333%;
        max-width: 33.33333333%;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        min-width: 41.66666667%;
        max-width: 41.66666667%;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .col-xxl-7 {
        min-width: 58.33333333%;
        max-width: 58.33333333%;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        min-width: 66.66666667%;
        max-width: 66.66666667%;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        min-width: 75%;
        max-width: 75%;
        width: 75%;
    }

    .col-xxl-10 {
        min-width: 83.33333333%;
        max-width: 83.33333333%;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        min-width: 91.66666667%;
        max-width: 91.66666667%;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .pt-xxl-0 {
        padding-top: 0;
    }

    .pt-xxl-10 {
        padding-top: 10px;
    }

    .pt-xxl-20 {
        padding-top: 20px;
    }

    .pt-xxl-30 {
        padding-top: 30px;
    }

    .pt-xxl-40 {
        padding-top: 40px;
    }

    .pt-xxl-50 {
        padding-top: 50px;
    }

    .pt-xxl-60 {
        padding-top: 60px;
    }

    .pt-xxl-70 {
        padding-top: 70px;
    }

    .pt-xxl-80 {
        padding-top: 80px;
    }

    .pt-xxl-90 {
        padding-top: 90px;
    }

    .pt-xxl-100 {
        padding-top: 100px;
    }

    .pb-xxl-0 {
        padding-bottom: 0;
    }

    .pb-xxl-10 {
        padding-bottom: 10px;
    }

    .pb-xxl-20 {
        padding-bottom: 20px;
    }

    .pb-xxl-30 {
        padding-bottom: 30px;
    }

    .pb-xxl-40 {
        padding-bottom: 40px;
    }

    .pb-xxl-50 {
        padding-bottom: 50px;
    }

    .pb-xxl-60 {
        padding-bottom: 60px;
    }

    .pb-xxl-70 {
        padding-bottom: 70px;
    }

    .pb-xxl-80 {
        padding-bottom: 80px;
    }

    .pb-xxl-90 {
        padding-bottom: 90px;
    }

    .pb-xxl-100 {
        padding-bottom: 100px;
    }

    .ms-xxl-auto {
        margin-left: auto;
    }

    .me-xxl-auto {
        margin-right: auto;
    }

    .ms-xxl-0 {
        margin-left: 0;
    }

    .me-xxl-0 {
        margin-right: 0;
    }

    .mt-xxl-auto {
        margin-top: auto;
    }

    .mt-xxl-0 {
        margin-top: 0;
    }

    .mt-xxl-10 {
        margin-top: 10px;
    }

    .mt-xxl-20 {
        margin-top: 20px;
    }

    .mt-xxl-30 {
        margin-top: 30px;
    }

    .mt-xxl-40 {
        margin-top: 40px;
    }

    .mt-xxl-50 {
        margin-top: 50px;
    }

    .mt-xxl-60 {
        margin-top: 60px;
    }

    .mt-xxl-70 {
        margin-top: 70px;
    }

    .mt-xxl-80 {
        margin-top: 80px;
    }

    .mt-xxl-90 {
        margin-top: 90px;
    }

    .mt-xxl-100 {
        margin-top: 100px;
    }

    .mb-xxl-auto {
        margin-bottom: auto;
    }

    .mb-xxl-0 {
        margin-bottom: 0;
    }

    .mb-xxl-10 {
        margin-bottom: 10px;
    }

    .mb-xxl-20 {
        margin-bottom: 20px;
    }

    .mb-xxl-30 {
        margin-bottom: 30px;
    }

    .mb-xxl-40 {
        margin-bottom: 40px;
    }

    .mb-xxl-50 {
        margin-bottom: 50px;
    }

    .mb-xxl-60 {
        margin-bottom: 60px;
    }

    .mb-xxl-70 {
        margin-bottom: 70px;
    }

    .mb-xxl-80 {
        margin-bottom: 80px;
    }

    .mb-xxl-90 {
        margin-bottom: 90px;
    }

    .mb-xxl-100 {
        margin-bottom: 100px;
    }

    .list-xxl-clear {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .text-xxl-center {
        text-align: center;
    }

    .text-xxl-left {
        text-align: left;
    }

    .text-xxl-right {
        text-align: right;
    }

    .text-xxl-justify {
        text-align: justify;
    }
}

/* Grid end */

/* Code */
.site-wrapper {
    position: relative;
    min-height: 100vh;
    /* padding-top: var(--navbar-height); */
    -webkit-transition: padding 0.5s ease;
    transition: padding 0.5s ease;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

/* Navbar */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.main-navbar.auth {
    display: none;
}

.navbar-wrapper {
    background-color: transparent;
    padding: 16px 0;
    -webkit-transition: padding 0.5s ease, background-color 0.5s ease;
    transition: padding 0.5s ease, background-color 0.5s ease;
}

.navbar-wrapper.scroll {
    position: relative;
    background-color: var(--color-white);
    z-index: 1;
}

.navbar-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    -webkit-box-shadow: 0px 2px 6px rgba(15, 15, 15, 0.1);
    -moz-box-shadow: 0px 2px 6px rgba(15, 15, 15, 0.1);
    box-shadow: 0px 2px 6px rgba(15, 15, 15, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.navbar-wrapper.scroll::after {
    opacity: 1;
}

.main-navbar.calculator .navbar-menu {
    -webkit-justify-content: center;
    justify-content: center;
}

.navbar-brand {
    margin-right: 3rem;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover,
.navbar-brand:focus-visible {
    opacity: 0.66;
}

.navbar-brand-content {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    -webkit-transition: min-width 0.5s ease, max-width 0.5s ease, width 0.5s ease;
    transition: min-width 0.5s ease, max-width 0.5s ease, width 0.5s ease;
}

.navbar-brand-content > img {
    min-height: 3rem;
    max-height: 3rem;
    height: 3rem;
}

.navbar-nav > .nav-link {
    margin-right: 40px;
}

.navbar-nav > .nav-link > a,
.footer-nav > .nav-link > a {
    position: relative;
    display: block;
    color: var(--color-gray-1);
    font-size: 1rem;
    font-weight: 400;
    -webkit-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.navbar-wrapper.scroll .navbar-nav > .nav-link > a {
    color: var(--color-black);
}

.navbar-nav > .nav-link > a::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.navbar-nav > .nav-link.special > a > span,
.footer-nav > .nav-link.special > a > span {
    background-color: var(--color-secondary);
    font-weight: 700;
    padding: 8px 6px;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav > .nav-link.special > a:hover > span,
.navbar-nav > .nav-link.special > a:focus-visible > span,
.footer-nav > .nav-link.special > a:hover > span,
.footer-nav > .nav-link.special > a:focus-visible > span {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.navbar-nav > .nav-link > a:hover::before,
.navbar-nav > .nav-link > a:focus-visible::before {
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.navbar-collapse {
    flex-grow: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main-navbar.calculator .navbar-collapse {
    display: none;
}

.navbar-btn-wrap:not(:last-of-type) {
    margin-right: 16px;
}

.btn.navbar-btn {
    font-weight: 500;
    line-height: 1.25;
    border-radius: 4px;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    padding: 0.53125rem 0.9375rem;
}

/* Toggler, mobile search */
.navbar-toggle {
    position: relative;
    min-width: 3rem;
    max-width: 3rem;
    width: 3rem;
    aspect-ratio: 1 / 1;
}

.navbar-toggle {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.main-navbar.calculator .navbar-toggle {
    display: none;
}

.navbar-toggler {
    cursor: pointer;
}

.navbar-toggler > .toggler-bar {
    position: relative;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-black);
    border-radius: 100vh;
    transform: rotateZ(0), translate(0, 0);
    transition: transform 0.3s ease, top 0.3s ease;
}

.navbar-toggler > .toggler-bar:nth-child(2) {
    width: 20px;
}

.navbar-toggler > .toggler-bar + .toggler-bar {
    margin-top: 5px;
}

.navbar-open .navbar-toggler > .toggler-bar:nth-child(1) {
    top: 8px;
    transform: rotateZ(-45deg);
}

.navbar-open .navbar-toggler > .toggler-bar:nth-child(2) {
    transform: scale(0);
}

.navbar-open .navbar-toggler > .toggler-bar:nth-child(3) {
    transform: rotateZ(45deg);
    top: -6px;
}

/* For mac screens */
@media (max-width: 1460px) and (min-width: 992px) {
    html,
    body {
        font-size: calc(16px * 0.7114583);
    }

    .navbar-wrapper {
        padding: calc(16px * 0.7114583) 0;
    }

    .navbar-brand {
        min-width: calc(270px * 0.7114583);
        max-width: calc(270px * 0.7114583);
        width: calc(270px * 0.7114583);
        margin-right: calc(46px * 0.7114583);
    }

    .scroll .navbar-brand-content {
        min-width: calc(127px * 0.7114583);
        max-width: calc(127px * 0.7114583);
        width: calc(127px * 0.7114583);
    }

    .navbar-brand-content .navbar-brand-text {
        margin-left: calc(18px * 0.7114583);
    }

    .navbar-brand-regular {
        min-width: calc(152px * 0.7114583);
        max-width: calc(152px * 0.7114583);
        width: calc(152px * 0.7114583);
    }

    .scroll .navbar-brand-regular {
        min-width: calc(127px * 0.7114583);
        max-width: calc(127px * 0.7114583);
        width: calc(127px * 0.7114583);
    }

    .navbar-nav > .nav-link {
        margin-right: calc(40px * 0.7114583);
    }

    .navbar-nav > .nav-link.special > a > span,
    .footer-nav > .nav-link.special > a > span {
        padding: calc(8px * 0.7114583) calc(6px * 0.7114583);
    }
}

/* Navbar mobile ver width */
@media (max-width: 991px) {
    body.navbar-open {
        overflow: hidden;
    }

    .navbar-wrapper {
        background-color: var(--color-white);
    }

    .navbar-brand {
        min-width: 100px;
        max-width: 100px;
        width: 100px;
        margin-right: auto;
    }

    .main-navbar.calculator .navbar-brand {
        margin-right: 0;
    }

    .navbar-brand img {
        min-width: 100px;
        max-width: 100px;
        width: 100px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        max-width: 100%;
        width: 390px;
        min-height: calc(100vh - var(--navbar-height));
        background-color: var(--color-white);
        padding-top: 24px;
        padding-left: 24px;
        padding-right: 24px;
        margin-left: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .navbar-open .navbar-collapse {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .navbar-nav {
        -webkit-flex-direction: column;
        flex-direction: column;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .navbar-nav > .nav-link {
        display: block;
        margin: 0;
        cursor: pointer;
    }

    .navbar-nav > .nav-link + .nav-link {
        border-top: 1px solid var(--color-primary);
    }

    .navbar-nav > .nav-link > a {
        color: var(--color-blueish);
        font-size: 1rem;
        line-height: 1.2;
        padding: 8px 12px;
    }

    .navbar-nav > .nav-link > a.active {
        background-color: var(--color-gray-1);
    }

    .navbar-nav > .nav-link > *::before {
        display: none;
    }

    .navbar-buttons {
        -webkit-flex-direction: column;
        flex-direction: column;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        margin-top: 40px;
    }

    .navbar-btn-wrap:not(:last-of-type) {
        margin: 0;
    }

    .navbar-btn-wrap + .navbar-btn-wrap {
        margin-top: 16px;
    }

    .navbar-btn {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .site-wrapper {
        padding-top: 80px;
    }
}

@media (max-width: 575px) {
    .navbar-collapse {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
}

/* Footer */
.fx-footer {
    padding-top: 5rem;
    margin-top: auto;
}

.fx-footer.calculator {
    display: none;
}

.fx-footer.auth {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    padding-top: 0;
    z-index: 999;
}

.fx-footer.auth .footer-right {
    display: none;
}

.footer-default {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--color-gray-5);
    padding: 2.625rem 3.5rem;
}

.footer-default > * {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}

.footer-ue {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--color-gray-5);
    padding: 0 3.5rem;
    font-size: 0.875rem;
    line-height: 1.42857142;
}

.footer-ue-img {
    text-align: center;
}

.footer-ue-img > img {
    max-width: 40%;
}

.footer-ue > * {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}


.footer-left {
    font-size: 0.875rem;
    line-height: 1.42857142;
}

.footer-right {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.footer-menu > li:not(:last-of-type) {
    margin-right: 40px;
}

.footer-nav > .nav-link:not(:last-of-type) {
    margin-right: 1.5rem;
}

.footer-nav > .nav-link > a {
    color: var(--color-gray-5);
    font-size: 0.875rem;
    line-height: 1.42857142;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer-nav > .nav-link > a:hover,
.footer-nav > .nav-link > a:focus-visible {
    color: var(--color-black);
}

@media (max-width: 991px) {
    .footer-default {
        padding: 1.5rem;
    }

    .footer-default > * {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .footer-ue {
        padding: 1rem;
    }

    .footer-ue > * {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .footer-ue-img > img {
        max-width: 60%;
    }

    .footer-left {
        order: 2;
        border-top: 1px solid var(--color-gray-2);
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    .footer-right {
        order: 1;
    }

    .footer-left > *,
    .footer-right > * {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .footer-nav > .nav-link {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .footer-nav > .nav-link + .nav-link {
        margin-top: 1.5rem;
    }
}

/* ***************** */
/* Form styles */

.form-input-wrap {
    position: relative;
}

.form-input-wrap + .form-input-wrap {
    margin-top: 1.5rem;
}

.input-wrap-standard input,
.input-wrap-standard textarea {
    background-color: var(--color-white);
    font-size: 1rem;
    border: 1px solid var(--color-gray-3);
    border-radius: 8px;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    padding: 0.625rem 0.875rem;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
}

.input-wrap-standard.error input,
.input-wrap-standard.error textarea,
.input-wrap-standard.error .form-checkbox .checkbox-label::before {
    border-color: var(--color-red);
}

.input-wrap-standard > label {
    display: block;
    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42857142;
    margin-bottom: 0.375rem;
    cursor: pointer;
    user-select: none;
}

.input-wrap-standard textarea {
    min-height: 10rem;
    max-height: 10rem;
    height: 10rem;
    resize: none;
}

.input-subwrap-standard {
    position: relative;
}

.form-input.w-btn {
    padding-right: 3.25rem;
}

.form-input-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: 3.25rem;
    max-width: 3.25rem;
    width: 3.25rem;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    z-index: 1;
}

.form-input-btn > .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-gray-4);
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

[data-pass-visibility-toggle] > .icon.on {
    opacity: 0;
}

/* Password input when visibility toggled */
[type="text"] + [data-pass-visibility-toggle] > .icon.on {
    opacity: 1;
}

[type="text"] + [data-pass-visibility-toggle] > .icon.off {
    opacity: 0;
}

.form-error-box {
    display: none;
    margin-top: 0.375rem;
}

.error .form-error-box {
    display: block;
}

.form-error-box > * {
    color: var(--color-red);
    font-size: 0.75rem;
    line-height: 1.5;
}

.form-input-length {
    color: var(--color-gray-3);
    font-size: 0.875rem;
    line-height: 1.42857142;
    text-align: right;
    margin-top: 0.5rem;
}

.form-password-strength {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    user-select: none;
}

.form-password-strength > .strength-bar {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    min-height: 3px;
    max-height: 3px;
    height: 3px;
    background-color: var(--color-gray-3);
    margin-bottom: 0.25rem;
}

.form-password-strength > .strength-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    background-color: var(--color-gray-3);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.form-password-strength.weak > .strength-bar::after {
    background-color: var(--color-red);
    -webkit-transform: scaleX(0.25);
    transform: scaleX(0.25);
}

.form-password-strength.medium > .strength-bar::after {
    background-color: var(--color-yellow-2);
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.form-password-strength.strong > .strength-bar::after {
    background-color: var(--color-green);
    -webkit-transform: scaleX(0.75);
    transform: scaleX(0.75);
}

.form-password-strength.excellent > .strength-bar::after {
    background-color: var(--color-green);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.form-password-strength > .pass-strength {
    color: var(--color-gray-5);
    font-size: 0.75rem;
    text-align: right;
}

.form-password-strength.weak > .pass-strength {
    color: var(--color-red);
}

.form-password-strength.medium > .pass-strength {
    color: var(--color-yellow-2);
}

.form-password-strength.strong > .pass-strength,
.form-password-strength.excellent > .pass-strength {
    color: var(--color-green);
}

/* Checkbox */

.form-consents-wrap {
    margin-top: 1.13333333rem;
}

.form-consents-wrap .form-input-wrap:not(.mandatory) {
    padding-bottom: 0;
}

.form-consents-wrap .form-input-wrap + .form-input-wrap {
    margin-top: 0.86666666rem;
}

.form-checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 1px;
    max-width: 1px;
    width: 1px;
    min-height: 1px;
    max-height: 1px;
    height: 1px;
    opacity: 0;
}

.form-checkbox .checkbox-label {
    --checkbox-size: 1.33333333rem;
    position: relative;
    display: block;
    line-height: var(--checkbox-size);
    padding-left: calc(var(--checkbox-size) + 0.33333333rem);
    cursor: pointer;
    user-select: none;
    z-index: 1;
}

.form-checkbox .checkbox-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    min-width: var(--checkbox-size);
    max-width: var(--checkbox-size);
    width: var(--checkbox-size);
    aspect-ratio: 1 / 1;
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    z-index: 1;
}

.form-checkbox .checkbox-label::after {
    content: '';
    position: absolute;
    top: calc(var(--checkbox-size) * 0.45);
    left: calc(var(--checkbox-size) * 0.5);
    width: calc(var(--checkbox-size) * 0.35);
    height: calc(var(--checkbox-size) * 0.6);
    border: solid var(--color-primary);
    border-width: 0 2.5px 2.5px 0;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.form-checkbox input:checked + .checkbox-label::after {
    opacity: 1;
}

/* ** */

.form-captcha-wrap {
    margin-bottom: 1.66666666rem;
}

.form-info-wrap {
    margin-top: 4rem;
}

.form-mandatory-field-tip {
    margin: 2rem 0;
}

.form-forgot-pass-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.form-forgot-pass-wrap > a {
    font-size: 0.875rem;
    line-height: 1.42857142;
    font-weight: 500;
}

.form-forgot-pass-wrap > a:hover,
.form-forgot-pass-wrap > a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .form-info-wrap {
        margin-top: 3.13333333rem;
    }
}

/* MODALS */
.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(66, 66, 66, 0.4);
    backdrop-filter: blur(2px);
    z-index: 10010;
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}

.modal-backdrop.in {
    filter: alpha(opacity=100);
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    outline: 0;
    -webkit-overflow-scrolling: touch;
    z-index: var(--modal-index);
}

.modal-open {
    overflow: hidden;
}

.modal-open .site-wrapper {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-flex {
    display: -webkit-flex;
    display: flex;
    /* -webkit-align-items: center;
    align-items: center; */
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 100vh;
}

.modal-dialog {
    position: relative;
    max-width: 532px;
    width: 100%;
    /* margin-top: 7.5rem; */
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.modal-dialog.narrow {
    max-width: 442px;
}

.modal-dialog.wider {
    max-width: 688px;
}

.modal-dialog.loader-only {
    max-width: 216px;
}

.modal-content {
    position: relative;
    background-color: var(--color-white);
    border-radius: 8px;
    border: 1px solid var(--color-gray-2);
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    /* padding: 1.5rem; */
    padding: 3rem;
}

/* .modal-dialog.narrow .modal-content,
.modal-dialog.wider .modal-content {
    padding: 3rem;
} */

.modal-dialog.loader-only .modal-content {
    padding: 1.5rem;
}

.modal-header {
    display: -webkit-flex;
    display: flex;
    border-bottom: 1px solid var(--color-gray-2);
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

.modal-heading {
    color: var(--color-gray-6);
}

.modal-subheading {
    font-size: 1.125rem;
    line-height: 1.55555555;
    margin-bottom: 2.5rem;
}

.modal-box .modal-subheading {
    text-align: center;
    margin-bottom: 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    font-size: 1.5rem;
    padding: 0.4375rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-close > span {
    display: block;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.modal-close:hover > span,
.modal-close:focus-visible > span {
    display: block;
    aspect-ratio: 1 / 1;
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.modal-confirmation-text {
    font-size: 1.125rem;
    line-height: 1.55555555;
    text-align: center;
    border-top: 1px solid var(--color-gray-2);
    padding-top: 2.5rem;
    margin-top: 2.5rem;
}

.modal-box {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.modal-box + .modal-box {
    margin-top: 2.5rem;
}

.modal-box > * + * {
    margin-top: 1rem;
}

.modal-box-text {
    color: var(--color-gray-5);
    font-size: 0.875rem;
    line-height: 1.42857142;
    text-align: center;
}

.modal-box-dicount-code-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.modal-box-dicount-code-wrap > .btn-discount-code {
    font-size: 2.25rem;
    line-height: 1.55555555;
    padding-right: 2.5rem;
}

.modal-btn-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-top: 2.5rem;
}

.modal-btn-wrap > * {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.modal-btn-wrap > * + * {
    margin-top: 0.75rem;
}

/* For mac screens */
@media (max-width: 1460px) and (min-width: 992px) {
    .modal-dialog {
        max-width: calc(532px * 0.7114583);
    }

    .modal-dialog.narrow {
        max-width: calc(442px * 0.7114583);
    }

    .modal-dialog.wider {
        max-width: calc(688px * 0.7114583);
    }
}

@media (max-width: 991px) {
    .modal-flex {
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }

    .modal-dialog {
        max-width: 100%;
        width: 100%;
        height: 100%;
        /* margin-top: 2.5rem; */
        margin-top: 0;
        margin-bottom: 0;
    }

    .modal-content {
        width: 100%;
        height: 100%;
    }

    /* .modal-dialog.narrow .modal-content,
    .modal-dialog.wider .modal-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    } */
}

/* ** */

/* Loader */
.loader-wrap {
    position: absolute;
    inset: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    z-index: 999;
}

.loader-wrap.static {
    position: static;
}

.lds-ring {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 78px;
    height: 78px;
    -webkit-transform: scale(0.82051282);
    transform: scale(0.82051282);
    overflow: hidden;
}

.lds-ring div {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-primary-2);
    border-radius: 50%;
    animation: lds-ring 1.2s linear infinite;
}

.lds-ring div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
    opacity: 0.9;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
    opacity: 0.8;
}

.lds-ring div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
    opacity: 0.7;
}

.lds-ring div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
    opacity: 0.6;
}

.lds-ring div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
    opacity: 0.5;
}

.lds-ring div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
    opacity: 0.4;
}

.lds-ring div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
    opacity: 0.3;
}

.lds-ring div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
    opacity: 0.2;
}

.lds-ring div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
    opacity: 0.15;
}

.lds-ring div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
    opacity: 0.1;
}

.lds-ring div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
    opacity: 0.05;
}

@keyframes lds-ring {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

/* ** */

/* ***************** */
/* Sections */

/* Universal */

.btn {
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: max-content;
    font-weight: 500;
    line-height: 1.25;
    border-radius: 3px;
    padding: 0.8125rem 1.4375rem;
}

.btn[disabled] {
    user-select: none;
    cursor: not-allowed;
}

.btn.primary {
    background-color: var(--color-primary-1);
    color: var(--color-white);
    border: 1px solid var(--color-primary-1);
    -webkit-transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.btn.primary.reversed {
    background-color: var(--color-white);
    color: var(--color-primary-1);
}

.btn.primary.reversed.gray {
    color: var(--color-gray-6);
    border-color: var(--color-gray-3);
}

.btn.primary:not(.reversed):hover,
.btn.primary:not(.reversed):focus-visible {
    opacity: 0.9;
}

.btn.primary.reversed:hover,
.btn.primary.reversed:focus-visible {
    background-color: var(--color-gray-1);
}

.btn.primary.red {
    background-color: var(--color-red);
    color: var(--color-white);
    border: 1px solid var(--color-red);
}

.btn.primary.black {
    background-color: var(--color-blackish-2);
    color: var(--color-white);
    border: 1px solid var(--color-blackish-2);
}

.btn.primary[disabled] {
    background-color: var(--color-gray-3);
    color: var(--color-white);
    border-color: var(--color-gray-3);
}

.btn.primary.iconic > * {
    display: -webkit-flex;
    display: flex;
}

.btn.primary.iconic > .text {
    position: relative;
    padding-left: 2.1875rem;
}

.btn.primary.iconic > .text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-white);
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn.primary.reversed.iconic > .text::before {
    background-color: var(--color-primary-1);
}

.btn.primary.iconic.social > .text::before {
    -webkit-mask-image: initial;
    mask-image: initial;
    -webkit-mask-position: initial;
    mask-position: initial;
    -webkit-mask-size: initial;
    mask-size: initial;
    -webkit-mask-repeat: initial;
    mask-repeat: initial;
    -webkit-background-position: center;
    background-color: initial;
    background-image: var(--bg-url);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.btn-iconic {
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: var(--color-primary-2);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.btn-iconic[disabled] {
    user-select: none;
    cursor: not-allowed;
}

.btn-iconic > * {
    display: -webkit-flex;
    display: flex;
}

.btn-iconic > .icon {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    margin-left: 1.25rem;
}

.btn-iconic > .icon > svg {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.btn-iconic:hover,
.btn-iconic:focus-visible {
    color: var(--color-black);
}

.btn-iconic > .icon > svg * {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.btn-iconic:hover > .icon > svg *,
.btn-iconic:focus-visible > .icon > svg * {
    fill: var(--color-black);
}

.btn-iconic.black {
    color: var(--color-blackish);
}

.btn-iconic.black > .icon {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.btn-iconic.black > .icon > svg * {
    fill: var(--color-blackish);
}

.btn-iconic.black:hover,
.btn-iconic.black:focus-visible {
    color: var(--color-black);
}

.btn-iconic.black:hover > .icon > svg *,
.btn-iconic.black:focus-visible > .icon > svg * {
    fill: var(--color-black);
}

/* TOOLTIPS */

.tippy-box[data-theme~='greenmoney'] {
    background-color: var(--color-gray-6);
    color: var(--color-white);
    font-size: 0.875rem;
    line-height: 1.42857142;
    border-radius: 8px;
    padding: 0.75rem;
}

/* TOOLTIPS END */

.standard-heading {
    color: var(--color-black);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.55555555;
    text-align: center;
    margin-bottom: 0.5rem;
}

.standard-subheading {
    color: var(--color-gray-5);
    font-size: 1.125rem;
    line-height: 1.55555555;
    text-align: center;
    margin-bottom: 3rem;
}

/* For mac screens */
@media (max-width: 991px) {
    .standard-heading {
        font-size: 1.875rem;
        line-height: 1.6;
    }
}

.hoverable-logo {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.hoverable-logo:hover,
.hoverable-logo:focus-visible {
    opacity: 0.66;
}

/* ** */

/* Global padding for first section */

.site-wrapper > section + section {
    margin-top: 5rem;
}

/* Header section */

.header-section {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding-top: 10rem;
    padding-bottom: 5rem;
    z-index: 1;
}

.header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(66, 66, 66, 0.4);
    z-index: -1;
}

.header-section-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.header-section-logo-group {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 3rem;
}

.header-section-logo-group > .powered {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.header-section-logo-group > img {
    min-height: 3rem;
    max-height: 3rem;
    height: 3rem;
}

.header-section-heading {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.28571428;
    text-align: center;
    margin-bottom: 3rem;
}

.header-section-text {
    font-size: 1.125rem;
    line-height: 1.55555555;
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 991px) {
    .header-section {
        padding-top: 5rem;
    }

    .header-section-heading {
        font-size: 3rem;
        line-height: 1.25;
    }

    .header-section-button-wrap {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .header-section-button-wrap > * {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
}

/* Features section */

.features-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
}

.features-row > * {
    flex: 0 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.features-col {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}

.features-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    min-height: 400px;
    max-height: 400px;
    height: 400px;
    color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
}

.features-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    z-index: -1;
}

.features-item-inner {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
    /* overflow: hidden; */
}

.features-item-inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    height: 400px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    -webkit-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
    overflow: hidden;
    z-index: -1;
}

.features-item-heading {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-item-desc {
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    text-overflow: ellipsis;
    -moz-box-orient: vertical;
    height: auto;
    max-height: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
    -webkit-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
    overflow: hidden;
}

.features-item:hover .features-item-desc,
.features-item:focus-within .features-item-desc,
.features-item:hover .features-item-inner::before,
.features-item:focus-within .features-item-inner::before {
    max-height: 400px;
}

/* For mac screens */
@media (max-width: 1460px) and (min-width: 992px) {
    .features-row {
        margin-left: calc(-16px * 0.7114583);
        margin-right: calc(-16px * 0.7114583);
    }

    .features-row > * {
        padding-left: calc(16px * 0.7114583);
        padding-right: calc(16px * 0.7114583);
    }

    .features-item {
        min-height: calc(400px * 0.7114583);
        max-height: calc(400px * 0.7114583);
        height: calc(400px * 0.7114583);
    }

    .features-item:hover .features-item-desc,
    .features-item:focus-within .features-item-desc,
    .features-item:hover .features-item-inner::before,
    .features-item:focus-within .features-item-inner::before {
        max-height: calc(400px * 0.7114583);
    }
}

@media (max-width: 991px) {
    .features-col {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }

    .features-col + .features-col {
        margin-top: 3rem;
    }

    .features-item,
    .features-item-desc {
        min-height: auto;
        max-height: 100%;
        height: auto;
    }

    .features-item-inner {
        min-height: 100%;
        max-height: 100%;
        height: 100%;
        text-align: center;
    }
}

/* Meet section */
.meet-content-top {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
}

.meet-collab-logos {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 3rem;
}

.meet-collab-logos > * {
    display: -webkit-flex;
    display: flex;
}

.meet-collab-logos > .collab-logo img {
    min-height: 3rem;
    max-height: 3rem;
    height: 3rem;
}

.meet-collab-logos > .cross {
    margin-left: 3rem;
    margin-right: 3rem;
}

.meet-collab-logos > .cross > img {
    min-width: 2.5rem;
    max-width: 2.5rem;
    width: 2.5rem;
    aspect-ratio: 1 / 1;
}

.meet-content-text {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
}

.meet-content-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.meet-content-row > * {
    flex: 0 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.meet-content-col {
    min-width: 33.33333333%;
    max-width: 33.33333333%;
    width: 33.33333333%;
    min-height: 46.5rem;
}

.meet-content-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    /* min-height: 100%;
    max-height: 100%;
    height: 100%; */
    background-color: var(--color-white);
    border: 2px solid var(--color-black);
    border-radius: 8px;
    padding: 2.5rem;
    outline: 4px solid transparent;
    outline-offset: -4px;
    -webkit-transition: outline-color 0.3s ease;
    transition: outline-color 0.3s ease;
}

.meet-content-item:hover,
.meet-content-item:focus-within {
    outline-color: var(--color-black);
}

.meet-content-item > *:not(:last-of-type) {
    margin-bottom: 2.5rem;
}

.meet-content-item-icon {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: 5rem;
    max-width: 5rem;
    width: 5rem;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

.meet-content-item-icon.blue {
    background-color: var(--color-primary-2);
}

.meet-content-item-icon.green {
    background-color: var(--color-primary-1);
}

.meet-content-item-icon.yellow {
    background-color: var(--color-yellow);
}

.meet-content-item-icon > img {
    min-width: 3rem;
    max-width: 3rem;
    width: 3rem;
    aspect-ratio: 1 / 1;
}

.meet-content-item-mid {
    display: -webkit-flex;
    flex-direction: column;
    flex-grow: 1;
}

.meet-content-item-heading {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.55555555;
    margin-bottom: 1.5rem;
}

.meet-content-item-desc-wrap {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

.meet-content-item-desc-preview,
.meet-content-item-desc {
    display: -webkit-box;
    text-overflow: ellipsis;
    -moz-box-orient: vertical;
    hyphens: auto;
    color: var(--color-gray-6);
    line-height: var(--line-height);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.meet-content-item-desc-preview {
    position: absolute;
    top: 0;
    left: 0;
    --line-height: 1.75rem;
    -webkit-line-clamp: 2;
    max-height: calc(var(--line-height) * 2);
    font-size: 1.125rem;
}

.meet-content-item-desc {
    --line-height: 1.5rem;
    -webkit-line-clamp: 15;
    max-height: calc(var(--line-height) * 15);
    font-size: 1rem;
    opacity: 0;
}

.meet-content-item-bot {
    position: relative;
    /* flex-grow: 1; */
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    border-radius: 3px;
    overflow: hidden;
}

.meet-content-item-thumb-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    padding-bottom: 15.5rem;
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: none;
}

.meet-content-item:hover .meet-content-item-desc-preview,
.meet-content-item:focus-within .meet-content-item-desc-preview {
    opacity: 0;
}

.meet-content-item:hover .meet-content-item-desc,
.meet-content-item:focus-within .meet-content-item-desc {
    opacity: 1;
}

.meet-content-item:hover .meet-content-item-thumb-wrap,
.meet-content-item:focus-within .meet-content-item-thumb-wrap {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.meet-content-item-thumb {
    position: absolute;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    border-radius: 3px;
}

/* For mac screens */
@media (max-width: 1460px) and (min-width: 992px) {
    .meet-content-row {
        margin-left: calc(-12px * 0.7114583);
        margin-right: calc(-12px * 0.7114583);
    }

    .meet-content-row > * {
        padding-left: calc(12px * 0.7114583);
        padding-right: calc(12px * 0.7114583);
    }

    .meet-content-item-thumb-wrap {
        padding-bottom: 13rem;
    }
}

@media (max-width: 991px) {
    .meet-collab-logos > * {
        -webkit-justify-content: center;
        justify-content: center;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .meet-collab-logos > .cross {
        margin: 0;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .meet-collab-logos > .collab-logo img {
        min-height: 4rem;
        max-height: 4rem;
        height: 4rem;
    }

    .meet-content-text {
        font-size: 1rem;
    }

    .meet-content-col {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }

    .meet-content-col + .meet-content-col {
        margin-top: 1.5rem;
    }

    .meet-content-item {
        max-width: 500px;
        padding: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .meet-content-item > *:not(:last-of-type) {
        margin-bottom: 1.5rem;
    }

    .meet-content-item-heading {
        font-size: 1.875rem;
        line-height: 1.6;
    }

    .meet-content-item-desc-preview {
        display: none;
    }

    .meet-content-item-desc {
        max-height: 100%;
        opacity: 1;
        margin-bottom: 2.5rem;
    }

    .meet-content-item-thumb-wrap,
    .meet-content-item-thumb {
        position: static;
    }

    .meet-content-item-thumb-wrap {
        padding-bottom: 0;
    }

    .meet-content-item-thumb {
        min-width: auto;
        aspect-ratio: 330 / 248;
    }

    .meet-content-item:hover .meet-content-item-thumb-wrap,
    .meet-content-item:focus-within .meet-content-item-thumb-wrap {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* How it works section */
.how-section {
    background-color: var(--color-primary-2);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.how-section .standard-heading,
.how-section .standard-subheading {
    color: var(--color-white);
}

.how-section-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.how-section-row > * {
    flex: 0 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.how-section-col {
    min-width: 33.33333333%;
    max-width: 33.33333333%;
    width: 33.33333333%;
}

.how-section-col:nth-of-type(2),
.how-section-col:nth-of-type(3) {
    position: relative;
}

.how-section-col:nth-of-type(2)::before,
.how-section-col:nth-of-type(3)::before {
    content: '';
    position: absolute;
    top: 15.18987341%;
    left: 0;
    min-width: 36.36363636%;
    max-width: 36.36363636%;
    width: 36.36363636%;
    aspect-ratio: 160 / 105.66;
    background-image: url(../img/hand-draw-arrow.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

.how-section-col:nth-of-type(3)::before {
    -webkit-transform: translateX(-50%) rotateZ(180deg) scaleX(-1);
    transform: translateX(-50%) rotateZ(180deg) scaleX(-1);
}

.flex-horizontal {
    display: flex;
    flex-direction: row;
}

.align-items-center {
    align-items: center;
}

.dashboard-step-wrap .side-data {
    flex: 1;
}

.dashboard-step-wrap .side-image {
    flex: 0 0 auto;
}

.dashboard-step-wrap .side-image img {
    width: 300px;
}

.dashboard-step-wrap .noframe .side-image img {
    display: none;
}

.how-section-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 1.25rem;
}

.modal .how-section-item {
    padding: 0;
}

.how-section-item-thumb-wrap {
    position: relative;
    --thumb-number-height: 3rem;
    border-radius: 3px;
    margin-bottom: calc(var(--thumb-number-height) - 0.5rem);
}

.how-section-item-thumb-wrap > .how-section-item-btn-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.how-section-item-thumb-wrap > img {
    display: block;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 346 / 260;
    object-position: center;
    object-fit: cover;
}

.how-section-item-number {
    position: absolute;
    top: 100%;
    left: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: 3rem;
    max-width: 3rem;
    width: 3rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-primary-2);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.33333333;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.how-section-item-heading {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.26666666;
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal .how-section-item-heading {
    margin-bottom: 2.5rem;
}

.how-section-item-btn-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.how-section-item-btn-wrap + .how-section-item-btn-wrap {
    margin-top: 1.25rem;
}

.how-section-item-desc {
    margin-bottom: 2rem;
}

.how-section-item-desc {
    margin-bottom: 2rem;
}

.how-section-item-desc > * {
    color: var(--color-gray-5);
    font-size: 1.125rem;
    line-height: 1.55555555;
    padding: 0;
    margin: 0;
}

.how-section-item-desc > * + * {
    margin-top: 2rem;
}

.how-section-item-desc ul {
    list-style-type: none;
}

.how-section-item-desc ul > li + li,
.how-section-item-desc ol > li + li {
    margin-top: 1.25rem;
}

.how-section-item-desc ul > li {
    position: relative;
    padding-left: 2.5rem;
}

.how-section-item-desc ul > li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    min-width: 1.75rem;
    max-width: 1.75rem;
    width: 1.75rem;
    aspect-ratio: 1 / 1;
    background-image: url(../img/icon-check.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.how-section-item-desc ul > li > a {
    text-decoration: underline;
}

.how-section-item-desc ul > li > a:hover,
.how-section-item-desc ul > li > a:focus-visible {
    text-decoration: none;
}

/* For mac screens */
@media (max-width: 1460px) and (min-width: 992px) {
    .how-section-row {
        margin-left: calc(-20px * 0.7114583);
        margin-right: calc(-20px * 0.7114583);
    }

    .how-section-row > * {
        padding-left: calc(20px * 0.7114583);
        padding-right: calc(20px * 0.7114583);
    }
}

@media (max-width: 991px) {
    .how-section-row {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .how-section-row > * {
        flex: 0 0 auto;
        padding-left: 0;
        padding-right: 0;
    }

    .how-section-col {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .how-section-col:nth-of-type(2)::before,
    .how-section-col:nth-of-type(3)::before {
        top: 0;
        left: 0;
        min-width: 27.27272727%;
        max-width: 27.27272727%;
        width: 27.27272727%;
        aspect-ratio: 160 / 105.66;
    }

    .how-section-col:nth-of-type(2)::before {
        -webkit-transform: translate(0, -50%) rotateZ(60deg);
        transform: translate(0, -50%) rotateZ(60deg);
    }

    .how-section-col:nth-of-type(3)::before {
        left: initial;
        right: 0;
        -webkit-transform: scaleX(-1) translate(0, -50%) rotateZ(60deg);
        transform: scaleX(-1) translate(0, -50%) rotateZ(60deg);
    }

    .how-section-col + .how-section-col {
        margin-top: 1.5rem;
    }
}

/* Partners section */

.partners-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.partners-item {
    display: -webkit-flex;
    display: flex;
    margin-left: 1.6625rem;
    margin-right: 1.6625rem;
    margin-bottom: 2rem;
}

.partners-item > img {
    min-height: 3rem;
    max-height: 3rem;
    height: 3rem;
}

.partners-slider {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 5.25rem;
    overflow: hidden;
}

.partners-slide-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.partners-item-inslide {
    display: -webkit-flex;
    display: flex;
}

.partners-item-inslide + .partners-item-inslide {
    margin-top: 1.5rem;
}

.partners-item-inslide > img {
    min-height: 3.5rem;
    max-height: 3.5rem;
    height: 3.5rem;
}

.partners-slider-prev,
.partners-slider-next {
    position: absolute;
    top: 50%;
    min-width: 3rem;
    max-width: 3rem;
    width: 3rem;
    aspect-ratio: 1 / 1;
    background-image: url(../img/icon-slider-arrow.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.partners-slider-prev {
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.partners-slider-next {
    right: 0;
    -webkit-transform: translateY(-50%) rotateZ(180deg);
    transform: translateY(-50%) rotateZ(180deg);
}

/* FAQ section */

.accordions-content {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-top: 1px solid var(--color-gray-7);
}

.accordion-head {
    position: relative;
    min-height: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.55555555;
    text-align: left;
    padding: 1.5rem;
    padding-right: 4.725rem;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.accordion-head::before,
.accordion-head::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.5rem;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-black);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity 0.3s ease, background-color 0.3s ease;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.accordion-head::before {
    -webkit-mask-image: url(../img/icon-acc-open.svg);
    mask-image: url(../img/icon-acc-open.svg);
    background-color: var(--color-black);
}

.accordion-head::after {
    -webkit-mask-image: url(../img/icon-acc-close.svg);
    mask-image: url(../img/icon-acc-close.svg);
    background-color: var(--color-primary-1);
    opacity: 0;
}

.accordion-head:not(.collapsed)::before {
    opacity: 0;
}

.accordion-head.collapsed:hover,
.accordion-head.collapsed:focus-visible {
    background-color: var(--color-gray-1);
}

.accordion-head.collapsed:hover::before,
.accordion-head.collapsed:focus-visible::before {
    background-color: var(--color-primary-1);
}

.accordion-head:not(.collapsed)::after {
    opacity: 1;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.accordion-body > * {
    color: var(--color-gray-6);
}

.accordion-head:not(.collapsed),
.collapse.in > .accordion-body {
    background-color: var(--color-gray-1);
}

/* CTA section */
.cta-container {
    background-color: var(--color-gray-1);
}

.cta-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    padding: 2rem;
}

.cta-icon-wrap {
    margin-bottom: 2rem;
}

.cta-icon-wrap > img {
    min-width: 3rem;
    max-width: 3rem;
    width: 3rem;
    aspect-ratio: 1 / 1;
}

.cta-heading {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.875;
    margin-bottom: 0.5rem;
}

.cta-desc {
    font-size: 1.125rem;
    line-height: 1.55555555;
    text-align: center;
    margin-bottom: 2rem;
}

/* Privacy policy section */
.privacy-section {
    padding-top: 10rem;
}

.privacy-content ul,
.privacy-content ol {
    margin: 0;
}

.privacy-content > ul + ul,
.privacy-content > ol + ol,
.privacy-content > * + * {
    margin-top: 3rem;
}

.privacy-content ul > li + *,
.privacy-content ul > li > * + *,
.privacy-content ol > li + *,
.privacy-content ol > li > * + * {
    margin-top: 1.5rem;
}

/* CALCULATOR */

/* Calculator section */
.calculator-section {
    position: relative;
    min-height: 100vh;
    padding-top: 11.125rem;
    overflow: hidden;
}

.calculator-section > .container-calc {
    position: relative;
}

.wave-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 3840px;
    max-width: 3840px;
    width: 3840px;
    aspect-ratio: 3840 / 2160;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.calculator-section .wave-bg {
    top: 0;
    -webkit-transform: translate(-50%, -35%);
    transform: translate(-50%, -35%);
}

/* For mac screens */
/* @media (max-width: 1460px) and (min-width: 1200px) {
    .calculator-section .wave-bg {
        min-width: calc(3840px * 0.7114583);
        max-width: calc(3840px * 0.7114583);
        width: calc(3840px * 0.7114583);
    }
} */

.calculator-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -24px;
    margin-right: -24px;
}

.calculator-row > * {
    flex: 0 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.calculator-col {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    min-height: 45.5rem;
}

.calculator-col.left {
    min-width: 42.66666666%;
    max-width: 42.66666666%;
    width: 42.66666666%;
}

.calculator-col.right {
    min-width: 57.33333333%;
    max-width: 57.33333333%;
    width: 57.33333333%;
}

.calculator-content-left {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 12.5rem;
}

.calculator-step-number {
    position: relative;
    color: var(--color-primary-2);
    font-size: 18.75rem;
    line-height: 1;
    user-select: none;
}

.calculator-step-number::before {
    content: attr(data-tab-counter);
    position: absolute;
    top: -0.375rem;
    left: -0.5rem;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    background-color: var(--color-primary-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--color-primary-1);
    z-index: -1;
}

.calculator-content-right {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-3);
    border-radius: 8px;
    padding: 2.5rem;
}

.calculator-tab:not(.active) {
    display: none;
}

.calculator-content-heading {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.55555555;
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-tip-wrap {
    margin-bottom: 3rem;
    text-align: right;
}

.calculator-tip-wrap > button {
    color: var(--color-gray-4);
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-decoration: underline;
}

.calculator-tip-wrap > button:hover,
.calculator-tip-wrap > button:focus-visible {
    text-decoration: none;
}

.calculator-modal-tip-button-wrap > * {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.calculator-tip-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 3rem;
}

.calculator-tip-content-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-4);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.calculator-tip-content-item-thumb-wrap {
    display: -webkit-flex;
    display: flex;
    margin-right: 2.5rem;
}

.calculator-tip-content-item-thumb-wrap > img {
    min-height: 3.3125rem;
    max-height: 3.3125rem;
    height: 3.3125rem;
}

.calculator-tip-content-item-text-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.calculator-tip-content-item-text-wrap > * + * {
    margin-top: 0.25rem;
}

.calculator-tip-content-item-text-wrap > .heading {
    font-size: 1.125rem;
    line-height: 1.55555555;
}

.calculator-tip-content-item-text-wrap > .desc {
    color: var(--color-gray-6);
    font-size: 0.875rem;
    line-height: 1.42857142;
}

.calculator-btn-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: 1.5rem;
}

.calculator-btn-wrap > * {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
}

.calculator-btn-wrap > * > * {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.calculator-btn-wrap.full > * {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.calculator-pagination {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: auto;
}

[data-tabs="2"] .calculator-pagination {
    display: none;
}

.calculator-pagination-item {
    display: -webkit-flex;
    display: flex;
    margin: 0 0.25rem 0.25rem;
}

.calculator-pagination-item > button {
    position: relative;
    min-width: 0.5rem;
    max-width: 0.5rem;
    width: 0.5rem;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-primary-2);
    border-radius: 50%;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
}

.calculator-pagination-item > button::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-primary-2);
    opacity: 0;
}

.calculator-pagination-item > button:hover::before,
.calculator-pagination-item > button:focus-visible::before {
    opacity: 0.66;
}

.calculator-pagination-item.active > button::before {
    opacity: 1;
}

.calculator-contents {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 3rem;
}

.calculator-contents[data-choice-no]:not(.active) {
    display: none;
}

.calculator-details-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.calculator-details-row + .calculator-details-row {
    margin-top: 1rem;
}

.calculator-details-row > * {
    flex: 0 0 auto;
    padding-left: 8px;
    padding-right: 8px;
}

/* .calculator-details-col:nth-of-type(1) {
    min-width: 59.58188153%;
    max-width: 59.58188153%;
    width: 59.58188153%;
}

.calculator-details-col:nth-of-type(2) {
    min-width: 40.41811846%;
    max-width: 40.41811846%;
    width: 40.41811846%;
} */

.calculator-details-col:nth-of-type(1) {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}

.calculator-details-col:nth-of-type(2) {
    min-width: 40%;
    max-width: 40%;
    width: 40%;
}

.calculator-details-col:nth-of-type(3) {
    min-width: 10%;
    max-width: 10%;
    width: 10%;
}

.calculator-details-heading {
    color: var(--color-gray-6);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42857142;
}

.calculator-contents > section + section {
    border-bottom: 1px solid var(--color-gray-3);
}

.calculator-contents > section:not(:last-of-type) {
    margin-bottom: 2.5rem;
}

.calculator-partners-sub-heading {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.calculator-whatelse-sub-heading {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.33333333;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Wave for > 4k */
@media (min-width: 3841px) {
    .wave-bg {
        min-width: 100vw;
        max-width: 100vw;
        width: 100vw;
    }
}

@media (max-width: 991px) {
    .calculator-section {
        padding-top: 1.5rem;
    }

    .wave-bg {
        top: 0;
        min-width: 150%;
        max-width: 150%;
        width: 150%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .calculator-col.left,
    .calculator-col.right {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }

    .calculator-step-number {
        font-size: 9.375rem;
        line-height: 1;
        margin-bottom: 4.6875rem;
    }

    .calculator-content-left {
        margin-top: 0;
    }

    .calculator-content-right {
        padding: 1.5rem;
    }

    .calculator-content-heading {
        font-size: 2rem;
        line-height: 1.75;
    }

    .calculator-details-col:nth-of-type(1),
    .calculator-details-col:nth-of-type(2),
    .calculator-btn-wrap > * {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .calculator-details-col + .calculator-details-col,
    .calculator-btn-wrap > .calculator-btn-col + .calculator-btn-col {
        margin-top: 1rem;
    }

    .calculator-tip-content-item > * {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .calculator-tip-content-item > * + * {
        margin-top: 1.5rem;
    }

    .calculator-tip-content-item-thumb-wrap {
        margin-right: 0;
    }

    .calculator-btn-wrap {
        margin-left: 0;
        margin-right: 0;
    }

    .calculator-btn-wrap > * {
        padding-left: 0;
        padding-right: 0;
    }

    .calculator-btn-wrap.special {
        border-bottom: 1px solid var(--color-gray-3);
        padding-bottom: 3rem;
        margin-bottom: 3rem;
    }
}

/* BOX RADIOS COMPONENT */
.box-radios-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.box-radios-row > * {
    flex: 0 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.box-radio-col {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}

.box-radio-col + .box-radio-col + .box-radio-col {
    margin-top: 1.5rem;
}

.box-radio-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: var(--color-white);
    text-align: center;
    border: 1px solid var(--color-gray-6);
    border-radius: 8px;
    outline: 2px solid transparent;
    outline-offset: -2px;
    padding: 2.25rem;
    -webkit-transition: outline-color 0.3s ease;
    transition: outline-color 0.3s ease;
    cursor: pointer;
}

.box-radio-item::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-gray-6);
    -webkit-mask-image: url(../img/icon-done.svg);
    mask-image: url(../img/icon-done.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, background-color 0.3s ease;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.box-radio-item:hover::after,
.box-radio-item:focus-within::after {
    opacity: 1;
}

.box-radio-wrap {
    position: relative;
}

.box-radio-wrap > input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.box-radio-wrap > input:checked + .box-radio-item {
    outline-color: var(--color-black);
}

.box-radio-wrap > input:checked + .box-radio-item::after {
    background-color: var(--color-primary-1);
    opacity: 1;
}

.box-radio-icon {
    position: relative;
    min-width: 4rem;
    max-width: 4rem;
    width: 4rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-gray-3);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.box-radio-icon > img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.box-radio-text {
    font-size: 1.125rem;
    line-height: 1.55555555;
    user-select: none;
}

@media (max-width: 991px) {
    .box-radio-col {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .box-radio-col + .box-radio-col,
    .box-radio-col + .box-radio-col + .box-radio-col {
        margin-top: 1.5rem;
    }
}

/* BOX RADIOS COMPONENT END */

/* BOX CHECKBOX COMPONENT */
.box-checkbox-wrap {
    position: relative;
}

.box-checkbox-wrap > input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.box-checkbox-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-3);
    border-radius: 8px;
    padding: 0.625rem 2.5rem 0.625rem 2.875rem;
    cursor: pointer;
    user-select: none;
}

.box-checkbox-item::before,
.box-checkbox-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0.875rem;
    min-width: 1.25rem;
    max-width: 1.25rem;
    width: 1.25rem;
    aspect-ratio: 1 / 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box-checkbox-item::before {
    background-color: var(--color-wite);
    border: 1px solid var(--color-gray-3);
    border-radius: 4px;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    z-index: 1;
}

.box-checkbox-item::after {
    background-image: url(../img/icon-check.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.box-checkbox-item:hover::after,
.box-checkbox-item:focus-within::after {
    opacity: 0.66;
}

.box-checkbox-wrap > input:checked + .box-checkbox-item::before {
    border-color: var(--color-black)
}

.box-checkbox-wrap > input:checked + .box-checkbox-item::after {
    opacity: 1;
}

/* BOX CHECKBOX COMPONENT END */

/* SELECT COMPONENT */
.standard-select.selectize-control.single .selectize-input {
    position: relative;
    background-color: var(--color-white);
    background-image: none;
    background-repeat: initial;
    border-color: var(--color-gray-3);
    border-radius: 8px;
    box-shadow: none;
    padding: 0.625rem 2.875rem 0.625rem 0.875rem;
}

.standard-select .selectize-dropdown,
.selectize-input,
.selectize-input input,
.selectize-input > input {
    color: var(--color-black);
    font-size: 1rem;
    line-height: 1.5 !important;
    max-height: 1.5;
}

.selectize-input > input {
    line-height: 1.5 !important;
    max-height: 1.5rem !important;
}

.selectize-dropdown .create,
.selectize-dropdown .no-results,
.selectize-dropdown .optgroup-header,
.selectize-dropdown .option {
    padding: 0.625rem 2.875rem 0.625rem 0.875rem;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input:not(:read-only) {
    cursor: pointer;
}

.selectize-dropdown .active:not(.selected) {
    background-color: var(--color-gray-2);
    color: var(--color-black);
}

.selectize-dropdown .selected {
    background-color: var(--color-gray-1);
    color: var(--color-black);
}

.selectize-input > .item + input {
    display: none !important;
}

.selectize-control.single .selectize-input::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.875rem;
    min-width: 1.25rem;
    max-width: 1.25rem;
    width: 1.25rem;
    min-height: 1.25rem;
    max-height: 1.25rem;
    height: 1.25rem;
    background-image: url(../img/icon-chevron.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: none;
    margin: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.selectize-control.single .selectize-input.dropdown-active::after {
    margin: 0;
    border: none;
    -webkit-transform: translateY(-50%) rotateZ(180deg);
    transform: translateY(-50%) rotateZ(180deg);
}

.selectize-dropdown {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-3);
    margin: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.selectize-dropdown-content {
    max-height: 20rem;
}

.standard-select.selectize-control.single .selectize-input.dropdown-active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectize-dropdown .option {
    position: relative;
}

.selectize-dropdown .option::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.875rem;
    min-width: 1.25rem;
    max-width: 1.25rem;
    width: 1.25rem;
    min-height: 1.25rem;
    max-height: 1.25rem;
    height: 1.25rem;
    background-color: var(--color-black);
    -webkit-mask-image: url(../img/icon-done.svg);
    mask-image: url(../img/icon-done.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.selectize-dropdown .selected::after {
    opacity: 1;
}

/* SELECT COMPONENT END */

/* COIN BOXES COMPONENT */
.coin-boxes-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.coin-boxes-row > * {
    flex: 0 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.coin-boxes-col {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}

.coin-boxes-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border: 2px solid var(--color-black);
    border-radius: 8px;
    padding: 2.5rem;
}

.coin-boxes-item > * + * {
    margin-top: 1.5rem;
}

.coin-boxes-item-icon {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: 5rem;
    max-width: 5rem;
    width: 5rem;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

.coin-boxes-item-icon.blue {
    background-color: var(--color-primary-2);
}

.coin-boxes-item-icon.green {
    background-color: var(--color-primary-1);
}

.coin-boxes-item-icon > img {
    min-width: 3rem;
    max-width: 3rem;
    width: 3rem;
    aspect-ratio: 1 / 1;
}

.coin-boxes-desc {
    font-size: 0.875rem;
    line-height: 1.42857142;
}

.coin-boxes-featured {
    color: var(--color-blackish);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.55555555;
}

@media (max-width: 991px) {
    .coin-boxes-col {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .coin-boxes-col + .coin-boxes-col {
        margin-top: 1.5rem;
    }
}

/* COIN BOXES COMPONENT END */

/* DETAILS BOX COMPONENT */
.details-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 8px;
    padding: 2.875rem 2.5rem;
}

.details-box.noframe {
    background-color: transparent;
    border: none;
}

.details-box-heading {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.55555555;
    margin-bottom: 1.5rem;
}

.details-box-btn-wrap {
    margin-bottom: 0.625rem;
}

.details-box-tip {
    color: var(--color-gray-5);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (max-width: 991px) {
    .details-box {
        padding: 1.5rem;
    }
}

/* DETAILS BOX COMPONENT END */

/* AUTH */
/* Auth section */
.auth-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 100vh;
}

.auth-row > * {
    flex: 0 0 auto;
}

.auth-col {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}

.auth-col-item,
.auth-col-item > * {
    min-height: 100%;
    max-height: 100%;
    height: 100%;
}

.auth-thumb > img {
    display: block;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-content-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 6.25rem 11.25rem;
}

.auth-logo-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.auth-logo-wrap img {
    min-height: 3rem;
    max-height: 3rem;
    height: 3rem;
}

.auth-heading {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 3rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.auth-subheading {
    color: var(--color-gray-5);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-btn-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2rem;
}

.auth-btn-wrap > * {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.auth-btn-wrap > * + * {
    margin-top: 1rem;
}

.auth-btn-wrap-separator-text,
.auth-alternate-wrap {
    color: var(--color-gray-5);
    font-size: 0.875rem;
    line-height: 1.42857142;
    text-align: center;
}

.auth-btn-wrap-separator-text > a {
    font-weight: 500;
    text-decoration: underline;
}

.auth-btn-wrap-separator-text > a:hover,
.auth-btn-wrap-separator-text > a:focus-visible {
    text-decoration: none;
}

.auth-alternate-wrap > * > a {
    color: var(--color-black);
    font-weight: 500;
}

.auth-alternate-wrap > * > a:hover,
.auth-alternate-wrap > * > a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .auth-col {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .auth-col:nth-of-type(2) {
        display: none;
    }

    .auth-content-wrap {
        padding: 2.5rem;
    }
}

/* Auth single section */
.auth-single-section {
    padding-top: 6rem;
    overflow: hidden;
}

.auth-single-section > .container {
    min-height: 100vh;
    position: relative;
}

.auth-single-content-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.auth-btn-wrap.reset {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* DASHBOARD */
/* Sidebar */
.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    min-width: var(--dashboard-sidebar-width);
    max-width: var(--dashboard-sidebar-width);
    width: var(--dashboard-sidebar-width);
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    z-index: var(--dashboard-sidebar-index);
}

.dashboard-sidebar-menu-wrap {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    background-color: var(--color-primary-2);
    color: var(--color-white);
    padding: 2rem 1.5rem;
}

.dashboard-sidebar-top {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dashboard-sidebar-brand {
    display: -webkit-flex;
    display: flex;
}

.dashboard-sidebar-brand > img {
    display: block;
    min-height: 3rem;
    max-height: 3rem;
    height: 3rem;
}

.dashboard-sidebar-collapse {
    flex-grow: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-right: -1.5rem;
    padding-right: 1.5rem;
    /* overflow-y: auto;
    scrollbar-width: thin; */
}

.dashboard-sidebar-scrollable,
.dashboard-sidebar-stable {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.dashboard-sidebar-stable {
    margin-top: auto;
}

.dashboard-sidebar-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.dashboard-sidebar-menu-item + .dashboard-sidebar-menu-item {
    margin-top: 0.25rem;
}

.dashboard-sidebar-menu-item > a {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 6px;
    padding: 0.5rem 0.5rem 0.5rem 3rem;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.dashboard-sidebar-menu-item > a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0.75rem;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-white);
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.dashboard-sidebar-menu-item > a:hover,
.dashboard-sidebar-menu-item > a:focus-visible,
.dashboard-sidebar-menu-item.active > a {
    background-color: var(--color-secondary-2);
}

.dashboard-user-content {
    position: relative;
    display: -webkit-flex;
    display: flex;
    border-top: 1px solid var(--color-whiteish);
    padding-top: 1.5rem;
    padding-right: 2.75rem;
    margin-top: 1.5rem;
    user-select: none;
}

.user-photo-wrap {
    position: relative;
    min-width: 2.5rem;
    max-width: 2.5rem;
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    margin-right: 0.5rem;
    user-select: none;
}

.user-photo-wrap > img {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-position: center;
    object-fit: cover;
    border-radius: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.user-details-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-size: 0.875rem;
    line-height: 1.42857142;
}

.user-details-wrap > * {
    word-wrap: break-word;
    word-break: break-all;
}

.user-logout-btn {
    position: absolute;
    top: 1rem;
    right: 0;
    min-width: 2.25rem;
    max-width: 2.25rem;
    width: 2.25rem;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.user-logout-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--color-white);
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.user-logout-btn:hover,
.user-logout-btn:focus-visible {
    background-color: var(--color-secondary-2);
}

.dashboard-sidebar-btn-wrap {
    display: -webkit-flex;
    display: flex;
}

.calculator-toggle {
    display: block;
    position: relative;
    min-width: 3rem;
    max-width: 3rem;
    width: 3rem;
    aspect-ratio: 1 / 1;
    margin-right: 0.5rem;
}

.calculator-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-black);
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

@media (max-width: 991px) {
    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        min-height: auto;
        max-height: 100%;
        height: auto;
    }

    .dashboard-sidebar-menu-wrap {
        background-color: var(--color-white);
        padding: 1rem 1.5rem;
    }

    .dashboard-sidebar-top {
        margin-bottom: 0;
    }

    .dashboard-sidebar-collapse {
        position: absolute;
        top: 100%;
        right: 1.5rem;
        min-width: var(--dashboard-sidebar-width);
        max-width: var(--dashboard-sidebar-width);
        width: var(--dashboard-sidebar-width);
        min-height: calc(100vh - var(--dashboard-mobile-menu-height));
        max-height: calc(100vh - var(--dashboard-mobile-menu-height));
        height: calc(100vh - var(--dashboard-mobile-menu-height));
        background-color: var(--color-primary-2);
        padding: 2rem 1.5rem;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
    }

    .navbar-open .dashboard-sidebar-collapse {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media (max-width: 575px) {
    .dashboard-sidebar-collapse {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
}

/* Dashboard content */
.dashboard-page-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.dashboard-wrap {
    min-height: 100vh;
    background-color: var(--color-gray-1);
    padding: 2rem 2rem 3.375rem;
    margin-left: var(--dashboard-sidebar-width);
}

/* .dashboard-wrap > section:not(:last-of-type) {
    border-bottom: 1px solid var(--color-gray-3);
} */

@media (max-width: 991px) {
    .dashboard-wrap {
        padding: 2rem 1.5rem 3.375rem;
        margin-left: 0;
        margin-top: var(--dashboard-mobile-menu-height);
    }
}

/* Dashboard header section */
.dashboard-header-section {
}

.dashboard-header-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-gray-3);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-header-wrap.no-border {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 2.5rem;
}

.dashboard-heading {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.6;
}

.dashboard-heading + .dashboard-heading-btn-wrap {
    margin-left: 1rem;
}

.dashboard-subheading {
    font-size: 1.125rem;
    line-height: 1.55555555;
    margin-bottom: 2.5rem;
}

/* Dashboard step section */
.dashboard-step-section {
    margin-bottom: 1.5rem;
}

.dashboard-step-wrap {
    padding: 2rem 2.5rem;
    padding-top: 0.5rem;
}

.dashboard-step-wrap.w-border {
    border-bottom: 1px solid var(--color-gray-3);
}

.dashboard-step-wrap.frame {
    padding: 0;
}

.dashboard-step-wrap + .dashboard-step-wrap {
    margin-top: 1.5rem;
}

.dashboard-step-heading {
    position: relative;
    color: var(--color-primary-1);
    font-size: 1.25rem;
    font-weight: 500;
    padding-left: 4.5rem;
}

.dashboard-step-heading::before,
.dashboard-step-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    aspect-ratio: 1 / 1;
}

.dashboard-step-heading::before {
    left: 0;
    min-width: 2.5rem;
    max-width: 2.5rem;
    width: 2.5rem;
    background-color: var(--color-primary-1);
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.dashboard-step-heading::after {
    left: calc(2.5rem / 2);
    min-width: 1.25rem;
    max-width: 1.25rem;
    width: 1.25rem;
    background-color: var(--color-white);
    mask-image: url(../img/icon-done.svg);
    -webkit-mask-image: url(../img/icon-done.svg);
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* DASHBOARD STEPS COLLAPSE */
.dashboard-step-collapse > *:last-child {
    margin-bottom: 1.625rem;
}

.dashboard-step-collapse-btn:not(.collapsed) > .text-collapsed,
.dashboard-step-collapse-btn.collapsed > .text-visible {
    display: none;
}

.dashboard-step-collapse-btn > .icon {
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.dashboard-step-collapse-btn:not(.collapsed) > .icon {
    -webkit-transform: rotateZ(270deg);
    transform: rotateZ(270deg);
}

/* ** */

@media (max-width: 991px) {
    .dashboard-step-wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .dashboard-step-heading {
        padding-top: 4rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .dashboard-step-heading::before,
    .dashboard-step-heading::after {
        top: 1.5rem;
    }

    .dashboard-step-heading::before {
        left: 1.5rem;
    }

    .dashboard-step-heading::after {
        left: 2.75rem;
    }
}

/* DETAILS BOX COMPONENT MODIFICATIONS FOR DASHBOARD STEP FRAP */
.dashboard-step-wrap > .details-box {
    position: relative;
    padding: 2.875rem 7rem 3.5rem;
}

.dashboard-step-wrap > .details-box.noframe {
    padding: 2.5rem 7rem;
}

.dashboard-step-wrap > .details-box::before {
    content: attr(data-step-no);
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    min-width: 2.5rem;
    max-width: 2.5rem;
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: var(--color-primary-2);
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.55555555;
    border: 1px solid var(--color-primary-2);
    border-radius: 50%;
}

.dashboard-step-wrap > .details-box.noframe::before {
    background-color: transparent;
    color: var(--color-primary-2);
}

.dashboard-step-wrap > .details-box.checked::before {
    content: '';
    background-color: var(--color-primary-1);
    border-color: var(--color-primary-1);
}

.dashboard-step-wrap > .details-box.checked::after {
    content: '';
    position: absolute;
    top: 3.125rem;
    left: 3.125rem;
    min-width: 1.25rem;
    max-width: 1.25rem;
    width: 1.25rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-white);
    mask-image: url(../img/icon-done.svg);
    -webkit-mask-image: url(../img/icon-done.svg);
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

@media (max-width: 991px) {
    .dashboard-step-wrap > .details-box,
    .dashboard-step-wrap > .details-box.noframe {
        padding: 1.5rem;
        padding-top: 5.5rem;
    }

    .dashboard-step-wrap > .details-box::before {
        top: 1.5rem;
        left: 1.5rem;
    }
}

/* DETAILS BOX COMPONENT MODIFICATIONS FOR DASHBOARD STEP FRAP END */

/* Dashboard activities section */
.dashboard-activities-section {
}

.dashboard-activities-section + .dashboard-activities-section:not(.no-border) {
    border-top: 1px solid var(--color-gray-3);
    padding-top: 2.5rem;
    margin-top: 2.5rem;
}

/* DASHBOARD ROW COMPONENT */
.dashboard-row-component {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.dashboard-row-component > * {
    flex: 0 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.dashboard-row-col.rewards + .dashboard-row-col.rewards + .dashboard-row-col.rewards {
    margin-top: 2rem;
}

.dashboard-row-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.dashboard-row-component + .dashboard-row-component {
    margin-top: 1.5rem;
}

@media (max-width: 991px) {
    .dashboard-row-component + .dashboard-row-component {
        border-top: 1px solid var(--color-gray-3);
        padding-top: 3rem;
        margin-top: 1.5rem;
    }

    .dashboard-row-col + .dashboard-row-col {
        margin-top: 0.5rem;
    }

    .dashboard-row-col.rewards + .dashboard-row-col.rewards + .dashboard-row-col.rewards,
    .dashboard-row-col.rewards + .dashboard-row-col.rewards {
        margin-top: 1.5rem;
    }
}

/* DASHBOARD ROW COMPONENT END */

/* DASHBOARD BOX COMPONENT */
.dashboard-box-component {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    background-color: var(--color-white);
    border: 1px solid var(--color-whiteish);
    border-radius: 8px;
    -moz-box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    -webkit-box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    padding: 1.5rem;
}

.dashboard-box-component.noframe {
    background-color: transparent;
    border: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dashboard-box-component > * + * {
    margin-top: 1.5rem;
}

.dashboard-box-component-header {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.dashboard-box-component-header-top {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.dashboard-box-component-header-top > .icon {
    position: relative;
    display: -webkit-flex;
    display: flex;
    min-width: 3rem;
    max-width: 3rem;
    width: 3rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-gray-1);
    border-radius: 50%;
    margin-right: 1.25rem;
}

.dashboard-box-component-header-top > .icon::before,
.dashboard-box-component-header-top > .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: 1 / 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dashboard-box-component-header-top > .icon::before {
    min-width: 2rem;
    max-width: 2rem;
    width: 2rem;
    background-color: var(--color-white);
    border-radius: 50%;
}

.dashboard-box-component-header-top > .icon::after {
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    background-color: var(--color-black);
    mask-image: var(--bg-url);
    -webkit-mask-image: var(--bg-url);
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.dashboard-box-component-header-top > .text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.55555555;
}

.dashboard-box-component-header-top + .dashboard-box-component-header-bot {
    margin-top: 0.5rem;
}

.dashboard-box-component-header-bot > .tip {
    color: var(--color-gray-8);
}

.dashboard-box-component-body {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.dashboard-box-component-body > * + * {
    margin-top: 1rem;
}

.dashboard-box-component-body > .text {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.22222222;
}

.dashboard-box-component-body > .tip {
    position: relative;
    color: var(--color-gray-8);
    font-size: 0.875rem;
    line-height: 1.42857142;
}

.dashboard-box-component-body > .tip.green {
    color: var(--color-primary-1);
}

.dashboard-box-component-body > .tip.yellow {
    color: var(--color-yellow-2);
}

.dashboard-box-component-body > .tip.iconic {
    padding-left: 1.5rem;
}

.dashboard-box-component-body > .tip.iconic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    min-width: 1.25rem;
    max-width: 1.25rem;
    width: 1.25rem;
    aspect-ratio: 1 / 1;
    background-color: currentColor;
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translate(0, -50%) rotateZ(-90deg);
    transform: translate(0, -50%) rotateZ(-90deg);
}

.dashboard-box-component-footer {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-top: 1px solid var(--color-gray-3);
    padding-top: 1.5rem;
}

.dashboard-box-component-footer > .tip {
    color: var(--color-gray-8);
}

.dashboard-box-component-footer > .tip + .dashboard-box-component-balance {
    margin-top: 0.25rem;
}

.dashboard-box-component-balance {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.55555555;
}

.dashboard-box-component-balance > .currency {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Rewards in box component */
.dashboard-reward-thumb-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    /* aspect-ratio: 484 / 272; */
    min-height: 25rem;
    background-image: var(--bg-url);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem;
}

.modal-box > .dashboard-reward-badge-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.dashboard-reward-badge {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    max-height: max-content;
    background-color: var(--color-gray-1);
    border-radius: 64px;
    padding: 0.75rem;
    text-decoration: none; /* remove underline */
    color: inherit;        /* inherit text color */
}

.dashboard-reward-badge > img {
    display: block;
    min-width: 2.5rem;
    max-width: 2.5rem;
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 0.75rem;
}

#claim_success_modal_company_logo {
    display: block;
    min-width: 2.5rem;
    max-width: 2.5rem;
    width: 2.5rem;
    /* aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%; */
    margin-right: 0.75rem;
}

.dashboard-reward-badge-link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none; /* remove underline */
    color: inherit; /* inherit text color */
}

.dashboard-reward-badge-text {
    font-size: 0.6rem;
    font-weight: 500;
    line-height: 1.42857142;
}

.dashboard-reward-text-content {
    font-weight: 500;
    line-height: 1.25;
}

.dashboard-reward-price-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.dashboard-reward-check-offer-wrap {
    display: flex;
    justify-content: center;
}

.dashboard-reward-check-offer-wrap a {
    width: auto;
}

.dashboard-reward-price-wrap > .icon {
    min-width: 2rem;
    max-width: 2rem;
    width: 2rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-black);
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    margin-right: 1rem;
}

.modal-box > .dashboard-reward-price-wrap {
    -webkit-justify-content: center;
    justify-content: center;
}

.dashboard-reward-claim-btn-wrap > * {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.dashboard-reward-claim-btn-wrap > * + * {
    margin-top: 1.5rem;
}

.dashboard-reward-timer {
    color: var(--color-gray-5);
    font-size: 0.875rem;
    line-height: 1.42857142;
    margin-top: 1rem;
}

.dashboard-reward-timer > span {
    color: var(--color-black);
    font-weight: 500;
}

@media (max-width: 991px) {
    .noframe .dashboard-box-component-header-top {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .noframe .dashboard-box-component-body-btn-wrap > * {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .noframe .dashboard-box-component-header-top > .text,
    .noframe .dashboard-box-component-header-top > .tip,
    .dashboard-box-component-header-bot > .text,
    .dashboard-box-component-header-bot > .tip {
        text-align: center;
    }

    .dashboard-reward-thumb-wrap {
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        min-height: 9.2725rem;
    }

    .dashboard-reward-price-wrap .dashboard-box-component-balance {
        font-size: 1.875rem;
        line-height: 1.6;
    }

    .dashboard-reward-price-wrap .dashboard-box-component-balance > span {
        font-size: 1.125rem;
        line-height: 1.55555555;
    }
}

/* DASHBOARD BOX COMPONENT END */

/* DASHBOARD DICOUNT CODES COMPONENT */
.dashboard-discount-codes {
    list-style-type: none;
    padding: 0;
    margin: 0;
    user-select: none;
}

.dasboard-discount-code {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-gray-3);
    padding: 1.5rem 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.dashboard-discount-code-left {
    display: -webkit-flex;
    display: flex;
    padding-right: 1.5rem;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.dasboard-discount-code.expired .dashboard-discount-code-left {
    opacity: 0.5;
    pointer-events: none;
}

.dashboard-dicount-code-logo {
    min-width: 6.25rem;
    max-width: 6.25rem;
    width: 6.25rem;
    min-height: 3rem;
    max-height: 3rem;
    height: 3rem;
    background-image: var(--bg-url);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 1.5rem;
}

.btn-discount-code {
    position: relative;
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 2.2rem;
    padding-right: 2.125rem;
}

.btn-discount-code::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-gray-5);
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.dashboard-discount-code-right {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.code-remove-btn-wrap {
    margin-bottom: 1rem;
}

.code-remove-btn {
    position: relative;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
}

.code-remove-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-gray-5);
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.code-remove-btn:hover::after,
.code-remove-btn:focus-visible::after {
    -webkit-transform: translate(-50%, -50%) rotateZ(90deg);
    transform: translate(-50%, -50%) rotateZ(90deg);
}

.code-valid-info {
    color: var(--color-gray-5);
    font-size: 0.875rem;
    line-height: 1.42857142;
}

.code-valid-info > span {
    color: var(--color-black);
    font-weight: 500;
}

.dashboard-discount-codes-btn-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 2.5rem;
}

@media (max-width: 991px) {
    .dasboard-discount-code {
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .dashboard-discount-code-left {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .dashboard-discount-code-bot {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        margin-top: 0.25rem;
    }

    .dashboard-dicount-code-logo {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

/* DASHBOARD DICOUNT CODES COMPONENT END */

/* NOTIFICATIONS COMPONENT */
.notifications-wrapper {
    position: fixed;
    top: 3.5rem;
    left: 50%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    padding: 0 1.5rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: var(--notifications-index);
    pointer-events: none;
    user-select: none;
}

.notification-items {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
}

.notification-item {
    position: relative;
    max-width: 100%;
    background-color: var(--color-gray-3);
    border: 1px solid var(--color-gray-5);
    border-radius: 4px;
    padding: 1rem;
    padding-left: 3rem;
    pointer-events: none;
    user-select: none;
}

.notification-item::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    min-width: 1.25rem;
    max-width: 1.25rem;
    width: 1.25rem;
    aspect-ratio: 1 / 1;
    background-color: var(--color-gray-5);
    -webkit-mask-image: var(--bg-url);
    mask-image: var(--bg-url);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.notification-item + .notification-item {
    margin-top: 1rem;
}

.notification-item > p {
    color: var(--color-notification-text);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42857142;
    pointer-events: none;
    user-select: none;
}

.notification-item.notification-good {
    background-color: var(--color-green-2);
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.notification-item.notification-good::before {
    background-color: var(--color-green);
}

.notification-item.notification-bad {
    background-color: var(--color-white);
    color: var(--color-red);
    border: 1px solid var(--color-red);
}

.notification-item.notification-bad::before {
    background-color: var(--color-red);
}

@media (max-width: 991px) {
    .notifications-wrapper {
        top: 5rem;
    }

    .notification-item {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .notification-item > p {
        text-align: center;
    }
}

/* NOTIFICATIONS COMPONENT END */

/* PAGINATION COMPONENT */
.dashboard-pagination-component {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: 1.5rem;
}

.dashboard-pagination-component-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-top: 1px solid var(--color-gray-2);
    padding-top: 1.2rem;
}

.dashboard-pagination-control-btn {
    position: relative;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: max-content;
    color: var(--color-gray-4);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42857142;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.dashboard-pagination-controls {
    display: -webkit-flex;
    display: flex;
}

.dashboard-pagination-controls.prev {
    margin-right: 1.5rem;
}

.dashboard-pagination-controls.next {
    margin-left: 1.5rem;
}

.dashboard-pagination-control-btn:hover,
.dashboard-pagination-control-btn:focus-visible {
    color: var(--color-gray-6);
}

.dashboard-pagination-control-btn.prev {
    padding-left: 1.75rem;
}

.dashboard-pagination-control-btn.next {
    padding-right: 1.75rem;
}

.dashboard-pagination-control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    min-width: 1.25rem;
    max-width: 1.25rem;
    width: 1.25rem;
    aspect-ratio: 1 / 1;
    background-color: currentColor;
    -webkit-mask-image: url(../img/icon-arrow.svg);
    mask-image: url(../img/icon-arrow.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.dashboard-pagination-control-btn.prev::before {
    left: 0;
    -webkit-transform: translate(0, -50%) rotateZ(180deg);
    transform: translate(0, -50%) rotateZ(180deg);
}

.dashboard-pagination-control-btn.next::before {
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.dashboard-pagination-nav {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.dashboard-pagination-nav-item > button {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: 2.5rem;
    max-width: 2.5rem;
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    color: var(--color-gray-4);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42857142;
    border-radius: 50%;
    border: 1px solid transparent;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.dashboard-pagination-nav-item > button:hover,
.dashboard-pagination-nav-item > button:focus-visible,
.dashboard-pagination-nav-item.active > button {
    color: var(--color-gray-6);
    border-color: var(--color-gray-4);
}

@media (max-width: 991px) {
    .dashboard-pagination-component {
        padding-left: 0;
        padding-right: 0;
    }

    .dashboard-pagination-component-wrap {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        border-top: 1px solid var(--color-gray-4);
    }

    .dashboard-pagination-controls {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .dashboard-pagination-controls.prev {
        order: 1;
        margin: 0;
    }

    .dashboard-pagination-controls.next {
        order: 2;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        margin: 0;
    }

    .dashboard-pagination-nav {
        order: 3;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        margin-top: 1.5rem;
    }
}

/* PAGINATION COMPONENT END */

/* Dashboard account section */
.dashboard-account-section {

}

.dashboard-account-wrap + .dashboard-account-wrap {
    border-top: 1px solid var(--color-gray-3);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.dashboard-account-action-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 30.4375rem;
}

.dashboard-account-action-wrap + .dashboard-account-action-wrap {
    margin-top: 0.5rem;
}

.dashboard-account-action-wrap.action-btn-mobile {
    margin-top: 1.5rem;
}

.dashboard-account-action-left {
    margin-right: 1.5rem;
}

.dashboard-account-action-label {
    font-size: 1.125rem;
    line-height: 1.55555555;
}

.dashboard-account-action-link {
    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42857142;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.dashboard-account-action-link:hover,
.dashboard-account-action-link:focus-visible {
    color: var(--color-black);
}

.dashboard-account-action-text {
    color: var(--color-gray-5);
    font-size: 0.875rem;
    line-height: 1.42857142;
}

.dashboard-account-action-form-wrap {
    max-width: 51.5rem;
    width: 100%;
}

.dashboard-account-action-form-label {
    color: var(--color-gray-6);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42857142;
    cursor: pointer;
}

.dashboard-account-action-input-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.dashboard-account-action-input-row > * {
    flex: 0 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.dashboard-account-action-input-row-label-col {
    min-width: 36.44859813%;
    max-width: 36.44859813%;
    width: 36.44859813%;
}

.dashboard-account-action-input-row-input-col {
    min-width: 63.55140186%;
    max-width: 63.55140186%;
    width: 63.55140186%;
}

.dashboard-account-action-input-row-input-col > * {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.dashboard-account-action-form-btn-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.dashboard-account-action-form-btn-row > * {
    flex: 0 0 auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.dashboard-account-action-form-btn-col {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}

.dashboard-account-action-form-btn-col > * {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 991px) {
    .dashboard-account-action-wrap + .dashboard-account-action-wrap {
        margin-top: 1rem;
    }

    .dashboard-account-action-link {
        color: var(--colog-black);
    }

    .dashboard-account-action-wrap,
    .dashboard-account-action-form-wrap {
        max-width: 100%;
    }

    .dashboard-account-action-input-row-label-col,
    .dashboard-account-action-input-row-input-col,
    .dashboard-account-action-form-btn-col {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .dashboard-account-action-input-row-label-col {
        margin-bottom: 1rem;
    }

    .dashboard-account-action-form-btn-col {
        margin-bottom: 1rem;
    }

    .dashboard-account-action-form-btn-col:nth-of-type(1) {
        order: 2;
    }

    .dashboard-account-action-form-btn-col:nth-of-type(2) {
        order: 2;
    }
}

/* NUMBER WITH ARROWS COMPONENT */
.input-number-arrows {
    display: -webkit-flex;
    display: flex;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
}

.input-number-arrows > * {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.input-number-arrows > .input-wrap {
    flex-grow: 1;
}

.input-number-arrows input {
    -moz-appearance: textfield;
    color: var(--color-black);
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    padding: 0.625rem 0.875rem;
    margin: 0;
}

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

.input-number-arrows input,
.input-number-arrows .number-input-arrow {
    min-height: 2.875rem;
    max-height: 2.875rem;
    height: 2.875rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-3);
    border-radius: 8px;
}


.input-number-arrows .number-input-arrow {
    aspect-ratio: 1 / 1;
    padding: 0;
    margin: 0;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
}

.custom-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: flex; /* Align icon and text horizontally */
    align-items: center; /* Center-align content vertically */
    padding: 8px 12px; /* Adjust padding as needed */
    height: 32px; /* Match the icon size, adjust as necessary */
    line-height: 1; /* Prevent extra spacing */
}

.dropdown-menu li img {
    width: 24px; /* Icon width */
    height: 24px; /* Icon height */
    margin-right: 8px; /* Add spacing between icon and text */
    object-fit: contain; /* Maintain aspect ratio */
}

.language-icon {
    width: 24px;
    height: 24px;
    object-fit: contain; /* Ensures the image maintains its aspect ratio */
}

.card-info {
    margin-top: 10px;
    border-radius: 10px;
    background-image: url(../../../app/assets/img/PH_card.png);
    background-size: cover;
    max-width: 450px;
    max-height: 254px;
    color: #FFFFFF;
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px;
}

.card-info__card-title {
    margin-top: 90px;
    font-size: 20px;
    font-weight: 600;
}

.card-info__address-section {
    display: flex;
    gap: 20px;
}

.card-info__wallet-address {
    margin-top: 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-word;
}

.card-info__wallet-copy {
    width: 24px;
    cursor: pointer;
}

.card-info__balance {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 22px;
}

.action-tooltip {
    position: fixed;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    pointer-events: none;
    z-index: 9999;
}

.no-padding-mobile {
    padding: 0;
}

.withdraw-tokens-group {
    margin-top: 35px;
}

.withdraw-tokens-group p {
    color: #a6a6a6;
    text-align: right;
}

.withdraw-tokens-buttons {
    display: flex;
    position: fixed;
    gap: 10px;
    bottom: 0;
    left: 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    padding: 15px;
}

.withdraw-instruction-button {
    color: var(--color-primary-1);
}

.withdraw-instruction-box {
    height: 400px;
    overflow-y: auto;
    border-top: 1px solid var(--color-gray-2);
    padding-top: 25px;
    margin-bottom: 25px;
}

.form-input {
    border-radius: 5px;
    background-color: white;
    padding: 15px;
    border: 1px solid #EAECF0;
    margin-bottom: 15px;
}

.btn-wide {
    width: 100%;
    display: flex !important;
    justify-content: space-between !important;
}

.opacity-0 {
    opacity: 0.0;
}

.w-50 {
    width: 50%;
}

@media (min-width: 768px) {
    .wallet-desktop {
        display: block;
    }

    .wallet-mobile {
        display: none;
    }

    .withdraw-desktop {
        display: block;
    }

    .withdraw-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .wallet-desktop {
        display: none;
    }

    .wallet-mobile {
        display: block;
    }

    .withdraw-desktop {
        display: none;
    }

    .withdraw-mobile {
        display: block;
    }

    .clean-top {
        padding-top: 0 !important;
        border-top: 0 !important;
    }

    .margin-top-0 {
        margin-top: 0 !important;
    }
}
