#frame-popup-add-contact-success{
	background-color: rgba(0, 0, 0, 0.3);
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100dvw;
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
}


#popup-add-contact-success * {
    font-size: 13.5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    touch-action: pan-x pan-y;
}

#popup-add-contact-success {
	background: white;
	border-radius: 10px;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}
#popup-add-contact-header{
	height: 8.2dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left:15px;
	margin-right:15px;
	width:calc(100% - 30px);
}

#info-add-contact-section-title  {
	flex:1;
	height: 100%;
	font-weight: bolder;
	display: flex;
	align-items: center;
	justify-content: center;
}

#button-close-add-contact-section, #info-add-contact-section-left {
	width: 15px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#button-close-add-contact {
	width: 10px;
	aspect-ratio: 1/1;
}

/* MOBILE */
@media only screen and (max-device-width: 1023px) {
	#popup-add-contact-success {
		width: 85dvw;
		height: 30dvh;
	}
}
/* PC */
@media only screen and (min-device-width: 1023px) {
	#popup-add-contact-success {
		width: 18dvw;
		height: 30dvh;
	}
}
#popup-add-contact-info{
	flex:1;
		display: flex;
	align-items: center;
	justify-content: center;
}

.button-on-modal-add-contact-success{
	width: 60%;
	border-radius: 7px;
	text-align: center;
	background: #47ABE8;
	color: white;
	margin-bottom: 30px;
	
}