.popup{
	position: fixed;
	top: 5%;
	max-height: 90%;
	left: 20%;
	right: 20%;
	background: white;
	border-radius: 20px;
	overflow: auto;
	z-index: 100;
	box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.30);
	padding: 20px;
	padding-top: 15px;
	display: none;
}

.popup-background{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(0, 0, 0, .40);
	backdrop-filter: blur(5px);
	display: none;
}

.popup-background:hover{
	backdrop-filter: blur(1px);
	transition: 0.6s; 
}

.popup .exit-button{
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 101;
	transform: rotate(0deg);
	transition: 0.5s;
}

.popup .exit-button:hover{
    transform: rotate(90deg);
	transition: 0.5s;
}