.block-infomation {
  background: #fff;
}
.block-infomation .block-body {
  background: #b7b7b7;
  padding: 10px;
  border-radius: 4px;
  display: inline-block;
  line-height: 1;
}

.btn-copy {
  border: none;
  padding: 0px;
  line-height: 1;
  border-radius: 0px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ebebee;
  border: 1px solid transparent;
  position: relative;
  border-radius: 3px;
}
.btn-copy:focus {
  outline: none;
  box-shadow: none;
}
.btn-copy.active {
  border-color: #e5101d;
}
.btn-copy.active:before {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -4px;
  z-index: 3;
  height: 13px;
  width: 13px;
  padding: 10px;
  background: url("../image/true.png") no-repeat center;
  border-bottom-right-radius: 3px;
}

/* Loader */
.loading-fixed {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.loading-fixed.active {
  visibility: visible;
  opacity: 1;
}

.loading-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  flex-wrap: wrap;
}

.loading {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  color: #009580;
}

.alert-text {
  color: #fff;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.alert-text p {
  width: 100%;
  padding: 0px 0%;
}

.loading:before,
.loading:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}

.loading:after {
  color: #009580;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin {
  0%, 100% {
    box-shadow: 0.5em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.5em 0.5em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.5em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.5em 0.5em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.5em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.5em -0.5em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.5em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.5em -0.5em 0 0 currentcolor;
  }
}
.timer-checking,
.time-arrow {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.time-arrow {
  padding: 0px 10px;
  position: relative;
  top: -1px;
}

.trundcat {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 600px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 15px;
}

.nav-paginate {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-paginate .hidden {
  display: none;
}

.nav-paginate a {
  text-decoration: none;
  color: inherit;
}

.badge {
  display: inline-block;
  font-size: 75%;
  padding: 3px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-success {
  color: #fff;
  background-color: #007bff;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}/*# sourceMappingURL=base.css.map */