.discount-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.discount-popup-box {
	background: #fff;
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	position: relative;
	font-family: 'Montserrat', sans-serif;
	animation: opocaosPopupFadeIn 0.4s ease-out;
}

.discount-popup-icon {
	font-size: 50px;
	margin-bottom: 3px;
}

.discount-popup-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	font-family: 'Montserrat', sans-serif;
	color: #000;
}

.discount-popup-message {
	font-size: 16px;
	color: #000;
	margin-bottom: 20px;
	font-family: 'Montserrat', sans-serif;
}

.discount-popup-message p {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 8px;
}

.discount-popup-message p:last-child {
	margin-bottom: 0;
}

.discount-popup-close {
	position: absolute;
	top: 0;
	right: 18px;
	background: none;
	border: none;
	font-size: 2.5rem;
	color: red;
	cursor: pointer;
}

.discount-popup-close:hover {
	color: #e04562;
}

.coupon-code-box {
	position: relative;
	margin-top: 10px;
}

.coupon-code-box input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 46px 10px 12px;
	font-size: 1.1em;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

.coupon-code-box input.is-copied-feedback {
	color: #2e7d32;
	font-weight: 700;
}

.coupon-copy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 7px;
	width: 32px;
	height: 32px;
	padding: 0;
	color: #111;
	background: transparent;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transform: translateY(-50%);
}

.coupon-copy-button:hover,
.coupon-copy-button:focus {
	color: #000;
	background: transparent;
	outline: none;
}

.coupon-copy-button:disabled {
	color: #999;
	cursor: not-allowed;
	opacity: 0.55;
}

.coupon-copy-button:disabled:hover,
.coupon-copy-button:disabled:focus {
	color: #999;
}

.coupon-copy-icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.coupon-copy-icon-check {
	display: none;
}

.coupon-copy-button.is-copied {
	color: #2e7d32;
}

.coupon-copy-button.is-copied .coupon-copy-icon-copy {
	display: none;
}

.coupon-copy-button.is-copied .coupon-copy-icon-check {
	display: block;
}

.coupon-hint {
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	margin-top: 15px;
	color: red;
	font-weight: 600;
	text-align: center;
}

.popup-close-discount-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px !important;
	font-weight: 600 !important;
	cursor: pointer;
	padding: 0.8rem;
	text-align: center;
	border: none;
	border-radius: 50px;
	background-size: 300% 100%;
	transition: all 0.4s ease-in-out;
	box-shadow: 0 2px 15px 0 rgba(65, 132, 234, 0.75);
	white-space: nowrap;
	text-transform: uppercase;
	min-height: 50px;
}

.popup-close-discount-button:focus {
	outline: none;
}

.popup-close-discount-ok {
	background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
	color: #fff !important;
}

.popup-close-discount-ok:hover {
	background-position: 100% 0;
	box-shadow: 0 1px 8px 0 rgba(65, 132, 234, 0.85);
	transform: scale(1.05);
}

.popup-discard-coupon-button {
	background-image: linear-gradient(to right, #e53935, #d32f2f, #ff5252, #c62828);
	box-shadow: 0 2px 15px 0 rgba(229, 57, 53, 0.45);
	color: #fff !important;
}

.popup-discard-coupon-button:hover {
	background-position: 100% 0;
	box-shadow: 0 1px 8px 0 rgba(229, 57, 53, 0.6);
	transform: scale(1.05);
}

.confirmation-overlay {
	z-index: 10000 !important;
}

@keyframes opocaosPopupFadeIn {
	from { opacity: 0; transform: scale(0.9); }
	to { opacity: 1; transform: scale(1); }
}
