body {
    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}

.loadScreen {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

#calendarLoadScreen {
  position: absolute;
  top: 30%;
  text-align: center;
  background: linear-gradient(to top right, #808080 0%, #505050 100%) !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
  border-radius: 5px !important;
  border: 1px solid #353535;
  position: absolute;
  width: 70%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: white;
  padding: 30px 10px 10px;
}

.loadScreen #container{
  position: relative;
  text-align: center;
  padding: 30px 10px 10px;
  background: linear-gradient(to top right, #808080 0%, #505050 100%) !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
  border-radius: 5px !important;
  border: 1px solid #353535;
}

.loadScreen h2{
  font-size: 2.5rem;
  font-weight: 300;
  padding: 8px 20px;
}
.loadScreen p{
  font-size: 1rem;
  font-weight: 400;
}

.loadScreen p,
.loadScreen h2{
  color: white;
  line-height: 1.2;
}

.SZ_loader {
  font-size: 40px;
  color: white;
  height: 40px;
  width: calc(100% - 120px);
  position: relative;
  margin-left: 10px;
}

.SZ_moving {
  white-space: nowrap;
  position: absolute;
  -webkit-animation: load 2.5s infinite ease;
  animation: load 2.5s infinite ease;
}

@-webkit-keyframes load {
  0% {
    opacity: 0;
    left: 0%;
  }
  10% {
    opacity: 1;
    left: 0%;
  }
  90% {
    opacity: 1;
    left: 100%;
  }
  100% {
    opacity: 0;
    left: 100%;
  }
}

@keyframes load {
  0% {
    opacity: 0;
    left: 0%;
  }
  10% {
    opacity: 1;
    left: 0%;
  }
  90% {
    opacity: 1;
    left: 100%;
  }
  100% {
    opacity: 0;
    left: 100%;
  }
}