:root {
    --pink: #d81b60;
    --pink2: #ff3d81;
    --light: #fff1f6;
    --ink: #202124;
    --muted: #70757d;
    --line: #e9e9ed;
    --mobase-gray: #18191b;
    --off-white: #f5f5f5;
    --container-width: 1180px;
}


/* ============================================================
   RESET / GLOBAL
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #fff8fa;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

button,
input,
select,
textarea {
    max-width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

a {
    -webkit-tap-highlight-color: transparent;
}

.no-decoration {
    text-decoration: none !important;
}

.no-decoration,
.no-decoration:hover,
.no-decoration:focus,
.no-decoration:active,
.no-decoration:visited {
    text-decoration: none !important;
}

[hidden] {
    display: none !important;
}


/* ============================================================
   COMMON
   ============================================================ */

.text-center {
    text-align: center;
}

.required::after {
    content: " *";
    color: red;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    min-width: 0;
}


/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    margin: 20px 0;
    line-height: 1.5;
}

.breadcrumb > * {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.breadcrumb a {
    color: #666a72;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #202124;
}

.breadcrumb-separator {
    color: #c8cacf;
    font-size: 13px;
    user-select: none;
}

.breadcrumb-current {
    color: #92959c;
    min-width: 0;
}


/* ============================================================
   COMMON LOADER
   ============================================================ */

.common-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 80px;
    margin: 28px 0 0;
}

.common-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #f3d9e3;
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: commonSpinner .7s linear infinite;
}

@keyframes commonSpinner {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   COMMON MESSAGE
   ============================================================ */

.common-message {
    width: 100%;
    margin: 0 0 24px;
    padding: 30px 20px;
    text-align: center;
    font-size: 15px;
    color: #70737a;
}


/* ============================================================
   FOOTER
   ============================================================ */

footer#support {
    width: 100%;
    background: var(--ink);
    color: #70757d;
    border-top: 1px solid #f1e5e9;
}

footer#support .footer-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 52px 24px 46px;
    display: grid;
    grid-template-columns:
        1.7fr
        1fr
        1.2fr
        1.05fr
        1.15fr;
    gap: 34px;
    align-items: start;
}

footer#support .footer-brand {
    min-width: 0;
}

footer#support .footer-brand .logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 13px;
    font-size: 25px;
    font-weight: 800;
    color: #f5f5f5;
}

footer#support .footer-brand .logo span {
    color: var(--pink);
}

footer#support .footer-brand p {
    margin: 0;
    max-width: 260px;
    color: #8a8f96;
    font-size: 13px;
    line-height: 1.7;
}

footer#support .footer-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

footer#support .footer-column h3 {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

footer#support .footer-column > a {
    margin-bottom: 10px;
    color: #777d85;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.55;
}

footer#support .footer-column > a:hover {
    color: var(--pink);
}

footer#support .footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer#support .footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececef;
    border-radius: 9px;
    background: #fff;
    color: #555;
}

footer#support .footer-social svg {
    width: 18px;
    height: 18px;
}

footer#support .footer-bottom {
    background: #18191b;
}

footer#support .footer-bottom-inner {
    max-width: var(--container-width);
    margin: auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #9a9ea5;
    font-size: 11px;
}


/* ============================================================
   BUTTON
   ============================================================ */

.btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: 0;
    border-radius: 11px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--pink2),
        var(--pink)
    );
    color: #fff;
}


/* ============================================================
   LARGE SCREEN
   ============================================================ */

@media (min-width: 1400px) {

    .container {
        padding-left: 32px;
        padding-right: 32px;
    }

    footer#support .footer-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 800px) {

    footer#support {
        margin-top: 45px;
    }

    footer#support .footer-inner {
        padding: 42px 20px 38px;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }

    footer#support .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    footer#support .footer-brand p {
        max-width: 100%;
    }

    footer#support .footer-bottom {
        padding-bottom: 60px;
    }

    footer#support .footer-bottom-inner {
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
    }

    footer#support .footer-bottom-inner > * {
        width: 100%;
        text-align: center;
    }

}