@font-face {
	font-family: 'Montserrat Alternates';
	src: url('assets/fonts/MontserratAlternates-Bold.woff2') format('woff2'),
			url('assets/fonts/MontserratAlternates-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('assets/fonts/Roboto-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('assets/fonts/Roboto-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

h4 {
	font-size: 24px;
	font-weight: bold;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

body {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

strong {
	font-weight: bold;
}

header {
	font-family: 'Montserrat Alternates', sans-serif;
	font-weight: bold;
	font-style: normal;
	font-size: 24px;
	display: flex;
	align-items: center;
	padding-top: 2rem;
	padding-left: 1rem;
}

.logo {
	width: 32px;
	height: 32px;
	display: block;
	margin-right: 16px;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	font-size: 18px;
}

.info	{
	display: none;
	flex-direction: column;
	padding: 32px 16px 0;
}

.title {
	color: #212121;
	margin-bottom: 20px;
	font-weight: bold;
}

.comment .title {
	margin-bottom: 20px;
}

hr {
	background-color: #EEEEEE;
	height: 1px;
	border: none;
	margin-top: 20px;
	margin-bottom: 20px;
}

.item {
	display: none;
	justify-content: space-between;
}

.item#address {
	margin-top: 12px;
}

.item strong {
	text-align: right;
}

#comment {
	display: none;
}

.comment {
	font-size: 16px;
}

.btn-container {
	display: none;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
}

.pay-btn {
	width: 100%;
	padding: 16px;
	background-color: #FFBF66;
	border: none;
	border-radius: 100px;
	cursor: pointer;
	font-size: 16px;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	transition: all 0.3s ease;
}

.pay-btn:active {
	transform: scale(0.95);
}

.agreement {
	font-size: 14px;
	display: none;
}

.agreement a {
	color: #007AFF;
	text-decoration: none;
}

.agreement a:hover {
	text-decoration: underline;
}

#paid {
	display: none;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
}

#paid > h4 {
	margin-top: 16px;
	margin-bottom: 12px;
}

.sum_container {
	display: flex;
}

#success_sum {
	font-weight: bold;
}

#error-container {
	display: none;
	max-width: 380px;
	text-align: center;
}

@media (min-width: 376px) {
	header {
		padding-top: 2rem;
		padding-left: 2rem;
	}

	.info	{
		width: 380px;
	}

	main {
		justify-content: center;
	}
}