.admin-bar .coupon-code-section {
	display: flex !important;
}

.coupon-code-section {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	position: relative;
}

.coupon-code-section .icon svg {
	width: 60%;
	height: 30px;
	width: auto;
	display: block;
}

.coupon-code-section .label {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 40%;
	padding: 10px 20px;
	background: #ffe4e4;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.coupon-code-section .label p {
	margin: 0;
}

.coupon-code-section .code {
	background: #000;
	padding: 15px 30px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.coupon-code-section .code p {
	margin: 0;
	text-align: center;
	color: #fff;
	font-weight: 600;
	line-height: 100%;
}


.coupon-popup {
    position: absolute;
    top: -40px;
    left: calc(50% - 16px);
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    font-size: 14px;
    transition: opacity .3s ease, transform .3s ease;
    white-space: nowrap;
}

.coupon-popup.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}
