.popup-confirm {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
}
.popup-confirm.active {
	visibility: visible;
}
.popup-confirm-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25);
	z-index: 0;
	opacity: 0;
	visibility: hidden;
}
.popup-confirm-main {
	position: relative;
	width: 21.4375rem;
	padding: 1rem;
	border-radius: 0.75rem;
	background: #FFF;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
}
.popup-confirm.active .popup-confirm-overlay,
.popup-confirm.active .popup-confirm-main {
	opacity: 1;
	visibility: visible;
}
.popup-confirm__title {
	color: #000;
	text-align: center;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.75rem; 
	margin-bottom: 0.75rem;
}
.popup-confirm__desc {
	color: rgba(26, 26, 26, 0.60);
	text-align: center;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin-bottom: 1.5rem;
}
.popup-confirm__btn-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.popup-confirm__btn {
	flex: 1 0 0;
	padding: 0.5rem 1rem;
	border-radius: 62.5rem;
	border: 1px solid var(--color-brand, #D32F2F);
	cursor: pointer;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; 
}
.popup-confirm__btn:first-child {
	margin-right: 0.625rem;
}
.popup-confirm__btn--cancel {
	color: var(--color-brand, #D32F2F);
	background: #fff;
}
.popup-confirm__btn--confirm {
	color: #FFF;
	background: var(--color-brand, #D32F2F);
}
@media (min-width: 1024px) {
	.popup-confirm__btn {
		transition: all 0.3s ease-out;
	}
	.popup-confirm__btn:hover {
		color: #FFF;
		background: #B30616;
		border-color: #B30616;
	}
}