.containerPopup{
	position:fixed;
	top:0;
	left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:100;
}

.containerPopup .screenCover{
	height:100%;
	width:100%;
	position:absolute;
	top:0;
	left:0;
	background-color:rgb(119, 119, 119);
	opacity:0.7;
	z-index:100;
	display:none;
}

.containerPopup .containerPopupContent{
	height:500px;
	width:700px;
	padding:10px;
	cursor:pointer;
	background:white;
	z-index:200;
	display:none;
	position:relative;
}

.containerPopupContent .smallButtonClose{
	height:18px;
	width:18px;
	position:absolute;
	top:-10px;
	right:-10px;
	background-color:black;
	border-radius:50%;
	border:2px solid white;
	box-shadow:-1px 1px 5px rgba(0, 0, 0, .7);
	display:flex;
	align-items:center;
	justify-content:center;
}