.dbp-is-active {
  opacity: 1;
}

.dbp-is-inactive {
  opacity: 0;
  pointer-events: none;
}

.dbp-loading-spinner {
  height: 64px;
}
.dbp-loading-spinner svg {
  width: 64px;
  height: 64px;
}
.dbp-loading-spinner svg path {
  fill: #0057b8;
}

.dbp-loading-panel {
  background-color: #fff;
  border: 1px solid #e0e5eb;
  border-radius: 6px;
  -webkit-box-shadow: 0 12px 24px 5px rgba(61, 76, 92, 0.3);
          box-shadow: 0 12px 24px 5px rgba(61, 76, 92, 0.3);
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
}

.dbp-loading-panel-content {
  width: 100%;
  text-align: center;
  padding: 1rem 0.5rem;
  overflow-y: hidden;
  overflow-x: hidden;
}
.dbp-loading-panel-content p {
  margin-top: 1.5rem;
}

.dbp-loading-indicator-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  background-clip: content-box;
  background-color: rgba(0, 0, 0, 0.25);
  padding: inherit;
}
.dbp-loading-indicator-container.dbp-loading-indicator-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dbp-loading-indicator.dbp-loading-indicator-panel {
  max-width: 250px;
  max-height: 90%;
}
.dbp-loading-indicator.dbp-loading-indicator-panel.dbp-with-panel-text {
  min-width: 200px;
  min-height: 180px;
}
.dbp-loading-indicator.dbp-loading-indicator-panel.dbp-no-panel-text {
  width: 150px;
  height: 150px;
}

.dbp-loading-indicator-stylewrapper {
  position: relative;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: notAllowed;
}
.dbp-loading-indicator-stylewrapper .preventDefault {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 9999;
}

.dbp-loading-indicator-styleloader {
  background: #ffffff;
  padding: 20px;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.dbp-loading-indicator-styleblocker {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 9999;
}