.web-app {
}

.clone {
  display: none;
}

.clickable {
  cursor: pointer;
}

.modal-fullscreen {
  /* min-height: calc(100% - 28px - 28px); */
  max-width: calc(100% - 28px - 28px);
}

.blink {
  animation: blink-animation 500ms steps(5, start) infinite;
  -webkit-animation: blink-animation 500ms steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.line-height-1 {
  line-height: 1;
}