

.popup-btns-wrapper {
	margin-bottom: -20px;
	margin-left: 20px;
	margin-top: 20px;
}

.popup-btn {
	padding-bottom: 2rem;
	width: 20rem;
}

.popup-btn span {
	background: tomato;
	color: white;
	cursor: pointer;
	display: block;
	line-height: 1;
	padding: 1rem 2rem;
	text-align: center;
}

.popup-content-container {
	background-color: #eeebe5;
	display: none;
	height: 82vh;
	left: 0;
	right:0;
	margin:0 auto;
	padding:56px 75px;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	overflow-y: auto;
	width: 90%;
	z-index: 999999;
}
    
.popup-close {
	cursor: pointer;
	display: none;
	position: absolute;
	right: 1rem;
	top: 75px;
	z-index: 2;
}

.popup-close:hover { opacity: 0.7; }

.popup-overlay {
	background: #eeebe5;
	display: none;
	height: 100%;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999999;
}

@media screen and (max-width: 480px) {
	.popup-content-container {
    	padding: 56px 3%;
	}
}

@media screen and (max-width: 767px) {
	.popup-close {
		top: 6px;
	}
}