.ConflictModal {
    align-items: center;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    pointer-events: none;

    &-container {
        flex-basis: 800px;
        pointer-events: auto;
    }

    &-header {
        display: flex;
        flex-flow: row nowrap;
        padding: 11px 0;
    }

    &-heading {
        color: $gorilla;
        flex: 1;
    }

    &-close {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 15px;
    }

    &-x-icon {
        cursor: pointer;
        fill: $rhino;
        height: 12px;
        width: 12px;
    }

    &-info-container {
        display: inline-block;
        margin-right: 20px;
    }

    &-info-label {
        font-weight: $weight_bold;
    }

    &-track-info {
        border-bottom: 1px $koala solid;
        color: $rhino;
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 15px;
    }

    &-button-wrapper {
        margin-top: 20px;
        text-align: right;
    }

    &-button {
        font-weight: $weight_bold;
        margin-left: 10px;
    }
}

.ConflictModal-container .ConflictModal-scroller {
    @media screen and (max-height: 750px) {
        max-height: 300px;
        overflow: auto;
    }
}
