﻿/*3e92b0*/
.splashscreen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: white;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  color: #48635f;
}
.splashscreen > div {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.splashscreen-loader-container {
  width: 100%;
  height: 100%;
  margin-top: 16px;
}
.splashscreen-loader-container .filler {
  display: inline-block;
  margin: 0 auto;
  background-color: transparent;
  width: 0;
  height: 40%;
  margin-bottom: 10px;
}
.splashscreen-loader-container .rotor {
  display: inline-block;
  clear: right;
  margin: 0;
  background: transparent url('/img/rotor.png') no-repeat center center;
  width: 60px;
  height: 60px;
  background-size: 50px 50px;
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-transition: rotate(3600deg);
}
@media only screen and (-Webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 192dpi) {
  .splashscreen-loader-container .rotor {
    background-image: url('/img/rotor@2x.png');
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}