/* =========================================================
   GLOBAL FRONT
   ========================================================= */

.front-page-content {
    width: 100%;
    position: relative;
}


/* =========================================================
   TOPBAR
   ========================================================= */

.topbar-main {
    width: 100%;
    height: 31px;
    background: #142f76;
    color: #ffffff;
    position: relative;
    z-index: 10000;
}

.topbar-container {
    width: 100%;
    max-width: 1515px;
    height: 31px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topbar-contact {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.topbar-link:hover {
    color: #ffffff;
    opacity: .8;
}

.topbar-icon {
    margin-right: 4px;
    font-size: 12px;
}

.topbar-flag {
    margin-right: 4px;
    font-size: 15px;
}

.topbar-phone {
    margin-left: 8px;
}

.topbar-separator {
    width: 1px;
    height: 15px;
    margin: 0 8px;
    background: rgba(255,255,255,.7);
}

.topbar-linkedin {
    width: 20px;
    height: 20px;
    justify-content: center;
}

.topbar-linkedin-icon {
    font-size: 13px;
}


/* =========================================================
   HEADER
   ========================================================= */

.header-main {
    width: 100%;
    min-height: 98px;
    background: #ffffff;
    position: relative;
    z-index: 9999;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.header-container {
    width: 100%;
    max-width: 1000px;
    min-height: 98px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
}

.header-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.header-logo {
    display: block;
    width: 142px;
    height: auto;
    object-fit: contain;
}

.header-navigation {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 23px;
}

.header-nav-link {
    height: 100%;
    display: inline-flex;
    align-items: center;
    color: #111111;
    background: transparent;
    border: 0;
    padding: 0;
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}

.header-nav-link:hover {
    color: #35108e;
}

.header-dropdown-button {
    padding: 0;
}

.header-dropdown-icon,
.header-language-icon {
    margin-left: 5px;
    font-size: 10px;
    transition: transform .2s ease;
}

.header-industry-dropdown,
.header-language {
    height: 100%;
    position: relative;
}


/* =========================================================
   DROPDOWN ACTIVE STATES
   ========================================================= */

/* Industry dropdown open */
.header-industry-dropdown.is-open .header-dropdown-icon {
    transform: rotate(180deg);
}

/* Language dropdown open */
.header-language.is-open .header-language-icon {
    transform: rotate(180deg);
}


/* =========================================================
   INDUSTRY MEGA MENU
   ========================================================= */

.header-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;

    width: 1000px;
    max-width: calc(100vw - 30px);

    transform: translateX(-50%) translateY(8px);

    background: #ffffff;

    border-top: 2px solid #35108e;

    box-shadow: 0 10px 30px rgba(0,0,0,.12);

    padding: 10px 20px 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 10001;
}

/*
 * IMPORTANT:
 * JavaScript adds .is-open
 */
.header-industry-dropdown.is-open .header-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/*
 * Backward compatibility with old JS/CSS
 */
.header-industry-dropdown.header-open .header-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.header-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.header-mega-item {
    min-height: 48px;
    padding: 9px 20px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #17213f;

    text-decoration: none;

    border-bottom: 1px solid #eeeeee;

    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;

    transition:
        color .15s ease,
        background-color .15s ease;
}

.header-mega-item:hover {
    color: #35108e;
    background: #faf9ff;
}

.header-mega-item i {
    width: 22px;
    min-width: 22px;
    color: #142f76;
    font-size: 20px;
}

.header-mega-item:hover i {
    color: #35108e;
}


/* =========================================================
   LANGUAGE
   ========================================================= */

.header-language-menu {
    position: absolute;

    top: 100%;
    right: 0;

    min-width: 150px;

    background: #ffffff;

    border-top: 2px solid #35108e;

    box-shadow: 0 10px 30px rgba(0,0,0,.12);

    padding: 7px 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 10001;
}

/*
 * JavaScript uses .is-open
 */
.header-language.is-open .header-language-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/*
 * Backward compatibility
 */
.header-language.header-open .header-language-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-language-item {
    display: block;

    padding: 10px 18px;

    color: #222222;

    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 14px;

    text-decoration: none;

    transition:
        color .15s ease,
        background-color .15s ease;
}

.header-language-item:hover {
    color: #35108e;
    background: #f7f5ff;
}


/* =========================================================
   SEARCH
   ========================================================= */

.header-search-button {
    width: 50px;
    height: 50px;

    margin-left: 8px;

    border: 0;
    border-radius: 14px;

    background: #f1f1f1;
    color: #111111;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 18px;

    transition:
        background-color .2s ease,
        color .2s ease;
}

.header-search-button:hover {
    background: #e8e8e8;
    color: #35108e;
}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

.header-mobile-button {
    display: none;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 42px;

    margin-left: auto;

    padding: 0;

    border: 0;
    background: transparent;

    color: #111111;

    font-size: 27px;

    cursor: pointer;

    transition: color .2s ease;
}

.header-mobile-button:hover {
    color: #35108e;
}

.header-mobile-button i {
    line-height: 1;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.header-mobile-menu {
    display: none;
}


/* =========================================================
   MOBILE LANGUAGE
   ========================================================= */

.header-mobile-language {
    position: relative;
}

.header-mobile-language-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 5px;

    border: 0;

    background: transparent;

    color: #111111;

    text-align: left;

    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}

.header-mobile-language-button i {
    font-size: 11px;

    transition: transform .2s ease;
}

.header-mobile-language.is-open
.header-mobile-language-button i {
    transform: rotate(180deg);
}

.header-mobile-language-menu {
    display: none;

    padding-left: 15px;
}

.header-mobile-language.is-open
.header-mobile-language-menu {
    display: block;
}

.header-mobile-language-item {
    display: block;

    padding: 10px;

    color: #333333;

    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 14px;

    text-decoration: none;
}

.header-mobile-language-item:hover {
    color: #35108e;
    background: #f7f5ff;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer-main {
    width: 100%;
    background: #0d0d20;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.footer-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 66px 0 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.7fr 1.25fr 1fr;
    column-gap: 55px;
    padding-bottom: 60px;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    margin: 0;

    color: #ffffff;

    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.footer-title-line {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-top: 11px;
    margin-bottom: 22px;
}

.footer-title-line span:first-child {
    width: 50px;
    height: 2px;
    background: #ffffff;
}

.footer-title-line span:last-child {
    width: 12px;
    height: 2px;
    background: #ffffff;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
}

.footer-link {
    display: flex;
    align-items: center;

    min-height: 36px;

    color: #eeeeee;

    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 14px;

    text-decoration: none;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link i {
    margin-right: 2px;
    font-size: 18px;
}

.footer-logo-link {
    display: inline-block;
    margin-top: 18px;
}

.footer-logo {
    display: block;
    width: 152px;
    height: auto;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;

    color: #eeeeee;

    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.45;

    text-decoration: none;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-contact-icon {
    width: 19px;
    min-width: 19px;
    font-size: 14px;
}

.footer-contact-flag {
    width: 19px;
    min-width: 19px;
    font-size: 15px;
}

.footer-social-link {
    width: 53px;
    height: 48px;

    margin-top: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: #ffffff;
    color: #222222;

    font-size: 20px;

    text-decoration: none;

    transition:
        background-color .2s ease,
        color .2s ease;
}

.footer-social-link:hover {
    background: #eeeeee;
    color: #142f76;
}

.footer-payment-box {
    width: 250px;
    background: #ffffff;
}

.footer-payment-image {
    display: block;

    width: 250px;
    height: auto;
    max-width: 100%;
}

.footer-bottom {
    width: 100%;

    padding: 34px 0 25px;

    border-top: 1px solid rgba(255,255,255,.16);
}

.footer-copyright {
    margin: 0;

    color: #eeeeee;

    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE - TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 1100px) {

    .header-container,
    .footer-container {
        max-width: 92%;
    }

    .header-navigation {
        gap: 15px;
    }

    .header-nav-link {
        font-size: 13px;
    }

    .header-mega-menu {
        width: 92vw;
    }

    .footer-columns {
        column-gap: 35px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE / TABLET
   ========================================================= */

@media (max-width: 991px) {

    .header-main {
        min-height: 80px;
    }

    .header-container {
        min-height: 80px;
        max-width: 92%;
    }

    /* Hide desktop navigation */
    .header-navigation {
        display: none;
    }

    /* Mobile hamburger */
    .header-mobile-button {
        display: flex;
    }

    /*
     * Mobile menu
     */
    .header-mobile-menu {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: #ffffff;

        box-shadow: 0 10px 25px rgba(0,0,0,.12);

        padding: 15px 20px;

        display: none;

        z-index: 10002;
    }

    /*
     * JavaScript uses .is-open
     */
    .header-mobile-menu.is-open {
        display: block;
    }

    /*
     * Backward compatibility with previous class
     */
    .header-mobile-menu.header-mobile-open {
        display: block;
    }

    .header-mobile-link {
        display: block;

        padding: 13px 5px;

        color: #111111;

        border-bottom: 1px solid #eeeeee;

        font-family: "Nunito Sans", Arial, sans-serif;
        font-size: 15px;
        font-weight: 600;

        text-decoration: none;

        transition:
            color .15s ease,
            background-color .15s ease;
    }

    .header-mobile-link:hover {
        color: #35108e;
        background: #faf9ff;
    }

    .header-mobile-language {
        border-bottom: 1px solid #eeeeee;
    }

    .header-mobile-language-button {
        min-height: 48px;
    }

    .header-mobile-language-menu {
        padding: 0 0 8px 15px;
    }

    .header-mobile-language-item {
        padding: 10px;
    }


    /* =====================================================
       MOBILE FOOTER
    ===================================================== */

    .footer-container {
        padding-top: 45px;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        row-gap: 45px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .topbar-container {
        padding: 0 15px;
    }

    .topbar-contact {
        gap: 7px;
    }

    .topbar-link {
        font-size: 10px;
    }

    .topbar-phone {
        margin-left: 3px;
    }

    .topbar-separator {
        margin: 0 4px;
    }


    /* Header */

    .header-main {
        min-height: 72px;
    }

    .header-container {
        min-height: 72px;
        max-width: 94%;
    }

    .header-logo {
        width: 125px;
    }

    .header-mobile-button {
        width: 42px;
        height: 40px;
        font-size: 25px;
    }


    /* Mobile menu */

    .header-mobile-menu {
        padding: 12px 16px;
    }

    .header-mobile-link {
        padding: 12px 4px;
        font-size: 14px;
    }

    .header-mobile-language-button {
        padding: 12px 4px;
        font-size: 14px;
    }


    /* Footer */

    .footer-container {
        max-width: 92%;
        padding-top: 40px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        row-gap: 40px;
        padding-bottom: 40px;
    }

    .footer-links-grid {
        column-gap: 20px;
    }

    .footer-payment-box {
        width: 100%;
        max-width: 250px;
    }

    .footer-bottom {
        padding: 25px 0 20px;
    }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .topbar-main {
        height: auto;
        min-height: 31px;
    }

    .topbar-container {
        min-height: 31px;
        height: auto;
        padding: 5px 10px;
    }

    .topbar-contact {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }

    .topbar-link {
        font-size: 9px;
    }

    .topbar-linkedin {
        width: 18px;
        height: 18px;
    }

    .topbar-separator {
        height: 12px;
        margin: 0 2px;
    }


    .header-container {
        max-width: 94%;
    }

    .header-logo {
        width: 115px;
    }

    .header-mobile-menu {
        padding-left: 14px;
        padding-right: 14px;
    }


    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-contact-item {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.header-nav-link:focus-visible,
.header-search-button:focus-visible,
.header-mobile-button:focus-visible,
.header-mobile-language-button:focus-visible,
.header-mega-item:focus-visible,
.header-language-item:focus-visible,
.header-mobile-link:focus-visible,
.header-mobile-language-item:focus-visible {
    outline: 2px solid #35108e;
    outline-offset: 3px;
}


/* =========================================================
   PREVENT BODY HORIZONTAL OVERFLOW
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
/* =========================================================
   SAMPLE REQUEST MODAL
========================================================= */

.fbi_sample_modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 20px;
}

.fbi_sample_modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fbi_sample_modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 35, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}


/* =========================================================
   MODAL DIALOG
========================================================= */

.fbi_sample_modal_dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;

    background: #ffffff;
    border-radius: 18px;
    padding: 32px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.08);

    animation: fbiSampleModalIn .25s ease-out;
}

@keyframes fbiSampleModalIn {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.fbi_sample_modal_close {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f4f5f7;
    color: #555;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    transition: all .2s ease;
}

.fbi_sample_modal_close:hover {
    background: #182f80;
    color: #ffffff;
    transform: rotate(90deg);
}


/* =========================================================
   HEADER
========================================================= */

.fbi_sample_modal_header {
    text-align: center;
    margin-bottom: 26px;
    padding: 0 25px;
}

.fbi_sample_pdf_icon {
    position: relative;

    width: 52px;
    height: 62px;

    margin: 0 auto 14px;

    background: #ffffff;

    border: 1px solid #d9dce2;
    border-radius: 5px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

    overflow: hidden;
}

.fbi_sample_pdf_icon::before {
    content: "";

    position: absolute;
    right: 0;
    top: 0;

    border-top: 18px solid #e7e8eb;
    border-left: 18px solid transparent;
}

.fbi_sample_pdf_icon span {
    position: absolute;

    left: 0;
    bottom: 10px;

    background: #d71920;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;

    padding: 3px 7px;

    letter-spacing: .3px;
}

.fbi_sample_modal_header h2 {
    margin: 0 0 7px;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;

    color: #1d2433;
}

.fbi_sample_modal_header p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;

    color: #737b89;
}


/* =========================================================
   FORM
========================================================= */

.fbi_sample_field {
    margin-bottom: 18px;
}

.fbi_sample_input_wrap {
    position: relative;
}

.fbi_sample_input_icon {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: #8a929f;

    font-size: 15px;

    z-index: 2;

    pointer-events: none;
}

.fbi_sample_input_wrap input,
.fbi_sample_country select {

    width: 100%;
    height: 48px;

    box-sizing: border-box;

    border: 1px solid #dfe2e7;
    border-radius: 9px;

    background: #f9fafb;

    color: #202633;

    font-size: 14px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.fbi_sample_input_wrap input {
    padding: 0 14px 0 42px;
}

.fbi_sample_country select {
    padding: 0 12px 0 40px;
    appearance: auto;
    cursor: pointer;
}

.fbi_sample_input_wrap input::placeholder {
    color: #9aa1ad;
}

.fbi_sample_input_wrap input:focus,
.fbi_sample_country select:focus {

    border-color: #182f80;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(24, 47, 128, .08);
}


/* =========================================================
   PHONE
========================================================= */

.fbi_sample_phone_row {

    display: grid;

    grid-template-columns: 42% 58%;

    gap: 10px;

    align-items: start;
}

.fbi_sample_country {
    position: relative;
}

.fbi_sample_phone {
    min-width: 0;
}


/* =========================================================
   FIELD VALIDATION ERROR
   HIDDEN BY DEFAULT
========================================================= */

.fbi_sample_field_error {

    display: none;

    margin-top: 6px;

    color: #c62828;

    font-size: 12px;

    line-height: 1.4;
}


/* Only show when error text exists */

.fbi_sample_field_error:not(:empty) {
    display: block;
}


/* Invalid input */

.fbi_sample_input_wrap input.is-invalid,
.fbi_sample_country select.is-invalid {

    border-color: #c62828;

    background: #fff8f8;
}

.fbi_sample_input_wrap input.is-invalid:focus,
.fbi_sample_country select.is-invalid:focus {

    border-color: #c62828;

    box-shadow:
        0 0 0 3px rgba(198, 40, 40, .08);
}


/* =========================================================
   GENERAL AJAX ERROR
========================================================= */

.fbi_sample_alert_error {

    display: none;

    margin-bottom: 18px;

    padding: 12px 14px;

    border-radius: 9px;

    background: #fff4f4;

    border: 1px solid #f1c1c1;

    color: #b42318;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   SUCCESS
========================================================= */

.fbi_sample_success {

    display: none;

    margin-bottom: 18px;

    padding: 13px 15px;

    border-radius: 9px;

    background: #effaf3;

    border: 1px solid #b8e3c6;

    color: #18794e;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.fbi_sample_submit {

    width: 100%;
    height: 50px;

    border: 0;
    border-radius: 9px;

    background: #182f80;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.fbi_sample_submit:hover {

    background: #102464;

    box-shadow:
        0 8px 20px rgba(24, 47, 128, .18);

    transform: translateY(-1px);
}

.fbi_sample_submit:active {
    transform: translateY(0);
}

.fbi_sample_submit:disabled {

    opacity: .7;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}

.fbi_sample_submit_text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fbi_sample_submit_text > span {

    font-size: 19px;

    margin-left: 6px;

    line-height: 1;
}


/* =========================================================
   SECURITY
========================================================= */

.fbi_sample_security {

    margin-top: 15px;

    text-align: center;

    color: #9aa1ad;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   SCROLLBAR
========================================================= */

.fbi_sample_modal_dialog::-webkit-scrollbar {
    width: 6px;
}

.fbi_sample_modal_dialog::-webkit-scrollbar-track {
    background: transparent;
}

.fbi_sample_modal_dialog::-webkit-scrollbar-thumb {
    background: #d5d8de;
    border-radius: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .fbi_sample_modal {
        padding: 12px;
    }

    .fbi_sample_modal_dialog {

        max-height: 94vh;

        padding: 25px 18px 20px;

        border-radius: 15px;
    }

    .fbi_sample_modal_header {

        padding: 0 15px;

        margin-bottom: 22px;
    }

    .fbi_sample_modal_header h2 {
        font-size: 18px;
    }

    .fbi_sample_modal_header p {
        font-size: 13px;
    }

    .fbi_sample_phone_row {

        grid-template-columns: 1fr;

        gap: 0;
    }

    .fbi_sample_country {
        margin-bottom: 18px;
    }

    .fbi_sample_modal_close {

        top: 12px;
        right: 12px;

        width: 34px;
        height: 34px;
    }
}