.language--picker {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.5em;
    position: fixed;
    right: 1em;
    bottom: 4.2em;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 0 5px #7F7F7F;
    box-shadow: 0 0 5px #7F7F7F;
    text-decoration: none;
    font-size: 1em;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.language--picker:hover,
.language--picker:active {
    background-color: rgba(255, 255, 255, 0.4);
    color: white;
    cursor: pointer;
}

.language--picker.shown {
    opacity: 1;
}

.language--container {
    -webkit-transition: bottom 0.5s ease-in-out;
    transition: bottom 0.5s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 0.5em 1em;
    background-color: #000;
    z-index: 15;
    color: white;
    font-size: 1.1em;
    -webkit-box-shadow: 0 0 5px #7F7F7F;
    box-shadow: 0 0 5px #7F7F7F;
}

@media only screen and (max-width: 615px) {
    .language--container {
        font-size: 0.95em;
    }
}

.language--container.shown {
    bottom: 0;
}

.language--container ul {
    list-style: none;
    float: left;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

.language--container ul li {
    display: inline-block;
    padding: 0.5em 0.5em;
    margin: 0 0.5em;
}

@media only screen and (max-width: 615px) {
    .language--container ul li {
        margin: 0;
    }
}

.language--container ul li a {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border: 1px solid;
    border-color: white;
    padding: 0.25em 0.7em;
    text-decoration: none;
    color: white;
}

.language--container ul li a:hover,
.language--container ul li a:active {
    color: #E10600;
    border-color: #E10600;
    cursor: pointer;
}

.language--container ul li.language--active {
    font-weight: 600;
}

.language--container ul li.language--active a {
    color: #E10600;
    border: 2px solid #E10600;
}

.language--close {
    position: absolute;
    right: 1em;
    font-size: 1.2em;
    margin-top: 0.4em;
    cursor: pointer;
}

@media only screen and (max-width: 615px) {
    .language--close {
        margin-top: 0.5em;
    }
}

.language--close:hover {
    color: #E10600;
    cursor: pointer;
}

body {
    font-family: '-apple-system', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

@media only screen and (max-width: 460px) {
    .language--picker {
        bottom: 5.3em;
    }
}

@media only screen and (max-height: 420px) {
    .language--picker {
        bottom: 1.5em;
    }
}

.blurred {
    filter: blur(1px);
    filter: url("blur.svg#gaussian_blur");
    -webkit-filter: blur(1px);
}

/*# sourceMappingURL=simple_language.css.map */