* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	font-size: 100%;
	scrollbar-width:none;
	-ms-overflow-style:none;
}

body {
	padding: 0;
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: #252a40;
	font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Ubuntu,sans-serif;
	background-color: #ffffff;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}
span,
sub,
sup,
a {
	display: inline-block;
}

/* Select Your Bank Starts Here */
.main-area {
	display: flex;
	justify-content: center;
	align-items: center;
}
.content-wrapper {
	max-width: 500px;
	margin-top: 50px;
}
.select-bank__title {
	font-size: 34px;
	font-weight: 500;
	color:#000;
	line-height: 1;
	margin: 0px;
	margin-bottom: 20px;
}
.search-form {
	position: relative;
	margin-bottom: 30px;
}
.search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 17px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.8;
}
.close-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
	cursor: pointer;
	width: 20px;
}
.reset-search {
	display: none;
}
.reset-search.show {
	display: block;
}
.close-icon img {
	width: 100%;
}
.search-form .form-control {
	height: 40px;
	border-radius: 8px;
	font-size: 14px;
	padding-left: 50px;
	padding-right: 30px;
	border: 1px solid #ced4da;
	transition: all ease 0.3s;
	width: 100%;
}
.search-form .form-control:focus {
	color: #212529;
	background-color: #fff;
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.logos-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-bottom: 30px;
}
.single-logo {
	width: 244px;
	cursor:pointer;
	height: 110px;
	padding: 20px;
	border-radius: 7px;
	border: 1px solid #ced4da;
}
.single-logo:hover {
	 box-shadow:0 0 1px 3px #a8ceea;
 border-color:none!important;
 border:none!important;
 outline:none

}
.single-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 767px) {
	.select-bank__title {
		font-size: 30px;
	}
}
@media (max-width: 575px) {
	.select-bank__title {
		font-size: 25px;
		margin-bottom: 18px;
	}
	.content-wrapper {
		padding-inline: 20px;
		margin-top: 15px;
		margin-right:1.25rem;
		margin-left:1.25rem;
	}
	.search-form {
		margin-bottom: 25px;
	}
	.single-logo {
		width: 48%;
		height: 70px;
		padding: 15px;
	}
}
@media (max-width: 375px) {
	.select-bank__title {
		font-size: 22px;
		margin-bottom: 15px;
	}
	.single-logo {
		width: 48%;
	}
}
@media (max-width: 350px) {
	.logos-wrapper {
		gap: 8px;
	}
	.single-logo {
		width: 48.5%;
		padding: 10px;
	}
}

/* Select Your Bank Two Starts Here */
.bank-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
	border-bottom:1px solid #9e9e9e2e;
	padding-bottom:10px;
	cursor:pointer;
}

.bank-left {
	width: 50px;
	height: 50px;
	background-color: #eaeaea;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bank-left img {
	width: 100%;
	height: 100%;
	border-radius:6px;
}
.bank-right {
	width: calc(100% - 50px);
	padding-left: 20px;
}
.bank-wrapper {
	padding-bottom: 5px;
}
.bank-wrapper .title {
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	margin: 0px;
	margin-top: 7px;
	margin-bottom: 5px;
}
.bank-wrapper .text {
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	color: #999;
}
.bank-bottom {
	padding-top: 30px;
	padding-bottom: 30px;
}
.bank-bottom__title {
	font-size: 14px;
	font-weight: 500;
	color: #777;
	margin: 0;
	line-height: 1;
	margin-bottom: 15px;
	letter-spacing: 1.12px;
}
.bank-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bank-info-list li {
	display: flex;
	/* flex-wrap: wrap; */
	align-items: center;
}
.bank-info-list li:first-child {
	margin-bottom: 30px;
}
.left-icon {
	width: 50px;
	height: 50px;
	border-radius: 8px;
	background-color: #e3e8ee;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px;
}
.left-icon img {
	width: 100%;
}
.right-content {
	padding-left: 20px;
}
.bank-info-list p {
	margin: 0;
	font-size: 13px;
	color: #4f4d4d;
	font-weight: 500;
}
.bank-info-list p a {
	color: #222222;
}
.bg-light {
	background-color: #d6ecff !important;
}

@media (max-width: 575px) {
	.bank-wrapper .title {
		font-size: 18px;
	}
	.bank-wrapper .text {
		font-size: 15px;
	}
	.bank-left,
	.left-icon {
		width: 32px;
		height: 32px;
		border-radius: 6px;
	}
	.bank-right,
	.right-content {
		padding-left: 15px;
	}
	.content-wrapper-two {
		max-width: 390px;
	}
	.bank-bottom__title {
		font-size: 18px;
	}
	.bank-info-list p {
		font-size: 12px;
		line-height: 1.4;
		color:#4f4d4d;
	}
	.bank-item {
		margin-bottom: 10px;
	}
	.bank-info-list li:first-child {
		margin-bottom: 20px;
	}
}

@media (max-width: 375px) {
	.content-wrapper-two {
		max-width: 360px;
		padding-inline: 15px;
	}
}
@media (max-width: 350px) {
	.content-wrapper-two {
		max-width: 320px;
	}
}

.poof_button_load:hover{
	opacity:.55;
}