@font-face {
    font-family: 'firstMove';
    src: url('../assets/fonts/first/FirstMove-Medium.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

.fb-help-support__header {
    background-color: #280071;
    outline: solid #280071;
    color: #ffffff;
}

.fb-help-support__header .text-muted {
    color: rgba(200, 201, 199, 1) !important;
}

.fb-help-support__form-control {
    border: 2px solid rgba(167, 169, 171, 1);
    border-radius: 16px;
}

.fb-help-support__search-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
}

.btn.btn-primary.fb-help-support__search-btn {
    border-radius: 14px;
    padding: 12px;
    margin: 2px;
    display: flex;
    align-items: center;
}

.fb-help-support__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9D9CC9;
    text-align: center;
}

.fb-help-support__instant-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    height: 44px;
    font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
    .fb-help-support__instant-actions {
        overflow: auto;
        overflow-x: scroll;
        justify-content: flex-start;

        /* Firefox */
        scrollbar-width: none;

        /* IE and Edge */
        -ms-overflow-style: none;

        /* Chrome, Safari, Edge (WebKit) */
        &::-webkit-scrollbar {
            display: none;
        }
    }
}

.fb-help-support__tag-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.fb-help-support__tag-container ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style-type: none;
    padding: 0px;
    margin: 0;
}

.fb-help-support__tag {
    font-weight: 500;
    padding: 6px 20px;
    border-radius: 60px;
    background-color: #D700C1;
    color: #fff;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fb-help-support__tag-container a:hover {
    background-color: #FF00DC;
    text-decoration: none;
    color: #fff;
}

.fb-help-support__faq-categories__title {
    font-weight: 600;
}

.fb-help-support__faq-categories__card {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fb-help-support__faq-categories,
a p {
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(99, 102, 106, 1);
}

a.fb-help-support__faq-categories:hover .fb-help-support__faq-categories__card {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

a.fb-help-support__faq-categories:hover .fb-help-support__faq-categories__title {
    text-decoration: underline;
}

a.fb-help-support__faq-categories:hover .fb-help-support__tell-us-more__item {
    background-color: rgba(221, 222, 238, 1)
}

.fb-help-support__tell-us-more {
    background-color: rgba(243, 245, 248, 1);
    box-shadow: 0 0 0 100vmax rgba(243, 245, 248, 1);
    clip-path: inset(0 -100vmax);
}

.fb-help-support__tell-us-more__item {
    background-color: rgba(229, 230, 242, 1);
    transition: all ease-in-out 0.2s;
}

.fb-help-support__title,
h1 {
    font-family: "firstMove";
    font-family: 'firstMove', "Poppins", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 3.5rem;
    text-align: center;
}

@media screen and (max-width: 768px) {

    .fb-help-support__title,
    h1 {
        font-size: 2rem;
    }
}

.fb-help-support__tabs-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-help-support__tabs-container {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    scrollbar-width: none;
    /* Firefox */
}

.fb-help-support__tabs-container::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.fb-help-support__tab {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
    border: none;
    cursor: pointer;
    font-weight: 400;
}

.fb-help-support__tab.active {
    border-bottom: 3px solid #280071;
    font-weight: 500;
}

.fb-help-support__tab-control {
    background: white;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2;
}

.fb-help-support__tab-control::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    pointer-events: none;
    backdrop-filter: blur(1px);
    box-shadow: 0px 0px 10px 4px white;
}

.fb-help-support__tab-control--right::before {
    right: 24px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9));
}

.fb-help-support__tab-control--left::before {
    left: 24px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9));
}

.fb-help-support__autocomplete {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 30;
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
    border: 2px solid rgba(217, 218, 218, 1);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: var(--bs-link-hover-color, #280071);
}

.fb-help-support__autocomplete ul {
    list-style: none;
    margin: 0;
    padding: 16px;
}

.fb-help-support__autocomplete li {
    margin: 0;
    padding: 0;
}

.fb-help-support__autocomplete-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    color: var(--bs-link-hover-color, #280071) !important;
    font-weight: 500;
    text-decoration: none;
}

.fb-help-support__autocomplete-link:visited,
.fb-help-support__autocomplete-link:hover,
.fb-help-support__autocomplete-link:focus {
    color: var(--bs-link-hover-color, #280071) !important;
}

.fb-help-support__autocomplete-link:hover,
.fb-help-support__autocomplete-link.is-active {
    background: #F3F5F8;
    text-decoration: none;
}

/* Width of entire scrollbar */
.fb-help-support__autocomplete::-webkit-scrollbar {
    width: 12px;
}

/* Track (background) */
.fb-help-support__autocomplete::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
}

/* Scrollbar handle */
.fb-help-support__autocomplete::-webkit-scrollbar-thumb {
    background: rgba(217, 218, 218, 1);
    border-radius: 10px;
}

/* Handle on hover */
.fb-help-support__autocomplete::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}