<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.file-upload-container {
    position: relative;
    padding: 10px 0px;
}
.file-upload-container input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    z-index: -1;
}
.file-item .file-item-name {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.file-item .close-button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    background: none;
    border: none;
    border-radius: 0px;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
}
.file-item .close-button:before,
.file-item .close-button:after {
    content: '';
    position: absolute;
    top: 6px;
    left: -1px;
    width: 16px;
    height: 2px;
    background: #333333;
}
.file-item .close-button:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.file-item .close-button:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.file-upload-button {
    width: auto;
    height: auto;
    margin: 10px 0px 0px;
    padding: 0px;
    border: none;
    box-shadow: none;
    border-radius: 0px;
    outline: none;
    background: none;
    font-size: 16px;
    font-family: Museo500, sans-serif;
    line-height: 1.2;
    color: #8c9f3f;
    text-decoration: underline;
    cursor: pointer;
}
.file-upload-button:first-child {
    margin-top: 0px;
}
.file-upload-button:hover {
    text-decoration: none;
}
.file-upload-button:hover,
.file-upload-button:focus {
    background: none;
    color: #8c9f3f;
}
.file-upload-title {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.2;
}</pre></body></html>