/* body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #e9ecee;

} */


button {
	outline: none;
	/* background: none; */
	border: none;
	cursor: pointer;
}

.upload-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* border-top: 1px solid #ddd; */
	margin-top: 10px;
	width: 100%;
}

.upload-btn {
	right: 20px;
	top: calc(50%);
	padding: 8px 16px;
	cursor: pointer;
	margin-right: 7px;
	background: linear-gradient(0deg, #053c62, #1287d1);
	border-radius: 25px;
}

.upload-progress-tracker {
	width: 100%;
	padding: 25px;
	position: relative;
	transition: background 0.3s ease;
	border: 2px dashed #1287d1;
	width: 100%;
	border-radius: 25px;

}

.upload-progress-tracker h3 {
	margin: 0;
	font-size: 1em;
	font-weight: normal;
	/* color: #222; */
	margin-left: 7px;
}

.upload-progress-tracker .upload-progress {
	font-size: 0.8em;
	color: #617e8c;
}

.upload-progress-tracker .upload-progress span {
	width: 30px;
	padding-right: 30px;

}

.upload-progress-tracker .upload-progress span.success-count {
	margin-left: 10px;
	background: url("/assets/completed-indicator.svg") 5px 100%/100% 100% no-repeat;
}

.upload-progress-tracker .upload-progress span.failed-count {
	background: url("/assets/failed-indicator.svg") 5px 100%/100% 100% no-repeat;
}

.upload-progress-tracker .upload-progress span.paused-count {
	background: url("/assets/paused-indicator.svg") 5px 100%/100% 100% no-repeat;
}

.upload-progress-tracker .maximize-btn {
	position: absolute;
	right: 25px;
	top: 35px;
	width: 20px;
	height: 20px;
	overflow: hidden;
	text-indent: 9999999px;
	background: url("/assets/expand.svg") center center no-repeat;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.upload-progress-tracker .maximize-btn.expanded {
	background: url("/assets/collapse.svg") center center no-repeat;
}

.upload-progress-tracker .maximize-btn:hover {
	opacity: 1;
}

.upload-progress-tracker .uploads-progress-bar {
	position: absolute;
	left: 0;
	top: 85px;
	height: 2px;
	background: #607D8B;
	opacity: 1;
	transition:
		width 0.3s ease,
		opacity 0.3s ease;
}

.upload-progress-tracker.expanded .uploads-progress-bar {
	opacity: 0;
}

.upload-progress-tracker.expanded {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	/* margin: 20px 0px; */
}

.file-progress-wrapper {
	width: 100%;
	padding-right: 10px;
}

.upload-progress-tracker .file-progress-wrapper {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		height 0.3s ease,
		opacity 0.3s ease;
	/* border-top: 1px solid #ddd;
	margin-top: 15px; */
}

.upload-progress-tracker.expanded .file-progress-wrapper {
	height: auto;
	opacity: 1;
}

.upload-progress-tracker .file-progress {
	display: flex;
	align-items: center;
	width: 100%;
	flex-wrap: wrap;
	box-shadow: #2588ce 0px 0px 5px;
	margin: 10px 5px;
	border-radius: 10px;
}

.upload-progress-tracker .file-progress .file-details {
	flex: 1;
	margin: 10px;
}

.upload-progress-tracker .file-progress .file-details p {
	padding-right: 30px;
	position: relative;
	align-items: center;
	font-size: 0.8em;
	height: 25px;
	/* color: #565656; */
	margin: 10px 0;
}

.upload-progress-tracker .file-progress .file-details p .file-name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	/* float: left; */
	margin-top: 4px;
	display: inline-block;
	flex: 1;
	/* 40px off because file status takes max 35px wide plus 5 of gap */
	max-width: calc(100% - 40px);
}

.upload-progress-tracker .file-progress .file-details p .file-ext {
	margin-top: 4px;
}

.upload-progress-tracker .file-progress .file-details p .status {
	overflow: hidden;
	text-indent: -9999999px;
	height: 20px;
	width: 20px;
	margin-right: 10px;
	float: left;
}

.upload-progress-tracker .file-progress .file-details p .status.uploading {
	text-indent: unset;
	width: 35px;
	position: absolute;
	right: 0;
	top: 5px;
	text-align: right;
	margin-right: 0;
}

.upload-progress-tracker .file-progress .file-details p .status.failed {
	background: url("/assets/failed.svg") center center/100% 100% no-repeat;
}

.upload-progress-tracker .file-progress .file-details p .status.completed {
	background: url("/assets/completed.svg") center center/100% 100% no-repeat;
}

.upload-progress-tracker .file-progress .file-details p .status.paused {
	background: url("/assets/paused-indicator.svg") center center/100% 100% no-repeat;
	right: auto;
	left: 0;
}

.upload-progress-tracker .file-progress .file-details::after {
	content: '';
	width: 100%;
	height: 2px;
	background: #ddd;
	display: block;
	position: absolute;
	bottom: 5px;
	left: 0;
	z-index: 1;
}

.upload-progress-tracker .file-progress .file-details .progress-bar {
	height: 2px;
	background: #607D8B;
	position: absolute;
	bottom: 5px;
	left: 0;
	z-index: 2;
}

.upload-progress-tracker .file-progress .file-actions {
	min-width: 45px;
	display: flex;
	justify-content: center;
	padding: 10px;
}

.upload-progress-tracker .file-progress .file-actions button {
	height: 50px;
	text-align: center;
	padding: 36px 0 0;
	font-size: 0.8em !important;
	color: #607D8B;
	width: 40px;
	min-width: 40px;
	margin-left: 5px;
}

p.file-comment {
	display: block;
	width: 100%;
	font-size: 12px;
	margin: 0;
	background: #f9f9f9;
	padding: 10px;
	margin: 0px 10px 10px 10px;
	border-radius: 10px;
}

p.file-comment-accept {
	display: block;
	width: 180px;
	font-size: 16px;
	margin: auto;
	/* background: aliceblue; */
	padding: 0 10px 10px 10px;
	color: #00c44b;
	font-weight: 700;
	text-align: right;

}

p.file-comment-decline {
	display: block;
	width: 180px;
	font-size: 16px;
	margin: auto;
	/* background: aliceblue; */
	padding: 0 10px 10px 10px;
	color: #ce0e0e;
	font-weight: 700;
	text-align: right;

}

.comment-container {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
}

.file-actions {
	font-size: 12px;
}

.upload-progress-tracker .file-progress .file-actions button.clear-btn {
	background: url("/assets/clear-grey.svg") center 42%/20px 20px no-repeat;
}

.upload-progress-tracker .file-progress .file-actions button.accept-btn {
	background: url("/assets/accept-grey.svg") center 42%/20px 20px no-repeat;
}

.upload-progress-tracker .file-progress .file-actions button.decline-btn {
	background: url("/assets/decline-grey.svg") center 42%/20px 20px no-repeat;
}

button.download-btn {
	background: url("/assets/download-grey.svg") center 42%/20px 20px no-repeat;
}

.upload-progress-tracker .file-progress .file-actions button.clear-btn:hover {
	background: url("/assets/clear-red.svg") center 42%/20px 20px no-repeat;
}

.upload-progress-tracker .file-progress .file-actions button.accept-btn:hover {
	background: url("/assets/accept-green.svg") center 42%/20px 20px no-repeat;
}

.upload-progress-tracker .file-progress .file-actions button.decline-btn:hover {
	background: url("/assets/decline-red.svg") center 42%/20px 20px no-repeat;
}

button.download-btn:hover {
	background: url("/assets/download-blue.svg") center 42%/20px 20px no-repeat;
}

.upload-progress-tracker .file-progress .file-actions button.retry-btn {
	background: url("/assets/retry.svg") center 42%/20px 20px no-repeat;
}

.upload-progress-tracker .file-progress .file-actions button.cancel-btn {
	background: url("/assets/paused.svg") center 42%/20px 20px no-repeat;
}

.upload-progress-tracker .file-progress .file-actions button.resume-btn {
	background: url("/assets/resume.svg") center 42%/20px 20px no-repeat;
}
.dwnld-btns {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    display: none;
    justify-content: space-between;
    border-top: #eee solid 1px;
    font-size: 14px;
}
.dwnld-btns i {
    font-size: 16px;
}

.plane-upload-container h6 {
	margin: auto;
	padding-top: 25px;
}
.drag-over {
	background: #172131;
}