body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Lato', arial, sans-serif;
}

#uploaded-files {
    display: flex;
    flex-direction: column;
}

#uploaded-files-toggle {
    font-weight: bold;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    color: #333;

    padding: 10px;
    font-size: 16px;

    outline: none;
}
#uploaded-files-toggle:hover {
    border-bottom: 1px solid #333;
}

.form-upload {
    margin-top: 20px
}

.form-upload form {
    margin: 0;
}

.form-upload__label {
    margin-bottom: 8px;
    font-family: 'Gilroy', arial, sans-serif;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn.btn-primary {
    background: #00AEE6 !important;
    border-radius: 0;
    color: #fff;
}

.btn.btn-primary:hover {
    background: #1c3786 !important
}

.btn-upload {
    margin: 10px auto;
    width: 150px;

    display: block;
}

.click-to-copy,
.click-to-copy:visited,
.click-to-copy:active {
    color: #222 !important;
    font-weight: bold;
}

.click-to-copy:hover {
    text-decoration: underline;
}