 .lng {
	 outline: 0;
	 display: inline-flex;
	 align-items: right;
	 justify-content: space-between;
	 background: #CF2644;
	 min-width: 93px;
	 border: 0;
	 border-radius: 4px;
	 box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
	 box-sizing: border-box;
	 padding: 9px 9px;
	 color: #fff;
	 font-size: 12px;
	 font-weight: 600;
	 letter-spacing: 1.2px;
	 text-transform: uppercase;
	 overflow: hidden;
	 cursor: pointer;
	 z-index: 1;
}
 .lng:focus .dropdown, .lng:active .dropdown {
	 transform: translate(0, 20px);
	 opacity: 1;
	 visibility: visible;
}
 .lng .material-icons {
	 border-radius: 100%;
	 margin-top:  3px;
	 animation: ripple 0.6s linear infinite;
}
 .lng .div .dropdown{
 	display: block;
 	list-style-type: disc;
 	margin-block-start: 1em;
 	margin-block-end: 1em;
 	margin-inline-start: 0px;
 	margin-inline-end: 0px;
 	padding-inline-start: 0px;
 	z-index: 1;
 }
 .lng .dropdown {
	 position: absolute;
	 top: 100%;
	 right: 0%;
	 background: #fff;
	 border-radius: 4px;
	 box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
	 text-align: right;
	 opacity: 0;
	 visibility: hidden;
	 transition: 0.3s ease;
}
 .lng .dropdown:before {
	 content: '';
	 position: fixed;
	 top: -6px;
	 left: 80px;
	 width: 0;
	 height: 0;
	 box-shadow: 2px -2px 2px rgba(0, 0, 0, .05);
	 border-top: 6px solid #fff;
	 border-right: 6px solid #fff;
	 border-bottom: 6px solid transparent;
	 border-left: 6px solid transparent;
	 transform: rotate(-45deg);
	 mix-blend-mode: multiple;
}
.lng .dropdown li {
	 z-index: 1;
	 background: #fff;
	 padding: 0 20px;
	 color: #666;
}
 .lng .dropdown li.active {
	 color: #CF2644;
}
 .lng .dropdown li:first-child {
	 border-radius: 4px 4px 0 0;
}
 .lng .dropdown li:last-child {
	 border-radius: 0 0 4px 4px;
}
 .lng .dropdown li:last-child a {
	 border-bottom: 0;
}
.lng .dropdown div {
	 z-index: 1;
	 background: #fff;
	 padding: 0 20px;
	 color: #666;
}
 .lng .dropdown div.active {
	 color: #CF2644;
}
 .lng .dropdown div:first-child {
	 border-radius: 4px 4px 0 0;
}
 .lng .dropdown div:last-child {
	 border-radius: 0 0 4px 4px;
}
 .lng .dropdown div:last-child a {
	 border-bottom: 0;
}
 .lng .dropdown a {
	 display: block;
	 border-bottom: 1px solid rgba(0, 0, 0, .1);
	 padding: 10px 0;
	 color: inherit;
	 font-size: 10px;
	 text-decoration: none;
}
 @keyframes ripple {
	 0% {
		 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
	}
	 100% {
		 box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
	}
}
 