.u-fileupload {
  .fileInTableCtn {
    overflow: auto;
    min-height: 120px;
  }

  .fileInTableMulti {
    min-width: 200px;
    max-height: 200px;
  }

  .file-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
  }

  .file-mask.active {
    display: block;
    background: rgba(0, 0, 0, 0.2);
  }

  .view-detail {
    cursor: pointer;
    color: #3ca7e3;
    font-size: 12px;

    .fa-paperclip {
      transform: rotate(45deg);
    }
  }

  .view-detail:hover {
    color: #2e8ded;
  }

  /* modalfileupload*/
  .modalfileupload {
    visibility: hidden;
    position: absolute;
    top: -10px;
    min-width: 200px;
    min-height: 32px;
    box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
    padding: 10px 0 0 0;
    border-radius: 4px;
    background-color: #FFF;

    .webuploader-pick+div {
      width: 100% !important;
      height: 20px !important;
    }

    .single .webuploader-pick {
      color: #00a2d4;
      font-size: 20px;
      line-height: 26px;
      width: 100%;
    }

    .uploader-list {
      .item {
        width: 100%;
      }

      .file-info {
        border: none;
        background: #FFF;

        &:hover {
          background: #e4f3ff;

          .filename {
            text-decoration: underline;
          }
        }

        .filename {
          color: #333;
          text-decoration: none;
          width: 85%;
        }
        .filename-download {
          position: absolute;
          width: 30px;
          right: 10px;
        }
        .fa-remove {
          color: #ec4e49 !important;
          right: 6px;
        }
      }
    }

    &.active {
      display: block;
      z-index: 1000;
      visibility: visible;
      margin-bottom: 50px;
    }

    &.u-file-left {
      left: 0
    }

    &.u-file-right {
      right: 100px
    }

    .btns {
      display: block;
      width: 100%;

      .btn-upload {
        width: 100%;
        background: #f4f4f4;
        color: #3ca7e2;
        top: 0;
      }
    }
  }
}