.azur-faq-tab {
    width: 100%;
    box-sizing: border-box;
    color: #172033;
}

.azur-faq-tab *,
.azur-faq-tab *::before,
.azur-faq-tab *::after {
    box-sizing: border-box;
}

.azur-faq-tab__inner {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.azur-faq-tab__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    width: 100%;
    margin: 0 0 34px;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.azur-faq-tab__tab {
    position: relative;
    flex: 0 0 auto;
    min-width: max-content;
    padding: 0 0 18px;
    border: 0;
    background: transparent;
    color: #4b5563;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .01em;
    text-align: center;
    transition: color .2s ease, background-color .2s ease;
}

.azur-faq-tab__tab::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: #06182f;
    opacity: 0;
    transform: scaleX(.35);
    transform-origin: center;
    transition: opacity .2s ease, transform .2s ease;
}

.azur-faq-tab__tab:hover,
.azur-faq-tab__tab:focus-visible,
.azur-faq-tab__tab.is-active {
    color: #06182f;
    outline: none;
}

.azur-faq-tab__tab.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.azur-faq-tab__panels {
    width: 100%;
}

.azur-faq-tab__panel[hidden],
.azur-faq-tab__answer[hidden] {
    display: none;
}

.azur-faq-tab__item {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.azur-faq-tab__item + .azur-faq-tab__item {
    margin-top: 12px;
}

.azur-faq-tab__question-heading {
    margin: 0;
    padding: 0;
    font: inherit;
}

.azur-faq-tab__question {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 72px;
    padding: 22px 28px 22px 24px;
    border: 0;
    background: #fff;
    color: #172033;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    text-align: left;
    transition: background-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.azur-faq-tab__question:hover,
.azur-faq-tab__question:focus-visible {
    background: #f7f9fc;
    color: #06182f;
    outline: none;
}

.azur-faq-tab__item.is-open {
    border-color: #06182f;
}

.azur-faq-tab__item.is-open .azur-faq-tab__question {
    background: #06182f;
    color: #fff;
}

.azur-faq-tab__toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: currentColor;
    line-height: 1;
}

.azur-faq-tab__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    font-size: 14px;
    line-height: 1;
}

.azur-faq-tab__toggle-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.azur-faq-tab__toggle-icon--opened {
    display: none;
}

.azur-faq-tab__item.is-open .azur-faq-tab__toggle-icon--closed {
    display: none;
}

.azur-faq-tab__item.is-open .azur-faq-tab__toggle-icon--opened {
    display: inline-flex;
}

.azur-faq-tab__question-text {
    min-width: 0;
}

.azur-faq-tab__answer {
    background: #fff;
    color: #5f6975;
    font-size: 16px;
    line-height: 1.68;
}

.azur-faq-tab__answer-inner {
    padding: 26px 28px 30px 64px;
}

.azur-faq-tab__answer-inner > *:first-child {
    margin-top: 0;
}

.azur-faq-tab__answer-inner > *:last-child {
    margin-bottom: 0;
}

.azur-faq-tab__answer-inner p {
    margin: 0 0 1em;
}

.azur-faq-tab__answer-inner ul,
.azur-faq-tab__answer-inner ol {
    margin-top: .8em;
    margin-bottom: .8em;
    padding-left: 1.3em;
}

@media (max-width: 767px) {
    .azur-faq-tab__nav {
        justify-content: flex-start;
        gap: 24px;
        margin-bottom: 26px;
        padding-bottom: 0;
    }

    .azur-faq-tab__question {
        min-height: 64px;
        padding: 18px 20px;
        font-size: 15px;
    }

    .azur-faq-tab__toggle {
        margin-right: 14px;
    }

    .azur-faq-tab__answer-inner {
        padding: 20px 20px 22px 52px;
    }
}
