#feedbackPopup {
	display: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	padding: 50px;
	z-index: 502;
}

#feedbackPopup.active {
	display: block;
}

#feedbackPopup > div {
	margin: auto;
	width: 750px;
	max-width: 100%;
	max-height: 100%;
	border-spacing: 0px;
	box-shadow: 0px 0px 20px 5px black;
	background-color: white;
	overflow: auto;
	position: relative;
}

.fieldsContainer .inputText,
.fieldsContainer .selectField {
	max-width: 100% !important;
}

#feedbackPopup > div .formContainer {}

#feedbackPopup img.close {
	cursor: pointer;
	position: absolute;
	top: 2px;
	right: 2px;
}

#attachmentArea {
	width: 100%;
	background-color: lightgray;
	border: 1px solid black;
	border-radius: 3px;
	box-sizing: content-box;
}

#attachmentArea .attachment {
	position: relative;
	display: inline-block;
	height: 70px;
	margin: 5px 0px 0px 5px;
	padding: 5px;
	padding-top: 23px;
	background-color: white;
	border: 1px solid gray;
	border-radius: .25rem;
	vertical-align: top;
	text-align: center;
}

#attachmentArea.firefoxFix .attachment {
	/* Firefox displays text 1 pixel lower than the others */
	padding-top: 22px;
}

#attachmentArea .attachment .deleteButton {
	position: absolute;
	top: -1px;
	right: -1px;
	cursor: pointer;
	border: 1px solid gray;
	border-radius: .25rem;
}

#attachmentArea .attachment .deleteButton:hover {
	background-color: #ffb0b0;
}

#attachmentArea .attachment .fileSize {
	font-size: 11px;
	color: #777;
	margin-top: 1px;
}

#attachmentArea .attachment.snapshot {
	background-position: center;
	background-size: 100%;
	color: white;
	text-shadow: 1px 1px 1px black, 1px -1px 1px black, -1px 1px 1px black, -1px -1px 1px black;
}

#attachmentArea .attachment.snapshot .fileSize {
	color: #bbb;
}

#attachmentArea .addAttachment {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 25px 5px;
	background-color: white;
	border: 1px solid gray;
	border-radius: .25rem;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	vertical-align: top;
}

#attachmentArea.firefoxFix .addAttachment {
	line-height: 26px;
}

#attachmentArea .addAttachment:hover {
	background-color: #bbfcb4;
}

#attachmentArea .addAttachment > input {
	display: none;
}

#feedbackProgress {
	display: none;
}

#feedbackConfirmation {
	display: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	padding: 100px 50px;
	z-index: 502;
}

#feedbackConfirmation.active {
	display: block;
}

#feedbackConfirmation > div {
	margin: auto;
	width: 550px;
	max-width: 100%;
	max-height: 100%;
	border-spacing: 0px;
	box-shadow: 0px 0px 20px 5px black;
	background-color: white;
	overflow: auto;
	position: relative;
	padding: 10px;
}