
.splash {
  background-color: #262626;
  background-image: url("/assets/img/patron.jpg");
  background-repeat: repeat;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.splash::before {
  background-color: #262626;
  background-image: url("/assets/img/patron.jpg");
  background-repeat: repeat;
  background-size: 35px 20px;
  bottom: -20px;
  content: ' ';
  left: -20px;
  position: absolute;
  right: -20px;
  transition: all 1s ease-out;
  top: -20px;
  z-index: 1;
}

.splash img {
  left: 50%;
  margin-left: -45px;
  margin-top: -45px;
  position: absolute;
  top: 50%;
  width: 90px;
  z-index: 2;
}

.splash .loading-msg {
  bottom: 70px;
  color: #fafafa;
  font-size: .9em;
  font-weight: bold;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.spinner div {
  z-index: 2;
  width: 14px;
  height: 14px;
  position: absolute;
  left: -20px;
  bottom: 40px;
  background-color: #00ccc9;
  animation: move 1.5s infinite cubic-bezier(.2,.64,.81,.23);
}
.spinner div:nth-child(2) {
  animation-delay: 150ms;
}
.spinner div:nth-child(3) {
  animation-delay: 300ms;
}
.spinner div:nth-child(4) {
  animation-delay: 450ms;
}
@keyframes move {
  0% {left: 0%;}
  75% {left:100%;}
  100% {left:100%;}
}

.row-success {
  background-color: #b6f3b6 !important;
}

.row-sim-update {
  background-color: #ebc2e6 !important;
}

.row-not-found {
  background-color: #efe375 !important;
}

.row-failed {
  background-color: #ec7d7d !important;
}
