<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*****************
 * Feedback form *
 *****************/
 * {
    box-sizing: border-box;
}
*:before, *:after {
    box-sizing: border-box;
}
 
DIV#feedback {
	position: absolute;
	bottom: 1px;
	padding-right: 0px;
	padding-left: 10px;
	float: right;
	padding-bottom: 0px;
	padding-top: 0px;
	text-align: left
}

div#feedbackForm {
	width: 50%;
	padding-left: 40px;
}

div#feedbackForm textarea {
	
	height: 8em;
	margin-bottom: 1em;
}

div#feedbackForm input#submit {
	margin-top: 1em;
	margin-bottom: 1em;
}

.imageSubmit {
    border: none;
    background: none;
    padding: 0;
}

h1 {
	margin-top: 10px;
	margin-bottom: 10px;

	font-size:36px;
}

.mobile-display{
	display:none !important;
}

.imageSubmit{
	display:inline !important;
}

label{
	font-size:14px;
}


textarea{
	
	font-size:16px !important;

}

 

.form-control {
    background-color: white;
    background-image: none;
    border: 1px solid #b0b0b0;
    border-radius: 4px;
    box-shadow: 1px 2px 9px rgba(213, 213, 213, 0.5) inset;
    color: #505050;
    display: block;
    font-size: 16px;
    font-weight: 200;
    height: 38px;
    line-height: 1.44;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}
.form-control:focus {
    border-color: #038dd5;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(3, 141, 213, 0.6);
    outline: 0 none;
}


.btn {
    -moz-user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.44;
    margin-bottom: 0;
    padding: 6px 19px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}
.btn:focus, .btn:active:focus, .btn.active:focus {
    outline: 0 none;
}
.btn:hover, .btn:focus {
    border: 1px solid transparent;
    color: #505050;
    text-decoration: none;
}
.btn:active, .btn.active {
    background-image: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
    outline: 0 none;
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
}

.btn-primary {
    background-color: #a30046;
    color: white;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open &gt; .btn-primary.dropdown-toggle {
    background-color: #d23153;
    color: white;
}
.btn-primary:active, .btn-primary.active, .open &gt; .btn-primary.dropdown-toggle {
    background-image: none;
}
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary.active[disabled], fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
    background-color: #a30046;
}
.btn-primary .badge {
    background-color: white;
    color: #a30046;
}

a, button {
    transition: all 0.25s ease-in-out 0s;
}

button {
    overflow: visible;
}
button, select {
    text-transform: none;
}

.error{
	border-color: red !important;
	
}

.t-error-popup,IMG.t-error-icon{
	background:none !important;
	color:#ec5937;
	
}

DIV.t-error-popup SPAN{
	background:none !important;
	color:#ec5937;
    cursor: pointer;
    display: block;
    float: left;
    font: 12px arial,sans-serif;
    height: 39px;
    margin-right: 6px;
    padding-right: 29px;
    text-decoration: none;
}

INPUT.t-error, TEXTAREA.t-error {
	color: #2a2a2a;
	border-color:#ec5937;
}
label.t-error{
	color:#ec5937;
}
	


/****************************
This is the responsive part - This media query adapts the design for low resolution screens
************************************/
@media only screen and (max-width:930px) {
	
		div#feedbackForm {
		width: 90%;
		padding-left:20px;
		}
		
		div#feedbackForm textarea {
	   
	    width: 100%;
		}
		
	
	}
}
</pre></body></html>