:root {
    --brand-color: #013755;
}

.navbar {
    background-color: var(--brand-color);
}

.btn-primary {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
}

.btn-success {
	background-color: #a35139;
	border-color: #a35139;
	color: #eee9df;
}

body {
	background-color: #eee9df;
	color: #1c2532;
}

.file-drop-area {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 100%;
	padding: 50px;
	border: 1px dashed rgba(25, 25, 25, 0.4);
	background-color: rgba(25, 25, 25, 0.4);
	border-radius: 3px;
	transition: 0.2s;
}

.file-input-hover {
	border: 3px dotted red;
	background-color: rgba(25, 25, 255, 0.4);
}

.choose-file-button {
	flex-shrink: 0;
	border-radius: 3px;
	padding: 8px 15px;
	margin-right: 10px;
	font-size: 12px;
	text-transform: uppercase;
}

 .file-message {
	font-size: small;
	font-weight: 300;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

 .file-input {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	cursor: pointer;
	opacity: 0;
}