﻿@import url('file:///E:\Workarea\insur_reservation\INSURTECH_STG\InsureTechSymposium\InsureTechSymposium\InsureTechSymposium\css\style.css');

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* font-family: 'Montserrat', sans-serif; */
}

.form-container {
	/* background-color: #7b2cbf; */
	display: flex;
	justify-content: center;
	align-items: center;
}

.upload-files-container {
	background-color: #ffffff;
	width: 100%;
	padding: 30px 30px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 10px 20px, rgba(0, 0, 0, 0.28) 0px 6px 6px;
}

.drag-file-area {
	border: 2px dashed #13192b;
	border-radius: 15px;
	margin: 10px 0 15px;
	padding: 30px 50px;
	width: 100%;
	text-align: center;
	position: relative;
	height: 230px;
}

	.drag-file-area .upload-icon {
		font-size: 50px;
	}

	.drag-file-area h3 {
		font-size: 26px;
		margin: 15px 0;
	}

	.drag-file-area label {
		font-size: 19px;
	}

		.drag-file-area label .browse-files-text {
			color: #e70000;
			font-weight: bolder;
			cursor: pointer;
		}
	.drag-file-area:hover {
		border: 2px solid black;
		background-color: aliceblue;
	}

	.browse-files span {
		/* position: relative; */
		top: -25px;
	}

.default-file-input {
	opacity: 0;
	width: 100%;
	top: 0px;
	left: 0px;
	position: absolute;
	height: 229px;
	cursor:pointer;
}

.cannot-upload-message {
	background-color: #ffc6c4;
	font-size: 17px;
	display: flex;
	align-items: center;
	margin: 5px 0;
	padding: 5px 10px 5px 30px;
	border-radius: 5px;
	color: #BB0000;
	display: none;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.cannot-upload-message span, .upload-button-icon {
	padding-right: 10px;
}

	.cannot-upload-message span:last-child {
		padding-left: 20px;
		cursor: pointer;
	}

.file-block {
	color: #f7fff7;
	background-color: #13192b;
	transition: all 1s;
	width: 100%;
	position: relative;
	display: none;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0 15px;
	padding: 10px 20px;
	border-radius: 10px;
	cursor: pointer;
}

.file-info {
	display: flex;
	align-items: center;
	font-size: 15px;
}

.file-icon {
	margin-right: 10px;
}

.file-name, .file-size {
	padding: 0 3px;
}

.remove-file-icon {
	cursor: pointer;
}

.progress-bar {
	display: flex;
	position: absolute;
	bottom: 0;
	/* left: 4.5%; */
	width: 0;
	height: 5px;
	border-radius: 25px;
	background-color: #4BB543;
}

.upload-button {
	background-color: #e70000;
	color: #f7fff7;
	display: flex;
	text-transform: uppercase;
	align-items: center;
	font-size: 20px;
	border: none;
	border-radius: 2px;
	margin: 10px;
	padding: 15px 30px;
	cursor: pointer;
}
