.termsModal {
	position: fixed;
	top: 0;
	left: 0;
	right :0;
	bottom: 0;
	display:none;
	justify-content: center;
	background-color: rgba(0,0,0,0.6);
	z-index: 99999;
	
}
.termsModal__content {
	position: fixed;
	top: 10%; 
	background-color: #252525;
	padding: 20px;
	border: 1px solid #888;
	width: 90%;
	max-width:840px;
	height: 80%;
	display:flex;
	flex-direction: column;
}

#termsModal__close {
	
	margin-left:auto;
	margin-bottom: 10px;
	color: #bbb;
    font-size: 42px;
    font-weight: bold;
    line-height: 0.6;
}
#termsModal__close:hover, #termsModal__close:focus {
    color: #ddd;
    text-decoration: none;
    cursor: pointer;
}