.container div {
  display: flex;
  }
.oneline {
display: inline-block;
}
.red {
  text-align: left;color:red;font-weight: bold;font-size:14px;
}
.blue {
  text-align: left;color:blue;font-weight: bold;font-size:20px;
}
.cl1 {
    background-color: lightgray !important;
}
.cl2 {
    background-color: lightcoral !important;
}
.cl3 {
    background-color: yellow !important;color: blue !important;font-size:14px;
}
.updatedClass {
    font-weight: bold
}
.deleteClass {
    text-decoration:line-through
}
.copyClass {
   text-decoration: overline wavy blue
}
.insertClass {
    text-decoration: overline wavy #992222
}
.fullscreen {
    position: fixed;
    width: 99%;
    height: 93%;
    top: 100;
}
.fullscreenWithoutMenu {
    position: fixed;
    width: 99%;
    height: 98%;
    top: 100;
}
.isResizable {
  background: rgba(255, 0, 0, 0.2);
  font-size: 2em;
  border: 1px solid black;
  overflow: hidden;
  resize: both;
  width: 1200px;
  height: 500px;
  min-width: 120px;
  min-height: 90px;
  max-width: 3000px;
  max-height: 3000px;
}
.show{
 /* visibility: visible*/
 display: block-inline
}
.hide{
 /* visibility: hidden*//*not delete place under element*/
 display: none
}
.title{
 font-weight: bold;
}
.liteGray{
    background-color:#e6e6e6;
}