.popup-success-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-success-confirm.active {
	visibility: visible;
}

.popup-success-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-success-confirm-main{
	position: relative;
	width: 24.5rem;
	padding: 1.25rem;
	border-radius: 0.75rem;
	background: #FFF;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:2rem;
}
.popup-success-confirm.active .popup-success-confirm-overlay,
.popup-success-confirm.active .popup-success-confirm-main {
	opacity: 1;
	visibility: visible;
}

.popup-success-confirm-content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	align-self: stretch;
}

.popup-success-confirm-img{
	width: 2.5rem;
	height: 2.5rem;
}

.popup-success-confirm__text{
	color: #000;
	text-align: center;
	font-family: "Shopee Display", sans-serif;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.75rem; /* 116.667% */
	align-self: stretch;
}

.popup-success-confirm__desc{
	align-self: stretch;
	color: var(--Color-Body-text-60, rgba(26, 26, 26, 0.60));
	text-align: center;

	/* PC/16/16: Regular */
	font-family: "Shopee Display",sans-serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 1.4rem */
}

.popup-success-confirm__button{
	display: flex;
	height:2.625rem;
	padding: 0.625rem 1.25rem;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex: 1 0 0;
	border-radius: 62.5rem;
	background: var(--Color-Brand-Red, #D32F2F);
	color: #FFF;

	/* PC/16/16: Medium */
	font-family: "Shopee Display",sans-serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 1.4rem */
	width:100%;
}

@media (max-width: 639.98px){
.popup-success-confirm-main {
    width: 90%;
    padding: 1rem;
  }
  .popup-success-confirm__text {
    font-size: 1.25rem;
  }
  .popup-success-confirm__desc {
    font-size: 1rem;
  }
  .popup-success-confirm__button {
    font-size: 1rem;
	  height:2.5rem;
  }
}

