html, body {
	min-height: 100vh;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	background-color: #eef4f7;
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-methods {
	display: grid;
	grid-gap: 16px;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 91px;
}

.payment-methods-simplebar {
	height: 405px;
	overflow-x: hidden;
}

.simplebar-track {
	overflow: unset;
}

.simplebar-track.simplebar-vertical {
	background-color: white;
	width: 3px;
}

.simplebar-scrollbar:before {
	background-color: rgba(30, 29, 29, 0.1);
	left: -2px;
	right: -2px;
}

.simplebar-scrollbar.simplebar-visible:before {
	opacity: 1;
}

.payment-method {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid rgba(30, 29, 29, 0.1);
	cursor: pointer;
	color: rgba(255, 255, 255, 0.45);
	font-size: 16px;
}

.payment-method__logo {
	-o-object-fit: contain;
	object-fit: contain;
}

.payment-method:hover:not(.disabled) {
	background-color: #FFF;
	text-decoration: none;
	color: rgb(141, 126, 126);
}

.payment-method.disabled {

	flex-direction: column;
}
.payment-method.disabled > img {
	filter: grayscale(1) opacity(0.5);
}

.payment-method.disabled > small {
	color: black;
	text-align: center;
	font-size: 0.7em;
	padding: 0 4px;
	margin-top: 8px;
}

.payment-method--2col {
	grid-column: span 2;
}

.payment-check {
	background-color: #FFF;
	border-radius: 4px 4px 0 0;
	padding: 32px 32px 10px 32px;
	position: relative;
	box-shadow: 16px 16px 64px rgba(0,0,0,0.06);
}

.payment-check:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 9px;
	bottom: -9px;
	left: 0;
	background: url('/images/payment-check-bottom-l.svg') center bottom no-repeat;
}

.payment-check__logo {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-image: linear-gradient(208.78deg, rgba(252,204,1,0.15) -1.13%, rgba(255,53,0,0.15) 95.96%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 41px auto 0 auto;
}

.payment-check__nickname {
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	margin-top: 16px;
	color: #1E1D1D;
}

.payment-check__desc {
	font-size: 16px;
	text-align: center;
	color: rgba(30, 29, 29, 0.45);
	margin-top: 8px;
}

.payment-check__info {
	display: grid;
	grid-row-gap: 32px;
	margin-top: 23px;
}

.payment-check__info-item {
	color: rgba(30, 29, 29, 0.45);
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	line-height: 20px;
}

.payment-check__info-item--summary {
	color: #65c466;
}

.payment-check__info-value {
	font-weight: 600;
}

.payment-check__info-value > span {
	opacity: 0.45;
}

.payment-check__summary {
	margin-left: -16px;
	margin-right: -16px;
	background-color: rgba(101, 196, 102, 0.1);
	border-radius: 4px;
	padding: 32px 16px;
	margin-top: 32px;
}

.payment-check__summary.waiting {
	background-color: rgba(190, 190, 190, 0.25);
}

.payment-check__summary.waiting .payment-check__info-item--summary {
	color: #6b6b6b;
}

.payment-check__summary.canceled {
	background-color: rgba(255, 0, 0, 0.25);
}

.payment-check__summary.canceled .payment-check__info-item--summary {
	color: #db0000;
}



.payment-order {
	width: 845px;
	margin: 0 auto;
}

.payment-order__container {
	background-color: #F8F8F8;
	border-radius: 12px;
	padding: 32px 16px 32px 32px;
	display: grid;
	grid-template-columns: 393px 1fr;
	grid-column-gap: 32px;
	position: relative;
}

.payment-order__payment-methods-title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 32px;
	width: 170px;
	line-height: 27px;
	color: #1E1D1D;
}

.payment-order__payment-methods .payment-methods {
	padding-right: 16px;
}

.payment-order__close-modal {
	position: absolute;
	top: 16px;
	right: 16px;
}

.payment-check-comission {
	display: flex;
	font-size: 0.7rem;
	margin: 1rem 0;
	align-items: flex-start;
}

.payment-check-comission > label {
	margin: 0 0 0 0.8rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
	.payment-order__container {
		width: 393px;
		grid-template-columns: 1fr;
		grid-row-gap: 32px;
		margin: 0 auto;
		padding: 32px;
	}
}

@media (max-width: 468px) {
	.payment-order__container {
		width: unset;
		padding: 32px 16px 32px 16px;
	}
}
