.lang-container
{
	position:fixed;
	display:flex;
	justify-content:center;
	align-items:center;
	height:100vh;top:0;
	left:0;width:100%;
	background:#fff;
	z-index:99998;
	margin:0;
	overflow:auto;
}

.modal-content
{
	background-color:#fefefe;
}

.close
{
	font-size:28px;
	z-index:99999;
	position:absolute;
	width:32px;
	height:32px;
	top:48px;
	right:48px;
	cursor:pointer;
	border:none;
	background:0 0;
	outline:0;
}

.close:focus,.close:hover
{
	color:#000;
	text-decoration:none;
	cursor:pointer;
}

.lang-icon
{
	height:40px;
	padding-right:15px;
}

.lang-option
{
	position:relative;
	padding:0 22px 0 22px;
	font-size:22px;
	font-weight:300;
	color:#3b3b3b;
	line-height:60px;
	cursor:pointer;
	transition:all .3s;
	align-items:center;
	display:block;
	text-align:center;
}

.lang-option:hover
{
	cursor:pointer;color:#6592e6;
}

.lang-option img
{
	height:1.5rem;
	width:1.5rem;
	margin-right:.5rem;
}

.outer-dash
{
	height:25px;
	width:1px;
	margin-left:12px;
	background-color:#000;
	transform:rotate(45deg);
	Z-index:1;
}

.inner-dash
{
	height:25px;
	width:1px;
	background-color:#000;
	transform:rotate(90deg);
	Z-index:2;
}

.langs
{
	display:flex;
	justify-content:center;
	align-items:center;
	cursor:pointer;
}

.lang-text
{
	margin:0;
	display:none;
	color:#000;
}

.author-link
{
	color:#000;
}

.author-link:hover
{
	color:#000;
}

.overlay
{
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background:rgba(0,0,0,.7);
	transition:opacity .3s;
	visibility:hidden;
	opacity:0;
	z-index:99999;
}

.overlay:target
{
	visibility:visible;
	opacity:1;
}

.popup
{
	background:#fff;
	width:100%;
	position:relative;
	transition:all .2s ease-in-out;
}

.popup h2
{
	margin-top:0;
	color:#333;
	font-family:Tahoma,Arial,sans-serif;
}

.popup .content
{
	overflow:auto;
}

@media (max-width:768px)
{
	.close
	{
		top:10px;
		right:10px;
	}
	.lang-text
	{
		display:block;
	}
}