.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.inline-flex {
    display: inline-flex;
}

.cursor-pointer {
    cursor: pointer;
}

.w-25px {
    width: 25px;
}

.max-width-150px {
    max-width: 150px;
}

.max-width-250px {
    max-width: 250px;
}


.node text {
    font-size: 14px;
}

.mermaidTooltip {
    position: absolute;
    text-align: center;
    max-width: 200px;
    padding: 2px;
    font-size: 12px;
    background: #ffffde;
    border: 1px solid #aaaa33;
    border-radius: 2px;
    pointer-events: none;
    z-index: 100;
}

.grayscale {
    filter: grayscale(100%);
}

.user-color {
    background-color: #027ffb;
}

.revenue-color {
    background-color: #52cffb;
}

.sale-promotion-color {
    background-color: #70f5ca;
}

.mar-com-color {
    background-color: #3d90a8;
}

.momo-color {
    color: #263056;
}

input.outline,
select.outline {
    outline: 0;
    border-width: 0 0 3px;
    border-color: #dbdbdb;
    background-color: #fff;
    height: 40px;
    padding-top: 10px;
    padding-left: 10px;
}

select.outline:focus,
input.outline:focus {
    border-color: #263056;
}

/*
    set an element middle inside parent element,
    parent element need add postion:relative
*/
.middle-inside-parent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

label.required:after {
    content: " *";
    color: red
}

.copy-btn {
    cursor: pointer;
}

.copy-btn:hover {
    color: #263056;
}