/**
************************************************************************************
* CSR  : http://clm.lge.com/issue/browse/BTOCSITE-124236
* CODE : Dev - EV00021481 , Prod - EV00009102
* FILE : /kr/event/2026/05/01_laundrygo_coupon/eventMainLaundrygoCoupon.jsp
* DESC : 런드리고 혜택 제휴 이벤트 난수쿠폰 지급 개발
* PROJ : lge.co.kr 5.0
************************************************************************************
*							Modification History
************************************************************************************
* DATE						AUTHOR				DESCRIPTION
************************************************************************************
* 2026/04/14				신우용				Created
************************************************************************************
**/

@charset "UTF-8";

.event-benefit-template .l-article__inner > form{
	display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    row-gap: calc(20 * var(--ratio));
}

/* 응모횟수 */
#couponRecivePop {
	--evt-design-width: 390;
	--evt-responsive-width: min(100vw, 780px);
	--evt-ratio: calc(var(--evt-responsive-width) / var(--evt-design-width));
	width: 324px;
	border-radius: 8px;
}

#couponRecivePop.popup-wrap .pop-conts {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-height: none;
	padding: 32px;
	row-gap: 12px;
}

#couponRecivePop .check-pop-msg {
	font-size: 15px;
	letter-spacing: -0.4px;
	line-height: 1.4;
	font-weight: 600;
}

#couponRecivePop .coupon-ran-num {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	row-gap: 16px;
}

#couponRecivePop .coupon-ran-num input {
	background-color: transparent;
	border: 0;
	text-align: center;
	font-size: 22px;
}

#couponRecivePop .coupon-ran-num .btn-number-copy {
	display: flex;
	width: 84px;
	height: 26px;
	background-color: #E3E0DC;
	border-radius: 24px;
	font-size: 12px;
	font-weight: 600;
	align-items: center;
	justify-content: center;
}

#couponRecivePop .coupon-ran-num + .btn-pop-close {
	width: 100%;
	height: 48px;
	margin-top: 12px;
	font-size: 15px;
	font-weight: 500;
	background-color: #000;
	color: #fff;
	border-radius: 8px;
}

#couponRecivePop .btn-close {
	top: 20px;
	right: 20px;
	width: 24px;
	height: 24px;
}

#couponRecivePop .btn-close:before {
	width: 100%;
	height: 100%;
	background-size: 100% auto;
}

#confirmPopup {
	max-width: 482px;
}

#confirmPopup .coupon-ran-num {
	display: grid;
	justify-content: space-between;
	align-items: center;
	column-gap: 8px;
	grid-template-columns: 1fr 40px;
}

#confirmPopup .coupon-ran-num .btn-number-copy {
	display: inline-flex;
	width: 40px;
	height: 40px;
	background-image: url('/lg5-common/images/icons/icon-copy-20.svg');
	background-position: center;
	background-size: 50% auto;
	background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {

	#couponRecivePop,
	#confirmPopup {
		left: 50% !important;
		top: 50% !important;
		height: auto;
		min-height: auto !important;
		transform: translate(-50%, -50%) !important;
	}

	#confirmPopup {
		max-width: 90%;
	}

	#couponRecivePop {
		width: calc(324 * var(--evt-ratio));
		border-radius: calc(8 * var(--evt-ratio));
	}

	#couponRecivePop.popup-wrap .pop-conts {
		padding: calc(32 * var(--evt-ratio));
		row-gap: calc(12 * var(--evt-ratio));
	}

	#couponRecivePop .check-pop-msg {
		font-size: calc(15 * var(--evt-ratio));
	}

	#couponRecivePop .coupon-ran-num {
		row-gap: calc(16 * var(--evt-ratio));
	}

	#couponRecivePop .coupon-ran-num input {
		font-size: calc(22 * var(--evt-ratio));
	}

	#couponRecivePop .coupon-ran-num .btn-number-copy {
		width: calc(84 * var(--evt-ratio));
		height: calc(26 * var(--evt-ratio));
		border-radius: calc(24 * var(--evt-ratio));
		font-size: calc(12 * var(--evt-ratio));
	}

	#couponRecivePop .btn-close {
		top: calc(20 * var(--evt-ratio));
		right: calc(20 * var(--evt-ratio));
		width: calc(24 * var(--evt-ratio));
		height: calc(24 * var(--evt-ratio));
	}

	#confirmPopup .coupon-ran-num {
		column-gap: calc(8 / 390 * 100vw);
		grid-template-columns: 1fr calc(40 / 390 * 100vw);
	}

	#confirmPopup .coupon-ran-num .btn-number-copy {
		width: calc(40 / 390 * 100vw);
		height: calc(40 / 390 * 100vw);
	}
}