/* section-faq-list */
.section-faq-list .ux-menu.stack-col{
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
    padding:10px 25px;
    border-radius:10px;
    position: sticky;
    top:150px;
}
.section-faq-list .col-menu-sticky .col-inner{
    height:100%;
}
.section-faq-list .ux-menu.stack-col a{
    border:none !important;
    background: linear-gradient(135deg, var(--color-primary-bright), var(--color-very-dark-blue));
    color:#fff;
    margin-bottom: 10px;
    border-radius:12px;
    padding:10px;
    transition: .3s ease;
    height:100%;
    white-space: nowrap;
}
.section-faq-list .ux-menu.stack-col a:hover{
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-bright));
}
.section-faq-list .stack.stack-accordion{
    margin-bottom:30px;
}
@media screen and (max-width:549px) {
    .section-faq-list .ux-menu.stack-col {
        display: flex;
        flex-direction: row;
        gap: 10px;
        overflow: scroll;
        top:0;
        padding:10px 0;
    }
    .section-faq-list .col-menu-sticky{
        height: 100%;
        position: sticky;
        top: 80px;
        z-index: 999;
        background: #f9f9f9;
        padding-bottom: 0;
    }
}