:root {
  --bs-border-color: #ced4da;
}

.loading {
  position: relative;
  z-index: 100;
  min-height: 30px;
}
.loading .modal-close {
  z-index: 1103;
}
.loading::before {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1101;
  animation: fadeIn 0.2s normal cubic-bezier(0.42, 0, 1, 1);
}
.loading::after {
  content: "";
  opacity: 1;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #07d;
  border-bottom-color: #07d;
  animation: spinner 0.8s ease infinite, fadeIn 0.2s normal cubic-bezier(0.42, 0, 1, 1);
  z-index: 1102;
}
.loading.loading-hidden::before {
  opacity: 0;
  animation: fadeOut 0.1s normal cubic-bezier(0.42, 0, 1, 1);
}
.loading.loading-hidden::after {
  opacity: 0;
  animation: fadeOut 0.1s normal cubic-bezier(0.42, 0, 1, 1);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.trv-app-loader,
.trv-fullscreen-loader {
  position: fixed !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #eee;
  z-index: 99999999;
  opacity: 1;
}
.trv-app-loader::after,
.trv-fullscreen-loader::after {
  top: 40%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  border: 6px solid transparent;
  border-top-color: #07d;
  border-bottom-color: #07d;
}
.trv-app-loader.fade-out,
.trv-fullscreen-loader.fade-out {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.trv-app-loader .trv-loader-text,
.trv-fullscreen-loader .trv-loader-text {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  display: block !important;
  margin-top: 6rem;
  max-width: 500px;
  font-style: italic;
  text-align: center;
  z-index: 1103;
}
.trv-app-loader .trv-loader-text p,
.trv-fullscreen-loader .trv-loader-text p {
  margin-bottom: 0.5rem;
}

/*# sourceMappingURL=loader.css.map*/