@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
	background: #F3F3F3;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}

main {
	max-width: 1280px;
	margin: auto;
	min-height: 100vh;
}

a.btn {
	position: relative;
}

.btn .fa-chevron-right {
	position: absolute;
	right: 5px;
	top: 10px;
	color: #222;
}


#genericCSOffer .panel {
	border-radius: 0;
}

.panel-default>.panel-heading,
.panel-default>.panel-footer {
	background-color: #F1F5F8;
}

footer {
	margin-top: 25px;
	padding: 20px 0;
}

footer li small {
	color: #0F44B2;
}

.panel-body h4 {
	line-height: 24px;
}

.icon-wrapper {
	max-width: 80px;
	margin: auto;
}

.media {
	padding: 15px;
	background: #F1F5F8;
	margin-bottom: 20px;
}

.customer-service img {
	border-bottom: 5px solid #F1F5F8;
}

h3 strong {
	color: #1C6C86;
}

header {
	background: white;
	color: #222;
	margin-bottom: 5px;
	padding: 20px 0 120px;
}

header h2 {
	margin: 0;
}

.btn-warning {
	color: #000 !important;
	background-color: #FF9800;
	border-color: #EEA236;
}

.custom-offers .well {
	cursor: pointer;
	position: relative;
	border: 1px solid #AEAEAE;
}

.well {
	background: #FFF;
	border-radius: 0;
}

i.fas.fa-check-square {
	color: #8BC34A;
}

.custom-offers .well button.btn {
	font-weight: 600;
}

.btn-primary {
	color: #FFF !important;
	background-color: #222;
	max-width: 120px;
	border-radius: 3px;
	padding: 5px 0;
	text-transform: uppercase;
	margin: auto;
	border: none;
}

.btn-primary:hover {
	color: #FFF !important;
	background-color: #043147;
	border-color: #043147;
}

.t3 {
	border: 1px solid #AEAEAE;
	padding: 10px;
	margin-bottom: 15px;
}

.offer-wrap {
	cursor: pointer;
	background: white;
}


.offer-wrap img.img-responsive {
	cursor: pointer;
	max-width: 150px;
	margin: auto auto 15px;
	width: 100%;
}

.custom-offers {
	padding: 20px;
	background: #F3F3F3;
	border-radius: 15px;
}

.custom-offers img.form-group {
	max-width: 150px;
	margin: 10px auto;
}


#genericCSOffer h4 strong {
	color: #1C6C86;
}


.cta {
	background: #1C6C86;
	background-image: -webkit-linear-gradient(#1C6C86, #175163);
	background-image: linear-gradient(#1C6C86, #175163);
	color: white !important;
	border: none;
}

.animated-button {
	background: linear-gradient(-30deg, #0B1B3D 50%, #08142B 50%);
	padding: 20px 40px;
	margin: 12px;
	display: inline-block;
	-webkit-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	overflow: hidden;
	color: #D4E0F7;
	font-size: 20px;
	letter-spacing: 2.5px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #8592AD;
	opacity: 0;
	-webkit-transition: .2s opacity ease-in-out;
	transition: .2s opacity ease-in-out;
}

.animated-button:hover::before {
	opacity: 0.2;
}

.animated-button span {
	position: absolute;
}

.animated-button span:nth-child(1) {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#2662D9));
	background: linear-gradient(to left, rgba(8, 20, 43, 0), #2662D9);
	-webkit-animation: 2s animateTop linear infinite;
	animation: 2s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes animateTop {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

.animated-button span:nth-child(2) {
	top: 0px;
	right: 0px;
	height: 100%;
	width: 2px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#2662D9));
	background: linear-gradient(to top, rgba(8, 20, 43, 0), #2662D9);
	-webkit-animation: 2s animateRight linear -1s infinite;
	animation: 2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

@keyframes animateRight {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

.animated-button span:nth-child(3) {
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#2662D9));
	background: linear-gradient(to right, rgba(8, 20, 43, 0), #2662D9);
	-webkit-animation: 2s animateBottom linear infinite;
	animation: 2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@keyframes animateBottom {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

.animated-button span:nth-child(4) {
	top: 0px;
	left: 0px;
	height: 100%;
	width: 2px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#2662D9));
	background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #2662D9);
	-webkit-animation: 2s animateLeft linear -1s infinite;
	animation: 2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}

@keyframes animateLeft {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}

.animated-button1 {
	background: linear-gradient(#1C6C86, #175163);
	padding: 15px 5px;
	width: 100%;
	display: inline-block;
	-webkit-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	overflow: hidden;
	color: #FFF !important;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	box-shadow: 0 20px 25px -22px #000;
}

.animated-button1::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #4C00FF;
	opacity: 0;
	-webkit-transition: .2s opacity ease-in-out;
	transition: .2s opacity ease-in-out;
}

.animated-button1 span {
	position: absolute;
}

.animated-button1 span:nth-child(1) {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#0070FF));
	background: linear-gradient(to left, rgba(43, 8, 8, 0), #0070FF);
	-webkit-animation: 2s animateTop linear infinite;
	animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

.animated-button1 span:nth-child(2) {
	top: 0px;
	right: 0px;
	height: 100%;
	width: 2px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#0070FF));
	background: linear-gradient(to top, rgba(43, 8, 8, 0), #0070FF);
	-webkit-animation: 2s animateRight linear -1s infinite;
	animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

.animated-button1 span:nth-child(3) {
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#FFF));
	background: linear-gradient(to right, rgba(43, 8, 8, 0), #FFF);
	-webkit-animation: 2s animateBottom linear infinite;
	animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

.animated-button1 span:nth-child(4) {
	top: 0px;
	left: 0px;
	height: 100%;
	width: 2px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#4C00FF));
	background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #4C00FF);
	-webkit-animation: 2s animateLeft linear -1s infinite;
	animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}

.offers-wrap {
	transform: translateY(-120px);
}

.offers-wrap h3 {
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 20px;
}

.right-cpc {
	background: white;
	padding: 15px;
	border: 1px solid #AEAEAE;
	margin-bottom: 20px;
}

.right-info {
	background: white;
	padding: 15px;
	border: 1px solid #AEAEAE;
	margin-bottom: 20px;
	margin-top: 20px;
}

.right-offers {
	background: white;
	padding: 15px;
	border: 1px solid #AEAEAE;
	margin-bottom: 20px;
}

#dynamicCSOffer .importantScoreFree {
	border: 2px solid #BFBFBF;
	padding: 20px;
	border-radius: 10px;
}

.importantScoreFree .offerBtn {
	background: #1C6C86;
	padding: 18px;
	color: white;
	font-weight: bold;
}

h1,
h1 small {
	color: #222;
}

h1 span.colored {
	color: #0FB285;
}

.fas.fa-check {
	color: #0FB285;
}

.custom-offers-mini {
	border-bottom: 1px solid #CCC;
}

.right-offers .text-right {
	cursor: pointer;
	background: whitesmoke;
	padding: 3px 10px;
	color: #2768C3;
}

.count-wrap {
	position: absolute;
	padding: 0 10px;
	left: 10px;
	top: -3px;
	background: #222;
	color: white;
}


.count-1:after {
	content: ' Our top loan offer';
	margin-left: 20px;
	color: white;
}

.count-1:before {
	content: '';
	background: white;
	top: -6px;
	bottom: 0;
	width: 6px;
	height: 30px;
	position: absolute;
	left: 25px;
	transform: rotate(15deg);
}

.count-1 {
	background: #0FB285;
	width: 180px;
	color: white;
}

.t3 .offer-body {
	padding-left: 45px;
	padding-top: 15px;
}

.offers-wrap h3 {
	font-size: 15px;
}

@media (min-width : 768px) {
	.offers-wrap h3 {
		font-size: 24px;
	}
}

.offers-wrap h3 span {
	color: #0FB285;
}

.main-headline small {
	display: block;
	margin-bottom: 5px
}

.main-headline h1 {
	margin-top: 0;
	font-size: 22px;
}


@media (min-width : 768px) {
	.main-headline small {
		display: block;
		margin-bottom: 5px
	}

	.main-headline h1 {
		margin-top: 0;
		line-height: 36px;
		font-size: 36px;
	}
}


.cb-banner {
	position: relative;
	border: 1px solid #eaeaea;
	padding: 10px;
	margin-bottom: 15px;
	box-shadow: 0 5px 20px -10px #00000075;
}

.cb-banner span.colored {
	color: #0FB285;
}

.cb-banner h4 {
	font-size: 18px;
	margin-top: 7px;
	margin-bottom: 5px;
	white-space: nowrap;
}

.cb-banner h4 img {
	position: relative;
	top: -3px;
}