.pxl-accordion {
    .pxl-item--title {
        margin-bottom: 0;
        cursor: pointer;
        position: relative;
    }
    .pxl-item--content {
        display: none;
    }
    .pxl-icon--plus {
        font-style: normal;
    }
}

.pxl-accordion1 {
    .pxl-icon--plus {
        position: absolute;
        top: 50%;
        @include transform(translate(0, -50%));
        width: 14px;
        height: 14px;
        &:before {
            width: 14px;
            height: 2px;
            top: 6px;
        }
        &:after {
            width: 2px;
            height: 14px;
            left: 6px;
        }
    }
    .pxl-item--title {
        font-size: 16px;
        @include transition(all 250ms linear 0ms);
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .pxl-item--content {
        margin-top: -3px;
        padding-bottom: 17px;
        @media #{$max-lg} {
            font-size: 16px;
            line-height: 1.625;
            padding-bottom: 22px;
        }
    }
    .pxl--item {
        @include transition(all 250ms linear 0ms);
        padding: 0 32px;
        position: relative;
        z-index: 1;
        @media #{$max-lg} {
            padding-left: 24px;
            padding-right: 24px;
        }
        &:before, &:after {
            @include transition(opacity 250ms linear 0ms);
            @extend .pxl-spill;
            opacity: 0;
        }
        &:before {
            background-color: #fff;
            z-index: -2;
        }
        &:after {
            z-index: -1;
            background-color: #{'rgba(var(--primary-color-rgb),0.07)'};
        }
        &.active {
            &:before, &:after {
                opacity: 1;
            }
            .pxl-item--title {
                color: $primary_color;
            }
            .pxl-icon--plus {
                &:before, &:after {
                    background-color: $primary_color;
                }
                &:after {
                    transform: rotate(-90deg);
                }
            }
        }
        + .pxl--item {
            margin-top: 0;
        }
    }
}
.pxl-accordion-wrap {
    &.box-style1 {
        background-color: #fff;
        overflow: hidden;
        border-radius: 15px;
        @include box-shadow(0 10px 60px rgba(#8997BA, 0.15));
        .pxl-accordion {
            padding: 35px 32px;
            @media #{$max-lg} {
                padding: 30px 24px;
            }
        }
        .pxl-accordion-bottom {
            padding: 29px 20px;
            background-color: $secondary_color;
            color: #fff;
            font-size: 16px;
            text-align: center;
            .pxl-box--subtitle {
                margin-bottom: 2px;
            }
            .pxl-box--title {
                font-weight: 700;
                @extend .ft-theme-default;
                color: #fff;
                a {
                    color: $primary_color;
                    &:hover {
                        color: $primary_color;
                    }
                }
            }
        }
    }
}