body {
  background-color: #f5f5f5;
  margin: 0px;
}

.splash {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  margin: 0;
}

.splash-container {
  display: table-cell;
  vertical-align: middle;
}

.splash-content {
  position: relative;
  width: 80px;
  padding: 24px;
  margin: 0 auto;
  box-sizing: border-box;
}

.logo {
  position: absolute;
  width: 80px;
  top: -116px;
  left: 0px;
}

.spinner {
  height: 32px;
  width: 32px;
  -webkit-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
  border: 3px solid #757575;
  border-right-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*  fix for text not displayed in inputs somtimes see
    https://stackoverflow.com/questions/28730103/ios-textarea-text-hidden-when-using-webkit-overflow-scrolling-touch
*/
input {
  -webkit-transform: translate3d(0, 0, 0) !important;
}
