#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2;
  cursor: pointer;
}

#overlay-title {
  position: absolute;
  top: 40%;
  left: 50%;
  font-size: 24px;
  color: white;
  font-weight: 600;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}

#overlay-subtitle {
  position: absolute;
  top: 44%;
  left: 50%;
  font-size: 14px;
  color: white;
  font-weight: 600;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}

@media (min-width: 576px) {
  #overlay-title {
    font-size: 43px;
  }
  #overlay-subtitle {
    font-size: 20px;
    top: 46%;
  }
}

@media (min-width: 992px) {
  #overlay-title {
    font-size: 70px;
  }
  #overlay-subtitle {
    top: 48%;
    font-size: 25px;
  }
}

/* Loader */

.cssload-loader {
  width: 97px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
@media (min-width: 576px) {
  .cssload-loader {
    top: 53%;
  }
}
@media (min-width: 992px) {
  .cssload-loader {
    top: 56%;
  }
}
.cssload-loader > div {
  content: " ";
  width: 19px;
  height: 19px;
  background: rgb(33, 150, 243);
  border-radius: 100%;
  position: absolute;
  animation: cssload-shift 2.3s linear infinite;
  -o-animation: cssload-shift 2.3s linear infinite;
  -ms-animation: cssload-shift 2.3s linear infinite;
  -webkit-animation: cssload-shift 2.3s linear infinite;
  -moz-animation: cssload-shift 2.3s linear infinite;
}
.cssload-loader > div:nth-of-type(1) {
  animation-delay: -0.46s;
  -o-animation-delay: -0.46s;
  -ms-animation-delay: -0.46s;
  -webkit-animation-delay: -0.46s;
  -moz-animation-delay: -0.46s;
}
.cssload-loader > div:nth-of-type(2) {
  animation-delay: -0.92s;
  -o-animation-delay: -0.92s;
  -ms-animation-delay: -0.92s;
  -webkit-animation-delay: -0.92s;
  -moz-animation-delay: -0.92s;
}
.cssload-loader > div:nth-of-type(3) {
  animation-delay: -1.38s;
  -o-animation-delay: -1.38s;
  -ms-animation-delay: -1.38s;
  -webkit-animation-delay: -1.38s;
  -moz-animation-delay: -1.38s;
}
.cssload-loader > div:nth-of-type(4) {
  animation-delay: -1.84s;
  -o-animation-delay: -1.84s;
  -ms-animation-delay: -1.84s;
  -webkit-animation-delay: -1.84s;
  -moz-animation-delay: -1.84s;
}

@keyframes cssload-shift {
  0% {
    left: -58px;
    opacity: 0;
    background-color: rgb(255, 255, 0);
  }
  10% {
    left: 0;
    opacity: 1;
  }
  90% {
    left: 97px;
    opacity: 1;
  }
  100% {
    left: 156px;
    background-color: rgb(255, 0, 0);
    opacity: 0;
  }
}

@-o-keyframes cssload-shift {
  0% {
    left: -58px;
    opacity: 0;
    background-color: rgb(255, 255, 0);
  }
  10% {
    left: 0;
    opacity: 1;
  }
  90% {
    left: 97px;
    opacity: 1;
  }
  100% {
    left: 156px;
    background-color: rgb(255, 0, 0);
    opacity: 0;
  }
}

@-ms-keyframes cssload-shift {
  0% {
    left: -58px;
    opacity: 0;
    background-color: rgb(255, 255, 0);
  }
  10% {
    left: 0;
    opacity: 1;
  }
  90% {
    left: 97px;
    opacity: 1;
  }
  100% {
    left: 156px;
    background-color: rgb(255, 0, 0);
    opacity: 0;
  }
}

@-webkit-keyframes cssload-shift {
  0% {
    left: -58px;
    opacity: 0;
    background-color: rgb(255, 255, 0);
  }
  10% {
    left: 0;
    opacity: 1;
  }
  90% {
    left: 97px;
    opacity: 1;
  }
  100% {
    left: 156px;
    background-color: rgb(255, 0, 0);
    opacity: 0;
  }
}

@-moz-keyframes cssload-shift {
  0% {
    left: -58px;
    opacity: 0;
    background-color: rgb(255, 255, 0);
  }
  10% {
    left: 0;
    opacity: 1;
  }
  90% {
    left: 97px;
    opacity: 1;
  }
  100% {
    left: 156px;
    background-color: rgb(255, 0, 0);
    opacity: 0;
  }
}
