/* Importing Inter Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #fff;
}
.header {
    padding: 20px 60px;
    text-align: left;
    background: transparent;
    font-size: 30px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}
.header img {
    width: 260px;
}
.footer {
    position: fixed;
    height: 50px;
    background-color: transparent;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin-bottom: 0px;
    padding: 0px 60px 20px 60px;
    font-size: 0.8em;
}
.footer img {
    width: 60px;
    margin: -4px 20px 20px 0px;
}
.footer > img,
.footer > p {
    display: inline-block;
    float: left;
}
.file-uploader {
    width: 500px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.file-uploader .uploader-header {
    display: flex;
    padding: 20px;
    background: #EEF1FB;
    align-items: center;
    border-radius: 5px 5px 0 0;
    justify-content: space-between;
}
.uploader-header .uploader-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8em;
}
.uploader-header .file-completed-status {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}
.file-uploader .file-list {
    list-style: none;
    width: 100%;
    padding-bottom: 10px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-color: #999 transparent;
    scrollbar-width: thin;
}
.file-uploader .file-list:has(li) {
    padding: 20px;
}
.file-list .file-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}
.file-list .file-item:last-child {
    margin-bottom: 0px;
}
.file-list .file-item .file-extension {
    height: 50px;
    width: 50px;
    color: #fff;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #5145BA;
}
.file-list .file-item .file-content-wrapper {
    flex: 1;
}
.file-list .file-item .file-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.file-list .file-item .file-name {
    font-size: 1rem;
    font-weight: 600;
}
.file-list .file-item .file-info {
    display: flex;
    gap: 5px;
}
.file-list .file-item .file-info small {
    color: #5c5c5c;
    margin-top: 5px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}
.file-list .file-item .file-info .file-status {
    color: #5145BA;
}
.file-list .file-item .cancel-button {
    align-self: center;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font-size: 1.4rem;
}
.file-list .file-item .cancel-button:hover {
    color: #E3413F;
}
.file-list .file-item .file-progress-bar {
    width: 100%;
    height: 3px;
    margin-top: 10px;
    border-radius: 30px;
    background: #d9d9d9;
}
.file-list .file-item .file-progress-bar .file-progress {
    width: 0%;
    height: inherit;
    border-radius: inherit;
    background: #5145BA;
}
.file-uploader .file-upload-box {
    margin: 10px 20px 20px;
    border-radius: 5px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #B1ADD4;
    transition: all 0.2s ease;
}
.file-uploader .file-upload-box.active {
    border: 2px solid #5145BA;
    background: #F3F6FF;
}
.file-uploader .file-upload-box .box-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #626161;
}
.file-uploader .file-upload-box.active .box-title {
    pointer-events: none;
}
.file-upload-box .box-title .file-browse-button {
    color: #5145BA;
    cursor: pointer;
}
.file-upload-box .box-title .file-browse-button:hover {
    text-decoration: underline;
}



/* CSS */
.button-3 {
  appearance: none;
  background-color: #5145BA;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  float: right;
  margin: 0px 10px 10px 0px;
}

.button-3:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-3:hover {
  background-color: #5145DA;
}

.button-3:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}

.button-3:disabled {
  background-color: #94d3a2;
  border-color: rgba(27, 31, 35, .1);
  color: rgba(255, 255, 255, .8);
  cursor: default;
}

.button-3:active {
  background-color: #5145DA;
  box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
}

input[type="text"] {
  border-radius: 2px;
  display: block;
  font-family: inherit;
  font-size: 100%;
  margin: 0 4% 28px 4%;
  box-sizing: border-box;
  width: 92%;
  padding: 5px;
  height: 30px;
  border: 1px solid #888;
}

label {
  display: block;
  font-family: inherit;
  font-size: 70%;
  box-sizing: border-box;
  width: 92%;
  padding: 0px;
  height: 30px;
  margin: 20px 4% -12px 4%;
}


.modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  width: 450px;
  padding: 1.3rem;
  min-height: 150px;
  position: absolute;
  z-index: 2;
  top: 40%;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1;
}

p#loadtext {
    color: #333;
    text-transform: uppercase;
    font-size: 80%;
    margin-top: -30px;
}

.hidden {
    display: none;
}

