.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.5;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.pop-up {
	position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* height: 80%; */
    width: 80%;
    justify-content: space-between;
    box-shadow: 0 5px 10px rgba(16, 17, 21, 0.1);
    padding: 25px 34px;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgb(171 214 255);
     
    box-shadow: 0 -18px 15px rgba(85, 85, 85, 0.3);
}
 
 
 

@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%;
	}

	 
}