.ember-movenium-accordion {

    & .ember-movenium-accordion-item {
        background-color: $grey-background;
        cursor: pointer;
        padding: 18px;
        width: 100%;
        text-align: left;
        border: none;
        border: 1px solid $border-light;
        margin-top: -1px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        &:hover, &.active {
            background-color: #ccc;
        }
        & .accordion-chevron {
            pointer-events: none;
            border: solid $dark-grey;
            border-width: 0 3px 3px 0;
            display: inline-block;
            padding: 3px;
            transform: rotate(45deg);
        }

        &:not(.active) .accordion-chevron {
            margin-bottom: 5px;
        }

        &.active .accordion-chevron {
            margin-top: 5px;
            transform: rotate(-135deg);
            -webkit-transform: rotate(-135deg);
        }

    }

    & .ember-movenium-accordion-panel {
        // padding: 0 18px;
        border: 0px solid $border-light;
        max-height: 0px;
        overflow: hidden;
        transition: max-height .35s ease-in-out, border .35 ease;
        margin-top: -1px;
        -webkit-transition: max-height .35s ease-in-out, border .35s ease;
        -moz-transition: max-height .35s ease-in-out, border .35s ease;
        -o-transition: max-height .35s ease-in-out, border .35s ease;

        &.active {
            border: 1px solid $border-light;
            max-height: 100vh;
        }

        & .ember-movenium-accordion-panel-content {
            padding: 15px
        }

    }

}

