
	.popup {
		z-index: 100;
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.8) ;
		top: 0;
		left: 0;
		opacity: 0;
		visibility: hidden;
		overflow-y: auto;
		overflow-x: hidden;
		transition: all 0.8s ease 0s;
	}
	.popup:target { 
		opacity: 1;
		visibility: visible;
	}
	.popup__area {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		position: absolute;
	}
	.popup__body {
		min-height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 30px 10px;
		 
	}
	.popup__content {
		z-index: 102;
		background-color: white;
		max-width: 800px;
		padding: 30px;
		position: relative;
	}
	.popup__close {
		position: absolute;
		right: 30px;
		top: 60px;
		font-size: 20px;
		color: black;
		text-decoration: none;
	}
	.popup__title {
		font-size: 40px;
		margin: 0px 0px 1em 0px;
	}
	.popup__text {
		z-index: 100500;
	}

	.itisnot{
		opacity: 0.7;
		max-width: 350px;
		font-size: 17px;
		margin-top: 20px;
	}