.pop-up-container {
	position:fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
	width: 100%;
	/* background-color: blue; */
	z-index: 1000;
	/* opacity: 0; */
	display: none;
	transition-property: opacity;
	transition-duration: 1000ms;
}

.pop-up-back {
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.9;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.pop-up {
	position: absolute;
	 
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	/* height: 80%; */
	width: 80%;
	 
	
 
    justify-content: space-between;
   
    padding: 25px 34px;
    border-radius: 5px;
}
 
 
 

@media screen and (min-width: 768px) {
	.pop-up {
		max-width: 40rem;
		width: 100%;
	}

	 
}


 

.pop-up1 {
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translate( -50%, 18% );
	/* height: 80%; */
	width: 80%;
	padding: 3rem 1.5rem;
	padding-top: 1rem;
}
 
@media screen and (min-width: 768px) {
	.pop-up1 {
		max-width: 40rem;
		width: 100%;
	}

	 
}