/* app.css */
* {
    font-family: 'Open Sans', sans-serif;
    color: rgb(117, 100, 100);
}
body { 
    height: auto;
    min-height: 100%;
    background-size: cover;
    padding-top: 80px;
}
.ui.table, .ui.table thead th, form {
    background-color: rgba(255,255,255,0.8);
}

.content {
    margin-top: 1em;
    border-radius: 5px;
    padding: 10px;
    background-color: rgba(255,255,255,0.8);
}
.ui.menu .item>img:not(.ui) {
    width: auto;
}
.ui.container.main {
    /* padding-top: 70px; */
}
.row {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: block;
}
h1#logo {
    width: 220px;
    height: 40px;
    background-image: url('../img/logo.png');
    background-repeat: no-repeat;
    overflow: hidden;
    text-indent: -9999px;
}
ul#navigation {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: rgba(117,100,100,0.3);
    border-radius: 5px;
    padding: 10px 0;
}
#navigation li {
    display: block;
    float: left;
    overflow: hidden;
    border-right: 3px solid #4183c4;
    padding: 0 10px;
}
#navigation li:last-child {
    border-right: none;
}
#navigation li a {
    display: block;
}
#navigation li a:hover, #navigation li a.selected {
    text-decoration: underline;
}
fieldset.error {
    border-color: red;
    color: red;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}
form {
    padding: 10px;
    display: block;
    border: 1px solid rgba(117,100,100,0.3);
    border-radius: 5px;
}
form h2 {
    margin-top: 0;
}

.basic-form .row {
    margin-bottom: 10px;
}
.basic-form .row:hover {
    background-color: rgba(117,100,100,0.2);
}
.basic-form .row label {
    width: 50%;
    float: left;
    height: 30px;
    overflow: hidden;
    max-width: 200px;
}
.basic-form .row input {
    width: 50%;
    max-width: 300px;
    float: left;
    height: 30px;
    overflow: hidden;
}
.basic-form input.button.login {
    padding: 5px;
    border-radius: 5px;
}
.row .controls {
    width: 25%;
    display: block;
    overflow: hidden;
    min-height: 1px;
    float: left;
}
.row .results {
    width: 75%;
    display: block;
    overflow: hidden;
    float: left;
}
.wmanage-banner.wmanage-banner-container.wmanage-banner-management {
    max-width: 800px;
    max-height: 200px;
}
@media only screen and (max-width: 768px) {
    .wide-only {
        width: 0;
        display: none !important;
    }
}
