/home/moonrcjl/template.moontelict.com/testorest/assets/scss/components/_accordion.scss
@use '../utils' as *;

/*----------------------------------------*/
/*  2.12 Accordion
/*----------------------------------------*/
.mt-accordion {
    &-header {
        margin: 0;
    }

    &-item {
        border-bottom: 1px solid var(--mt-border-2);
        padding-bottom: 12px;
    }

    
    &-button {
        font-size: 20px;
        font-weight: 700;
        text-transform: capitalize;
        width: 100%;
        text-align: left;
        @include flexbox();
        justify-content: space-between;

        &::after {
            content: "\f00d";
            font-family: var(--mt-ff-fontawesome);
            font-size: 12px;
            color: var(--mt-text-p);
            border: 1px solid var(--mt-border-2);
            border-radius: 100%;
            width: 32px;
            height: 32px;
            line-height: 32px;
            text-align: center;
        }

        &.collapsed {
            &::after {
                content: "+";
            }
        }
    }

    &-body{
        & a{
            color: var(--mt-common-white);
        }
    }
}