#load {
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:900;
  display: flex;
  justify-content: center;
  background-color: rgba(0,0,0,0.4);
}
#load img {
  position: relative;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
  top: -80px;
  vertical-align: middle;
  transform: rotate(0deg);
  animation: rotate 1s infinite;
}
#load .text {
  position: absolute;
  display: block;
  margin: auto;
  bottom: 354px;
  max-width: 1072px;
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  text-align: center;
  background-color: rgba(0,0,0,0.4);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}
@media (max-width: 1105px) {
  #load .text {
  width: calc(100% - 36px);
}
}