/* COLOR THEME:
* #062F72 -> BLUE
* #EBC629 -> LIGHT YELLOW
* #DEA641 -> DARK YELLOW
* #CCC -> LIGHT GREY 
* #B2B2B2 -> DARK GREY
* #1D1B1B -> ALMOST BLACK
* #FFF -> WHITE
*/


* {
    padding: 0;
    margin: 0;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	border-width: 0;
}

a {
	text-decoration: none;
	color: #FFF;
}

ul {
	list-style: none;
}

body {
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	line-height: 1.5rem;
	background-color: #062F72;
	color: #1D1B1B;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
}

h1 {
	font-size: 3.5rem;
}

button, .hamburger{
	cursor: pointer;
}

.hidden{
	display: none;
}

.container {
	margin-left: 15px;
	margin-right: 15px;
	padding-left: auto;
	padding-right: auto;
}

.right {
	float: right;
}

.left {
	float: left;
}

/* NAVIGATION */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #062F72;
	height: 60px;
	z-index: 10;
	transition: top 0.2s ease-in-out;
}

.nav-up{
	top: -60px;
}

.navigation-list {
	display: none;
}

nav {
	height: 60px;
	z-index: 8;
}

.logo {
	background: url(logo/yourbank_logo.png) 50% no-repeat;
	background-size: 185px 40px;
	height: 40px; 
	width: 185px;
	margin-top: 12px;
}

.hamburger {
	margin-top: 20px;
}

.hamburger span {
	width: 30px;
    height: 3px;
    background-color: #FFF;
    display: block;
    margin-bottom: 6px;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

#hamburger-menu.cross span:nth-child(2){
    opacity: 0;
}

#hamburger-menu.cross span:nth-child(1){
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

#hamburger-menu.cross span:nth-child(3){
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-navigation {
	background-color: #062F72;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	padding-top: 90px;
	padding-bottom: 60px;
	opacity: .95;
	text-align: center;
	font-size: 1.5rem;
	overflow: auto;
	transform: translateY(-150%);
	transition: transform 0.5s;
}

.open {
	transform: translateY(0);
}

.menu-open {
	overflow: hidden;
}

.mobile-navigation-list {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	flex-grow: 1;
	justify-content: center;
	align-content: center;
}

.mobile-navigation-list li {
	display: inline-block;
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom:10px;
	height: 40px;
	width: 50%;
	left: 45%;
	transform: translateX(-45%);
	text-align: center;
	border-bottom: 4px solid transparent;
}

.mobile-navigation-list li.selected a{
	color: #EBC629!important;
}

/* HERO */

.hero {
	background-image: url(hero/hero2.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}

.hero-hidden {
	height: 120px;
}

.hero-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: none;
	    flex-wrap: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	width: 100%;
	min-height: 200px;
	position: relative;
	top: 80px;
}

h1 {
	margin-top: 10px;
	font-size: 1.5rem;
	color: #062F72;
}

.hero-content {
	padding-top: 5px;
}

.hero-line {
	display: block;
    width: 100px;
	height: 3px;
	background-color: #EBC629;
	margin-top: 12px;
	margin-bottom: 5px;
	margin-left: auto;
	margin-right: auto;
}

.hero-text {
    display: none;
}

.hero-text-m {
	font-size: 1rem;
	margin: 8px;
}

.loading-icon {
	display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
	text-align: center;
	padding-top: 30%;
	color: #CCC;
	background-color: rgba(255, 255, 255, 0.25);
}

.redirect-content .loading-icon {
	position: relative;
	padding-top: 0;
	color: #DEA641;
}

.main-content {
	display: block;
	position: relative;
	background-color: #FFF;
	border-radius: 4px;
	width: 100%;
	padding: 15px 15px 20px;
	bottom: 50px;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}

/* STEPS */

.step {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	font-size: 0.75rem;
	margin-bottom: 10px;
}

.step div {
	-ms-flex-preferred-size: 15%;
	    flex-basis: 15%;
}

.step-num {
	display: block;
	background-color: #EBC629;
	border-radius: 4px;
	text-align: center;
	padding-top: 10px;
	font-size: 1.15rem;
	color: #FFF;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.step-text {
	display: block;
	width: 100%;
	-ms-flex-preferred-size: 85%;
	    flex-basis: 85%;
	line-height: 1.15rem;
	margin-top: auto;
	margin-bottom: auto;
}


/* INPUT GROUPS */

.form-group {
	margin-bottom: 10px;
}

.input-group {
	display: table;
	position: relative;
	border-collapse: separate;
	height: 46px;
	width: 100%;
	font-size: 1.15rem;
}

.input-addon {
	display: table-cell;
	color: #EBC629;
	border: 1px #B2B2B2 solid;
	border-radius: 4px;
	border-left: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	text-align: center;
	vertical-align: middle;
	padding: 10px 15px;
	height: 46px;
}

.error-msg {
	display: block;
	font-weight: 400;
	text-align: center;
	color: #DF3926;
	margin-top: 8px;
}

.has-error {
	border-color: #DF3926!important;
	color: #DF3926;
	background-color: rgba(223,57,38,0.25);
}

.input-group input, .about-group input {
	display: table-cell;
	height: 46px;
	border: 1px #B2B2B2 solid;
	font-size: 1.3rem;
	font-family: 'Josefin Sans', sans-serif;
	width: 100%;
	padding-left: 10px;
	margin: 0;
	background-color: transparent;
	color: #1D1B1B;
}

input::-webkit-input-placeholder{
	color: #CCC;
}

input:-ms-input-placeholder{
	color: #CCC;
}

input::-ms-input-placeholder{
	color: #CCC;
}

input::placeholder{
	color: #CCC;
}

/* Remove controls from Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Remove controls from Safari and Chrome */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
  margin: 0; /*Removes leftover margin*/
}

input[type=number], input[type=text]{
	-webkit-transition: border-color .2s ease-in-out;
	-o-transition: border-color .2s ease-in-out;
	transition: border-color .2s ease-in-out;
}

input[type=number]:active, input[type=text]:active, input[type=number]:focus, input[type=text]:focus{
	-webkit-box-shadow: none;
	box-shadow: none;
}

.input-group input {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	font-weight: 300;
}

.about-group input {
	border-radius: 4px;
	font-weight: 300;
}

/* RADIO BUTTONS */

.radio-group {
	margin-bottom: 10px;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 1.5rem;
    display: inline-block;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #CCC;
    border-radius: 4px;
    background: transparent;
}

[type="radio"]:not(:checked):hover + label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: #CCC;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 3px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}


[type="radio"]:checked + label::after,
[type="radio"]:not(:checked) + label::after {
    content: '';
    width: 14px;
    height: 14px;
    background: #EBC629;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 3px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

[type="radio"]:not(:checked) + label::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label::after, [type="radio"]:hover + label::after {
    opacity: 1;
    -webkit-transform: scale(1);
	-ms-transform: scale(1);
    transform: scale(1);
}

/* CHECKBOXES */

.opt-in {
	margin-top: 20px;
	margin-bottom: 15px;
}

.check-group {
	line-height: 1.2rem;
	font-size: 0.9rem;
	font-weight: 300;
	background-color: transparent;
}

.check-group input {
	margin-right: 5px;
}

/* SUBMIT BUTTON */

.action {
	max-width: 200px;
	min-width: 150px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: auto;
}

.btn {
	display: block;
	width: 100%;
	border: 0;
	color: #FFF;
	font: inherit;
	border-radius: 4px;
}

.submit {
	background-color: #EBC629;
	padding: 10px 15px;
	font-size: 1.2rem;
	-webkit-box-shadow: inset 0 -3px 0 #DEA641;
	box-shadow: inset 0 -3px 0 #DEA641;
}

.cc-window {
	font-family: inherit;
}

.cc-btn {
	border-radius: 4px!important;
	-webkit-box-shadow: 0 3px 0 #DEA641!important;
	box-shadow: 0 3px 0 #DEA641!important;
}

.submit:hover {
	background-color: #DEA641;
	transition: background-color 0.25s;
}

.cc-btn:hover {
	background-color: #DEA641!important;
	transition: background-color 0.25s!important;
}

.card-info-container {
	display: flex;
	flex-direction: column;
	align-items:center;
}

.card-info {
	text-align: center;
	max-width: 250px;
	margin-bottom: 8px;
}

.card {
	background-color: #DEA641;
	padding: 8px;
	font-size: 0.8rem;
	line-height: 1;
}

.secure	{
	margin-top: 10px;
	color: #B2B2B2;
	font-size: 0.8rem;
}

/* FOOTER */

footer {
	background-color: #1D1B1B;
	padding-top: 30px;
	padding-bottom: 50px;
}

.footer-flags {
	margin-top: 8px;
}

.footer-logo {
	color: #DEA641;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
}

.copy {
	font-size: 0.8rem;
	color: #CCC;
}

.footer-main {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.footer-links {
	display: none;
}

.centered {
	text-align: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: auto;
}

/* SLIDERS */

.slider-content {
	display: block;
	padding-top: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	width: 250px;
}

.slider-content label {
	display: block;
}

.slider-content input[type=text] {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	padding-left: auto;
	padding-right: auto;
	color: #EBC629;
	font-size: 2rem;
	border: none;
	width: 100%;
}

.ui-slider.ui-corner-all,
.ui-slider .ui-corner-all {
  	border-radius: 0;
}

.ui-slider.ui-slider {
  	border: 0;
  	background: #CCC;
  	border-radius: 0px;
}

.ui-slider.ui-slider-horizontal {
  	height: 4px;
}

.ui-slider .ui-slider-handle {
  	width: 24px;
  	height: 24px;
  	background: #EBC629;
  	border-radius: 4px;
  	border: none;
  	cursor: pointer;
}

.ui-slider.ui-slider-horizontal .ui-slider-handle {
  	top: 50%;
  	margin-top: -12px;
}

.ui-slider .ui-slider-handle:hover {
  	background: #DEA641;
}

.ui-slider .ui-slider-range {
  	border: 0;
  	border-radius: 0;
  	background: #CCC;
}

.ui-slider.ui-slider-horizontal .ui-slider-range {
  	top: 0;
  	height: 4px;
	width: 150px; 
}

/* SORT BUTTONS */

.sort {
	max-width: 300px;
	min-width: 150px;
	padding: 20px 10px 0px;
	display: -webkit-box;
	display: -ms-flexbox;		
	display: flex;
	-webkit-box-orient: horizontal;		
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin: auto;
}

.sort button {
	display: block;
	flex-basis: 50%;
	width: 50%;
	margin-bottom: 10px;
}

.choose {
	background-color: #CCC;
	padding: 10px;
	-webkit-box-shadow: inset 0 -3px 0 #B2B2B2;
	        box-shadow: inset 0 -3px 0 #B2B2B2;
}

.choose:hover {
	background-color: #EBC629;
	transition: background-color 0.25s;
	-webkit-box-shadow: inset 0 -3px 0 #EBC629;
	        box-shadow: inset 0 -3px 0 #EBC629;
}

#sortPopular {
	margin-right: 5px;
}
	
#sortRate {
	margin-left: 5px;
}


.active {
	background-color: #EBC629;
	-webkit-box-shadow: inset 0 -3px 0 #EBC629;
	        box-shadow: inset 0 -3px 0 #EBC629;
}

/* LOAN LIST */

.loan-content {
	display: block;
	position: relative;
	background-color: #FFF;
	border-radius: 4px;
	width: 100%;
	bottom: 50px;
	-webkit-box-shadow: 0px 20px 15px -5px rgba(0,0,0,0.2);
	        box-shadow: 0px 20px 15px -5px rgba(0,0,0,0.2);
	padding-top: 20px;
	padding-bottom: 20px;
}

.padding {
	display: block;
	position: relative;
}

.loan {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;	
	padding: 15px 0px;
}

.loan:nth-child(2n-1) {
	background-color: #EEE;
}

.row {
	margin: 5px 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	justify-content: center;
}

.card-row {
	margin: 5px 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

.grey {
	background-color: #EEE;
	border-radius: 4px;
}

.loan-image {
	display: flex;
	flex-basis: 100%;
	flex-grow: 1;
	flex-wrap: nowrap;
	flex-direction: column;
	margin: auto;
}

.loan-image img {
	display: block;
	max-width: 70%;
	margin: 0 auto;
	max-height: 50px;
}

.loan-info {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	margin: auto;
	justify-content: flex-start; 
}

.loan-name {
	width: 100%;
	margin-bottom: 5px;
}

.loan-detail {
	width: 100%;
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
	font-size: 0.9rem;
	line-height: 1rem;
	margin-bottom: 5px;
	flex-grow: 1;
}

.loan-example {
	margin-left: 5px;
	margin-right: 10px;
	font-size: 1.2rem;
	text-align: left;
	-ms-flex-preferred-size: 78%;
	    flex-basis: 78%;
}

.loan-extra {
	display: flex;
	padding-top: 10px;
	justify-content: center;
}

.more {
	color: #B2B2B2;
	width: 100%;
	-ms-flex-preferred-size: 15%;
	    flex-basis: 15%;
	font-size: 1.2rem;
	line-height: normal;
	cursor: pointer;
	margin-left: auto;
	margin-right: auto;
}

.row .more span {
	display: none;
}

.small {
	font-size: 0.9rem;
	line-height: 1rem;
}

.slim {
	font-weight: 300;
}

.no-result {
	height: 100px;
	padding: 50px 0px;
	width: 100%;
}

/* REDIRECT SITE */

.redirect-content {
	display: block;
	position: fixed;
	width: 90%;
	background-color: #FFF;
	border-radius: 4px;
	padding: 20px;
	-webkit-box-shadow: 0px 20px 15px -5px rgba(0,0,0,0.2);
	box-shadow: 0px 20px 15px -5px rgba(0,0,0,0.2);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.redirect-content a {
	display: inline-block;
	color: #DEA641;
}

.redirect-content a:after {
	display: block;
	content: '';
	border-bottom: 1px solid #DEA641;
	transform: scaleX(0);
	-webkit-transition: transform 0.25s ease-in-out;
	transition: transform 0.25s ease-in-out;
}

.redirect-content a:hover:after {
	transform: scaleX(1);
}

.redirect-content div {
	margin-top: 8px;
}

::-moz-selection {
	background-color: #EBC629;
}

::selection {
	background-color: #EBC629;
}

.input-addon::-moz-selection {
	color: #B2B2B2;
}

.input-addon::selection {
	color: #B2B2B2;
}

input[type=text]::selection {
	color: #1D1B1B;
}
#loanAmountDisplay, #ageAmountDisplay {
	text-align: center;
}

/* RATING STARS */

.rating-content {
	margin-top: 3px;
	margin-bottom: 5px;
}

.rating-container {
  	position: relative;
  	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	color: #B2B2B2;
}

.rating-container:before{
    content: "\f005 \f005 \f005 \f005 \f005";
}

.rating-star {
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
    color: #EBC629;
	left: 0;
    top: 0;
}
.rating-star:before {
    content: "\f005 \f005 \f005 \f005 \f005";
}


/* BIGGER SCREENS >480PX */

@media screen and (min-width: 480px) and (max-width: 768px) {
	
	.logo {
		margin-top: 15px;
	}

	.step div {
		-ms-flex-preferred-size: 8%;
		    flex-basis: 8%;
	}
	
	.sliders {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	
	.age-slider, .loan-slider {
		-ms-flex-preferred-size: 50%;
		    flex-basis: 50%;
	}
	
	.slider-content {
		padding-left: 30px;
		padding-right: 30px;
	}

}

@media screen and (min-width: 768px){
	.nav-up{
		top: -70px;
	}

	.logo {
		margin-top: 15px;
	}

	header {
		height: 70px;
	}
	
	.redirect-content {
		width: 750px;
		padding: 50px;
	}
	
	nav {
		width: 750px;
		height: 70px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.navigation {
		padding-top: 25px;
	}
	
	.navigation-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}
	
	.navigation-list li {
		display: inline-block;
		position: relative;
		margin-left: 10px;
		margin-right: 10px;
		height: 45px;
		border-bottom: 4px solid transparent;
	}
	
	.navigation-list li:hover{
		border-bottom: 4px solid #CCC;
		-webkit-transition: border-bottom 0.25s ease;
		transition: border-bottom 0.25s ease;
	}
	
	.navigation-list li.selected {
		border-bottom: 4px solid #EBC629!important;
	}
	
	h1 {
		font-size: 2rem;
	}
	
	.hero {
		height: 500px;
	}

	.hero-hidden {
		height: 200px;
	}
	
	.hero-content {
		top: 100px;
	}
	
	.hero-content {
		position: relative;
		min-height: 250px;
		width: 750px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.hero-line {
		width: 150px;
		height: 4px;
		margin-top: 15px;
	}

	.hero-text {
		display: block;
		font-size: 1.3rem;
		line-height: 1.8rem;
		margin: 20px 50px 20px;
	}

	.hero-text-m, .hamburger, .mobile-navigation {
		display: none;
	}

	.main-content {
		width: 750px;
		padding: 30px 50px;
		bottom: 100px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.step {
		font-size: 1rem;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	.step div{
		-ms-flex-preferred-size: 0%;
		    flex-basis: 0%;
	}

	.step-num {
		padding-top: 20px;
		font-size: 1.3rem;
		width: 60px;
		height: 60px;
		position: fixed;
		left: -30px;
		-webkit-box-shadow: 0px 5px 10px -2px rgba(0,0,0,0.2);
		        box-shadow: 0px 5px 10px -2px rgba(0,0,0,0.2);
	}

	.step-text {
		text-align: center;
		line-height: 1.5rem;
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
	
	.spacer {
		margin-bottom: 40px;
	}
	
	#sortPopular {
		margin-right: 20px;
	}
	
	#sortRate {
		margin-left: 20px;
	}

	.input-group {
		width: 300px;
		font-size: 1.3rem;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	
	.about-group {
		width: 300px;
		font-size: 1.3rem; 
		margin-left: auto;
		margin-right: auto;
	}
	
	.radio-group {
		font-size: 1.3rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-preferred-size: 50%;
		    flex-basis: 50%;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		margin-left: auto;
		margin-right: auto;
		width: 450px;
	}
	
	.radio {
		display: block;
		width: 50%;
		padding: 10px;
	}
	
	footer {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-line-pack: center;
		    align-content: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		padding-top: 40px;
		padding-bottom: 80px;
	}
	
	.footer {
		width: 750px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.footer-main {
		float: left;
		text-align: justify;
	}
	
	.footer-links {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-preferred-size: 50%;
		    flex-basis: 50%;
		float: right;
	}
	
	.links {
		color: #FFF;
		padding-left: 50px;
	}
	
	.links a {
		color: #CCC;
	}
	
	.links a:hover {
		color: #DEA641;    
		transition: all 0.25s ease-in-out;
	}

	.sliders {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	
	.age-slider, .loan-slider {
		-ms-flex-preferred-size: 50%;
		    flex-basis: 50%;
	}
	
	.slider-content {
		padding-left: 40px;
		padding-right: 40px;
	}
	
	.loan-content {
		width: 750px;
		bottom: 100px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	
	.loan-name {
		margin-bottom: 15px;
	}
	
	.loan-image img {
		max-width: 100%;
	}
	
	.row, .card-row {
		margin: 5px 20px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-flex: 1;
		    -ms-flex-positive: 1;
		        flex-grow: 1;
	}
	
	.loan-image {
		-ms-flex-preferred-size: 15%;
		    flex-basis: 15%;
	}
	
	.loan-info {
		-ms-flex-preferred-size: 60%;
		    flex-basis: 60%;
	}
	
	.row .action {
		flex-basis: 15%;
	}
	
	.loan-extra .loan-detail {
		-ms-flex-preferred-size: 33%;
		    flex-basis: 33%;
	}
	
	.more{
		font-size: 0.8rem;
	}
	
	.row .more span {
		display: inline-block;
	}
	
	.action {
		min-width: 100px;
		padding-top: 0px;
	}

	.card-info-container {
		display: flex;
		flex-direction: row;
		align-items: center;
		text-align: center;
		justify-content:center;
		width: 100%;
	}

	.card-info {
		margin-left: 8px;
		margin-right: 8px;
	}
	
}