.header_grey {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 15px;
    background-color: #F1F4F9;
    border-radius: 8px;
}

.header_grey > label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.div_between {
    justify-content: space-between;
}

.div_insert {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.div_insert svg,
.div_insert label {
    cursor: pointer;
}

.div_insert svg {
    margin-right: 5px;
}

.div_insert svg path,
.div_insert label {
    fill: #A9A9A9;
    color: #A9A9A9;
}

.div_insert:hover svg path,
.div_insert:hover label {
    fill: #00AEEF;
    color: #00AEEF;
}