HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/dreamssalon-wp-market/wp-content/themes/dreamsalon/assets/scss/pages/_faq.scss
/*============================
    21. Faq
============================*/

@use "../utils/mixins" as *;
@use '../variables' as *;

.faq-section {
    background: $light;
}
.faq-accordion {
    position: relative;
    z-index: 9;
    border: 0;
    .accordion-button:not(.collapsed) {
        padding-bottom: 8px;
        &::after {
            @include transform(rotate(45deg));
        }
    }
    .accordion-item {
        border: 1px solid $border-color;
        border-radius: $border-radius-md;
        box-shadow: $box-shadow;
        .accordion-button {
            border-radius: 10px !important;
        }
    }
    &-two {
        .accordion-item {
            border-radius: $border-radius-md;
            box-shadow: $box-shadow;
            overflow: hidden;
            border: 1px solid $border-color;
            .accordion-button {
                border-radius: 0 !important;
                &::after {
                    content: "\ea5f";          
                    font-weight: $font-weight-normal;
                }
                &:not(.collapsed) {
                    background-color: $light;
                    padding-bottom: 8px;
                    &::after {
                        content: "\ea62";
                        transform: none;
                    }
                }
            }
        }
        .accordion-body {
            background-color: $light;
            .accordion-content {
                padding: 12px;
            }
            p {
                font-size: 16px;
            }
        }
    }
    &-three {
        .accordion-item {
            border: 1px solid $border-color;
            border-radius: $border-radius-lg;
            .accordion-button {
                border-radius: 10px !important;
                &::after {
                    content: "\ea69";
                    font-weight: $font-weight-normal;
                }
                &:not(.collapsed) {
                    padding-bottom: 8px;
                    &::after {
                        content: "\ea68";
                        transform: none;
                    }
                }
            }
        }
        .accordion-body {
            .accordion-content {
                padding: 12px;
            }
            p {
                font-size: 16px;
            }
        }
    }
}