﻿#modalBackground {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	background: rgba(0, 0, 0, 0.85);
}

#modalContainer {
	width: 50%;
	min-width: 320px;
	height: auto;
	border-radius: 10px;
	background: white;
	box-shadow: 0px 0px 20px 6px;
}

#modalTitle {
	display: flex;
	align-items: center;
	color: white;
	padding: 15px;
	font-size: 18px;
	width: 100%;
	height: auto;
	background: #085889;
	border-radius: 8px 8px 0 0;
}

#modalExit {
	display: flex;
	margin-left: auto;
	width: 20px;
	height: 30px;
	cursor: pointer;
}

	#modalExit svg {
		width: 100%;
		height: 70%;
	}

		#modalExit svg polygon {
			fill: white;
		}

#modalBody {
	padding: 20px 20px 10px 20px;
	overflow: hidden;
}

	#modalBody .contentExpander {
		clear: both;
	}

#modalFooter {
	position: relative;
	height: auto;
	width: 100%;
	top: calc(100% - 135px);
	padding: 0 15px 15px 15px;
	display: flex;
	align-items: center;
}

	#modalFooter .buttonDefault {
		margin: 0 5px;
	}

		#modalFooter .buttonDefault:first-child {
			margin-left: auto;
		}


#genericInProgressForm {
	height: 200px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

	#genericInProgressForm .topText {
		text-align: center;
		height: 20%;
	}

	#genericInProgressForm .bottomText {
		text-align: center;
		height: 30%;
	}


	#genericInProgressForm .loadingWrapper {
		height: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

		#genericInProgressForm .loadingWrapper .loadingCircle {
			border: 4px solid #EDEDED;
			border-radius: 50%;
			border-top: 4px solid #0E9AEF;
			width: 35px;
			height: 35px;
			-moz-animation: spin 1s linear infinite;
			-webkit-animation: spin 1s linear infinite;
			animation: spin 1s linear infinite;
			margin-right: 15px;
		}


@media screen and (max-width: 1500px) {
	#modalContainer {
		width: 60%;
	}
}
