.uploader {
  display: block;
  clear: both;
  margin: 0 auto;
  width: 500px;
  /* max-width: 600px; */

  label {
    float: left;
    clear: both;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 7px;
    border: 3px solid #eee;
    transition: all 0.2s ease;
    user-select: none;

    &:hover {
      border-color: #30475e;
    }
    &.hover {
      border: 3px solid #30475e;
      box-shadow: inset 0 0 0 6px #eee;

      #start {
        i.fa {
          transform: scale(0.8);
          opacity: 0.3;
        }
      }
    }
  }
  .fa-download {
    color: #30475e;
  }
}

#user-profile-start,
#company-logo-image-start {
  float: left;
  clear: both;
  width: 100%;
  &.hidden {
    display: none;
  }
  i.fa {
    font-size: 50px;
    margin-bottom: 1rem;
    transition: all 0.2s ease-in-out;
  }
}
#user-profile-response,
#company-logo-image-response {
  float: left;
  clear: both;
  width: 100%;
  &.hidden {
    display: none;
  }
  #messages {
    margin-bottom: 0.5rem;
  }
}

#user-profile-image,
#company-logo-image {
  display: inline;
  margin: 0 auto 0.5rem auto;
  width: auto;
  height: auto;
  max-width: 180px;
  &.hidden {
    display: none;
  }
}

#user-profile-notimage,
#company-logo-image-notimage {
  display: block;
  float: left;
  clear: both;
  width: 100%;
  &.hidden {
    display: none;
  }
}

#user-profile-progress,
#company-logo-image-progress {
  /* appearance: none; */
  display: inline;
  clear: both;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
  height: 8px;
  border: 0;
  border-radius: 4px;
  background-color: #eee;
  overflow: hidden;
}

.progress::-webkit-progress-bar {
  border-radius: 4px;
  background-color: #eee;
}

.progress::-webkit-progress-value {
  background: linear-gradient(to right, darken(black, 8%) 0%, black 50%);
  border-radius: 4px;
}

.progress::-moz-progress-bar {
  background: linear-gradient(to right, darken(black, 8%) 0%, black 50%);
  border-radius: 4px;
}

input[type="file"] {
  display: none;
}

#user-profile-image-btn,
#company-logo-image-btn {
  display: inline-block;
  margin: 0.5rem 0.5rem 1rem 0.5rem;
  clear: both;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: initial;
  border: none;
  border-radius: 0.2rem;
  outline: none;
  padding: 0 1rem;
  height: 36px;
  line-height: 36px;
  color: #fff;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  background: #30475e;
  border-color: black;
  cursor: pointer;
}
