/* ==========================================================================
	#Fonts
========================================================================== */
@font-face {
	font-family: 'Open Sans';
	src: url('fonts/OpenSans-Regular.eot'); /* IE9 Compat Modes */
	src: url('fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('fonts/OpenSans-Regular.woff2') format('woff2'), /* Super Modern Browsers */
		url('fonts/OpenSans-Regular.woff') format('woff'), /* Pretty Modern Browsers */
		url('fonts/OpenSans-Regular.ttf') format('truetype'), /* Safari, Android, iOS */
		url('fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg'); /* Legacy iOS */
	font-weight: normal;
	font-style: normal;
}

/* ==========================================================================
	#Base
========================================================================== */
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding-top: 30px;
	padding-bottom: 10px;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
}

input.form-control,
div.form-control,
input.btn-axs,
label {
	font-size: 16px;
	font-weight: 400;
	color: #373a3c;
}

/* ==========================================================================
	#Containers
========================================================================== */
.container.axs-logo {
    padding-bottom: 35px;
}

.container.axs-logo img {
	width: 255px;
}

/* ==========================================================================
	#Form
========================================================================== */
.form-col-title {
	margin-bottom: 18px;
	color: #10306e;
	font-size: 24px;
	line-height: 29px;
}

form input.form-control:not(textarea) {
	height: 38px;
	margin-bottom: 20px;
	padding: 8px 85px 8px 15px;
	line-height: 19px;
}

form input#first_name,
form input#last_name {
	text-transform: capitalize;
}

form input#initials {
	text-transform: uppercase;
}

form input#initials::placeholder {
	text-transform: none;
}

form div.form-control {
	resize: none;
	height: 351px;
	padding: 10px;
	line-height: 25px;
	overflow: auto;
}

form div.form-control .list-style-dash{
	list-style: none;
	padding-left: 10px;
	position: relative;
}
form div.form-control .list-style-dash li{
	margin-left: 18px;
}

form div.form-control .list-style-dash li:before{
	content: "-";
	padding-right: 15px;
	position: absolute;
	left: 10px;
}

form .form-control[readonly] {
	background: #fff;
	cursor: default;
}

form input.btn-axs { 
	width: 102px;
	height: 38px;
	border-radius: 7px;
	color: #fff;
	background: #10306e;
}

form input.btn-axs:hover, 
form input.btn-axs:focus, 
form input.btn-axs:active, 
form input.btn-axs.active { 
	color: #fff; 
}

#email{
	text-transform: lowercase;
}

.textarea-group {
	margin-bottom: 20px;
}

.textarea-group h3, .textarea-group span {
	color: #2E74B5;
}

.checkbox-group label {
	position: relative;
	margin-bottom: 12px;
	padding-left: 25px;
	line-height: 20px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-group label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom checkbox */
.checkbox-group .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #10306e;
	border-radius: 3px;
}

/* When the checkbox is checked, add a purple background */
.checkbox-group label input:checked ~ .checkmark {
	background-color: #10306e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-group .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.checkbox-group label input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.checkbox-group .checkmark:after {
	left: 6px;
	top: 3px;
	width: 5px;
	height: 9px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form-text {
	position: relative;
}

.form-text .input-error {
	color: #dc3545;
}

.form-text .input-error,
.form-text #input-pass-msg {
	position: absolute;
	top: 2px;
	right: 0;
	height: 92%;
	margin: 0px 2px 0 0;
	padding: 0 8px 0 0;
	border-radius: 4px;
	background: transparent;
	line-height: 35px;
	font-size: 12px;
}

/* ==========================================================================
	#Messages
========================================================================== */
.container .response-msg {
	font-size: 28px;
	text-align: center;
	color: #10306e;
}

/* ==========================================================================
	#Password Messages
========================================================================== */
.text-danger {
	color: #dc3545;
}

.text-warning {
	color: #ffc107;
}

.text-info {
	color: #17a2b8;
}

.text-success {
	color: #28a745;
}

/* ==========================================================================
	#Progress Bar
========================================================================== */
.progress .bg-danger {
	background: #dc3545;
}

.progress .bg-warning {
	background: #ffc107;
}

.progress .bg-info {
	background: #17a2b8;
}

.progress .bg-success {
	background: #28a745;
}

/* ==========================================================================
	#Media Queries
========================================================================== */
@media (min-width: 767px) {
	body {
		padding-top: 120px;
		padding-bottom: 20px;
	}
}

@media (max-width: 360px) { 
	body,
	input.form-control,
	div.form-control,
	label,
	form input.btn-axs {
		font-size: 14px;
	}

	.form-col-title {
		font-size: 20px;
	}
}
