.div-table {
    display: table;
    width: 100%;
    background-color: #eee;
    border: none; /* 1px solid #666666;   */
    border-spacing: 0px; /* cellspacing:poor IE support for  this */
}

.call-table-head {
    color: white;
    background-color: #025461 !important;
    display: table-cell;
    padding-top: 45px !important;
    width: auto;
    clear: both;
    cursor: pointer;
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.call-table-row {
    display: table-row;
    width: auto;
    clear: both;
    cursor: pointer !important;
    border: 1px solid gray;
}

.div-table-col1 {
    float: right; /* fix for  buggy browsers */
    display: table-column;
    width: 50%;
    margin-top: 11px;
    margin-bottom: 11px;
    white-space: nowrap;
    cursor: pointer !important;
    margin-left: -20px !important;
}

.div-table-col2 {
    float: right; /* fix for  buggy browsers */
    display: table-column;
    width: 30%;
    margin-top: 11px;
    margin-bottom: 11px;
    white-space: nowrap;
    cursor: pointer !important;
}

.div-table-col3 {
    float: right; /* fix for  buggy browsers */
    display: table-column;
    width: 20%;
    margin-top: 11px;
    margin-bottom: 11px;
    padding-right: 5px;
    cursor: pointer !important;
    margin-right: 20px !important;
}

.callCenter {
    background-color: #9585856b;
    border-right: 1px groove #665959;
    box-shadow: inset 0px 0px 5px #878d87;
}



.containerCallBrowser {
    display: grid;
    grid-template-columns: 100% 0%;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: "off-canvas-wrap callCenter";
}

.callCenter {
    grid-area: callCenter;
}

.off-canvas-wrap {
    grid-area: off-canvas-wrap;
}


.noti_bubble_head_menu {
    position: absolute;
    top: -45px;
    right: -13px;
}


.call-operator {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    float: left;
    font-size: 7pt;
    display: inline-block;
    padding-top: 7px;
    margin-right: 30px;
    margin-left: 10px;
}

@keyframes blink {
    0% {
        color: greenyellow;
    }

    50% {
        color: transparent;
    }

    100% {
        color: greenyellow;
    }
}

.blink {
    animation: blink 1s infinite;
}

.operator-icon {
    margin-right: 8px;
}

