.ApplyPerformersModal {
    align-items: start;
    padding-top: 64px;

    &-container {
        width: 780px;
        max-height: 100%;
        pointer-events: auto;
        border: none;
        box-shadow: none;
    }

    &-header {
        align-items: center;
        border-bottom: 1px solid var(--gray-400);
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        padding: 10px 0;
    }

    &-heading {
        margin: 0 16px;
    }

    &-body {
        padding: 16px;
    }

    &-section {
        font-size: 14px;
        font-weight: 500;
        flex-grow: 1;
        background-color: var(--gray-200);

        &.active {
            background-color: var(--bluejay_light);
        }

        &-name {
            border-bottom: 1px solid $grey_200;
        }

        &-items {
            max-height: 250px;
            overflow-y: auto;
            overflow-x: hidden;

            ul {
                margin-top: 8px;
                padding-inline-start: 2px;
            }

            li {
                list-style-type: none;
                display: flex;
                flex-direction: column;
                word-break: break-word;

                .role {
                    font-size: 12px;
                    font-weight: normal;
                    color: var(--gray-400)
                }
            }
        }
    }

    &-note {
        font-size: 16px;

        strong {
            font-weight: 500;
        }
    }

    &-close {
        fill: var(--gray-700);
        height: 10px;
        margin: 0 15px;
    }

    .ReactModal {
        &-content {
            box-shadow: none;
        }

        &-body {
            padding: 0px;
        }
    }

    &-footer {
        border-top: 1px solid var(--gray-400);
        display: flex;
        justify-content: space-between;
        padding: 20px;
    }
}
