﻿@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 {
	font: 14px/1.5em "Helvetica Neue", Helvetica, Arial, sans-serif !important; /* edit or delete so that the switcher inherits the font styles of your project */
	z-index: 999 !important;
}

.polyglot-language-switcher,
.polyglot-language-switcher * {
	margin: 0 !important;
	padding: 0 !important;
}

.polyglot-language-switcher {
	position: relative !important;
    display:inline;
    
}

.polyglot-language-switcher ul {
	list-style: none !important;
}

.polyglot-language-switcher a {
	transition: all 0.2s ease-in-out !important;
}

.polyglot-language-switcher img {
	margin-right: 3px !important;
    width:20px; 
    height:15px;
}

/* ---------------------------------------------------------------------- */
/* Selected Locale (the trigger for the dropdown)
/* ---------------------------------------------------------------------- */
.polyglot-language-switcher > .pls-selected-locale {
	text-decoration: none !important;
	color: #333 !important;
	position: relative !important; /* for the arrow */
}

.polyglot-language-switcher > .pls-selected-locale:hover {
	color: #3a91bd !important;
}

.polyglot-language-switcher > .pls-selected-locale:after {
	content: " " !important;
	position: absolute !important;
	top: 50% !important;
	margin-top: -2px !important;
	left: 100% !important;
	margin-left: 5px !important;
	width: 0 !important;
	height: 0 !important;
	border-left: 4px solid transparent !important;
	border-right: 4px solid transparent !important;
	border-top: 4px solid #000 !important;
}

/* ---------------------------------------------------------------------- */
/* Language Container
/* ---------------------------------------------------------------------- */
.pls-language-container-scrollable {
	position: absolute !important;
	top: 100% !important;
	left: 0 !important;
	z-index: 10000 !important;
	width: auto !important;
	overflow-x: auto !important;
}

.pls-language-container {
	margin-top: 10px !important;
	padding: 10px 0 !important;
	border: 1px solid #ccc !important;
	box-shadow: 0 1px 2px rgba(0,0,0,.08) !important;
	background-color: #fff !important;
}

.pls-language-container td {
	padding: 0 10px !important;
	border-right: 1px solid #ccc !important;
	vertical-align: top !important;
}

.pls-language-container td:last-child {
	border-right: none !important;
}

.pls-language-container a {
	color: #3a91bd !important;
	text-decoration: none !important;
	padding: 5px 10px !important;
	display: block !important;
	white-space: nowrap !important;
}

.pls-language-container a:hover {
	background-color: #f5f5f5 !important;
	color: #333 !important;
}

.pls-language-container .pls-selected-locale {
	color: #333 !important;
	font-weight: bold !important;
	cursor: default !important;
}