* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  /* body {
    background-color: #025bee;
  } */
  .container-file {
    background-color: #fafafa;
    width: 100%;
    /* max-width: 34.37em; */
    /* outline: dotted; */
    border-style: dotted;
    border-width: 1px;
    position: relative;
    margin: 2.1em 7em 0 0;
    padding: 2.1em 1em;
    border-radius: 0.43em;
    /* box-shadow: 0 1.25em 2.18em rgb(1, 28, 71, 0.3); */
  }
  input[type="file"] {
    display: none;
  }
  .file-browser {
    display: block;
    position: relative;
    background-color: #826afb;
    color: #ffffff;
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    width: 18.75em;
    padding: 1.1em 0;
    margin: auto;
    border-radius: 0.31em;
    cursor: pointer;
  }
  #num-of-files {
    font-weight: 400;
    text-align: center;
    margin: 1.25em 0 1.87em 0;
  }
  ul {
    list-style-type: none;
  }
  .container-file li {
    font-weight: 500;
    background-color: #eff5ff;
    color: #826afb;
    margin-bottom: 1em;
    padding: 1.1em 1em;
    border-radius: 0.3em;
    display: flex;
    justify-content: space-between;
  }

  @media (max-width: 991px) {
    .file-browser{
		   width: 12.75em;
	}

}