body 
{
	background-color: #ffffff;
	
}

.form-control
{
	font-size: 18px;
	margin-bottom: 26px;
	color: #333;
	height: 40px;
}
.form-horizontal .control-label
{
	text-align: left;
}
label
{
	font-weight: 400;	
	padding-right: 50px;
}
.form-horizontal .form-group
{
	margin-right: 0;
    margin-left: 0;
}
.row {
    margin-right: 0;
    margin-left: 0;
}
@media screen and (max-width: 798px){
	.form-horizontal .form-group .control-label, .form-control {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 400px){
	.form-control {
		font-size: 16px;
	}
}
@media screen and (max-width: 798px){
	.form-control {
		font-size: 18px;
	}
}

/*@media screen and (max-width: 520px)
{
	label {
		padding-left: 0 !important;
	}
}
*/select.form-control {
    padding: 6px 30px 6px 12px!important;
    margin-right: 20px;    
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/icons/dropDownArrow.png) no-repeat;
    background-position: 97% 50%;
    border-radius: 0;
	background-color: #fff;
}

 select.form-control::-ms-expand {
    display: none; }
	

.btn-blue{
    color: #013763;
    font-family: 'montserratsemi_bold';    
    border: 2px solid #013763;
    border-radius: 23px;
    background-color: transparent;      
	
}

.btn-blue {
   
    font-size: 18px;  
    padding: 6px 65px;
	margin-top: 30px;
}

.btn-blue:hover {
	color: #fff;
	background-color:#013763;
	
}

@media screen and (max-width: 720px){
	.btn-blue {
		padding: 3px 30px;
		font-size: 14px;
		margin-top: 10px;
	}
	
}

input[type='radio'] {
    display: none;
}
 input[type='radio']+label {
    display: block;
}
input[type="radio"]:checked+label:before {
    background: #1f9055;
}
input[type="radio"]+label:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.25em;
    border-radius: 1em;
    border: 0.2em solid #fff;
    box-shadow: 0 0 0 0.08em #ccc;
    margin-right: 0.75em;
    -webkit-transition: 0.5s ease all;
    transition: 0.5s ease all;
	background-color: #fff;
    
}
 
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 34px;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 18px; height: 18px;
  border: 1px solid #999;
  background: #fff;
  border-radius: 0px;
  
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  
  content: '\2713';
    position: absolute;
    top: 6px;
    left: 3px;
    font-size: 16px;
    line-height: 0.8;
  line-height: 0.8;
  color: #1f9055;
  transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

