.cuar-dropzone {
  position: relative;
  width: 100%;
  height: 150px;
  line-height: 150px;
  text-align: center;
  font-weight: bold;
  background: #fafafa;
  border: 4px dashed #f0f0f0;
  border-radius: 8px;

  & > input[type=file] {
    /* opacity: 0; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .cuar-dropzone-message {
    display: block;
    text-align: center;
    font-size: 24px;
    color: #e0e0e0;
    margin: 16px;

    &>.dashicons {
      margin: 8px;
      color: #e0e0e0;
      font-size: 50px;
      width: 50px;
      height: 50px;
      text-align: center;
    }
  }

  &.hover {
    background: #eaeaea;
    border-color: #e0e0e0;

    .cuar-dropzone-message {
      color: #c0c0c0;

      & > .dashicons {
        color: #c0c0c0;
      }
    }
  }

  &.fade {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 1;
  }
}