@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);
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Poppins",Helvetica,Arial,sans-serif;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
}

.background-app {
	height: 100vh;
	width: 100vw;
	background-color: #FFF;
}

.page-content {
	border-radius: 5px;
	background-color: #F8F8FF;
	box-shadow: 0 4px 6px rgba(50, 50, 93, .11);
}

.page-container {
	height: 100vh;
	width: 100vw;
	margin: 0px auto;
}

.info-content {
	height: 65px;
	width: 100%;
	border-radius: 5px;
	background-color: #F8F8FF;
	box-shadow: 0 4px 6px rgba(50, 50, 93, .11);
}

@media (min-width: 1024px) {
	.info-content {
		width: 418px;
	}
}


@media (min-width: 1024px) {
	.page-container {
		width: 868px;
		height: 750px;
		margin-top: 50px;
	}
}

@media (min-width: 1024px) {
	.page-content {
		width: 868px;
		height: 650px;
	}
}

.view {
	width: 100vw;
	height: 100vh;
	position: relative;
	background-color: #F8F8FF;
	box-shadow: 0 4px 6px rgba(50, 50, 93, .11);
}

@media (min-width: 1024px) {
	.view {
		width: 868px;
		height: 680px;
		border-radius: 5px;
		margin: auto;
	}
}

.providers-content>.provider {
	margin: 10px;
	width: calc(50% - 20px);
	box-sizing: border-box;
	display: inline-block;
}

@media (min-width: 1024px) {
	.providers-content>.provider {
		width: calc(25% - 20px);
	}
}

.provider {
	background: #fff;
	border-radius: 5px;
	border: 1px solid #fff;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 10px;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px; 
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0.16078431904315948, 0.18823526799678802, 0.3019607961177826, 0.05000000074505806);
}

.provider:hover {
	cursor: pointer;
	transition-duration: 0.6s;  
	background-image: linear-gradient( rgba(105,54,211,1), rgba(241,110,110,1));    
}

.providers-content {
	overflow-y: auto;
	height: calc(100% - 22px);
	margin: 0 20px;
	text-align: center;
}

@media (min-width: 1024px) {
	.providers-content {
		height: 100%
	}
}

.bottom-page {
	text-align: center;
	text-transform: uppercase;
	margin: 0;
	color: #000;
	padding: 0;
	margin-top: 20px;
	font-size: 12px;
}

.selection .title {
	color: #2d2d2d;
	text-align: left;
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	vertical-align: middle;
}

@media (min-width: 1024px) {
	.selection>.title {
	}
}

@media (min-width: 1024px) {
	.selection-items {
		height: 570px;
		padding-bottom: 20px;
	}
}

@media (max-width: 1000px) and (min-width: 320px) {
	.selection-items {
		height: calc(100vh - 74px);
		padding-bottom: 20px;
	}
}

.providers {
	width: 100%;
	height: 100%;
	position: relative;
	font-size: 0;
}

@media (min-width: 1024px) {
	selection-items>.providers {
		height: calc(100% - 58px);
	}
}

@media (min-width: 1024px) {
	.selection-items>.providers>.providers-content {
		height: 100%;
	}
}

.provider>div.logo-container>img {
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	bottom: 0;
	max-width: 70%;
	min-width: 40%;
	width: 100%;
	height: auto;
	max-height: 80%;
	transform: translateX(-50%) translateY(-50%);
}

.provider>div.logo-container {
	width: 100%;
	padding-top: 45%;
	position: relative;
}

#overlay {
	background: #000;
	color: #666666;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 5000;
	top: 0;
	left: 0;
	float: left;
	text-align: center;
	padding-top: 25%;
	opacity: .80;
}

.spinner {
	margin: 0 auto;
	height: 64px;
	width: 64px;
	animation: rotate 0.8s infinite linear;
	border: 5px solid #058ed8;
	border-right-color: transparent;
	border-radius: 50%;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.note {
	margin-top: -8px;
	font-size: 14px;
	text-align: center;
}

@media (max-width: 550px) and (min-width: 320px) {
	.note {
		margin-top: -20px;
		margin-left: 10px;
		margin-right: 10px;
	}
}

.close {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 0.3;
  float:right;
  margin-right: 10px;
  margin-top: 12px;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  content: ' ';
  height: 13px;
  width: 3px;
  background-color: #333;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}

a {
	color: #9573df;
}

a:link {
	text-decoration: none;
	color: #9573df;
}

a:visited {
	text-decoration: none;
	color: #9573df;
}

a:hover {
	text-decoration: none;
	color: #9573df;
}

a:active {
	text-decoration: none;
	color: #9573df;
}

img {
	vertical-align: middle;
	border-style: none;
}

h1 {
	margin-bottom: .5rem;
	line-height: 1.2;
}

.eNpfYQ {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: rgb(41, 48, 77);
    display: inline-block;
    border-bottom: 1px solid rgb(41, 48, 77);
	margin-left: 5px;
	text-align: center;
}

.processing-info {
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    letter-spacing: 0.01em;
    color: rgb(41, 48, 77);
}

.eZqcrI {

	color: #2d2d2d;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.01em;
    padding-top: 15%;
}

.proprocessing-logo-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 95px;
    margin-top: 5%;
}

.default-logo {
    width: 80px;
	height: 80px;
	position: absolute;
}

.loader {
    width: 290px;
	margin: auto;
	display: block;
}

.bank-icon {
    width: 46px;
	height: 59px;
	margin-top: 2px;
}

.view .note{    
	position: absolute;
	width: 100%;
	bottom: 0;
}

.arrow {
	vertical-align: middle;
	margin-left: 25px;
    margin-right: 25px;
}

.breadcrumb {
	display: flex;
    list-style: none;
    flex-wrap: wrap;
	align-items: center;
	margin-top: 5px;
	margin-left: 30px;
}

.inactive {
	color: #A5AABE;
	text-align: left;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	vertical-align: middle;
}

.payment-info-header {
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
}

.payment-info-order {
	font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #707797;
	margin-left: 15px;
	width: 74vw;
}

.payment-info-description {
	font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 130%;
    color: #29304D;
	margin: 0;
}

.payment-info-money {
    height: 65px;
    background: white;
    margin-left: 37px;
    border-radius: 0px 10px 10px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	width: 32vw;
}

.payment-info-amount {
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: #29304D;
	margin: -4px;
}

.width-center {
	width: 100%;
	text-align: center;
}
.bank-selection {
	visibility: hidden;
  }
.bank-selection::after {
	content: 'Select your bank';
	visibility: visible;
  }

@media (min-width: 1024px) {
.bank-selection::after {
	content: 'Select your bank to make a payment';
	visibility: visible;
  }
}
input {
    background: #fff;
    color: #29304d;
    border: 1px solid #c8c9cb;
    outline: none;
    box-shadow: 0 10px 20px rgb(41 48 77 / 5%);
    border-radius: 5px;
    padding: 8px 12px;
    box-sizing: border-box;
    transition: border .25 ease-out;
    transition-delay: .3s;
}