html, body {
    font-family: 'Open Sans', sans-serif;
    color: #545d62;
    padding: 0;
    margin: 0;
    height: 1px;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.site-header { /**/ }

.site-content {
    flex-grow: 1;
    background: rgb(245, 247, 250);
    background: -moz-linear-gradient(156deg, rgba(245, 247, 250, 1) 20%, rgba(195, 207, 226, 1) 100%);
    background: -webkit-linear-gradient(156deg, rgba(245, 247, 250, 1) 20%, rgba(195, 207, 226, 1) 100%);
    background: linear-gradient(156deg, rgba(245, 247, 250, 1) 20%, rgba(195, 207, 226, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f7fa", endColorstr="#c3cfe2", GradientType=1);
}

.site-footer { /**/ }

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .site-header__logo img {
    max-height: 3rem;
}

.site-header__language-selecter a {
    position: relative;
    margin-left: 0.5rem;
}
.site-header__language-selecter a:hover {
    opacity: 1;
}

.site-header__language-selecter .knob {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    padding: 0.1rem;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 0.8rem;
    text-align: center;
    white-space: nowrap;
    border-radius: 1rem;
    width: 1.6rem;
    border: 1px solid #aaa;
    color: #333;
    background-color: white;
}

.muted {
    opacity: 0.3;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    text-shadow: 2px 2px 2px #ccc;
    margin-top: 1rem;
    margin-bottom: 1rem !important;
}

.article-button {
    font-size: 1.2rem;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
}


.search-field {
    width: 100%;
    padding: 20px 85px 20px 20px;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 1.4rem;
    color: #eee;
    background-color: rgba(0, 0, 0, 0.25);
    border: none;
}

.search-field:focus {
    outline: 0;
}

.search-field::placeholder {
    color: #ccc;
}

.search-form {
    margin:0;
    position: relative;
}
.search-box {
    padding-left: 0;
    padding-right: 0;
}

.search-button {
    position: absolute;
    top:0;
    right:0;
    color: #eee;
    background: rgba(0,0,0, 0.3);
    border: 0;
    height: 100%;
    width: 65px;
    overflow: hidden;
    font-size: 1.4rem;
    line-height: 1.4rem;
    outline: none;
}

.search-button:hover {
    color: #fff;
    background: rgba(0,0,0, 0.4);
}


.search-container {
    width: 100%;
    background: #ff773d;
    height: 128px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.search-container--with-bottom-bar {
    height: 158px;
}

.bottombar-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
    font-size: 0.8rem;
}