/* ---------------------------------------------- /*
 * Preloader
/* ---------------------------------------------- */

p {
  font-size: 13pt !important;
  white-space: pre-wrap;
  word-break: normal;
}

#preloader {
  background: #fff;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

#status {
  background-image: url("../images/preloader.gif");
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  left: 50%;
  margin: -100px 0 0 -100px;
  position: absolute;
  top: 50%;
  width: 200px;
}

.jumbotron {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  transform: translate(-50%, -50%);
}

.w3-card-2 {
  word-break: break-all;
  width: 100%;
}

#wrapper {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  overflow: hidden;
}
#scroller {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 100%;
  background-color: transparent;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
}
#scroller ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
#scroller li {
  display: flex;
  float: left;
  width: 600px;
  height: 100%;
  background-color: transparent;
  font-size: 14px;
  align-items: flex-start;
  align-content: flex-start;
}

.iScrollHorizontalScrollbar {
  height: 14px !important;
}

.loader {
  position: relative;
  left: 45%;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #337ab7;
  border-right: 16px solid #5cb85c;
  border-bottom: 16px solid #d9534f;
  margin-top: 50px;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

.mt-5 {
  margin-top: 5px;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
