﻿.dropzone {
  border: 3px dashed steelblue;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
  color: #444;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
}

  .dropzone:hover {
    background-color: #f3f3f3;
    color: #333;
  }

  .dropzone input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }

.dropzone-drag {
  background-color: palegreen;
}

.l-file {
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
  position: absolute;
}

.l-file-input label {
  display: block;
  position: relative;
  width: 100px;
  height: 25px;
  border-radius: 5px;
  background: #201747;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.l-file-input input:hover + label,
.l-file-input input:focus + label {
  transform: scale(1.02);
}

.l-file-input input:focus + label {
  outline: 1px solid #000;
  outline: -webkit-focus-ring-color auto 2px;
}


.l-file-name {
  position: absolute;
  bottom: -35px;
  left: 10px;
  font-size: 0.85rem;
  color: #555;
}
