* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
	background: white;
	background-color: #f8f8f8;
	-webkit-tap-highlight-color: transparent;
}


a {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	tap-highlight-color: transparent;
	outline: none;
	text-decoration: none;
	color: inherit;
}

a:active,
a:focus {
	outline: none;
	-webkit-tap-highlight-color: transparent;
}


.container {

	min-width: 320px;
	margin: 0 auto;


}

.header {
	text-align: center;
	height: 72px;
	background: #3059C2;
	line-height: 90px;

}


a {
	display: block;
	width: 100%;
	color: #333;
}

a:active {
	background: transparent !important;
}


.card {
	width: 90%;

	max-width: 400px;

	height: 130px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


.order-id {
	height: 30px;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 30px;
	text-align: center;
	color: #8E8E8E;
}


.amount {
	height: 120px;
	font-family: Inter, sans-serif;
	font-size: 46px;
	font-weight: 900;

	color: #3059C2;
	text-align: center;
	line-height: 118px;

	letter-spacing: 0;
}



.button-container {
	width: 100%;

	margin: 30px auto 0;

}


.pay-button {
	width: 92%;
	height: 60px;
	background: #FFFFFF;

	border-radius: 5px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;

	cursor: pointer;
	transition: all 0.25s ease;
	position: relative;
	box-shadow: 0px 3px 3px 0px #0000001A;



}


.pay-button.active {
	background: #E6F2FF;
	border-color: #3059C2;
}


.btn-icon {
	width: 23%;
	display: flex;
	justify-content: center;
	align-items: center;
}


.btn-text {
	width: 60%;
	font-family: Inter, -apple-system, sans-serif;
	font-size: 16px;
	font-weight: 550;
	color: #1a1a1a;
	text-align: left;
	line-height: 1.4;

	display: flex;
	align-items: center;
}


.btn-arrow {
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.qr-container {
	width: 100%;
	margin: 25px auto 0;
	padding: 0 18px;
}

.qr-card {
	height: 350px;
	border: 1px solid #DDDDDD;
	border-radius: 10px;
	margin: 0 auto;
	padding: 3px 11px;
	display: flex;
	flex-direction: column;
	align-items: center;
	letter-spacing: 2.0px;
	box-sizing: border-box;
}

.qr-title {
	font-family: Inter, -apple-system, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #383838;
	text-align: center;
	line-height: 1.4;
	margin-top: 8px;
}




.save-btn {
	width: 220px;
	height: 52px;
	border: 1px solid #EAEAEA;
	border-radius: 10px;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	background: #3059C2;
	line-height: 52px;
	color: white;
}


.save-btn:hover,
.save-btn:active {
	background: #3059C2;
	color: white;
}

.qr-wrapper {
	width: 250px;
	height: 250px;
	background: #FFFFFF;
	border-radius: 5px;
	padding: 2px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	display: flex;
	justify-content: center;
	align-items: center;
}


#qrcode canvas {
	border-radius: 8px;
}

#qrcode {
	height: 220px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shawdow {
	display: none;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
}

.shawdow .msg {
	width: 5.8rem;
	height: auto;
	min-height: 1.6rem;
	background-color: #FFFFFF;
	border-radius: 0.1rem;
	position: relative;
	left: 50%;
	top: 48%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.timeout-box {
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
#timeLeft {
    display: block;
    margin-top: 5px;
    font-size: 22px;
    transition: color 0.3s ease;
}
.progress-wrap {
    width: 80%;
    height: 6px;
    background: #eee;
    border-radius: 4px;
    margin: 10px auto 0;
    overflow: hidden;
}
#progressBar {
    width: 100%;
    height: 100%;
    background: #4a90e2;
    transition: width 1s linear;
}