body {
  font-family: 'Lato', sans-serif;
}
.blink_me {
  animation: blinker 1s linear infinite;
}
@keyframes blinker {  
  50% { opacity: 0.3; }
}

td {
  white-space:pre-wrap;
  word-wrap:break-word;
}
.table_fix {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.myModalpos_center {
  top:20%;
  right:0%;
  /*bottom:50%;*/
  /*left:50%;*/
  outline: none;
}

#loading-img {
  background: url(https://satayo.cloud/images/loading.gif) center center no-repeat;
  height: 100%;
  z-index: 1501;
}
/*
.overlay {
    background: #dddddd;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}
*/
.overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0; 
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.5); /* Black background with opacity */
  z-index: 1500; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

.diff td{
  padding: 0 0.667em;

  vertical-align : top;
  white-space    : pre;
  white-space    : pre-wrap;
  font-family    : monospace;
}


.diffDeleted span {
  border: 1px solid rgb(255,192,192);
  background: rgb(255,224,224);
}
.diffInserted span {
  border: 1px solid rgb(192,255,192);
  background: rgb(224,255,224);
}
