*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body{
  font-family: "Muli", sans-serif;
  font-weight: 300;
}
strong, b{
  font-weight: 600;
}
.wrapper{
  width: 100%;
  padding-right: 300px;
  position: relative;
  min-height: 100vh;
}
#dropzone{
  width: 100%;
  min-height: 400px;
  background: #ededed;
  padding: 50px;
  position: relative;
  min-height: 100vh;
}
#dropzone .text{
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%,-50%);
  opacity: 0.4;
}
#dropzone .text b{
  display: inline-block;
  font-size: 30px;
  margin-bottom: 20px;
}
#dropzone.dz-started .text{
  display: none;
}
#dropzone.dz-started .sidebar button{
  display: block;
}
.dz-image{
  display: none;
}
.dz-success-mark, .dz-error-mark{
  display: none;
}
.dz-preview{
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}
.dz-size{
  float: right;
}
.dz-remove{
  position: absolute;
  background: #fd4545;
  top: 4px;
  left: 0;
  text-indent: -9999px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: block;
}
.dz-remove:after,.dz-remove:before{
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 6px;
  left: 4px;
  transform: rotate(-45deg);
}
.dz-remove:after{
  transform: rotate(45deg);
}
.sidebar{
  position: absolute;
  width: 300px;
  right: -300px;
  top: 0;
  height: 100%;
  background: #f9f9f9;
  padding: 40px 40px;
}
.sidebar .form-item{
  margin-bottom: 10px;
}
.sidebar label{
  width: 70px;
  display: inline-block;
}
.sidebar input[type="number"]{
  width: 70px;
  padding: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}
.sidebar input[type="text"]{
  width: 160px;
  padding: 5px;
  text-align: left;
  font-size: 14px;
  font-weight: 300;
}
.sidebar button{
  -webkit-appearance: none;
  display: none;
  width: 100%;
  background: #5bbb86;
  color: #fff;
  margin-top: 30px;
  border: 0;
  border-radius: 0;
  padding: 10px 15px;
  font-size: 15px;
  outline: none;
}
.status{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ededed;
  display: none;
}
.status > div{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.upload-process .process{
  position: relative;
  width: 200px;
  height: 20px;
  background: #c5c5c5;
  display: inline-block;
  margin-top: 10px;
}
.upload-process .process span{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0px;
  background: #5bbb86;
  transition: all .3s linear;
}
.optimize-process img{
  margin-top: 15px;
}
.download a{
  -webkit-appearance: none;
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 10px auto;
  text-decoration: none;
  background: #5bbb86;
  color: #fff;
  margin-top: 30px;
  border: 0;
  border-radius: 0;
  padding: 10px 15px;
  font-size: 15px;
  outline: none;
}
.download i, .optimize-error i{
  font-style: normal;
  cursor: pointer;
  font-size: 14px;
  margin: 15px 0 0;
  display: inline-block;
}

.rename-item{
  margin-top: 10px;
  display: none;
}
