/* Standard HTML elements */
* {
    box-sizing: border-box;
}

html, body {
    padding: 0px;
    margin: 0px;
    background-color: #f6f7f8;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #444;
}


a {
    color: #08a5e8;
    text-decoration: none;
}

a img {
    border: 0;
}

div, input, textarea, a, select, option {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 {
    padding: 0px;
    margin-top: 0px;
    font-weight: 600;
    font-size: 28px;

}

h2 {
    padding: 0px;
    margin-top: 0px;
    font-size: 23px;
}

/* Repeating elements */

.email-Link {
    display: inline;
}

.clear {
    clear: both;
}

.clear-left {
    clear: left;
}

.clear-right {
    clear: right;
}

.button-row {
    text-align: right;
    margin-top: 10px;
    text-align: right;
    padding: 10px;
    padding-right: 0px;
}

.button {
    background-color: #155abb;
    border-color: #155abb;
    padding: 7px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    color: #FFF;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    font-weight: 300;
    border-radius: 3px;
}

.button:hover {
    opacity: 0.8;
}

.full-width {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

/* Boxes */

.infobox, .okbox, .alertbox, .errorbox {

}

.okbox {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 10px;
    background: #DFEB9C;
    border: 1px solid #A2AB71;
    color: #7C7944;
    margin: 10px 0;
    font-weight: normal;
}

.errorbox {

    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 10px;
    background: #EFC8CD;
    border: 1px solid #B0767E;
    color: #783F47;
    margin: 10px 0;
}

.infobox {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 10px;
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
    margin: 10px 0;

}

/*///////////////////////////////
////////// Form 
///////////////////////////////*/
section.form {
    max-width: 800px;
}

form {
    display: inline;
}

.form-section-title {
    background-color: #777;
    font-weight: 600;
    font-size: 16px;
    padding: 5px;
    padding-left: 10px;
    margin-bottom: 5px;
    color: #FFF;
    font-weight: bold;
}

.form-section {
    margin-bottom: 15px;
}

.form-fields .field {
    padding: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    background: #FFF;
    margin-bottom: 2px;
}

.form-fields .field .title {
    text-align: left;
    font-weight: bold;
    padding-right: 25px;
    font-size: 13px;
    margin-bottom: 6px;
    color: #666;
}

.form-fields .field .field-content {

}

.form-fields .field .field-content input,
.form-fields .field .field-content textarea {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    border: 1px solid #BBB;

}

.form-fields .field .field-content select {
    padding: 5px;
    width: 100%;
    font-size: 14px;

}

.form-fields .field .field-content textarea {
    width: 100%;
    padding: 8px;
    font-size: 14px;
}

.form-fields .field .field-content .alert {
    font-size: 0.8em;
    color: red;
    margin-bottom: 5px;
}

.form-fields .form-field-filePreview .filePreview {
    background-color: #FFF;
    padding: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

.form-fields .form-field-filePreview .remove {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 11px;
}

.form-fields .formFieldCheckboxLeft .title {
    display: none;
}

.form-fields .field .filePreview img {
    width: 23px;
}

.form-fields .field .filePreview span {
    margin-left: 10px;
}

/* Header */
section.header {
    background-color: #333;
    border-bottom: 1px solid black;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
}

section.header .contents {
    position: relative;
    min-height: 69px;
    /* MENU TEST */
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row; */
}

section.header .logo {
    float: left;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 5px;
}

section.header .logo img {
    height: 60px;
}

section.header .menu {
    float: left;
    /* height: 100%; */
    /* width: 68%; */
    width: calc(100% - 420px);
    /* margin-left: 40px; */
}

section.header .menu .item {
    display: inline-block;
    height: 100%;
    /* float: left; */
}

section.header .menu .item.selected a {
    border-bottom: 3px solid #daae00;
}

section.header .menu .item a {
    text-decoration: none;
    color: #DDD;
    -webkit-transition: background-color 0.3s; /* For Safari 3.1 to 6.0 */
    transition: background-color 0.3s;
    text-transform: uppercase;
    padding-left: 16px;
    padding-right: 16px;
    border-right: 1px solid #555;
    display: block;
    line-height: 67px;

}

section.header .menu .item a:hover {
    color: #EEE;
    background-color: #222;
}

section.header .user {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

/* Footer */
section.footer .full-width {
    padding: 30px;
    margin-top: 80px;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #EEE;
}

section.footer .left {
    float: left;
}

section.footer .right {
    background-image: url(/images/livewall.png);
    float: right;
    width: 130px;
    height: 34px;
    opacity: 0.7;
}


