
  .upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    position: absolute;
    z-index: -1;
  }
  .upload__btn {
    display: inline-block;
    height: 50px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border: 2px solid;
    background-color: #1E4356;
    border-color: #1E4356;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .upload__btn:hover {
    background-color: unset;
    color: #1E4356;
  }
  .upload__img-box {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .upload__btn-box {
    margin-bottom: 10px;
  }
  .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: '\2716';
    font-size: 14px;
    color: white;
  }
  .img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    border-radius: 20px;
    width: 200px;
    height: 150px;
    margin-bottom: 20px;
  }
  