	.feedbackEdit {		border: solid 1px #DDD;		padding: 5px;	}	#feedbackForm .btn-brand {		background-color: #728587;		color: #fff;	}	#feedbackForm .btn-dark {		background-color: #333;		color: #fff;	}	#feedbackForm .btn:hover,	#feedbackForm .btn:focus {		color: #fff;	}	#feedbackBtn {		z-index: 999999999;		height: 100px;		width: 30px;		position: fixed;		right: 0;		top: 40%;		background: url(/images/feedback.jpg) no-repeat;		cursor: pointer;		animation: slideRight 600ms ease forwards;	}	@keyframes slideRight {	    0% {	        right: -500px;	    }	    100% {	        right: 0;	    }	}	#feedbackForm {		z-index: 999999999;		width: 500px;		top: 30%;		right: -500px;		position: fixed;		border: 1px solid #AAA;		background: #EEE;		padding: 20px;	}	#feedbackForm label {		font: bold 13px Arial;		display: inline-block;	}	.alignTop {		vertical-align: top;	}	.errorMsg {		display: none;		font-size: 12px;		background-color: transparent;		border: none;		font-weight: 600;		padding: 0;		margin: 0;		position: absolute;		right: 30px;		top: 10px;	}	.hidden {		display: none;	}	.doneMsg {		color: #43974F;    font-size: 18px;    font-weight: bold;    margin-left: 10px;		display: none;	}	@media (max-width: 425px) {				#feedbackForm {			width: 100%;			height: 100%;			top: 0;			overflow-x: scroll;		}		#feedbackForm .btn {			width: 100%;			display: block;			margin-bottom: 5px;		}	}