.popi label {
	display: inline-block;
	width: 120px;
	color: #60828e;
	font-size: 1.1em;
	font-weight: normal;
	margin-top: 20px;
}
.popi form {
	padding-top: 20px;
}

.input, .inputBtn {
	width: 100%;
	max-width: 410px;
}

button.inputBtn._jsSubmitForm {
    margin-left: 12px;
}

/* Exceptions */
.loader {
	margin-left: 8px !important;
}

.alert-msg {	
	margin: 15px 0 0 120px;
	font-weight: bold;
}

h3 {	
	text-transform: uppercase;
	color: #60828e;
}

.paddingTop30 {
	padding: 0 !important;
	margin: 0 !important;
	padding-top: 30px !important;
}

.marginLeft25 {
	margin-left: 25px;
}

.comCheckbox {
	width: 25px;
	position: relative;
	display: inline-block;
}

.comCheckbox label {
	cursor: pointer;
	position: absolute;
	width: 20px;
	height: 20px;
	top: -20px;
	left: -2px;
	background: #eee;
	border: 1px solid #ddd;
}
	
	.comCheckbox label:after {
		opacity: 0.2;
		content: '';
		position: absolute;
		width: 15px;
		height: 8px;
		background: transparent;
		top: 3px;
		left: 2px;
		border: 3px solid #f9ac54; 		/*<-- Color of tick*/
		border-top: none;
		border-right: none;
	
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	.comCheckbox label:hover::after {
		opacity: 0.5;
	}
	
	.comCheckbox input[type=checkbox]:checked + label:after {
		opacity: 1;
	}
	
	.comCheckbox input + label::before {
		background: none;
	}