#loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10000;
}
#loading-wrapper img{
  height: 128px;
  position: absolute;
  left: calc(50% - 64px);
  top: calc(50% - 64px);
}

#splashMsg {
  position: absolute;
  left: calc(50% - 200px);
  top: calc(85% - 100px);
  height: 200px;
  width: 400px;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

#loading-wrapper .title{
  position: absolute;
  left: 0;
  top: calc(50% - 240px);
  width: 100%;
  text-align: center;
  color: #2a3133;
  font-size: 34px;
  font-weight: bold;
}
#loading-wrapper .subTitleSplash{
  position: absolute;
  left: 0;
  top: calc(50% + 93px);
  width: 100%;
  text-align: center;
  color: rgba(0,0,0,.6);
  font-size: 21px;
}

#loading-wrapper .staticIcon{
  position: absolute;
}

#loading-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgb(0, 136, 159);
  width: 100px;
  height: 30px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 20px;
}

#loading-content {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}

#loading-content {
  border: 3px solid transparent;
  border-top-color: rgb(121, 61, 185);
  border-bottom-color: rgb(121, 61, 185);
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.hidden {
  visibility: hidden;
}

.whiteBg {
  background: white;
}