.fwg-rewards-cart-block {
	border: none;
	padding: 0;
	margin: 0 0 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.fwg-rewards-cart-block > h2 {
	margin: 0 0 15px;
	width: 100%;
}

.fwg-rewards-currency {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
	width:100%;
}

.fwg-rewards-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fwg-rewards-currency h3 {
    margin: 0 0 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
}
a.fwg-rewards-link.button {
	margin-top:5px !important;
}

.fwg-rewards-balance, 
.fwg-rewards-eligible {
	margin: 0 0 2px;
}

.fwg-rewards-balance strong, 
.fwg-rewards-eligible strong {
	font-weight: 700;
}

.fwg-rewards-currency label {
    display: block;
    margin: 0px 0 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
}

.fwg-rewards-amount {
	outline: none;
	font-family: 'Nunito', sans-serif;
	width: 185px;
	max-width: 100%;
	margin: 6px 0 10px;
	border: none !important;
	border-radius: 30px !important;
	padding: 8px 20px !important;
}

.fwg-rewards-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.fwg-rewards-message {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.35;
}

.fwg-rewards-message.is-error {
	color: #973333;
}

.fwg-rewards-cart-block .button {
	font-family: 'Nunito', sans-serif;
	white-space: nowrap;
	background-color: var(--color-blue) !important;
	color: var(--color-white) !important;
	text-transform: uppercase;
	font-weight: 700 !important;
	font-size: 13px !important;
	border-radius: 30px !important;
	border: none !important;
	padding: 9px 14px 8px !important;
	transition: var(--transition);
}

.fwg-rewards-cart-block .button:hover {
	background-color: var(--color-light-green) !important;
	color: var(--color-white) !important;
}

.fwg-otp-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
}

.fwg-otp-modal.is-open {
	display: block;
}

.fwg-otp-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.55);
}

.fwg-otp-panel {
	position: relative;
	z-index: 2;
	width: min(540px, calc(100% - 32px));
	margin: 10vh auto 0;
	background: #fff;
	border-radius: 10px;
	padding: 30px 35px 35px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.fwg-otp-panel h3 {
	margin: 0 0 10px;
}

.fwg-otp-group {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin: 15px 0;
}

.fwg-otp-group input {
	width: 70px;
	height: 70px;
	font-size: 32px;
	text-align: center;
	border: 1px solid #ddd !important;
	background: var(--color-white);
	border-radius: 0 !important;
}

.fwg-otp-group input:focus {
	background: #f3f3f3;
	outline: none;
}

.fwg-otp-error-box {
	margin-bottom: 10px;
	color: #973333;
	font-size: 13px;
}

.fwg-otp-sent {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.35;
}

.fwg-otp-email {
	font-weight: 700;
}

.fwg-otp-input {
	width: 100%;
	max-width: 320px;
	display: block;
	font-size: 18px;
	letter-spacing: 0.15em;
	padding: 10px 12px;
	margin: 0 0 12px;
	border: 1px solid #d5d5d5;
	border-radius: 8px;
}

.fwg-otp-error {
	margin: 0 0 12px;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid #e2b3b3;
	background: #f8eaea;
	color: #973333;
	font-size: 13px;
}

.fwg-otp-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 10px;
}

.fwg-otp-actions .fwg-otp-confirm {
	font-weight: 700;
}

.fwg-otp-actions .fwg-otp-cancel {
	opacity: 0.9;
}

@media (max-width: 480px) {
	.fwg-otp-panel {
		margin: 8vh auto 0;
		padding: 18px;
	}
	.fwg-otp-actions .button {
		width: 100%;
	}
}

.fwg-otp-panel input,
.fwg-otp-panel button {
	box-sizing: border-box;
}