<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.aw-forms-clause-viewer iframe {
	width:100%;
	height:200px;
	border:0;
	overflow:hidden;
}
.aw-forms-clause-link {	
	margin-bottom:5px;
}

.aw-forms-clause-container {
	height: 200px;
	overflow-y: scroll;
	border: solid 1px #ced4da;
	margin-bottom:10px;
}
.aw-forms-clause-container .aw-forms-clause-text {
	padding: 10px;
	font-size: 12px;
	line-height: 160%;
}
.aw-forms-clause-link{
	width:100%;
	text-align:right;
}

#aw-forms-iframe {
	border:0;
	width:100%;
	height:40px;
}


.form-group ::-webkit-scrollbar,
.form-group ::-webkit-scrollbar{
	width: 13px;
}
.form-group ::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-left: solid 1px #f1f1f1;
}
.form-group ::-webkit-scrollbar-thumb {
	background: #c1c1c1;
}
.form-group ::-webkit-scrollbar-thumb:hover {
	background: #787878;
}

/* CHECKBOX AND RADIO */
.checkbox-custom {
	display: block;
	position: relative;
	font-size:14px;	
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.checkbox-custom label{
	display: inline-block;
	position: relative;	
	margin-right: 10px;
}
.checkbox-custom label small {
	display: inline-block;
	padding: 7px 0px 0px 30px;
	text-transform: none;
	font-size:100%;
	font-weight:normal;
	line-height: 1.1;
}
.checkbox-custom label small.extra {
	padding: 7px 0px 0px 7px;
}
.checkbox-custom label small.extra a {
	text-decoration:underline;
}
.checkbox-custom input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #e8e8e8;
	-webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
}
.checkbox-custom:hover input ~ .checkmark {
	background-color: #ccc;
}
.checkbox-custom input:checked ~ .checkmark {
	background-color: #333;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.checkbox-custom input:checked ~ .checkmark:after {
	display: block;
}
.checkbox-custom .checkmark:after {
	left: 9px;
	top: 5px;
	width: 7px;
	height: 12px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.has-error .checkbox-custom .checkmark {
	border-bottom: solid 1px #a94442;
}

.radio-custom {
	display: block;
	position: relative;
	font-size:14px;	
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.radio-custom label{
	display: inline-block;
	position: relative;
	margin-right: 10px;
}
.radio-custom label small {
	display: inline-block;
	padding: 7px 0px 0px 30px;
	text-transform: none;
	font-size:100%;
	font-weight:normal;
	line-height: 1.6;
}
.radio-custom label.extra small {
	padding: 7px 0px 0px 0px;
}
.radio-custom input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.radio-custom .checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #e8e8e8;
	border-radius: 50%;
	-webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
}
.radio-custom:hover input ~ .checkmark {
	background-color: #ccc;
}
.radio-custom input:checked ~ .checkmark {
	background-color: #333;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.radio-custom input:checked ~ .checkmark:after {
	display: block;
}
.radio-custom .checkmark:after {
	top: 8px;
	left: 8px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: white;
}

.has-error .radio-custom .checkmark  {
	border-bottom: solid 1px #a94442;
}


</pre></body></html>