/* UPLOAD IMAGE */

.upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.upload__btn {
    display: block;
    font-weight: 600;
    color: #000000;
    text-align: center;
    min-width: auto;
    padding: 9px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #b2b5ff;
    border-radius: 3px;
}
label.upload__btn p {
    margin: 0;
    text-transform: uppercase;
}
.upload__btn:hover {
  background-color: #3b1ebd;
  color: #c2c4ff;
  transition: all 0.3s ease;
}
.upload__btn-box {
  margin-bottom: 10px;
}
.upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  justify-content: space-around;
}
.upload__img-box {
    width: 19%;
    padding: 5px;
    margin-bottom: 10px;
    background-color: #6ef53e;
    border-radius: 3px;
}
.upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
.upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
}