/**
* Uppy CSS and all of its out-of-the-box plugins
*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.UppyAnimation-zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/**
  * General Uppy styles that apply to everything inside the .Uppy container
  */
.uppy {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica, "helvetica neue", ubuntu, roboto, noto, "segoe ui", arial, sans-serif;
  line-height: 1;
}

.uppy *,
.uppy *:before,
.uppy *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.UppyIcon {
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
}

.UppyIcon--svg-baseline {
  bottom: -0.125em;
  position: relative;
}

.UppyButton--circular {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  -webkit-box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.UppyButton--blue {
  color: #fff;
  background-color: #4A90E2;
}

.UppyButton--blue:hover,
.UppyButton--blue:focus {
  background-color: #2275d7;
}

.UppyButton--white {
  color: #525252;
  background-color: #fff;
}

.UppyButton--white:hover,
.UppyButton--white:focus {
  color: #fff;
  background-color: #2275d7;
}

.UppyButton--yellow {
  color: #fff;
  background-color: #FFD600;
}

.UppyButton--yellow:hover,
.UppyButton--yellow:focus {
  background-color: #e6c100;
}

.UppyButton--green {
  color: #fff;
  background-color: #7AC824;
}

.UppyButton--green:hover,
.UppyButton--green:focus {
  background-color: #609d1c;
}

.UppyButton--red {
  color: #fff;
  background-color: #D32F2F;
}

.UppyButton--red:hover,
.UppyButton--red:focus {
  background-color: #ab2424;
}

.UppyButton--sizeM {
  width: 60px;
  height: 60px;
}

.UppyButton--sizeS {
  width: 45px;
  height: 45px;
}

.uppy-FileInput-container {
  margin-bottom: 15px;
}

.uppy-FileInput-btn {
  background: none;
  -webkit-appearance: none;
  line-height: 1;
  margin: 0;
  font-family: sans-serif;
  font-size: 0.85em;
  padding: 10px 15px;
  color: #1b5dab;
  border: 1px solid #1b5dab;
  border-radius: 8px;
  cursor: pointer;
}

.uppy-FileInput-btn:hover {
  background-color: #1b5dab;
  color: #fff;
}

.uppy-Informer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  background-color: #000;
  color: #fff;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  z-index: 1004;
}

.uppy-Dashboard--wide .uppy-Informer {
  height: 40px;
  line-height: 40px;
  font-size: 13px;
}

.uppy-Informer[aria-hidden=true] {
  opacity: 0;
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.uppy-Informer p {
  margin: 0;
  padding: 0;
  height: 30px;
  line-height: 30px;
}

.uppy-Dashboard--wide .uppy-Informer p {
  height: 40px;
  line-height: 40px;
}

.uppy-Informer span {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 3px;
  font-size: 10px;
  margin-left: -1px;
}

.uppy-Informer span:after {
  line-height: 1.3;
  word-wrap: break-word;
}

.uppy-ProgressBar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.uppy-ProgressBar[aria-hidden=true] {
  height: 0;
}

.uppy-ProgressBar-inner {
  background-color: #4A90E2;
  -webkit-box-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
  height: 100%;
  width: 0;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.uppy-ProgressBar-percentage {
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
}

.uppy-StatusBar {
  position: relative;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: rgba(82, 82, 82, 0.7);
  -webkit-box-shadow: 1px 1px 4px 0 rgba(82, 82, 82, 0.3);
  box-shadow: 1px 1px 4px 0 rgba(82, 82, 82, 0.3);
  z-index: 1001;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.uppy-StatusBar[aria-hidden=true] {
  overflow-y: hidden;
  height: 0;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-progress {
  background-color: #7AC824;
}

.uppy-StatusBar.is-error .uppy-StatusBar-progress {
  background-color: #D32F2F;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-content {
  text-align: center;
  padding-left: 0;
}

.uppy-StatusBar:not([aria-hidden=true]).is-waiting {
  background-color: #fff;
  height: 65px;
  line-height: 65px;
}

.uppy-StatusBar-progress {
  background-color: #4A90E2;
  height: 100%;
  position: absolute;
  z-index: 1001;
  -webkit-transition: background-color, width 0.3s ease-out;
  transition: background-color, width 0.3s ease-out;
}

.uppy-StatusBar-progress.is-indeterminate {
  background-size: 64px 64px;
  background-image: linear-gradient(45deg, #2275d7 25%, transparent 25%, transparent 50%, #2275d7 50%, #2275d7 75%, transparent 75%, transparent);
  -webkit-animation: statusBarProgressStripes 1s linear infinite;
  animation: statusBarProgressStripes 1s linear infinite;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-progress {
  display: none;
}

@-webkit-keyframes statusBarProgressStripes {
  from {
    background-position: 64px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes statusBarProgressStripes {
  from {
    background-position: 64px 0;
  }
  to {
    background-position: 0 0;
  }
}
.uppy-StatusBar-content {
  position: relative;
  z-index: 1002;
  padding-left: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
}

.uppy-StatusBar-statusIndicator {
  color: #fff;
  margin-right: 8px;
}

button.uppy-StatusBar-statusIndicator {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  margin-right: 8px;
  cursor: pointer;
}

.uppy-StatusBar-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  z-index: 1004;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actions {
  left: 20px;
  right: initial;
}

.uppy-StatusBar-actionBtn {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  margin: 0;
  border: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1em;
  font-weight: 400;
  padding: 7px 10px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.uppy-StatusBar-actionBtn:not(:last-child) {
  margin-right: 5px;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn {
  padding: 13px 30px;
  font-size: 15px;
}

.uppy-StatusBar-actionBtn--upload {
  background-color: #fff;
  color: #4A90E2;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  background-color: #4A90E2;
  color: #fff;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover {
  background-color: #1b5dab;
}

.uppy-StatusBar-actionBtn--retry {
  background-color: #fff;
  color: #D32F2F;
}

.uppy-StatusBar-details {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #D32F2F;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 6px;
  font-size: 10px;
  text-align: center;
}

.uppy-StatusBar-details:after {
  line-height: 1.3;
  word-wrap: break-word;
}

/*# sourceMappingURL=loginStyle.css.map */
