/* lang */

.lang{
	position: relative;
	z-index: 10;
	text-align: center;
	perspective: 700px;
}

.lang_fixed{
	position: relative;
	top: 0;
	right: 0;
	width: 100px;
}

.lang__link{
	cursor: pointer;
	transition: .3s all;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-shrink: 0;
	box-sizing: border-box;
	text-decoration: none;
	padding: 8px 9px;
	font-size: 15px;
	border-radius: 0px;
	background: #bee5eb;
	color: #0c5460;
	line-height: 1.15;
	user-select: none;
}

.lang__list .lang__link{
	border-top: 1px solid rgba(157, 157, 157, 0.3);
}

.lang__name{
	flex-shrink: 0;
	text-transform: uppercase;
}

.lang__link_sub {
	width: 100%;
	height: auto;
	position: relative;
}

.lang__list{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .3s all;
	transform: rotateX(-90deg);
	position: absolute;
	left: 0;
	top: calc(100% + 2px);
	z-index: 10;
	transform-origin: center top;
	box-sizing: border-box;
}

.lang:hover .lang__list{
	opacity: 1;
	visibility: visible;
	transform: rotateX(0);
}

.lang__link_select{
	align-items: center;
	text-align: center;
	border-radius: 4px;
	line-height: 1.2;
}

.lang__link_select{
	padding: ;
	font-size: 13px;
}

.lang__link_select i{
	font-size: 24px;
	margin-bottom: 4px;
}

.lang__list .lang__link:first-child{
	border-radius: 4px 4px 0 0;
	border-top: none;
}

.lang__list .lang__link:last-child{
	border-radius: 0 0 4px 4px;
}
