.reveal-on-scroll {
  opacity: 0;
}

#loadingStatus {
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: 400ms linear;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#loadingStatus.active {
  opacity: 1;
  pointer-events: all;
}
#loadingStatus .widget {
  margin: 0 auto;
  text-align: center;
}
#loadingStatus .widget .caption {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
}
#loadingStatus .widget .caption a:link,
#loadingStatus .widget .caption a:visited {
  color: #ffffff;
  text-decoration: underline;
}
#loadingStatus .widget .caption a:active {
  color: #ffffff;
  text-decoration: none;
}
#loadingStatus .spinner {
  margin-bottom: 10px;
}
#loadingStatus .spinner img {
  width: 30px;
  height: 30px;
}
#loadingStatus .spinner img.animate {
  animation: loading-spin linear 1s infinite;
  -webkit-animation: loading-spin linear 1s infinite;
  -moz-animation: loading-spin linear 1s infinite;
}

@keyframes loading-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#floatingWidget {
  position: fixed;
  padding: 5px;
  bottom: 70px;
  right: 0;
  z-index: 20000;
  text-align: center;
}
@media (max-width: 576px) {
  #floatingWidget {
    bottom: 150px;
    margin-right: -20px;
  }
}
@media (max-width: 400px) {
  #floatingWidget {
    bottom: 120px;
  }
}
@media (max-width: 320px) {
  #floatingWidget {
    bottom: 40px;
  }
}
#floatingWidget img.btn-buynow, #floatingWidget img.btn-call {
  display: inline-block;
  width: 240px;
  height: 90px;
  cursor: pointer;
}
@media (max-width: 576px) {
  #floatingWidget img.btn-buynow, #floatingWidget img.btn-call {
    width: 90px;
    height: 90px;
    margin-top: -10px;
  }
}
#floatingWidget img.btn-back-to-top {
  display: inline-block;
  width: 75px;
  height: 75px;
  margin-top: -5px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: ease-out 0.3s;
}
#floatingWidget img.btn-back-to-top.active {
  opacity: 1;
  pointer-events: all;
}
#floatingWidget img:hover {
  opacity: 0.9;
}/*# sourceMappingURL=components.css.map */