/* common */
html, body {
    height: 100%;
    background-color: #F3F7FA;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
.svg-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    stroke-width: 0;
    stroke: #333;
    fill: #333;
}
::placeholder {
    color: #888;
    font-weight: 100;
}
.topbar {
    padding: 10px;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    text-decoration: none;
    
}
.site-name {
    padding: 0 .5em;
    white-space: nowrap;
    color: #002551;
}
.site-logo>img {
    height: 40px;
}
.form-search {
    display: flex;
    border: 2px solid #abb2c8;
    border-radius: .7em;
    box-sizing: border-box;
    overflow: hidden;
    height: 40px;
}
.input-search {
    font-size: 1.1em;
    height: 2em;
    background: none;
    outline: none;
    border: none;
    width: 100%;
    padding-left: 1em;
    box-sizing: border-box;
    color: #999;
    font-weight: 100;
}
.input-search:focus {
    color: #333;
    font-weight: normal;
}
.btn-search {
    border: none;
    /* border-radius: 1em; */
    padding-left: .75em;
    padding-right: .75em;
    cursor: pointer;
    background: transparent;
}
.btn-search:hover {
    background-color: #042245;
}
.btn-search .svg-icon{
    width: 16px;
    height: 16px;
	stroke: #333;
    fill: #333;
}
.btn-search:hover .svg-icon{
    stroke: #fff;
    fill: #fff;
}
.main {
    max-width: 700px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}
a {
    color: #608aae;
    text-decoration: none;
}
a.word {
    display: inline-block;
    color: #608aae;
    margin: 6px 6px 0 0;
    text-decoration: none;
    font-size: .9em;
}
.footer {
    font-size: .8em;
    text-align: center;
}
.footer-logo {
    height: 50px;
}