/*FONT*/
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

html{
	height: 100%;
}
body{
	font-family: 'Roboto', sans-serif;
	min-height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
body::after {
  content: '';
  display: block;
  height: 140px; /* Set same as footer's height */
}
.navbar > .container, .navbar > .container-fluid{
	display: inline-block;
}
.nav-link:not(.active){
	cursor: pointer;
}
.navbar-toggler{
	float: right;
}
.logo{
	width: 470px;
    height: 90px;
    display: inline-block;
    background: transparent url(../images/logo.svg) no-repeat center center;
    background-size: auto 90px;
}
#navbarResponsive{
	float: right;
    padding: 25px 0px;
}
#mainContent{
	padding-top: 145px;
}
.form-control{
	border: 1px solid #5a5a5a;
}
.custom-control{
	position: relative;
	/*display: inline-flex;*/
    min-height: 1.3125rem;
    padding-left: 1.5rem;
}
.custom-radio label{
	cursor: pointer;
}
#footer{
	font-size: 12px;
	color: #ffffff;
	position: absolute;
  	bottom: 0;
  	width: 100%;
  	height: 140px;
}
#footer a{
	color: #ffffff;
}
#footer a:hover{
	text-decoration: underline;
}
.logoFooter{
	width: 250px;
    height: 100px;
    background: transparent url(../images/logo_footer.svg) no-repeat center center;
    background-size: 250px auto;
}
.paymentLogos{
	width: 230px;
    height: 50px;
    background: transparent url(../images/cards_logo.svg) no-repeat center center;
    background-size: 230px auto;
    display: inline-block;
    position: absolute;
    bottom: 10px;
    right: 10px;
}


/*axerve trick*/
#axerve_lightBox{
	z-index: 1200;
}


/*RESPONSIVE*/
@media (max-width: 767px){
	body::after {
		content: '';
	  	display: block;
	  	height: 170px; /* Set same as footer's height */
	}
	.logo{
		width: 240px;
	    height: 50px;
	    background-size: 240px auto;
	}
	#mainContent{
		padding-top: 80px;
	}
	h1{
		font-size: 20px;
	}
	.lead{
		font-size: 14px;
	}
	.custom-control {
	    display: inline-flex;
	}
	#radioContainer{
		margin-bottom: 15px;
	}
	#footer{
	  	height: 170px;
	  	font-size: 10px;
	}
	.logoFooter{
	    height: 70px;
	    margin-bottom: 20px;
	}
	.paymentLogos{
	    position: relative;
	    bottom: 10px;
	    right: 0;
	    left: 0;
	}
	
}



/*MISC*/
.topPadding145{
	padding-top: 145px;
}
.topBottomPadding25{
	padding-bottom: 25px;
	padding-top: 25px;
}
.backgroundWhite{
	background-color: #ffffff;
}
.bottomPadding40{
	padding-bottom: 40px;
}
.fRight{
	float: right;
}
.error{
	color: #990000;
}