.ccw-wrap {
	display: flex;
	width: 100%;
}

.ccw-coupon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	border: 1px solid #e5e7eb;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ccw-code {
	min-width: 0;
	flex: 1 1 auto;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .05em;
	word-break: break-word;
}

.ccw-button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	border: 0;
	font: inherit;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .15s ease;
	-webkit-appearance: none;
	appearance: none;
}

.ccw-button:hover {
	transform: translateY(-1px);
}

.ccw-button:active {
	transform: translateY(0);
}

.ccw-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.ccw-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ccw-icon svg,
.ccw-icon i {
	width: 1em;
	height: 1em;
	font-size: 1em;
}

.ccw-icon-success {
	display: none;
}

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

.ccw-button.is-copied .ccw-icon-success {
	display: inline-flex;
}

.ccw-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.ccw-empty {
	padding: 14px 16px;
	border: 1px dashed #cbd5e1;
	border-radius: 10px;
	background: #f8fafc;
	color: #64748b;
	font-size: 13px;
}

@media (max-width: 767px) {
	.ccw-coupon {
		max-width: 100%;
	}
}
