﻿h2 {
    margin: 0;
}

h3 {
    margin: 0;
}

h5 {
    font-size: 10pt;
    text-decoration: underline;
}

p {
    font-family: 'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
}

table thead tr {
    background: #E0E0E0;
}

.centerText {
    text-align: center;
    font-size: 10pt;
}

.contentHeading {
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt;
    color: #333333;
    margin: 0px;
    padding: 0px;
}

@media print {
    a[href]:after {
        content: none !important;
    }
}

/**** Frontend ******/

.hero-home {
    background-image: url('../img/heroBackground.jpg');
    opacity: 0.9;
    height: 400px;
    width: 100%;
    display: table;
    margin-top: -30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -100;
}

.hero-text {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
    .hero-text hr {
        max-width: 400px;
        border-width: 3px;
        border-color: #C53C3E;
    }
    
    .hero-text h1 {
        font-weight: 600;
        font-size: 50px;
        color: white;
    }

.front-text-container {
    width: 900px !important;
}

.front-text {
    font-size: 12pt;
    line-height: 2;
}

.front-highlight-text {
    color: #C53C3E;
    font-weight: bold;
}

.advantages-list {
    list-style: none;
    margin-left: -20px;
}

.advantages-list li:before {
    content: '✓';
    font-size: 14pt;
}

.advantages-list p{
    font-size: 12pt;
    line-height: 3;
    display: inline;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    width: 250px;
}

/**** ControlStyles *****/
.text-input {
    border: 1px solid #C53C3E;
    padding-left: 5px;
}

    .text-input:focus {
        outline: none;
        box-shadow: 0 0 5px gray;
    }

.text-small {
    width: 75px;
}


.glyphicon {
    font-size: 26px;
}

/******* SideBar *******/

.sideBar {
    width: 200px;
    margin-left: auto;
}

.sideBarBox {
    margin-bottom: 10px;
    background: #EDEDED;
}

    .sideBarBox div {
        padding: 5px;
        border-right: 5px solid #C53C3E;
    }

.sideBarBoxHeader {
    border-bottom: 0px solid #C53C3E;
    background: #DDDDDD;
}

.sideBarNavigation ul {
    list-style-type: none;
    padding: 0px 0px 0px 20px;
}

.sideBarNavigation a {
    color: #333;
    text-decoration: none;
}

    .sideBarNavigation a:hover {
        font-weight: bold;
    }

/********* UserManager ********/

.list-selection {
    overflow: hidden;
}

    .list-selection > div {
        float: left;
    }

.list-sepeartor {
    width: 40px;
    margin-top: 70px;
    text-align: center;
}

#userRolesList, #rolesList {
    border: 1px solid #eee;
    width: 200px;
    min-height: 25px;
    list-style-type: none;
    margin: 0;
    padding: 5px 0 0 0;
    float: left;
}

    #userRolesList li, #rolesList li {
        margin: 0 5px 5px 5px;
        padding: 5px;
        font-size: 1.2em;
        width: 195px;
        cursor: pointer;
    }
/***** Hot Logon ******/

.current-user {
    overflow: hidden;
}

    .current-user > div {
        float: left;
    }

    .current-user span {
        font-weight: bold;
    }

    .current-user p {
        display: inline;
        margin-right: 10px;
    }

    .current-user a {
        margin-top: 23px;
        margin-left: 10px;
    }

.logon-table-container {
    width: 300px;
}

/***** Data Input ******/

#inputDataStructure {
    list-style-type: none;
    margin: 0;
    padding: 0 3px;
    width: 500px;
    border: 1px solid gray;
    height: 42px;
    overflow: hidden;
}

    #inputDataStructure li {
        margin: 5px 5px 5px 0;
        padding: 3px 10px;
        float: left;
        width:auto;
        height: 30px;
        text-align: center;
        border: 1px solid gray;
        border-bottom: 3px solid #C53C3E;
        background: #FAFAFA;
        border-radius: 2px;
        cursor: pointer;
    }

#inputDataElements {
    list-style-type: none;
    margin: 0;
    height: 42px;
    padding: 0px 3px;
    border: 1px solid gray;
}

    #inputDataElements li {
        margin: 5px;
        padding: 3px 10px;
        height: 30px;
        width: auto;
        text-align: center;
        border: 1px solid gray;
        border-bottom: 3px solid #C53C3E;
        background: #FAFAFA;
        border-radius: 2px;
        display: block;
        cursor: pointer;
    }

.emptyElement {
    background: white !important;
}

/***** Calendar Input ******/
.calendarInput *{
    float: left;
}

/***** Table sorting ****/
/*.headerSortUp {
    background-image: url(../img/asc.gif) !important;
    background-repeat: no-repeat;
    background-position: right center;
}

.headerSortDown {
    background-image: url(../img/desc.gif) !important;
    background-repeat: no-repeat;
    background-position: right center;
}*/