@charset "utf-8";
/* CSS Document */


/* ---------------------------------------------------------------------- */
/* Polyglot Language Switcher 2
/* ----------------------------------------------------------------------
Version: 1.0.0
Author: Ixtendo
Author URI: http://www.ixtendo.com
License: MIT License
License URI: http://www.opensource.org/licenses/mit-license.php
------------------------------------------------------------------------- */


/* ---------------------------------------------------------------------- */
/* TABLE OF CONTENTS
/* ----------------------------------------------------------------------
-Global Styles
-Selected Locale (the trigger for the dropdown)
-Language Container
------------------------------------------------------------------------- */


/* ---------------------------------------------------------------------- */
/* Global Styles
/* ---------------------------------------------------------------------- */
.polyglot-language-switcher {
	float:right;
}

.polyglot-language-switcher,
.polyglot-language-switcher * {
	margin: 0;
	padding: 0;	
}

.polyglot-language-switcher {
	position: relative;	
	right:10px;
	margin-left:15px;
}

.polyglot-language-switcher ul {
	list-style: none;	
}

.polyglot-language-switcher a {
	transition: all 0.2s ease-in-out;
	padding-left:44px;
}

.polyglot-language-switcher img {
	margin-right: 3px;	
}

/* ---------------------------------------------------------------------- */
/* Selected Locale (the trigger for the dropdown)
/* ---------------------------------------------------------------------- */
.polyglot-language-switcher > .pls-selected-locale {
	text-decoration: none;
	color: #ffffff; 
	position: relative; /* for the arrow */
}

.polyglot-language-switcher > .pls-selected-locale:hover {
	color: #3a91bd;	
}

.polyglot-language-switcher > .pls-selected-locale:after { 
	content: " "; 
	position: absolute;
	top: 50%;
	margin-top: -2px;
	left: 100%;
	margin-left: 5px;
	width: 0; 
	height: 0; 
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #ffffff;
}

/* ---------------------------------------------------------------------- */
/* Language Container
/* ---------------------------------------------------------------------- */
.pls-language-container-scrollable {
	position: absolute;
	top: 100%;
	left: -30px;
	z-index: 10000;
	overflow: auto;	
}

.pls-language-container {
	margin-top: 3px;
	width:140px;
	padding: 0px 0;
	border: 0px solid #ccc;	
	background-color: rgba(48,51,54,0.96);
}

.pls-language-container td {
	padding: 0 10px;
	border-right: 1px solid #ccc;
	vertical-align: top;
}

.pls-language-container td:last-child {
	border-right: none;
}

.pls-language-container a {
	color: #ffffff;	
	text-decoration: none;
	line-height:1.7em !important;
	padding: 3px 5px 3px 44px;
	font-size:15px;
	display: block;
	white-space: nowrap;
}

.pls-language-container a:hover {
	opacity:0.8; 
}

.pls-language-container .pls-selected-locale {
	color: #ffffff;
	display:none;
	cursor: default;
}