.offline-warning-container {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 99999999;
  font-family: 'Didact Gothic', sans-serif;
  font-style: normal;
}
.offline-warning-container.offline {
  border-top: 5px solid #f00;
  border-bottom: 5px solid #f00;
}
.offline-warning-container.online {
  border-top: 5px solid #008000;
  border-bottom: 5px solid #008000;
}
.offline-warning-container .offline-warning {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.offline-warning-container .offline-warning .warning-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.offline-warning-container .offline-warning .warning-content h3 {
  font-size: 44px;
  display: block;
  text-align: center;
}
.offline-warning-container .offline-warning .warning-content h3.offline {
  color: #f00;
}
.offline-warning-container .offline-warning .warning-content h3.online {
  color: #008000;
}
.offline-warning-container .offline-warning .warning-content p {
  font-size: 22px;
  text-align: center;
  color: #000;
  display: block;
}
.offline-warning-container .offline-warning .warning-content i.big-checkmark {
  padding: 20px;
  font-size: 80px;
  color: #008000;
}

/* Support for glyphicon-spin css class */
.fa-spin-custom, .glyphicon-spin {
  -webkit-animation: spin 1000ms infinite linear;
  animation: spin 1000ms infinite linear;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.shadow-box {
  border-radius: 15px;
  box-shadow: 0px 0px 23px -1px rgba(0,0,0,0.13);
  padding: 20px;
}
