.sp-universalfront {
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
}

.sp-universalfront > fieldset {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.sp-universalfront > fieldset:disabled {
  pointer-events: none;
}

.sp-universalfront.is-locked > fieldset {
  opacity: 0.2;
  pointer-events: none;
}

.sp-universalfront.is-locked > .sp-universalfront-loader {
  visibility: visible;
}

.sp-universalfront .sp-universalfront-loader {
  position: absolute;
  z-index: 10;
  display: block;
  visibility: hidden;
  opacity: 1;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.sp-universalfront .sp-universalfront-loader.is-active {
  visibility: visible;
}

.sp-universalfront .sp-universalfront-loader-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.sp-universalfront .sp-universalfront-loader-spinner {
  display: inline-block;
  -webkit-animation: sp-universalfront-spin 0.5s linear infinite;
          animation: sp-universalfront-spin 0.5s linear infinite;
  border: solid 3px transparent;
  border-top: solid 3px #0071a1;
  border-radius: 100%;
  width: 10px;
  height: 10px;
}

.sp-universalfront.is-loading-file .sp-universalfront-loader-progress-bar {
  display: block;
}

.sp-universalfront .sp-universalfront-loader-progress-bar {
  display: none;
  max-width: 100%;
  width: 3em;
  background: silver;
  margin-top: 0.5em;
  border-radius: 5px;
  overflow: hidden;
}

.sp-universalfront .sp-universalfront-loader-progress-bar-strip {
  width: 0;
  height: 0.5em;
  background: #0071a1;
}

.sp-universalfront .sp-universalfront-loader-progress-bar-strip[data-sp-progress="100"] {
  -webkit-animation: sp-universalfront-barberpole 1s linear infinite;
          animation: sp-universalfront-barberpole 1s linear infinite;
  background-size: 15px 15px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.5) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 75%, transparent 75%, transparent);
}

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

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

@-webkit-keyframes sp-universalfront-barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 30px;
  }
}

@keyframes sp-universalfront-barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 30px;
  }
}
/*# sourceMappingURL=SPUniversalFront.css.map */