@charset "UTF-8";

/* style for locale selection */

.localeSelBtn {
    background-color: transparent;
    color: white;
    padding: 10px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.localeSelBtn:hover, .localeSelBtn:focus {
    background-color: #2980B9;
}

.localeSel {
    position: relative;
    display: inline-block;
}

.localeSel-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.localeSel-content a {
    color: black;
    padding: 10px 10px;
    text-decoration: none;
    display: block;
}

.localeSel a:hover {
	background-color: #ddd;
}

.localeSelShow {
	display: block;
}
