html {
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    height: 100%;
    min-height: 100%;

    font-family: 'Roboto', sans-serif;
    color: #0a1422;

    padding: 0;
    margin: 0;
}

.widget {
    padding: 20px;
    font-size: 90%;
}

h1 {
    font-size: 23px;
    text-align: center;
    margin-bottom: 30px;
}

label {
    font-weight: bold;
    display: inline-block;
    margin: 4px 0;
}

input[type="text"], input[type="password"], select {
    height: 32px;
    width: 100%;
    margin: 8px 0 12px;
    padding: 2px 8px;
    border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px 4px 4px 4px;
    border: 1px solid #c4c8cf;
}

.inline-button, input[type="submit"], input[type="button"] {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 80px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    background-color: #e7eaee;
    border: 1px solid #d5d7da;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 2px 8px 0;
}

input[type="submit"]:hover, input[type="button"]:hover {
    color: white;
    background-color: #1499d0;
    border-color: #1499d0;
}

.click-to-remove {
    display: inline-block;
    margin-left: 6px;
    cursor: pointer;
}

.click-to-remove:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    float: left;
    margin: 3px 8px 0 0;
}

.click-to-remove:before {
    background: url("../gfx/2017/symbol-remove.png") no-repeat;
    -webkit-background-size: 10px;
    background-size: 10px;
}

.click-to-remove:hover:before {
    background: url("../gfx/2017/symbol-remove_over.png") no-repeat;
    -webkit-background-size: 10px;
    background-size: 10px;
}

.comment {
    font-size: 90%;
    font-style: italic;
    color: #c4c8cf;
    padding: 20px 0 10px;
    text-align: center;
}