@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* .frame .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, #3B92AD, #5B9F5B);
  display: flex;
  justify-content: center;
  align-items: center;
}
* .frame .center .window {
  background: #fff;
  box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.3);
  width: 70%;
  height: 60%;
}
* .frame .center .window header {
  font-size: 0.95rem;
  text-align: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #ccc;
}
* .frame .center .window .progress-bar {
  width: 0%;
  height: 1.5%;
  background: #6ECE3B;
  position: relative;
  bottom: 2px;
}
* .frame .center .window .progress-bar.transferring {
  width: 100%;
  transition: width 4s linear;
}
* .frame .center .window .upload-region {
  width: 35%;
  height: 35%;
  margin: 1.6rem auto 1.5rem auto;
  position: relative;
}
* .frame .center .window .upload-region div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
* .frame .center .window .upload-region .drop-region {
  background: #fff;
  border: 1px dotted #aaa;
  font-size: 0.8rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
* .frame .center .window .upload-region .drop-region.fileDropped {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s linear;
}
* .frame .center .window .upload-region .drop-region input[type=file] {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
* .frame .center .window .upload-region .drop-region .file-name {
  width: 100%;
  text-align: center;
  word-wrap: break-word;
  display: none;
}
* .frame .center .window .upload-region .uploading {
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
}
* .frame .center .window .upload-region .uploading.transferring {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s linear 0.5s;
  animation: rotate 2.5s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
* .frame .center .window .upload-region .uploading.transferring.finished {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s linear;
}
* .frame .center .window .upload-region .done {
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
}
* .frame .center .window .upload-region .done.finished {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s linear 0.5s;
}
* .frame .center .window .upload-btn {
  display: block;
  outline: none;
  border: none;
  background: #6ECE3B;
  color: #fff;
  border-radius: 5%;
  box-shadow: 0px 2px #438221;
  margin: 0 auto;
  width: 7.8rem;
  height: 2.2rem;
}
* .frame .center .window .upload-btn:hover {
  box-shadow: 0px 2px #438221, 0px 5px 3px 3px rgba(87, 171, 43, 0.1), 1px 0px 3px 2px rgba(87, 171, 43, 0.1), 0px -1px 3px 2px rgba(87, 171, 43, 0.1), -1px 0px 3px 2px rgba(87, 171, 43, 0.1);
}

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