#dialog_box {
    z-index: 9999;
    display: none;
    background-color: #fff;
    border: 6px solid #007eca;
    box-shadow: 0 9px 40px rgba(7, 187, 238, 0.55);
    padding: 5px 10px 5px 10px;
    color: #000;
    border-radius: 20px;
    text-align: center;
    white-space: normal;
    width:800px;
    top: 50%;
    left: 50%;
    position:fixed;
    max-height: 500px;
    overflow: auto;
    -ms-transform: translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.dialog_but_ok {margin: 10px;}

#warning_block {
    position: sticky;
    top: 0;
    z-index: 999;
}
.warning_block {
    width: 100%;
    display: flex;
    background: yellow;
    text-align: center;
    border-bottom: 1px double black;
    justify-content: space-between;
}

.warning_block span {
    display: flex;
    vertical-align: middle;
    font-size: 1.1em;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.warning_block img {
    height: 48px;
    width: 48px;
}

#tooltip_window {
    z-index: 9999; position: absolute; display: none; top:0px; left:0px; width: 350px;
    background-color: #fff; padding: 5px 10px 5px 10px;
    color: #000; border-radius: 5px; box-shadow: 0 1px 2px #555;
    text-align: center; white-space: normal; word-wrap: break-word;
}
#tooltip_window h4 {color: red; font-size: 16px;}

.selected_line {background: lightslategrey; border-radius: 10px; border: 1px solid #ffffff;
    box-shadow: 0 1px 10px rgba(7, 187, 238, 0.30);}