.ApplyParticipantsModal {
    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;
    }

    &-note {
        font-size: 16px;

        strong {
            font-weight: 500;
        }

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

        li {
            margin-top: 8px;
        }
    }

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

    &-table-wrapper {
        height: 234px;
        margin-top: 16px;
        display: flex;
        flex-direction: column;
    }

    &-table-scroller {
        width: 100%;
        margin-top: 16px;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column-reverse;
    }

    &-table {
        width: 100%;
        font-size: 14px;
        margin-top: 16px;

        .needs-isrc {
            color: $orange-create;
        }

        .Glyph.Close {
            fill: $red-destroy;
        }
        .Glyph.Checkmark {
            fill: $green-update;
        }
    }

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

        &-body {
            padding: 0px;
        }
    }

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