﻿body {
    margin: 0 auto;
    padding: 0;
    /* background: #f1f1f1; */
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

a, p {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

input, textarea, select {
    height: 35px;
    line-height: 35px;
    width: 100%;
    border: 1px solid #e0e0e0;
    padding-left: 5px;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    box-sizing: border-box;

    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

    input[type="password"], input[type="text"] {
        cursor: text;
    }

textarea, select {
    cursor: initial;
}

input:focus, input:active, textarea:focus, textarea:active, select:focus, select:active {
    border: 1px solid lightgray;
}

select {
    background-image:
                    linear-gradient(45deg, transparent 50%, gray 50%),
                    linear-gradient(135deg, gray 50%, transparent 50%),
                    linear-gradient(to right, #ccc, #ccc);
    background-position:
                       calc(100% - 15px) calc(1em + 2px),
                       calc(100% - 10px) calc(1em + 2px),
                       calc(100% - 2.1em) 0.5em;
    background-size:
                   5px 5px,
                   5px 5px,
                   1px 1.5em;
    background-repeat: no-repeat;
}

textarea {
    height: auto;
    min-height: 70px;
    resize: none;
}
.button {
    border: 0;
    width: auto;
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 10px;
    cursor: pointer;
    box-sizing: border-box;
    background: #254174;
    color: #fff;
    border-bottom: 5px solid #12203a;
    text-transform: uppercase;
    float: left;
}
.button:hover {
    outline: 1px solid #000;
}

.button.wide{
    width:100%;
}

.red-background {
    background: #ac193d;
}
.blue-background {
    background: #254174;
}

.green-background {
    background: #00802b;
}

.yellow-background {
    background: #F1C40F;
}

.orange-background {
    background: #E67E22;
}


/* LOADING SPINNER CODE */
.spinner-container {
    width: 80px;
    height: 80px;
    margin: 100px auto;
    display: block;
}

.spinner-container .spinner {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 2px solid #111;
    border-bottom-color: transparent;
    border-top-color: transparent;
    margin: 0;
    box-sizing: border-box;
    -webkit-animation: spin 1.5s infinite linear;
    -moz-animation: spin 1.5s infinite linear;
    animation: spin 1.5s infinite linear;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* LOADING SPINNER CODE END */

ul {
    list-style: none;
}

ul li {
    float: left;
    width: 100%;
}

ul.wide {
    width: 100%;
    margin: 0;
    padding: 0;
    float: left;
}

ul.wide li {
    margin: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
}

ul.wide li:nth-child(odd) {
    background: #f1f1f1;
}

ul.wide li .cell {
    width: 20%;
    float: left;
    box-sizing: border-box;
    height: 100%;
}
#header {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 40px;
    position: fixed;
    top: 0;
    display: block;
    background: #fff;
    box-shadow: 0 0 0px 3px rgba(0,0,0,0.05);
    z-index: 10;
}
#header .header-content {
    width: 100%;
    padding: 0 0 0 10px;
    height: 100%;
    display: block;
    box-sizing: border-box;
    overflow: visible;
}

.header-content .right-nav-bar {
    margin: 0 auto;
    padding: 0;
    width: auto;
    height: 100%;
    /*min-width: 200px;*/
    float: right;
    display: inline-block;
}

.right-nav-bar .item {
    margin: 0 auto;
    padding: 0 12px;
    width: auto;
    float: right;
    display: inline-block;
    height: 100%;
    line-height: 40px;
    font-size: 12px;
    border-left: 1px solid #f1f1f1;
    position: relative;
    cursor: pointer;
    font-family: 'Century Gothic', sans-serif;
}

    .right-nav-bar .item:hover {
        background: #f1f1f1;
    }

    .right-nav-bar .item .icon-text {
        text-align: center;
        font-size: 12px;
    }

    .right-nav-bar .item .custom-selector .custom-item {
        margin: 10px auto;
        background: #e7e7e7;
        height: 20px;
        line-height: 20px;
        padding: 0 10px;
        border-radius: 10px;
    }

.right-nav-bar .icon-1 {
    margin: 10px auto;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #222;
    border-radius: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    font-family: Arial, helvetica, sans-serif;
    color: #fff;
}

    .right-nav-bar .icon-1.inactive {
        background: #e0e0e0;
    }

.right-nav-bar ul.item-dropdown-list {
    margin: 0 auto;
    width: 250px;
    height: auto;
    background: #fff;
    position: absolute;
    top: 40px;
    right: 0;
    list-style: none;
    padding: 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
    display: none;
}

    .right-nav-bar ul.item-dropdown-list li {
        margin: 0 auto;
        width: 100%;
        height: auto;
        min-height: 40px;
        border-top: 1px solid #f1f1f1;
        box-sizing: border-box;
        overflow: hidden;
        font-family: 'Century Gothic', sans-serif;
    }

        .right-nav-bar ul.item-dropdown-list li.static {
            height: 60px;
        }

        .right-nav-bar ul.item-dropdown-list li.notification {
            border-left: 3px solid #e0e0e0;
        }

            .right-nav-bar ul.item-dropdown-list li.notification.red {
                border-left: 3px solid #ac193d;
            }

            .right-nav-bar ul.item-dropdown-list li.notification.green {
                border-left: 3px solid #00802b;
            }

        .right-nav-bar ul.item-dropdown-list li.static .topic-text, .right-nav-bar ul.item-dropdown-list li.static .sub-text {
            text-align: left;
            text-indent: 6px;
            line-height: 30px;
        }

        .right-nav-bar ul.item-dropdown-list li.static .topic-text {
            font-size: 12px;
        }

        .right-nav-bar ul.item-dropdown-list li.static .sub-text {
            font-size: 10px;
        }

        .right-nav-bar ul.item-dropdown-list li.static .auth-indicator {
            margin: 0 auto;
            height: 80px;
            width: 4px;
            background: #ac193d;
            display: inline-block;
            float: left;
        }

            .right-nav-bar ul.item-dropdown-list li.static .auth-indicator.green {
                background: #00802b;
            }

        .right-nav-bar ul.item-dropdown-list li:hover {
            background: #f1f1f1;
        }

        .right-nav-bar ul.item-dropdown-list li.red:hover {
            background: #ac193d;
            color: #fff;
        }

        .right-nav-bar ul.item-dropdown-list li.static:hover {
            background: none;
        }

.header-content .logo {
    margin: 0 auto;
    padding: 0;
    width: 180px;
    height: 40px;
    min-width: 100px;
    float: left;
    display: inline-block;
}

    .header-content .logo img {
        height: auto;
        width: 100%;
        margin: 4px auto;
        max-height: 36px;
    }

.header-content .item img.miniature {
    margin: 10px auto;
    height: 20px;
}

#left-bar-wide {
    margin: 0 auto;
    padding: 40px 0 0;
    width: 200px;
    height: 100%;
    position: fixed;
    left: 0;
    display: block;
    background: #f9f9f9;
    z-index: 9;
    box-sizing: border-box;
    border-right: 1px solid #e0e0e0;
    overflow: hidden;
}

    #left-bar-wide.small {
        width: 70px;
    }

    #left-bar-wide .top-nav-bar {
        margin: 0px auto;
        padding: 0;
        width: 100%;
        height: 100%;
        z-index: 8;
        position: relative;
        float: left;
    }

        #left-bar-wide .top-nav-bar .nav-section {
            border: 0;
            border-bottom: 1px solid #e0e0e0;
            margin: 0;
            padding: 0;
        }

        #left-bar-wide .top-nav-bar .nav-item {
            height: 34px;
            width: 100%;
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 400;
            display: block;
            cursor: pointer;
            padding-left: 15px;
            box-sizing: border-box;
        }

            #left-bar-wide .top-nav-bar .nav-item.active {
                background: #f1f1f1;
            }

            #left-bar-wide .top-nav-bar .nav-item:hover {
                background: #f1f1f1;
                cursor: pointer;
            }

            #left-bar-wide .top-nav-bar .nav-item .text {
                display: inline-block;
                font-size: 14px;
                height: 34px;
                line-height: 34px;
                float: left;
                color: #222;
                text-indent: 15px;
            }

    #left-bar-wide.small .top-nav-bar .nav-item .text {
        display: none;
    }

    #left-bar-wide .top-nav-bar .nav-item .icon {
        width: 40px;
        height: 34px;
        line-height: 30px;
        display: inline-block;
        float: left;
        text-align: center;
        box-sizing: border-box;
    }
    #left-bar-wide .top-nav-bar .nav-item .icon#minimize {
        float:right;
    }
    #left-bar-wide .top-nav-bar .nav-item .icon img {
        margin: 9px auto;
        width: 16px;
        height: 16px;
        opacity: 0.3;
    }

    #left-bar-wide .top-nav-bar .nav-item.active .icon img {
        opacity: 0.9;
    }
        #left-bar-wide .top-nav-bar .nav-item .icon .icon-container .caret-left, #left-bar-wide .top-nav-bar .nav-item .icon .icon-container .caret-right {
            font-size: 24px;
            font-weight: 700;
            color: #ccc;
        }
 

        #left-bar-wide .top-nav-bar .nav-item .icon .icon-container .caret-right, #left-bar-wide.small .top-nav-bar .nav-item .icon .icon-container .caret-left {
            display: none;
        }
        
    #left-bar-wide.small .top-nav-bar .nav-item .icon .icon-container .caret-right {
        display: block;
    }

    #left-bar-wide .top-nav-bar .nav-item.extend.clicked {
        background: #f1f1f1;
        border-left: 4px solid #222;
    }

#left-bar-wide .top-nav-bar .nav-item.extend.clicked .icon img {
    opacity: .80;
}

    #left-bar-wide .left-bar-wide-extend {
        width: 175px;
        height: 100%;
        min-height: 100%;
        background: #f1f1f1;
        position: fixed;
        z-index: 9;
        top: 40px;
        left: 200px;
        box-shadow: 3px 3px 4px 1px rgba(0, 0, 0, 0.12);
        overflow: auto;
        display: none;
        padding: 10px;
        box-sizing: border-box;
    }

    #left-bar-wide .left-bar-wide-extend a {
        text-decoration: none;
    }

        #left-bar-wide .left-bar-wide-extend a .topic {
            text-align: center;
        }

    #left-bar-wide.small .left-bar-wide-extend { left: 70px; }

        #left-bar-wide .left-bar-wide-extend .icon-container {
             margin-top: 5px;
        }

            #left-bar-wide .left-bar-wide-extend .icon-container .datatools-icon {
                margin: 15px auto;
                width: 40px;
                height: 40px;
                opacity: .75;
            }


    .wide {
        padding: 50px 0 0 80px;
    }

     .dashboard-container {
        width: 100%;
        max-width: 1330px;
        min-width: 320px;
        height: auto;
        min-height: 100px;
        margin: 0 auto;
        float: left;
    }

         .dashboard-container .dashboard-topic-area {
            width: 100%;
            height: 40px;
            line-height: 40px;
            box-sizing: border-box;
            padding: 0 10px;
        }

         .dashboard-container .dashboard-tile-area {
            width: 100%;
            height: auto;
            min-height: 320px;
        }

.tile {
    margin: 0 10px 10px 0;
    width: 320px;
    height: 120px;
    box-sizing: border-box;
    background: #fff;
    float: left;
    border: 1px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
}

    .tile:hover {
        border: 1px solid #aaa;
        border-bottom: 2px solid #aaa;
    }

    .tile.small {
        width: 155px;
    }

    .tile .topic {
        width: 100%;
        height: 25px;
        line-height: 25px;
        color: #222;
        font-family: 'Century Gothic', sans-serif;
        text-align: left;
        font-size: 15px;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .tile .text-box {
        width: 100%;
        height: auto;
        background: #f1f1f1;
        padding: 10px;
        box-sizing: border-box;
        text-align: left;
        font-size: 14px;
        margin: 5px 0 0;
        border-radius: 2px;
        display: block;
        border: 1px solid #e0e0e0;
    }

    .tile .tab-content-container {
        width: 320px;
        height: auto;
        min-height: 35px;
        margin: 10px -10px 0;
        display: inline-block;
        box-sizing: border-box;
    }

        .tile .tab-content-container .tab-menu {
            width: 100%;
            height: 35px;
            box-sizing: border-box;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }

            .tile .tab-content-container .tab-menu .tab {
                width: 25%;
                height: 33px;
                line-height: 33px;
                float: left;
                border-left: 1px solid #e0e0e0;
                box-sizing: border-box;
                font-size: 12px;
                font-weight: 700;
                border-top: 3px solid transparent;
                cursor: pointer;
            }

                .tile .tab-content-container .tab-menu .tab:hover {
                    background: #eee;
                }

                .tile .tab-content-container .tab-menu .tab:first-child {
                    border-left: 0;
                }

                .tile .tab-content-container .tab-menu .tab.selected {
                    background: #eee;
                    border-top: 3px solid #222;
                }

    .tile .tile-form-group {
        width: 100%;
        height: auto;
        min-height: 70px;
        box-sizing: border-box;
        padding: 15px 5px;
    }

        .tile .tile-form-group select {
            width: auto;
            min-width: 190px;
            max-width: 200px;
            float: left;
        }

        .tile .tile-form-group .button {
            float: right;
        }

    .tile ul.dynamic {
        margin: 10px -10px 10px -10px;
        min-width: 320px;
    }

    .tile .tab-content ul.dynamic {
        margin: 0;
        width: 100%;
    }

ul.dynamic {
    list-style: none;
    padding: 0;
    height: auto;
    min-height: 26px;
    display: block;
    margin: 10px auto;
    float: left;
}

    ul.dynamic li {
        height: 26px;
        line-height: 26px;
        width: 100%;
        float: left;
        border-bottom: 1px solid #e0e0e0;
        border-left: 3px solid transparent;
        box-sizing: border-box;
    }

        ul.dynamic li.red {
            border-left: 3px solid #ac193d;
        }

        ul.dynamic li.yellow {
            border-left: 3px solid #F1C40F;
        }

        ul.dynamic li.orange {
            border-left: 3px solid #E67E22;
        }

        ul.dynamic li.green {
            border-left: 3px solid #00802b;
        }

        ul.dynamic li.blue {
            border-left: 3px solid #254174;
        }

        ul.dynamic li .cell {
            width: 25%;
            box-sizing: border-box;
            float: left;
            display: inline-block;
            font-size: 12px;
            text-align: center;
        }

        ul.dynamic li.head .cell {
            font-weight: 700;
            font-size: 10px;
            text-transform: uppercase;
        }

        ul.dynamic li:nth-child(odd) {
            background: #f7f7f7;
        }

        ul.dynamic li.head {
            border-top: 1px solid #e0e0e0;
            background: #eee;
        }

        ul.dynamic li.topic {
            background: #fff;
            border: 0;
            font-size: 10px;
            text-transform: uppercase;
            font-weight: 700;
            border-top: 1px solid #e0e0e0;
            background: #f7f7f7;
        }

        ul.dynamic li .cell.w10 {
            width: 10%;
        }
        ul.dynamic li .cell.w15 {
            width: 15%;
        }
        ul.dynamic li .cell.w20 {
            width: 20%;
        }
        ul.dynamic li .cell.w30 {
            width: 30%;
        }
        ul.dynamic li .cell.w35 {
            width: 35%;
        }
        ul.dynamic li .cell.w50 {
            width: 50%;
        }
        ul.dynamic li .cell.w45 {
            width: 45%;
        }
        ul.dynamic li .cell.w55 {
            width: 55%;
        }

.tile .tab-content ul.dynamic li.head {
    border-top: 0;
}

.tile ul.dynamic li .cell-container .cell .button-circle {
    width: 18px;
    height: 18px;
    border: 1px solid #a0a0a0;
    border-radius: 100%;
    margin: 3px auto;
    box-sizing: border-box;
    line-height: 16px;
}

.tile ul.dynamic li .cell-container .cell .button-circle.remove-button {
    font-size: 18px;
}

.tile ul.dynamic li .cell-container .cell .button-circle:hover {
    border: 1px solid #1F3763;
    background: #1F3763;
    color: #fff;
}

 .dashboard-container .dashboard-tile-area .tile.static {
    cursor: initial;
}

     .dashboard-container .dashboard-tile-area .tile.static:hover {
        border: 1px solid #e0e0e0;
        border-bottom: 2px solid #e0e0e0;
    }

 .dashboard-container .dashboard-tile-area .tile.large {
    height: auto;
    min-height: 120px;
}

     .dashboard-container .dashboard-tile-area .tile.wide {
        width: 650px;

    }

     .dashboard-container .dashboard-tile-area .tile-group {
        margin: 0 10px 0 0;
        width: 320px;
        height: auto;
        min-height: 120px;
        box-sizing: border-box;
        float: left;
        display: inline-block;
    }

 .dashboard-container .dashboard-tile-area .tile-group .tile-group:first-of-type {
    margin-top: 0;
}

     .dashboard-container .dashboard-tile-area .tile-group.wide {
        margin: 0;
        width: 660px;
    }

    /* .dashboard-container .dashboard-tile-area .tile-group .tile-item:first-child .tile {
        margin: 0px 10px 0 0;
    }*/

         .dashboard-container .dashboard-tile-area .tile-group .tile-item:nth-child(odd) .tile.small {
            margin-right: 0;
        }

        /* .dashboard-container .dashboard-tile-area .tile-group.wide .tile-item:nth-child(odd) .tile.large {
            margin-right: 0;
        }*/


 .dashboard-container .dashboard-tile-area .tile.static.red {
    border-top: 5px solid #ac193d;
}

 .dashboard-container .dashboard-tile-area .tile.static.orange {
    border-top: 5px solid #E67E22;
}

 .dashboard-container .dashboard-tile-area .tile.static.yellow {
    border-top: 5px solid #F1C40F;
}

 .dashboard-container .dashboard-tile-area .tile.static.green {
    border-top: 5px solid #00802b;
}

 .dashboard-container .dashboard-tile-area .tile.static.blue {
    border-top: 5px solid #254174;
}

 .dashboard-container .dashboard-tile-area .tile.static.gray {
    border-top: 5px solid #e0e0e0;
}



 .view-container {
    margin: 0;
    width: 100%;
    max-width: 1100px;
    height: auto;
    float: left;
    padding: 10px;
    position: relative;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
     text-align: center;
}

     .view-container .box-content-container {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 0;
        float: left;
    }

         .view-container .box-content-container .box-content {
            max-width: 100%;
            width:100%;
            height: auto;
            display: block;
            float: left;
            margin: 0 10px 20px 0;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-bottom: 2px solid #e0e0e0;
            position: relative;
        }

             .view-container .box-content-container .box-content.medium {
                max-width: 700px;
                width: 100%;
                display: inline-block;
            }

                 .view-container .box-content-container .box-content.medium .from-group {
                    width: 100%;
                    display: inline-block;
                }

                 .view-container .box-content-container .box-content.medium span {
                    width: 100%;
                }

             .view-container .box-content-container .box-content .half {
                width: 50%;
                display: inline-block;
                vertical-align: top;
                float: left;
                box-sizing: border-box;
            }

             .view-container .box-content-container .box-content .box-explanation {
                width: 180px;
                height: 30px;
                line-height: 30px;
                font-size: 18px;
                transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                -webkit-transform: rotate(90deg);
                position: absolute;
                right: -110px;
                text-align: left;
                top: 100px;
            }

             .view-container .box-content-container .box-content .box-tab-menu {
                width: 100%;
                height: 35px;
                background: #f1f1f1;
                border-bottom: 1px solid #e0e0e0;
                box-sizing: border-box;
            }

                 .view-container .box-content-container .box-content .box-tab-menu .tab {
                    min-width: 100px;
                    height: 35px;
                    float: left;
                    line-height: 35px;
                    width: auto;
                    padding: 0 15px;
                    font-size: 12px;
                    text-transform: uppercase;
                    border-right: 1px solid #e0e0e0;
                    cursor: pointer;
                    box-sizing: border-box;
                }

                     .view-container .box-content-container .box-content .box-tab-menu .tab.active {
                        font-weight: 700;
                        background: #fff;
                        border-top: 3px solid #222;
                    }

             .view-container .box-content-container .box-content .box-top-form {
                width: 100%;
                min-height: 70px;
                height:100%;
                border-bottom: 1px solid #e0e0e0;
                box-sizing: border-box;
                position: relative;
                float: left;
            }

             .view-container .box-content-container .box-content .box-top-form .input-group {
                width:250px;
                float:left;
                /* height:65px; */
                position:relative;
                box-sizing:border-box;
                padding:30px 10px 20px;
            }

                 .view-container .box-content-container .box-content .box-top-form .input-group .label {
                    position: absolute;
                    top:5px;
                    left:15px;
                    font-size: 10px;
                    text-transform: uppercase;
                }

                 .view-container .box-content-container .box-content .box-top-form .form-label {
                    position: absolute;
                    top: 10px;
                    left: 10px;
                    font-size: 10px;
                    text-transform: uppercase;
                }

                 .view-container .box-content-container .box-content .box-top-form .button {
                    float: left;
                }

             .view-container .box-content-container .box-content h2 {
                margin: 20px;
                font-family: Arial, Helvetica, sans-serif;
                font-weight: 400;
                text-align: left;
                font-size: 20px;
            }

             .view-container .box-content-container .box-content p {
                text-align: left;
                font-size: 15px;
                margin: 10px 15px;
            }

                 .view-container .box-content-container .box-content p span {
                    font-weight: 700;
                    width: 200px;
                    display: inline-block;
                }

         .view-container .box-content-container .box-list-container {
            width: 155px;
            height: auto;
            display: inline-block;
            float: left;
            margin: 0 10px 10px 0;
        }
             .view-container .box-content-container .box-list-container input[type='checkbox'],
             .view-container .box-content-container .box-list-container .settings-menu {
                display: none;
            }
ul.box-menu-list {
    list-style: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: block;
    box-sizing: border-box;
    float:left;
}

    ul.box-menu-list li {
        width: 100%;
        display: block;
        height: 30px;
        line-height: 30px;
        text-align: left;
        margin: 0;
        padding: 0 10px;
        border-bottom: 1px solid #e0e0e0;
        box-sizing: border-box;
        font-size: 14px;
        cursor: pointer;
    }

        ul.box-menu-list li:hover {
            background: #eee;
        }

        ul.box-menu-list li.selected {
            font-weight: 700;
            background: #eee;
        }

form.box-small {
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    margin: 0 auto 10px;
    float: left;
}

    form.box-small textarea {
        height: 60px;
        line-height: 20px;
    }

    form.box-small select {
        width: 60%;
        float: left;
    }

    form.box-small .button {
        float: right;
        width: 150px;
    }

    form.box-small .info {
        margin: 10px auto;
        width: 100%;
        background: #f1f1f1;
        font-size: 14px;
        padding: 10px;
        border-radius: 3px;
        box-sizing: border-box;
        text-align: left;
        border: 1px solid #e0e0e0;
    }

        form.box-small .info span {
            font-weight: 700;
            font-style: italic;
        }

/* .vehicle { */
/*     width: 100%; */
/*     height: 100%; */
/*     position:relative; */
/* } */
/* */
/*     .vehicle .end-text { */
/*         position: absolute; */
/*         top: 0; */
/*         width: 25px; */
/*         height: 100%; */
/*         line-height: 11; */
/*         font-family: Arial, Helvetica, sans-serif; */
/*         font-size: 10px; */
/*     } */
/*     .vehicle .end-text.start { */
/*         left: -25px; */
/*     } */
/*     .vehicle .end-text.end { */
/*         right: -25px; */
/*     } */
/*     .vehicle .axle { */
/*         width: 12.5%; */
/*         display: inline-block; */
/*         float: left; */
/*         height: 100%; */
/*     } */
/* */
/*         .vehicle .axle:last-child .center { */
/*             border-right: 2px solid #fff; */
/*         } */
/* */
/*         .vehicle .axle .wheel { */
/*             width: 100%; */
/*             height: 15%; */
/*             /*border-right: 2px solid #fff;!1! */
/*             box-sizing: border-box; */
/*         } */
/* */
/*             .vehicle .axle .wheel.left, .vehicle .axle .wheel.right { */
/*                 background: #e0e0e0; */
/*                 border-right: 2px solid #fff; */
/*             } */
/*                 .vehicle .axle .wheel.left.red, .vehicle .axle .wheel.right.red { */
/*                     background: #ac193d; */
/*                     border-right: 2px solid #fff; */
/*                 } */
/*                 .vehicle .axle .wheel.left.orange, .vehicle .axle .wheel.right.orange { */
/*                     background: #E67E22; */
/*                     border-right: 2px solid #fff; */
/*                 } */
/*                 .vehicle .axle .wheel.left.yellow, .vehicle .axle .wheel.right.yellow { */
/*                     background: #F1C40F; */
/*                     border-right: 2px solid #fff; */
/*                 } */
/* */
/*         .vehicle .axle .center { */
/*             width: 100%; */
/*             height: 70%;   */
/*             background: #f1f1f1; */
/*             border-right: 2px solid #f1f1f1; */
/*             box-sizing: border-box; */
/*         } */
/*         .vehicle .axle .center .text { */
/*             line-height:6; */
/*             font-family: Arial, Helvetica, sans-serif; */
/*             font-size:12px; */
/*         } */

.key-value-list {
    width: 240px;
    display: inline-block;
    float: left;
    padding: 10px 15px;
    box-sizing: border-box;
}

    .key-value-list .key-value-container {
        width: 100%;
        height: auto;
        min-height: 35px;
        display: block;
        font-size: 14px;
        text-align: left;
        margin: 0 auto 10px;
    }

        .key-value-list .key-value-container .key {
        }

        .key-value-list .key-value-container .value {
            font-weight: 700;
        }

.left-bar-icon {
    width: 20px;
    height: 20px;
    margin-top: 7px;
    opacity: 0.55;
}

#login-area {
    text-align: left;
    position: relative;
    height:100%;
    padding-top:40px;
}
#login-area .login-box {
    width: 320px;
    margin:auto;
}
#login-area .form-group{
    height:50px;
}
#login-area a label{
    cursor: pointer;
}
#login-area .regular-checkbox {
    -webkit-appearance: none;
    background-color: #fafafa;
    border: 1px solid #cacece;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
    width: 15px;
    height: 15px;
    padding: 9px;
    top: 5px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
}
#login-area .regular-checkbox:active,
.regular-checkbox:checked:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

#login-area .regular-checkbox:checked {
    background-color: #e9ecee;
    border: 1px solid #adb8c0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
    color: #99a1a7;
}
#login-area .regular-checkbox:checked:after {
    content: '\2714';
    font-size: 14px;
    position: absolute;
    top: -7px;
    left: 3px;
    color: #99a1a7;
}

#login-area label{
    font-family:Arial, Helvetica, sans-serif;
    font-size:14px;
    font-weight:500;
    display:inline-block;
}

/* Mobile menu */
#mobile-menu {
    position: absolute;
    top: 40px;
    left: 0;
    display: none;
    z-index: 9;
    width: 100%;
    /*height: 100vh;*/
    background: #f9f9f9;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 0 0px 3px rgba(0,0,0,0.05);
}

#mobile-menu .top-nav-bar {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    position: relative;
    float: left;
}

    #mobile-menu .top-nav-bar .nav-section {
        border: 0;
        border-bottom: 1px solid #e0e0e0;
        margin: 0;
        padding: 0;
    }

    #mobile-menu .top-nav-bar .nav-item {
        height: 54px;
        width: 100%;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 400;
        display: block;
        cursor: pointer;
        padding: 10px 0 10px 15px;
        box-sizing: border-box;
        background: #fff;
    }

        #mobile-menu .top-nav-bar .nav-item.active {
            background: #f1f1f1;
        }

        #mobile-menu .top-nav-bar .nav-item:hover {
            background: #f1f1f1;
        }

        #mobile-menu .top-nav-bar .nav-item .text {
            display: inline-block;
            font-size: 14px;
            height: 34px;
            line-height: 34px;
            float: left;
            color: #222;
            text-indent: 15px;
            width: calc((100%) - 55px);
        }

            #mobile-menu .top-nav-bar .nav-item .text .name-span {
                float: left;
            }

            #mobile-menu .top-nav-bar .nav-item .text .caret-span {
                float: right;
                opacity: 0.3;
                width: 34px;
                font-size: 18px;
                text-align: center;
                text-indent: 0;
                transition: transform .4s ease;
            }

#mobile-menu .top-nav-bar .nav-item .icon {
    width: 40px;
    height: 34px;
    line-height: 30px;
    display: inline-block;
    float: left;
    text-align: center;
    box-sizing: border-box;
    fill: #254174;
}

    #mobile-menu .top-nav-bar .nav-item .icon img {
        margin: 7px auto;
        width: 20px;
        height: 20px;
        opacity: 0.3;
    }

#mobile-menu .top-nav-bar .nav-item.active .icon img {
    opacity: 0.9;
}

#mobile-menu .left-bar-wide-extend .icon-container {
    margin-top: 5px;
}
    #mobile-menu .top-nav-bar .roles-section,
    #mobile-menu .top-nav-bar .data-tools-section,
    #mobile-menu .top-nav-bar .custom-apps-section,
    #mobile-menu .top-nav-bar .settings-section {
        display: none;
        border: none;
        background: #f2f2f2;
        -webkit-box-shadow: inset 0px 0px 8px 0px rgba(0,0,0,0.25);
        -moz-box-shadow: inset 0px 0px 8px 0px rgba(0,0,0,0.25);
        box-shadow: inset 0px 0px 8px 0px rgba(0,0,0,0.09);
        padding: 5px 0;
    }

    #mobile-menu .roles-section .nav-item,
    #mobile-menu .data-tools-section .nav-item,
    #mobile-menu .custom-apps-section .nav-item,
    #mobile-menu .settings-section .nav-item {
        background: #fcfcfc;
    }

    #mobile-menu .roles-section .nav-item,
    #mobile-menu .data-tools-section .data-tools-item,
    #mobile-menu .custom-apps-section .custom-apps-item,
    #mobile-menu .settings-section .settings-item {
        padding: 10px 0 10px 25px;
    }

#mobile-menu-btn-open {
    display: none;
    float: right;
    height: 30px;
    width: 80px;
    line-height: 30px;
    margin-top: 5px;
    margin-right: 10px;
}

#mobile-menu-btn-close {
    display: none;
    float: right;
    height: 30px;
    width: 80px;
    line-height: 30px;
    margin-top: 5px;
    margin-right: 10px;
}

#mobile-menu .top-nav-bar .nav-item .text.caret .caret-span {
    transform: rotate(180deg);

}

.header-wrapper {
    display: none;
}

/* HELP PARTIAL SECTION */
#helparea {
    background: #f1f1f1;
    position: absolute;
    z-index: 9;
    top: 40px;
    left: 200px;
    box-shadow: 4px 4px 5px 1px rgba(0,0,0,0.12);
    overflow: auto;
    display: none;
    height: calc(100vh - 40px);
    width: 500px;
}

#helparea::-webkit-scrollbar {
    display: none;
}

#helparea .help-close {
    width: 40px;
    height: 34px;
    line-height: 30px;
    display: inline-block;
    float: right;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    background: #fff;
    border-left: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

    #helparea .help-close:hover {
        cursor: pointer;
    }

#helparea .area-container {
    width: 100%;
    height: auto;
    margin: 0px auto;
    display: block;
    float: left;
    box-sizing: border-box;
    padding: 10px 15px;
}

#helparea .help-tile {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 10px 0;
    padding: 15px;
    cursor: default;
}

#helparea .area-container .separated-expand-list {
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: block;
    float: left;
    box-sizing: border-box;
    margin-top: 10px;
}

    #helparea .area-container .separated-expand-list .dropdown-list-item {
        margin: 0 auto 15px;
        border: 0;
        display: block;
    }

        #helparea .area-container .separated-expand-list .dropdown-list-item .item-help-content {
            border: 1px solid #e0e0e0;
            cursor: pointer;
            height: 32px;
            line-height: 32px;
            background: #fff;
            width: 100%;
            display: block;
            box-sizing: border-box;
        }

            #helparea .area-container .separated-expand-list .dropdown-list-item .item-help-content:hover,
            #helparea .area-container .separated-expand-list .dropdown-list-item .item-help-content:active {
                border: 1px solid #333;
            }

                #helparea .area-container .separated-expand-list .dropdown-list-item .item-help-content.active {
                    border: 1px solid #333;
                }

            #helparea .area-container .separated-expand-list .dropdown-list-item .item-help-content .item-icon {
                line-height: 32px;
                height: 32px;
                box-sizing: border-box;
                padding: 4px 0 0 8px;
                float: left;
                opacity: .666;
            }

            #helparea .area-container .separated-expand-list .dropdown-list-item .item-help-content .item-topic {
                display: inline-block;
                height: 100%;
                font-family: Arial, Helvetica, sans-serif;
                font-size: 14px;
                float: left;
                text-indent: 10px;
                font-weight: 700;
                display: inline-block;
                line-height: 32px;
                cursor: pointer;
            }

            #helparea .area-container .separated-expand-list .dropdown-list-item .item-help-content .item-topic.faq {
                font-weight: 300;
            }

            #helparea .area-container .separated-expand-list .dropdown-list-item .item-help-content .item-info {
                display: inline-block;
                height: 100%;
                font-family: Arial, Helvetica, sans-serif;
                font-size: 14px;
                float: right;
                margin-right: 10px;
            }

        #helparea .area-container .separated-expand-list .dropdown-list-item .item-dropdown-content {
            margin: 5px auto 0;
            padding: 0;
            display: none;
            font-size: 14px;
            padding: 0 10px 10px;
            background: #f7f7f7;
            border: 1px solid #e0e0e0;
            border-radius: 2px;
        }

/* HELP TOOLTIP */

.tooltip-wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 20px;
    top: 0;
}

.tooltip:hover {
    cursor: help;
}

/* Tooltip question mark svg */
.tooltip img {
    width: 11px;
    height: 11px;
    position: relative;
    float: right;
    top: 7px;
    right: 2px;
    opacity: 0.8;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 100%;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    font-size: 11px;
    font-family: Arial, sans-serif;
    top: 63px;
    margin: 0 -50%;
    border-radius: 3px;
}

/* Arrow on tooltip div */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

/* Show the tooltip text when you mouse over / have active the tooltip container */
.tooltip:hover .tooltiptext,
.tooltip:active .tooltiptext {
    visibility: visible;
}

.form-container .input-group {
    position: relative;
}
@media (max-width: 850px), only screen and (max-device-width: 850px) {
     .dashboard-container .dashboard-tile-area .tile-group.wide {
        width: 320px;
    }
}
/* MOBILE CSS RULES */
@media (max-width: 600px), only screen and (max-device-width: 600px) {

    #mobile-menu-btn-open {
        display: inline-block;
    }

     .view-container .box-content-container .box-content .half.position {
        width: 100%;
        display: block;
        vertical-align: initial;
    }

    #left-bar-wide {
        display: none;
    }

     {
        padding-left: 0;
    }

        .wide {
            padding-left: 0;
        }

         .dashboard-container .dashboard-tile-area .tile-group {
            margin-left: calc(50% - 160px);
            margin-right: calc(50% - 160px);
        }

         .dashboard-container .dashboard-tile-area .tile.wide {
            width: 100%;
        }

         .dashboard-container .dashboard-tile-area .tile-group.fullwidth-mobile,
         .dashboard-container .dashboard-tile-area .fullwidth-mobile {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

             .dashboard-container .dashboard-tile-area .tile-group.fullwidth-mobile .tile.small {
                width: 45%;
                margin: 10px 2.5%;
            }

         .dashboard-container .dashboard-tile-area .tile-group .tile-item:nth-child(odd) .tile.small {
            margin-right: 2.5%;
        }

         .tile.large {
            width: 100%;
            box-sizing: border-box;
        }

    /* .tile.small {
            width: calc(50% - 5px);
        }*/

    .header-content .right-nav-bar {
        width: 100px;
    }

        .header-content .right-nav-bar .item {
            display: none;
        }

     .view-container .box-content-container .box-list-container ul.box-menu-list li {
        display: none;
    }

     .view-container .box-content-container .box-list-container {
        width: 100%;
        margin: 0 0 10px 0;
    }

         .view-container .box-content-container .box-list-container ul.box-menu-list {
            width: 100%;
            height: 40px;
            background: #fff;
        }

         .view-container .box-content-container .box-list-container .settings-menu {
            display: block;
            height: 40px;
            line-height: 40px;
            cursor: pointer;
        }

         .view-container .box-content-container .box-list-container input[type=checkbox]:checked ~ ul.box-menu-list li {
            display: block;
        }

     .view-container .box-content-container .box-content {
        width: 100%;
    }

     .view-container {
        padding: 10px 0;
    }

         .view-container .box-content .box-explanation {
            display: none;
        }

         .view-container .box-content-container .box-content .box-top-form {
            height: auto;
            padding: 15px 10px;
            float: left;
            position: relative;
        }

             .view-container .box-content-container .box-content .box-top-form .input-group {
                width: 100%;
                box-sizing: border-box;
            }

    #mobile-menu {
        display: none;
    }

    .header-wrapper {
        float: left;
        display: block;
        width: 100%;
    }

        .header-wrapper .header-content {
            height: 34px;
            width: 100%;
        }

            .header-wrapper .header-content .header-image {
                float: left;
                display: inline;
                width: 26px;
                height: 26px;
                line-height: 26px;
                border-radius: 10%;
                border: 2px solid rgba(0, 0, 0, 0.666);
                margin: 2px 10px 2px 20px;
                background: #fff;
            }

                .header-wrapper .header-content .header-image img {
                    width: 20px;
                    height: 20px;
                    margin: 3px 0 3px 0;
                    opacity: .666;
                }

            .header-wrapper .header-content .header-text {
                float: left;
                display: inline;
                height: 34px;
                line-height: 34px;
                font-size: 18px;
                font-family: 'Arial', sans-serif;
                margin-right: .3rem;
                /*text-transform: uppercase;*/
            }

    #helparea {
        background: #f1f1f1;
        position: absolute;
        z-index: 9;
        top: 40px;
        left: 0;
        box-shadow: none;
        overflow: auto;
        display: none;
        height: calc(100% - 40px);
        width: 100%;
    }

        #helparea .area-container {
            padding: 10px 0;
        }
}



    #vehicle-list {
        width: 500px;
        height: 100%;
        min-height: 100%;
        background: #f1f1f8;
        position: absolute;
        z-index: 8;
        top: 40px;
        left: 30px;
        box-shadow: 4px 4px 5px 1px rgba(0,0,0,0.12);
        overflow: auto;
        display: none;
    }

        #vehicle-list .vehicle-list-area p.info {
            margin: 50px auto;
            font-size: 14px;
            text-align: center;
            font-weight: 700;
            color: #222;
        }

        #vehicle-list .vehicle-list-area ul {
            margin: 35px auto 0;
            width: 100%;
            height: auto;
            min-height: 200px;
            display: block;
            list-style: none;
            padding: 0;
        }

            #vehicle-list .vehicle-list-area ul li {
                width: 100%;
                display: block;
                height: 30px;
                line-height: 30px;
                background: #eee;
                margin: 0;
                padding: 0;
                border-bottom: 1px solid #e0e0e0;
                background: #fff;
            }

                #vehicle-list .vehicle-list-area ul li:nth-child(odd) {
                    background: #f9f9f9
                }

                #vehicle-list .vehicle-list-area ul li .cell {
                    margin: 0 auto;
                    padding: 0;
                    display: inline-block;
                    width: 50%;
                    float: left;
                    font-family: Arial, Helvetica, sans-serif;
                    font-size: 12px;
                    text-indent: 10px;
                }

                    #vehicle-list .vehicle-list-area ul li .cell.w30 {
                        width: 30%;
                    }

                    #vehicle-list .vehicle-list-area ul li .cell.w20 {
                        width: 20%;
                    }

                    #vehicle-list .vehicle-list-area ul li .cell.w10 {
                        width: 10%;
                    }

                #vehicle-list .vehicle-list-area ul li.head {
                    font-weight: 700;
                    font-size: 12px;
                }

                #vehicle-list .vehicle-list-area ul li.bottom {
                    margin-bottom: 40px;
                    text-align: center;
                    background: 0;
                    border-bottom: 0;
                    font-family: Arial, Helvetica, sans-serif;
                    font-style: italic;
                    font-size: 14px;
                }
    /*
    DATE PICKER
    CSS used for the jQueryUI date picker widget.
*/
    .ui-datepicker {
        width: 280px;
        background: #fff;
        position: absolute;
        text-align: center;
        z-index: 4;
        left: 20px;
        box-sizing: border-box;
    }

    #ui-datepicker-div {
        display: none;
        padding: 0;
        box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.162), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
        margin: 8px 0 8px 0;
    }

    .ui-datepicker-header {
        border-bottom: none;
    }

    .ui-datepicker .ui-datepicker-title {
        height: 40px;
        line-height: 40px;
        font-family: 'Roboto Condensed',Arial, sans-serif;
        font-weight: 400;
        color: #394357;
        background: #fff;
        font-size: 15px;
        width: 168px;
        display: inline-block;
        text-align: center;
        box-sizing: border-box;
    }

    .ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
        display: inline-block;
        height: 40px;
        line-height: 40px;
        margin: 0;
        vertical-align: top;
        width: 55px;
        font-family: 'Roboto Condensed', Arial, sans-serif;
        font-size: 14px;
        cursor: pointer;
        text-transform: uppercase;
        font-weight: 400;
        color: #394357;
        text-align: center;
    }

        .ui-datepicker .ui-datepicker-next:hover,
        .ui-datepicker .ui-datepicker-prev:hover {
            background: #fff;
        }

    .ui-datepicker .ui-datepicker-next {
        float: right;
        box-sizing: border-box;
        font-size: 30px;
        font-weight: 700;
        line-height: 36px;
    }

    .ui-datepicker .ui-datepicker-prev {
        float: left;
        box-sizing: border-box;
        font-size: 30px;
        font-weight: 700;
        line-height: 36px;
    }

    .ui-datepicker .ui-datepicker-next.ui-state-disabled,
    .ui-datepicker .ui-datepicker-prev.ui-state-disabled {
        color: rgb(187, 187, 187);
        cursor: initial;
    }

    .ui-datepicker a {
        text-decoration: none;
        margin: 0;
        padding: 0;
        color: #000;
    }

    .ui-datepicker table {
        margin: 0 auto;
        padding: 0;
        border-collapse: collapse;
        width: 100%;
        box-sizing: border-box;
        /* border-bottom: 1px solid #e4e6ea; */
        /* border-right: 1px solid #e4e6ea; */
        /* border-left: 1px solid #e4e6ea; */
    }

        .ui-datepicker table tr {
            border-bottom: 1px solid #e4e6ea;
            height: 40px;
            box-sizing: border-box;
        }

            .ui-datepicker table tr:last-child {
                border: 0;
            }

        .ui-datepicker table th {
            border: none;
            padding: 0;
            margin: 0;
            background: #fff;
            color: #394357;
            font-family: 'Roboto Condensed',Arial, sans-serif;
            font-size: 15px;
            box-sizing: border-box;
            border-bottom: 1px solid #e4e6ea;
        }

        .ui-datepicker table td {
            background: #fff;
            padding: 0;
            margin: 0;
            width: 30px;
            font-family: 'Roboto Condensed', Arial, sans-serif;
            font-weight: 400;
            font-size: 14px;
            border-right: 1px solid #e4e6ea;
            text-align: center;
            box-sizing: border-box;
            cursor: pointer;
        }

            .ui-datepicker table td:last-child {
                border-right: 0;
            }

            .ui-datepicker table td:hover {
                background: #4970b9;
            }

            .ui-datepicker table td:hover a {
                color: #fff;
            }

            .ui-datepicker table td.ui-datepicker-current-day {
                background: #4970b9;
            }

            .ui-datepicker table td.ui-datepicker-current-day a {
                color: #fff;
            }

.ui-datepicker table td.ui-datepicker-unselectable,
.ui-datepicker table td.ui-datepicker-unselectable:hover,
.ui-datepicker table td.ui-datepicker-unselectable:active, 
.ui-datepicker table td.ui-datepicker-unselectable:focus {
    background: #fff;
    cursor: initial;
}

.ui-datepicker table td.ui-datepicker-unselectable span,
.ui-datepicker table td.ui-datepicker-unselectable:hover span,
.ui-datepicker table td.ui-datepicker-unselectable:active span, 
.ui-datepicker table td.ui-datepicker-unselectable:focus span {
    color: rgb(187, 187, 187);
}
 /* SERVICE HEALTH INFO BOX */

.view-container .info-box {
    margin: 0px auto 15px;
    width: 100%;
    height: auto;
    min-height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    position: relative;
    display: flex;
}

    .view-container .info-box .topic-label {
        display: inline-block;
        float: left;
        width: 90px;
        background: #ac193d;
        height: auto;
        min-height: 100%;
        line-height: 40px;
        color: #fff;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
    }

        .view-container .info-box .topic-label.yellow {
            background: #F1C40F;
        }
        .view-container .info-box .topic-label.red {
            background: #ac193d;
        }

    .view-container .info-box .info-content {
        display: inline-block;
        float: left;
        width: 900px;
        height: auto;
        min-height: 40px;
        overflow: hidden;
    }

        .view-container .info-box .info-content .updated {
            height: 16px;
            line-height: 16px;
            width: 140px;
            font-family: Arial, Helvetica, sans-serif;
            color: #777;
            font-size: 9px;
            text-align: left;
            text-indent: 10px;
            display: inline-block;
            float: left;
        }

        .view-container .info-box .info-content .text {
            height: auto;
            min-height: 30px;
            display: block;
            float: left;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            font-weight: 700;
            padding: 0 10px 5px;
            box-sizing: border-box;
            text-align: left;
            width: 100%;
        }