/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 13 2025 | 22:10:20 */
//fix

form.checkout_coupon.woocommerce-form-coupon {
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 30%;
    width: 450px;
    background: #fff;
    max-width: 95%;
 transform: translate(-50%, -50%);
   
	
}

form.checkout_coupon.woocommerce-form-coupon.active{
	display: block !important;
	animation: scaleUp 0.5s ease ;
	transform-origin: center center ;
}

@keyframes scaleUp{
	from{
		transform: scale(0);
		transform: translate(0, 0%);
	}
	to{
		transform: scale(1);
			 transform: translate(-50%, -50%);
	}
}

.coupon-open{
	font-family: 'DIN';
	font-size: 12px ;
	line-height: 14px ;
	color: #3f3f3f ;
	font-weight: 400;
	display: inline-block ;
	cursor: pointer ;
}

.coupon-close{
	font-size: 14px ;
	font-family: 'Poppins';
	font-weight: 700 ;
	display: flex ;
	width: 30px ;
	height: 30px ;
	position: absolute ;
	right: 10px ;
	top: 10px ;
	border-radius: 50% ;
	align-items: center ;
	justify-content: center ;
	background: #C20E1A;
	z-index: 99999;
	color: #fff ;
	cursor: pointer ;
}