/* =========================================================
   MOXIE WEBSITE STYLES
   CLEAN / VALIDATED VERSION
   ========================================================= */


/* =========================================================
   BASIC PAGE SETUP
   ========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #0d1b35;
    background: #ffffff;
    line-height: 1.5;
}


/* =========================================================
   BOX SIZING
   ========================================================= */

html,
body,
header,
nav,
main,
section,
footer,
div,
a,
button,
input,
textarea,
select,
label,
img {
    box-sizing: border-box;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
    width: 100%;
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 20px;
    border-bottom: 1px solid #e9edf3;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 20;
}


/* =========================================================
   MOXIE HEADER LOGO
   ========================================================= */


.brand {
    flex: 0 1 360px;
    width: 360px;
    max-width: 360px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin-left: -20px;
    margin-right: 0;

    padding: 6px 12px;

    border: 2px solid #0d1b35;
    border-radius: 10px;

    overflow: hidden;
    background: #ffffff;
}

.brand img {
    display: block;
    width: 150px;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}
/* =========================================================
   MAIN NAVIGATION LINKS
   ========================================================= */

.navbar nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0;
}

.navbar nav a {
    color: #26334b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.navbar nav a:hover {
    color: #ff5b1a;
}


/* =========================================================
   NAVIGATION ACTION BUTTONS
   ========================================================= */

.nav-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 92px 5% 100px;
    background: linear-gradient(
        135deg,
        #f4f8ff 0%,
        #ffffff 48%,
        #effcf8 100%
    );
}

.hero-content {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #0878c9;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.05;
    margin: 18px 0;
}

.hero h1 span {
    color: #ff5b1a;
}

.hero p {
    font-size: 19px;
    line-height: 1.6;
    color: #536177;
    max-width: 750px;
    margin: 0 auto 30px;
}


/* =========================================================
   SEARCH PANEL
   ========================================================= */

.search-panel {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    gap: 10px;
    max-width: 950px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 45px rgba(16, 35, 60, 0.12);
}

.search-panel input {
    width: 100%;
    min-width: 0;
    padding: 15px;
    border: 1px solid #e1e7ef;
    border-radius: 10px;
    font-size: 15px;
}

.small-note {
    font-size: 13px;
    margin-top: 16px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    max-width: 1250px;
    margin: 0 auto;
    padding: 80px 5%;
}

.section-heading {
    text-align: center;
    margin-bottom: 38px;
}

.section-heading h2 {
    font-size: 40px;
    margin: 10px 0;
}

.section-heading p {
    color: #657188;
    font-size: 17px;
}

.grid {
    display: grid;
    gap: 18px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 18px;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    background: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
    font-size: 30px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(16, 35, 60, 0.10);
}

.service-card strong {
    font-size: 17px;
}

.service-card span {
    font-size: 13px;
    color: #718096;
}


/* =========================================================
   TRUST SECTION
   ========================================================= */

.trust-section {
    padding: 85px 5%;
    background: #0d1b35;
    color: #ffffff;
}

.trust-section .eyebrow {
    color: #4fd2b2;
}

.trust-section p {
    color: #c9d2df;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card {
    padding: 28px;
    border: 1px solid #2a3c59;
    border-radius: 16px;
    background: #172844;
}

.trust-card b {
    font-size: 18px;
}

.trust-card p {
    color: #bdc8d8;
    line-height: 1.6;
}


/* =========================================================
   HOW MOXIE WORKS
   ========================================================= */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.steps div {
    padding-top: 18px;
    border-top: 3px solid #0d8fca;
}

.steps span {
    font-size: 13px;
    font-weight: 900;
    color: #ff5b1a;
}

.steps h3 {
    margin-bottom: 8px;
}

.steps p {
    color: #667085;
    line-height: 1.5;
}


/* =========================================================
   BUSINESS SECTION
   ========================================================= */

.businesses {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: none;
    padding: 80px 10%;
    background: #f4f7fb;
}

.businesses h2 {
    font-size: 42px;
    margin: 12px 0;
}

.businesses p {
    max-width: 650px;
    color: #5d697b;
    line-height: 1.7;
    font-size: 17px;
}

.business-points {
    display: grid;
    gap: 14px;
}

.business-points div {
    padding: 18px;
    border-radius: 12px;
    background: #ffffff;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(16, 35, 60, 0.06);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 5%;
    border-top: 1px solid #e7ebf0;
    color: #667085;
}


/* =========================================================
   MOXIE SEARCH RESULTS
   ========================================================= */

.moxie-results {
    padding: 90px 6%;
    background: #f7f9fc;
}

.results-header {
    max-width: 1100px;
    margin: 0 auto 40px;
    text-align: center;
}

.results-header h2 {
    font-size: 42px;
    color: #101d3a;
    margin: 10px 0;
}

.results-header h2 strong {
    color: #f26535;
}

.results-header p {
    color: #667085;
    font-size: 18px;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.provider-card {
    padding: 28px;
    border: 1px solid #e3e8ef;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(16, 29, 58, 0.08);
    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(16, 29, 58, 0.13);
}

.provider-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.provider-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #102044;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
}

.provider-card h3 {
    margin: 0;
    color: #101d3a;
    font-size: 20px;
}

.provider-service {
    margin: 5px 0 0;
    color: #667085;
}

.provider-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 10px;
}

.provider-rating strong {
    color: #f26535;
}

.provider-rating span {
    color: #667085;
}

.verified-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    background: #e7f8f2;
    color: #087f68;
    font-size: 13px;
    font-weight: 700;
}

.provider-description {
    min-height: 52px;
    color: #667085;
    line-height: 1.6;
}

.provider-stats {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
    color: #526071;
    font-size: 14px;
}

.provider-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.provider-actions .btn {
    width: 100%;
}

.no-results {
    max-width: 650px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 12px 35px rgba(16, 29, 58, 0.08);
}

.no-results-icon {
    font-size: 48px;
}

.no-results h3 {
    color: #101d3a;
}

.no-results p {
    color: #667085;
    line-height: 1.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .navbar {
        gap: 16px;
    }

 .brand img {
    width: 250px;
    max-width: 250px;
}

    .navbar nav {
        gap: 12px;
    }

    .navbar nav a {
        font-size: 13px;
    }

    .nav-actions {
        gap: 6px;
    }

    .btn {
        padding: 10px 14px;
    }
}


/* =========================================================
   SMALL LAPTOP / TABLET
   ========================================================= */

@media (max-width: 900px) {

    .navbar {
        min-height: 72px;
        padding: 7px 4%;
    }

 .brand img {
    width: 220px;
    max-width: 220px;
}

    .navbar nav {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .businesses {
        grid-template-columns: 1fr;
        padding-left: 5%;
        padding-right: 5%;
    }

    .provider-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .navbar {
        min-height: 68px;
        padding: 6px 4%;
        gap: 10px;
    }

 .brand {
    min-width: 0;
    width: auto;
    max-width: 190px;
    flex: 1 1 auto;
}

   .brand img {
    width: 190px;
    max-width: 190px;
}

    .nav-actions {
        margin-left: auto;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .nav-actions .btn {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 12px;
    }

    .hero {
        padding: 60px 5%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .search-panel {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 5%;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .services-grid,
    .trust-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .businesses h2 {
        font-size: 32px;
    }

    .moxie-results {
        padding: 60px 20px;
    }

    .results-header h2 {
        font-size: 30px;
    }

    .provider-grid {
        grid-template-columns: 1fr;
    }

    .provider-actions {
        grid-template-columns: 1fr;
    }

    .no-results {
        padding: 35px 25px;
    }
}
/* =========================================================
   MOXIE BUSINESS LOGIN / REGISTRATION MODAL
   PROFESSIONAL CENTRED LAYOUT
   ========================================================= */

.moxie-request-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 20px;

    background: rgba(13, 27, 53, 0.55);

    z-index: 9999;

    overflow-y: auto;
}


.moxie-request-modal {
    width: 100%;
    max-width: 620px;

    max-height: calc(100vh - 60px);

    overflow-y: auto;

    margin: auto;

    padding: 34px;

    background: #ffffff;

    border: 1px solid #e3e8ef;

    border-radius: 20px;

    box-shadow:
        0 24px 70px rgba(13, 27, 53, 0.25);

    position: relative;
}


.moxie-modal-close {
    position: absolute;

    top: 16px;
    right: 18px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f2f5f8;

    color: #26334b;

    font-size: 24px;

    line-height: 1;

    cursor: pointer;
}


.moxie-modal-close:hover {
    background: #e8edf3;
}


.moxie-request-header {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding-right: 45px;

    margin-bottom: 28px;
}


.moxie-request-badge {
    flex: 0 0 auto;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #102044;

    color: #ffffff;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;
}


.moxie-request-eyebrow {
    margin-bottom: 6px;

    color: #0878c9;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.moxie-request-modal h2 {
    margin: 0 0 8px;

    color: #101d3a;

    font-size: 30px;

    line-height: 1.2;
}


.moxie-request-modal p {
    margin: 0;

    color: #667085;

    line-height: 1.55;
}


.moxie-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-bottom: 18px;
}


.moxie-field {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-bottom: 18px;
}


.moxie-field label {
    color: #26334b;

    font-size: 13px;

    font-weight: 800;
}


.moxie-field input,
.moxie-field select,
.moxie-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 14px;

    border: 1px solid #d9e0ea;

    border-radius: 10px;

    background: #ffffff;

    color: #172033;

    font-family: inherit;

    font-size: 15px;

}


.moxie-field input:focus,
.moxie-field select:focus,
.moxie-field textarea:focus {
    border-color: #0878c9;

    box-shadow:
        0 0 0 3px rgba(8, 120, 201, 0.10);
}


.moxie-field textarea {
    resize: vertical;

    min-height: 100px;
}


.moxie-form-actions {
    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 12px;

    margin-top: 22px;
}


.moxie-button-primary,
.moxie-button-secondary {
    min-height: 44px;

    padding: 11px 18px;

    border-radius: 10px;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;
}


.moxie-button-primary {
    border: 1px solid #ff5b1a;

    background: #ff5b1a;

    color: #ffffff;
}


.moxie-button-primary:hover {
    background: #e94f12;
}


.moxie-button-secondary {
    border: 1px solid #d9e0ea;

    background: #ffffff;

    color: #26334b;
}


.moxie-button-secondary:hover {
    background: #f5f7fa;
}


#moxieBusinessLoginMessage,
#moxieBusinessMessage {
    padding: 12px 14px;

    border-radius: 10px;

    background: #f4f7fb;

    color: #526071;

    font-size: 14px;

    line-height: 1.5;
}


@media (max-width: 600px) {

    .moxie-request-overlay {
        padding: 15px;
    }


    .moxie-request-modal {
        max-height: calc(100vh - 30px);

        padding: 25px 20px;

        border-radius: 16px;
    }


    .moxie-request-header {
        gap: 12px;

        padding-right: 35px;
    }


    .moxie-request-badge {
        width: 48px;
        height: 48px;
    }


    .moxie-request-modal h2 {
        font-size: 25px;
    }


    .moxie-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .moxie-form-actions {
        flex-direction: column-reverse;

        align-items: stretch;
    }


    .moxie-button-primary,
    .moxie-button-secondary {
        width: 100%;
    }

}
/* =========================================================
   MOXIE BUSINESS LOGIN
   FINAL PROFESSIONAL LAYOUT
   ========================================================= */

#moxieBusinessLoginModal {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(13, 27, 53, 0.58);

    z-index: 99999;

    overflow-y: auto;
}


#moxieBusinessLoginModal .moxie-request-modal {
    position: relative;

    width: 100%;
    max-width: 460px;

    margin: auto;

    padding: 40px;

    background: #ffffff;

    border: 1px solid #e2e7ee;

    border-radius: 22px;

    box-shadow:
        0 25px 70px rgba(13, 27, 53, 0.28);

    box-sizing: border-box;
}


/* Close button */

#moxieBusinessLoginModal .moxie-modal-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #f3f5f8;

    color: #26334b;

    font-size: 24px;

    line-height: 1;

    cursor: pointer;
}


#moxieBusinessLoginModal .moxie-modal-close:hover {
    background: #e7ebf0;
}


/* Header */

#moxieBusinessLoginModal .moxie-request-header {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 16px;

    width: 100%;

    margin: 0 0 30px;

    padding: 0 42px 0 0;

    box-sizing: border-box;
}


#moxieBusinessLoginModal .moxie-request-badge {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #102044;

    color: #ffffff;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;
}


#moxieBusinessLoginModal .moxie-request-eyebrow {
    margin: 0 0 6px;

    color: #0878c9;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;

    line-height: 1.3;
}


#moxieBusinessLoginModal h2 {
    margin: 0 0 8px;

    color: #101d3a;

    font-size: 30px;

    font-weight: 800;

    line-height: 1.2;
}


#moxieBusinessLoginModal .moxie-request-header p {
    margin: 0;

    color: #667085;

    font-size: 14px;

    line-height: 1.55;
}


/* Form */

#moxieBusinessLoginModal form {
    width: 100%;

    margin: 0;

    padding: 0;
}


#moxieBusinessLoginModal .moxie-field {
    width: 100%;

    margin: 0 0 20px;

    padding: 0;
}


#moxieBusinessLoginModal .moxie-field label {
    display: block;

    width: 100%;

    margin: 0 0 8px;

    color: #26334b;

    font-size: 13px;

    font-weight: 800;

    text-align: left;
}


#moxieBusinessLoginModal .moxie-field input {
    display: block;

    width: 100%;

    height: 48px;

    margin: 0;

    padding: 0 14px;

    box-sizing: border-box;

    border: 1px solid #d7dee8;

    border-radius: 10px;

    background: #ffffff;

    color: #172033;

    font-family: inherit;

    font-size: 15px;

    outline: none;
}


#moxieBusinessLoginModal .moxie-field input:focus {
    border-color: #0878c9;

    box-shadow:
        0 0 0 3px rgba(8, 120, 201, 0.10);
}


/* Message */

#moxieBusinessLoginModal #moxieBusinessLoginMessage {
    width: 100%;

    box-sizing: border-box;

    margin: 4px 0 18px;

    padding: 11px 13px;

    border-radius: 9px;

    background: #f4f7fb;

    color: #526071;

    font-size: 13px;

    line-height: 1.5;

    text-align: left;
}


/* Buttons */

#moxieBusinessLoginModal .moxie-form-actions {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

    width: 100%;

    margin: 26px 0 0;

    padding: 0;
}


#moxieBusinessLoginModal .moxie-button-secondary,
#moxieBusinessLoginModal .moxie-button-primary {
    min-width: 125px;

    height: 46px;

    padding: 0 18px;

    box-sizing: border-box;

    border-radius: 10px;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;
}


#moxieBusinessLoginModal .moxie-button-secondary {
    border: 1px solid #d7dee8;

    background: #ffffff;

    color: #26334b;
}


#moxieBusinessLoginModal .moxie-button-secondary:hover {
    background: #f5f7fa;
}


#moxieBusinessLoginModal .moxie-button-primary {
    border: 1px solid #ff5b1a;

    background: #ff5b1a;

    color: #ffffff;
}


#moxieBusinessLoginModal .moxie-button-primary:hover {
    background: #e94f12;
}


/* Registration link */

#moxieBusinessLoginModal form > p {
    margin: 24px 0 0;

    padding-top: 20px;

    border-top: 1px solid #edf0f4;

    color: #667085;

    font-size: 13px;

    line-height: 1.5;

    text-align: center;
}


#moxieBusinessLoginModal form > p a {
    color: #0878c9;

    font-weight: 800;

    text-decoration: none;
}


#moxieBusinessLoginModal form > p a:hover {
    text-decoration: underline;
}


/* Mobile */

@media (max-width: 600px) {

    #moxieBusinessLoginModal {
        padding: 15px;
    }


    #moxieBusinessLoginModal .moxie-request-modal {
        max-width: 100%;

        padding: 30px 22px;

        border-radius: 18px;
    }


    #moxieBusinessLoginModal .moxie-request-header {
        gap: 12px;

        margin-bottom: 25px;
    }


    #moxieBusinessLoginModal .moxie-request-badge {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }


    #moxieBusinessLoginModal h2 {
        font-size: 25px;
    }


    #moxieBusinessLoginModal .moxie-form-actions {
        flex-direction: column-reverse;

        align-items: stretch;
    }


    #moxieBusinessLoginModal .moxie-button-secondary,
    #moxieBusinessLoginModal .moxie-button-primary {
        width: 100%;
    }

}
/* =========================================================
   MOXIE MODAL FOCUS FIX
   ========================================================= */

.moxie-request-modal input:focus,
.moxie-request-modal textarea:focus,
.moxie-request-modal select:focus {
    outline: 2px solid #2674c9;
    outline-offset: 2px;
    border-color: #2674c9;
    box-shadow: 0 0 0 3px rgba(38, 116, 201, 0.12);
}
/* =========================================================
   MOXIE ACCESSIBLE FOCUS STYLING
   ========================================================= */

.moxie-request-modal input:focus,
.moxie-request-modal textarea:focus,
.moxie-request-modal select:focus,
.moxie-request-modal button:focus {
    outline: 2px solid #2674c9;
    outline-offset: 2px;
    border-color: #2674c9;
    box-shadow: 0 0 0 3px rgba(38, 116, 201, 0.12);
}
/* Customer login close button */
#moxieLoginModal .moxie-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    z-index: 1000;
    pointer-events: auto;
    cursor: pointer;
}
/* =========================================================
   MOXIE CUSTOMER LOGIN CLOSE BUTTON
   FINAL CLICK FIX
   ========================================================= */

#moxieLoginModal .moxie-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1000001;

    cursor: pointer;

    pointer-events: auto;

    border: 0;
    border-radius: 50%;

    background: #f1f4f7;
    color: #12213d;

    font-size: 28px;
    line-height: 1;
}

#moxieLoginModal .moxie-modal-close:hover {
    background: #e6ebf0;
}