.TrackParticipants {

    &-list {
        border: 1px solid var(--gray-400);

        &.isLoading {
            opacity: 0.5;
            pointer-events: none;
        }

        &-container {
            padding: 12px 20px;
        }

        &-type-subsection {
            margin-top: 8px;
            margin-bottom: 18px;

            &-header {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 10px;

                h4 {
                    margin: 0px;

                    &.has-error {
                        color: $red_200;
                    }
                }

                &.has-error {
                    margin-bottom: 0px;
                }
            }

            &-has-error {
                color: $red_200;
                margin-bottom: 10px;
            }

            .ApplyToAll-link {
                &:focus {
                    outline: none;
                    box-shadow: none;
                }

                .AppliedCheckTP {
                    opacity: 0;
                    transition: opacity 2s ease-in-out;

                    border-radius: 10px;
                    background-color: #b3ffb3;
                    margin-right: 4px;
                    padding: 4px 2px 2px;

                    &.visible {
                        transition: opacity .33s ease-in-out;
                        opacity: 1;
                    }

                    .Glyph.Checkmark{
                        fill: green
                    }
                }
            }
        }


        &-participant-item {
            margin-bottom: 10px;

            h6 {
                font-size: 14px;
                margin-bottom: 4px;
            }

            span {
                font-size: 12px;
                color: var(--gray-500);
            }
        }

        &-participant-type-placeholder {
            span {
                font-size: 12px;
                color: var(--gray-500);
            }
        }

        &-modal-button {
            text-align: center;
            border-top: 1px solid var(--gray-400);

            .Glyph {
                margin-right: 6px;
            }
        }
    }
}
