﻿/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/*@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);*/

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
}

html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

    html body {
        font-size: 15px;
    }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

img {
    max-width: 100%;
}

a:hover {
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    margin: 0;
    background: #fff;
    font: 12px/1.5 'Roboto', sans-serif;
    color: #333;
    height: 100%;
}

img {
    border-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

h1 {
    font-size: 36px;
    margin-top: 0;
}

h2 {
    font-size: 34px;
    margin-top: 0;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

a {
    text-decoration: none;
    color: #0888bd;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    a:hover {
        text-decoration: none;
    }

/*Forms*/
input, textarea, select {
    vertical-align: middle;
}

form, fieldset {
    margin: 0;
    padding: 0;
    border-style: none;
}

.form {
    width: 100%;
    padding: 10px 10px;
}

    .form .button, .form input[type="submit"] {
        clear: both;
        float: right;
    }

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.form-control {
    background-color: #ffffff;
    margin-bottom: 20px;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #555555;
    display: block;
    font-size: 14px;
    height: 34px;
    line-height: 1.42857;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    vertical-align: middle;
    width: 100%;
}

    .form-control:focus {
        border-color: #66afe9;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
        outline: 0 none;
    }

.radio, .checkbox {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 20px;
    padding-left: 20px;
    vertical-align: middle;
}

    .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
        float: left;
        margin-left: -20px;
    }

input[type="radio"], input[type="checkbox"] {
    line-height: normal;
}

input[type="text"], .form-field {
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #ddd;
    padding: 5px 10px;
    font: 300 15px/1.5 "Roboto",sans-serif;
}

    .form-field.input-validation-error, input[type="text"].input-validation-error, select.input-validation-error {
        margin-bottom: 0;
    }

        .form-field.input-validation-error + .field-validation-error, input[type="text"].input-validation-error + .field-validation-error,
        select.input-validation-error + .field-validation-error {
            margin-bottom: 15px;
            width: 100%;
            display: inline-block;
            padding-top: 5px;
        }

    input[type="text"]:focus, .form-field:focus {
        border-color: #66afe9;
    }

select {
    border: 1px solid #ddd;
    display: block;
    padding: 5px 6px;
    font: 300 15px/1.5 "Roboto",sans-serif;
    border-radius: 3px;
}

.form-vertical {
    max-width: 350px;
}

.form-field {
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

.form-vertical .button, .form-vertical input[type="submit"] {
    float: left;
}

#wrapper {
    width: 100%;
    position: relative;
}

.dashboard, .dashboard #content {
    background: #f1f1f1;
}

#header {
    background: #808080;
    width: 100%;
    display: inline-block;
    padding: 20px;
    vertical-align: top;
}

    #header .logo {
        float: left;
        margin: 0;
        padding: 6px 0 0 6px;
    }

        #header .logo a {
            display: block;
            height: 100%;
        }

            #header .logo a img {
                vertical-align: top;
                max-height: 80px;
            }

.menu-icon {
    display: none;
}

#header .block {
    float: right;
    text-align: right;
}

    #header .block .box {
        font-size: 12px;
        line-height: 14px;
        color: #fff;
        position: relative;
        min-width: 124px;
    }

        #header .block .box > i {
            background: #333;
            padding: 15px 18px;
            font-size: 20px;
            float: right;
        }

        #header .block .box span {
            display: inline-block;
            padding: 8px 5px 0;
            font-size: 18px;
        }

        #header .block .box a:not(.btn) {
            display: inline-block;
            padding: 5px;
            color: #aaa;
        }

        #header .block .box a:hover {
            color: #fff;
        }

        #header .block .box a i {
            margin: 0 0 0 5px;
        }

#adminmenuback {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 260px;
    width: 100%;
    background: #808080;
    z-index: -1;
    height: 100%;
}

#sidebar {
    float: left;
    width: 260px;
    display: inline-block;
    vertical-align: top;
    min-height: 1px;
}

#nav {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

    #nav li {
        overflow: hidden;
        vertical-align: top;
    }

    #nav a {
        color: #fff;
        display: block;
        padding: 0 14px 20px;
        font-size: 18px;
    }

        #nav a i {
            color: #999;
            margin-right: 15px;
        }

        #nav a span.icon {
            position: relative;
            top: 14px;
            margin-right: 10px;
        }

        #nav .active a, #nav a:hover {
            background: #00739F;
        }

a.license-warning:after {
    margin-left: 12px;
    content: "\f06a";
    color: rgb(247, 36, 36);
    font: normal normal normal 19px/2px FontAwesome;
    display: inline-block;
    margin-top: 32px;
    padding-top: 0;
    display: block;
    float: right;
    padding-right: 9px;
}

.icon-exclamation-sign:before {
    content: "\f06a";
    color: rgb(247, 36, 36);
    font: normal normal normal 19px/2px FontAwesome;
}

#content {
    overflow: hidden;
    background: #fff;
    padding: 25px;
}

.buttons {
    font-size: 29px !important;
    line-height: 32px;
}

    .buttons li {
        float: left;
        width: 100%;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 20px;
    }

    .buttons a {
        color: #222;
        background: #FFF;
        text-align: center;
        display: block;
        padding: 35px 20px;
        border-radius: 3px;
        box-shadow: 0 1px 2px rgba(0,0,0,.1);
        max-width: 400px;
    }

        .buttons a:hover {
            color: #FFF;
            background: #198CBB;
        }






.serach-holder {
    overflow: hidden;
    padding-bottom: 2px;
    background: url(../images/cms/bg-search-holder.gif) repeat-x 0 100%;
    margin-bottom: 16px;
}

.add {
    float: right;
    border-left: 1px solid #818383;
}

.add-holder {
    overflow: hidden;
    background: #bfbfbf url(../images/cms/bg-add-holder.gif) repeat-x;
    padding: 25px 19px 26px;
    width: 58px;
    border-left: 1px solid #fff;
}

.add a {
    display: block;
    width: 54px;
    background: url(../images/cms/sprite.gif) no-repeat 0 -78px;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 0 2px 9px;
}

.excel-button img {
    margin-top: 9px;
    margin-bottom: 11px;
    height: 28px;
}

.add a span {
    display: block;
    font-size: 52px;
    line-height: 48px;
    margin-bottom: -5px;
}

.add a:hover {
    text-decoration: none;
    background: url(../images/cms/sprite.gif) no-repeat -66px -78px;
}

.serach-holder .holder {
    overflow: hidden;
}

.serach-holder .form-holder {
    overflow: hidden;
    background: url(../images/cms/bg-form-holder.gif) repeat-x;
    padding: 15px 19px 14px;
}

.serach-holder .empty {
    padding-bottom: 44px;
}

.search-form {
    float: left;
    background: url(../images/cms/bg-search-form.png) no-repeat;
    padding: 6px 13px 7px 14px;
}

    .search-form .search-icon {
        border: 0;
        background: url(../images/cms/bg-search-submit.png) no-repeat;
        width: 17px;
        height: 17px;
        float: left;
        overflow: hidden;
        text-indent: -9999px;
        font-size: 0;
        line-height: 0;
        margin-right: 10px;
    }

input[type="submit"]:hover {
    cursor: pointer;
}

.search-form .search-text {
    float: left;
    width: 190px;
    background: none;
    border: 0;
    outline: none;
    font-size: 14px;
    line-height: 18px;
    color: #a3a6a6;
    padding: 0;
    height: 17px;
}

.list-view {
    overflow: hidden;
    padding: 0 18px 25px;
}

.panel {
    overflow: hidden;
    margin-bottom: 5px;
}

.info {
    float: left;
    background: url(../images/cms/bg-info-right.gif) no-repeat 100% 0;
    padding-right: 9px;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
}

    .info span {
        display: block;
        background: url(../images/cms/bg-info.gif) no-repeat;
        padding: 13px 13px 12px 21px;
    }

/*.pagination {
    float: right;
    background: url(../images/cms/bg-info-right.gif) no-repeat 100% 0;
    padding-right: 9px;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    color: #fff;
}

    .pagination span {
        float: left;
        background: url(../images/cms/bg-info.gif) no-repeat;
        padding: 13px 4px 14px 11px;
    }

    .pagination .active, .pagination a {
        float: left;
        margin-right: 2px;
        display: block;
        width: 21px;
        text-align: center;
        padding: 5px 0 4px;
        margin-top: -5px;
        height: 14px;
        color: #fff;
    }

        .pagination .active, .pagination a:hover {
            text-decoration: none;
            background: url(../images/cms/bg-pagination-hover.gif) no-repeat;
            padding-top: 5px;
        }

    .pagination span.active:hover {
        cursor: default;
    }

    .pagination .prev, .pagination .next, .pagination .begin, .pagination .end {
        overflow: hidden;
        text-indent: -9999px;
        text-align: left;
    }

    .pagination .end {
        margin-left: 21px;
        background: url(../images/cms/bg-end.gif) no-repeat 50% 50%;
    }

    .pagination .begin {
        margin-right: 26px;
        background: url(../images/cms/bg-begin.gif) no-repeat 50% 50%;
    }

    .pagination .prev {
        background: url(../images/cms/bg-prev.gif) no-repeat 50% 50%;
    }

    .pagination .next {
        background: url(../images/cms/bg-next.gif) no-repeat 50% 50%;
    }

    .pagination .end:hover {
        margin-left: 21px;
        background: url(../images/cms/bg-end.gif) no-repeat 50% 50%, url(../images/cms/bg-pagination-hover.gif);
    }

    .pagination .begin:hover {
        margin-right: 26px;
        background: url(../images/cms/bg-begin.gif) no-repeat 50% 50%, url(../images/cms/bg-pagination-hover.gif);
    }

    .pagination .prev:hover {
        background: url(../images/cms/bg-prev.gif) no-repeat 50% 50%, url(../images/cms/bg-pagination-hover.gif);
    }

    .pagination .next:hover {
        background: url(../images/cms/bg-next.gif) no-repeat 50% 50%, url(../images/cms/bg-pagination-hover.gif);
    }*/

.lines td {
    border-bottom: 1px solid !important;
    line-height: 35px;
}

.table-view {
    width: 100%;
    border-collapse: collapse;
}

    .table-view th, .edit-form th {
        font-size: 14px;
        line-height: 16px;
        color: #fff;
        background: url(../images/cms/bg-table-th.gif) repeat-x;
        border-bottom: 1px solid #000;
        border-left: 1px solid #050505;
        text-align: left;
    }

        .table-view th:last-child span, .edit-form th:last-child span {
            background: url(../images/cms/bg-th-right.gif) no-repeat 100% 0;
        }

        .table-view th span, .edit-form th span {
            display: block;
            padding: 6px 7px 4px;
            border-left: 1px solid #5c5c5c;
        }

        .table-view th:first-child, .edit-form th:first-child {
            border: solid #000;
            border-width: 0 0 1px 0;
        }

            .table-view th:first-child span, .edit-form th:first-child span {
                background: url(../images/cms/bg-th-left.gif) no-repeat;
                border: 0;
            }

    .table-view td {
        text-align: center;
        border-bottom: 1px solid #bebebe;
        vertical-align: top;
        font-size: 12px;
        line-height: 23px;
    }

        .table-view td span {
            display: block;
            padding: 13px 0 15px;
            background: #f3f3f3 url(../images/cms/bg-table-td.gif) repeat-y;
            min-height: 23px;
        }

        .table-view td a {
            color: #0888bd;
        }

            .table-view td a:visited {
                color: #00080B;
            }

        .table-view td:first-child {
            text-align: left;
            color: #333;
        }

            .table-view td:first-child span {
                padding-left: 12px;
                border-left: 1px solid #bebebe;
                background: #f3f3f3;
            }

    .table-view .col2 {
        width: 101px;
    }

    .table-view .col3 {
        width: 88px;
    }

    .table-view .col4 {
        width: 125px;
    }

    .table-view .col5 {
        width: 35px;
    }

        .table-view .col5 span {
            border-right: 1px solid #bebebe;
        }

    .table-view .delete {
        display: block;
        background: url(../images/cms/bg-delete.png) no-repeat;
        width: 18px;
        height: 19px;
        margin: -1px auto -4px;
    }

    .table-view .even td span {
        background: #edecec url(../images/cms/bg-table-td.gif) repeat-y;
    }

    .table-view .even td:first-child span {
        background: #edecec;
    }

    .table-view .last td:first-child span {
        background: url(../images/cms/bg-td-last-left.gif) no-repeat;
        border-left: 0;
    }

    .table-view .last .col5 {
        background: url(../images/cms/bg-table-td.gif) repeat-y;
    }

        .table-view .last .col5 span {
            border-right: 0;
            background: url(../images/cms/bg-td-last-right.gif) no-repeat 100% 0;
        }

    .table-view .last td {
        border-bottom: 0;
        padding-bottom: 1px;
    }

        .table-view .last td span {
            background: url(../images/cms/bg-table-td.gif) repeat-y;
        }

.table-holder {
    overflow: hidden;
    background: #f3f3f3 url(../images/cms/bg-table-holder.gif) no-repeat 0 100%;
}

.table-frame {
    overflow: hidden;
    background: url(../images/cms/bg-table-holder-right.gif) no-repeat 100% 100%;
}

.login {
    width: 100%;
    max-width: 400px;
    margin: 220px auto;
    padding: 30px;
    background: lightslategrey;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.logo-holder {
    border-radius: 10px;
    margin: 0 0 20px;
    width: 100%;
}

    .logo-holder .logo {
        display: block;
        vertical-align: top;
        padding: 0;
        margin: 0 auto;
        max-width: 65%;
    }

.login .logo a {
    display: block;
    height: 100%;
}

.login .block {
    border-radius: 10px;
    width: 100%;
}

.login .holder {
    width: 100%;
}

.login h2 {
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    padding: 15px 5px;
    background: #373737;
    border-bottom: 1px solid #070707;
    border-radius: 3px 3px 0 0;
}

.login .form-control, .accountRetrieval .block .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    border-left-width: 5px;
    box-shadow: none;
    font-weight: 400;
    height: auto;
    padding: 10px;
    color: #666;
}

    .login .form-control:focus, .accountRetrieval .block .form-control:focus {
        border-color: #00A9DF;
        color: #00A9DF;
    }

.login .checkbox {
    display: inline-block;
    margin-top: 0;
}

    .login .checkbox a {
        display: block;
        margin-left: -20px;
        margin-top: 5px;
    }

.login .form .btn {
    padding: 10px 30px;
}

.accountRetrieval {
    width: 100%;
    max-width: 400px;
    margin: 220px auto;
    padding: 40px;
    background: #FFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

    .accountRetrieval .block {
        width: 100%;
        display: inline-block;
    }

    .accountRetrieval .logo-holder .logo {
        max-width: 250px;
    }


/* hide original element */
.jcf-hidden {
    position: absolute !important;
    left: -9999px !important; /* change to right: -9999px on RTL sites */
}
/* custom checkbox styles */
.chk-area {
    margin: 0 7px 0 0;
    float: left;
    width: 16px;
    height: 16px;
    background: url(../images/cms/bg-checkbox.png) no-repeat;
}

.chk-checked {
    background: url(../images/cms/bg-checkbox-checked.png) no-repeat;
}

.chk-focus {
    border-color: #f00;
}

.chk-disabled {
    background: #eee;
}

.jcf-label-disabled {
    color: #ccc;
}

.login-form .login-button {
    float: right;
    border: 0;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    background: url(../images/cms/bg-submit.png) no-repeat;
    width: 131px;
    height: 31px;
    padding-bottom: 2px;
    /*margin-top: -8px;*/
}

    .login-form .login-button:hover {
        background: url(../images/cms/bg-submit-hover.png) no-repeat;
    }

.login .forgot {
    display: block;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: #343434;
    text-align: center;
}

.edit-form {
    border: 1px solid #cdcdcd;
    border-collapse: collapse;
    margin: 20px;
    width: 95%;
}

.redit-form th {
    background: url(../images/cms/bg-search-heading.gif) repeat-x;
    text-align: left;
    line-height: 1.2em;
    padding: 15px;
    color: white;
    font-size: 16px;
}

.edit-form td {
    background: #f4f4f4;
    padding: 4px 12px 4px;
    color: #333;
}

.edit-form a {
    color: #0888bd;
    text-decoration: none;
}

.btn-save {
    border: 0;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    background: url(../images/cms/bg-button.png) no-repeat;
    width: 52px;
    height: 31px;
    padding-bottom: 2px;
    margin-top: -8px;
}

    .btn-save:hover {
        background: url(../images/cms/bg-button-hover.png) no-repeat;
    }

h4.alert_error {
    background: url("../images/cms/icn_alert_error.png") no-repeat scroll 10px 10px #F3D9D9;
    border: 1px solid #D20009;
    border-radius: 5px 5px 5px 5px;
    color: #7B040F;
    display: block;
    font-size: 14px;
    margin: 20px 3% 0 20px;
    padding: 10px 0;
    text-indent: 40px;
    width: 95%;
}

h4.alert_success {
    background: url("../images/cms/icn_alert_success.png") no-repeat scroll 10px 10px #E2F6C5;
    border: 1px solid #79C20D;
    border-radius: 5px 5px 5px 5px;
    color: #32510F;
    display: block;
    font-size: 14px;
    margin: 20px 3% 0 20px;
    padding: 10px 0;
    text-indent: 40px;
    width: 95%;
}

#buttonList {
    padding-left: 12px;
    margin-bottom: 49px;
}

    #buttonList a {
        float: left;
        padding-right: 5px;
        background: url('/images/bg-nav.gif') repeat-x;
        color: #fff;
        text-decoration: none;
        height: 44px;
        line-height: 44px;
        width: 120px;
        text-align: center;
    }

        #buttonList a:hover, #buttonList a.active {
            background: url('/images/bg-nav-hover.gif') repeat-x;
        }

.btn-search {
    background: url('/ibew/images/bg-nav.gif') repeat-x;
    color: #fff;
    height: 31px;
    border: 0;
}

    .btn-search:hover {
        background: url('/ibew/images/bg-nav-hover.gif') repeat-x;
    }

.nsf td {
    color: red;
}

.hidden {
    display: none;
}

.push-right {
    margin-left: 22px;
}

.company-months-paid-for th {
    background: url('/ibew/images/bg-table-header.png') repeat-x;
    font-weight: bold;
}

.company-months-paid-for td, .company-months-paid-for th {
    border: 1px solid #cdcdcd !important;
    font-weight: bold;
    padding: 0 4px;
    text-align: center !important;
    color: #0888bd !important;
}

.span-reset {
    display: inline !important;
    padding: 0 !important;
    border-left: none !important;
}

.io-row td, .due span {
    background-color: #ebf7ff !important;
}

.lu-row td, .total span {
    background-color: #e6f9cf !important;
}

.total, .bold {
    font-weight: bold;
}

.button-wrap {
    padding: 8px;
}

.tab-list {
    display: block;
    margin-left: 20px;
    overflow: hidden;
}

    .tab-list li {
        float: left;
        margin-bottom: 4px;
        margin-right: 4px;
        overflow: hidden;
    }

        .tab-list li a {
            background: #292929;
            color: #fff;
            display: block;
            font-size: 16px;
            padding: 16px 24px;
        }

            .tab-list li a:hover, .tab-list li a.active {
                background: #0888bd;
                text-decoration: none;
            }

.tab-container {
    background: #fefefe;
    border: 1px solid #bebebe;
    margin: 0 20px;
}

/* styles for validation helpers */
.field-validation-error {
    color: #ff0000;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error, .input-validation-error {
    border: 1px solid #ff0000;
    border-color: #ff0000 !important;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}


.accountRetrieval .holder {
    margin: 0 -15px;
    color: #666;
}

.accountRetrieval .forgotLoginContainer {
    overflow: auto;
    float: left;
    width: 50%;
    padding: 0 15px;
}

.accountRetrieval form {
    padding: 10px 0;
}

    .accountRetrieval form input.input-validation-error {
        margin-bottom: 20px;
    }

.forgotLoginContainer h2 {
    background: none repeat scroll 0 0 #373737;
    border-bottom: 1px solid #070707;
    border-radius: 3px 3px 0 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 18px;
    padding: 15px 17px;
}

.forgotLoginContainer .form, .forgotLoginContainer p {
    padding: 10px 0;
}

.menu-open {
    margin-left: 200px;
}

.icon {
    width: 35px;
    height: 38px;
    display: inline-block;
    background: url(../images/cms/sprite.png) no-repeat left top;
}

.icon-inspections {
    background-position: 0 -5px;
}

.icon-installation {
    background-position: -39px -5px;
}

.icon-vessels {
    background-position: -77px -5px;
}

.icon-reporting {
    background-position: -115px -5px;
}

.icon-users {
    background-position: -153px -5px;
}

.icon-licencsing {
    background-position: -194px -5px;
}

.icon-support {
    background-position: -234px -5px;
}

/* Page Title */
.page-heading {
    width: 100%;
    display: inline-block;
}

    .page-heading h1 {
        margin-top: 0;
        margin-bottom: 0;
        display: inline-block;
    }

    .page-heading .action-btn {
        float: right;
        display: inline-block;
        margin-top: 2px;
    }

        .page-heading .action-btn li {
            float: left;
            display: inline-block;
            margin-left: 5px;
        }

/* Button */
a.btn, input[type="submit"].btn, .button, input[type="submit"], input[type="button"] {
    font: 11px/1.4 "Roboto",sans-serif;
    font-weight: 500;
    color: #FFF;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 3px;
    border: 0;
    display: inline-block;
    background: #bebebe;
}

a.btn {
    padding: 7px 18px;
}

a.btn-primary, input[type="submit"].btn-primary, input[type="button"].btn-primary {
    background: #00A9DF;
    margin: 10px 0;
}

    a.btn-primary:hover, input[type="submit"].btn-primary:hover, input[type="button"].btn-primary:hover {
        background: #26BEEF;
    }

a.btn-secondary, input[type="submit"].btn-secondary, .button, input[type="submit"], input[type="button"] {
    background: #333;
}

    a.btn-secondary:hover, input[type="submit"].btn-secondary:hover, .button:hover, .button:active, input[type="submit"]:hover, input[type="button"]:hover {
        background: #585858;
    }

    a.btn.delete, input[type="submit"].btn.delete {
        background: red;
    }

        a.btn.delete:hover, input[type="submit"].btn.delete:hover {
            background: #DD1616;
        }

    a.btn-large, input[type="submit"].btn-large {
        font-size: 13px;
        padding: 10px 20px;
    }

.table-responsive a.btn, .table-responsive input.btn[type="submit"], .table-responsive .button, .table-responsive input[type="submit"], .table-responsive input[type="button"] {
    padding: 6px;
    text-align: center;
    vertical-align: top; /*height:37px;*/
    min-width: 85px;
    word-wrap: normal;
}


/* Table */
.table-responsive {
    margin: 1em 0;
    width: 100%;
    overflow: hidden;
}

    .table-responsive tr {
        border-top: 1px solid #EDEDED;
        border-bottom: 1px solid #ddd;
    }

        .table-responsive tr:nth-child(even) {
            background: #FAFAFA;
        }

    .table-responsive th {
        display: none;
    }

    .table-responsive td {
        display: block;
        font-size: 16px;
        color: #333;
        line-height: 26px;
        font-weight: 300;
        word-wrap: break-word;
        padding-left: 7.5em;
    }

        .table-responsive td:first-child {
            padding-top: .5em;
        }

        .table-responsive td:last-child {
            padding-bottom: .5em;
        }

        .table-responsive td:before {
            content: attr(data-th) ": ";
            font-weight: bold;
            width: 7.5em;
            display: inline-block;
            margin-left: -7.5em;
        }

    .table-responsive th, .table-responsive td {
        text-align: left;
        vertical-align: middle;
        margin: 10px 10px 10px 20px;
    }

    .table-responsive thead tr {
        border-top: 0;
    }

    .table-responsive th, .table-responsive td:before {
        color: #111;
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
    }

        .table-responsive th a {
            color: #111;
            font-size: 18px;
            font-weight: 500;
        }

    .table-responsive td form {
        display: inline-block;
    }

        .table-responsive td form.download {
            padding-left: 5px;
        }

.page-header {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

.page-search {
    float: left;
    display: inline-block;
}

.action-btn {
    float: right;
    display: inline-block;
}

.inline_form {
    display: inline-block;
}

    .inline_form .btn {
        padding: 4px 15px;
        vertical-align: inherit;
    }

.mobile-sort, .searchBox {
    display: inline-block;
    float: left;
    margin-right: 10px;
    position: relative;
}

    .mobile-sort select {
        display: inline-block;
    }

    .searchBox i.fa {
        position: absolute;
        left: 10px;
        top: 10px;
        font-size: 14px;
        color: #666;
    }

    .searchBox input[type="text"] {
        padding-left: 30px;
    }

    .searchBox select {
        display: inline-block;
    }

.table-responsive-1 {
    margin: 1em 0;
    width: 100%;
}

    .table-responsive-1 thead tr {
        border-top: 0 none;
    }

    .table-responsive-1 tr {
        border-top: 1px solid #EDEDED;
        border-bottom: 1px solid #ddd;
    }

        .table-responsive-1 tr:nth-child(even) {
            background: #FAFAFA;
        }

    .table-responsive-1 td {
        display: block;
        font-size: 16px;
        color: #333;
        line-height: 26px;
        font-weight: 300;
        word-break: break-all;
        padding-left: 7.5em;
    }

    .table-responsive-1 th {
        color: #111;
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: left;
    }

        .table-responsive-1 th a {
            color: #111;
            font-size: 18px;
            font-weight: 500;
        }

    .table-responsive-1 th, .table-responsive-1 td {
        display: table-cell;
        padding: 1em;
    }

        .table-responsive-1 th a.sort-desc:after, .table-responsive th a.sort-asc:after {
            content: '\f0d7';
            font-family: FontAwesome;
            margin-left: 5px;
        }

        .table-responsive-1 th a.sort-asc:after, .table-responsive th a.sort-desc:after {
            content: '\f0d8';
            font-family: FontAwesome;
            margin-left: 5px;
        }



.section-block {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 30px;
}

/* Inspection Checklist */
.form-header {
    border-bottom: 1px solid #000;
    overflow: auto;
    padding: 5px 0;
}

    .form-header h2 {
        margin-bottom: 0;
        float: left;
        font-size: 25px;
    }

        .form-header h2:before {
            content: '\f078';
            font-size: 18px;
            font-family: FontAwesome;
            margin-right: 11px;
        }

        .form-header h2.closed:before {
            content: '\f054';
            margin-right: 16px;
        }

    .form-header div {
        float: right;
        font-size: 20px;
        margin-top: 5px;
    }

        .form-header div i:after {
            content: '\f00d';
            font-size: 17px;
            font-family: FontAwesome;
            color: red;
            margin-left: 7px;
        }

        .form-header div.complete i:after {
            content: '\f00c';
            color: rgb(13, 197, 13);
            margin-left: 2px;
        }

.question-container {
    margin-bottom: 40px;
    display: none;
}

    .question-container .table-responsive {
        margin: 0 1%;
        width: 98%;
    }

.floatingHeader {
    position: fixed;
    top: 0;
    visibility: hidden;
}

.references {
    display: none;
}

/*.model-box{max-width:450px; width:100%; display:table; margin:100px auto;}
.model-box .model-box-inner{ width:100%; padding:20px 30px 30px; background:#F9F9F9; display:table; border-radius:3px;}
.model-box .logo{ max-width:250px; margin:0 0 20px;}
.model-box .form{ padding:0;}
.model-box .form label{ font-weight:500; margin-bottom:3px; display:table;}
.model-box .form p{ margin-bottom:10px;}
.model-box h1{ background:#333; color:#FFF; margin:-20px -30px 20px; padding:10px 20px; border-radius:3px 3px 0 0; font-size:22px;}*/

.support-form {
    max-width: 100%;
    float: left;
    padding: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .support-form p {
        margin-bottom: 20px;
    }

    .support-form h3 {
        margin-bottom: 12px;
    }


.support-contact-info {
    /*max-width: 637px;*/
    float: right;
    width: 100%;
    margin-left: 5%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .support-contact-info h3 {
        margin-bottom: 8px;
    }

    .support-contact-info ul {
        margin-left: 16px;
    }

        .support-contact-info ul li {
            margin-bottom: 10px;
            font-size: 17px;
        }

            .support-contact-info ul li p {
                margin-left: 6px;
                color: #666;
                font-size: 14px;
            }

            .support-contact-info ul li:before {
                font-family: 'FontAwesome';
                content: '\f095';
                margin: 0 5px 0 -15px;
                color: #00A9DF;
            }

            .support-contact-info ul li#location:before {
                content: "\f1ad";
            }

.tabs {
    display: block;
    overflow: auto;
    border-bottom: 1px solid black;
    margin-bottom: 20px;
}

    .tabs li {
        display: inline-block;
        text-decoration: none;
        background-color: #fff;
        padding: 5px 10px;
        margin-left: 3px;
        border: 1px solid #000;
        border-bottom: none;
        font-size: 15px;
        -webkit-border-top-left-radius: 7px;
        -webkit-border-top-right-radius: 7px;
        -moz-border-radius-topleft: 7px;
        -moz-border-radius-topright: 7px;
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
    }

        .tabs li a {
            display: block;
            color: #000;
            font-size: 11px;
        }

            .tabs li a .licence-count {
                color: rgb(37, 153, 199);
                font-weight: bold;
            }

        .tabs li:hover {
            background: #E8E7E7;
            -webkit-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -ms-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
        }

        .tabs li.active {
            background: black;
            color: #fff;
            box-shadow: 6px 4px 5px #888888;
        }

            .tabs li.active a {
                color: #fff;
            }



.licensing-content form {
    max-width: 500px;
}

    .licensing-content form input[type='submit'] {
        display: block;
        margin-top: 14px;
        float: none;
    }

.licensing-content h3 {
    font-size: 23px;
    margin: 12px 2px;
}

.highlight {
    color: #666;
}


/*Create Inspection Page*/

#addOnContainer {
    overflow: auto;
    clear: both;
}

.form-category {
    overflow: auto;
    margin-bottom: 8px;
}

.selection-options {
    font-size: 15px;
    float: right;
    display: block;
    margin-top: 3px;
}

.category-header {
    clear: both;
    margin: 10px 0 10px 0;
    border-bottom: 1px solid #ccc;
    display: block;
    overflow: auto;
    padding: 3px;
    background: #eee;
}

.chk_container {
    width: 33%;
    float: left;
}

.row {
    overflow: auto;
}

.col-2 {
    width: 50%;
    float: left;
    margin: 0 0% 0 0;
    padding: 0 1%;
}

.archived {
    width: auto;
    margin-top: 15px;
}

.col-sm-1 {
    width: 35%;
    float: left;
    margin: 0 0% 0 0;
    padding: 0 1%;
}

.inspection-creation-header {
    clear: both;
    margin: 15px 0 0 0;
    padding: 0;
    font-size: 20px;
}

.count {
    display: inline-block;
    float: right;
}

.pagination-container {
    display: inline-block;
}

/*  Media Queries */
@media screen and (min-width:981px) {
    #sidebar, #adminmenuback {
        display: inline-block!important;
    }
}

@media screen and (max-width:1199px) {
    .table-responsive th, .table-responsive td:before, .table-responsive th a, .table-responsive td a {
        /*font-size: 14px;*/
    }

    .table-responsive td {
        font-size: 14px;
    }

    .table-responsive a.btn, .table-responsive input.btn[type="submit"], .table-responsive .button, .table-responsive input[type="submit"] {
        width: 90px;
    }
}

@media screen and (max-width:980px) {
    #header .logo {
        margin-left: 15px;
    }

    .menu-icon {
        display: inline-block;
        padding: 6px 15px;
        color: #999;
        background: #333;
        font-size: 25px;
        cursor: pointer;
        float: left;
    }

    #sidebar, #adminmenuback {
        display: none;
        max-width: 200px;
        width: 100%;
    }

    #sidebar {
        height: auto;
    }

    #content {
        height: auto;
    }

    #sidebar {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 70px;
        width: auto;
        max-width: 100%;
        background: #333;
        z-index: 1;
    }

    #adminmenuback {
        display: none!important;
    }

    #nav a {
        padding: 0 10px 7px;
    }

        #nav a span.icon {
            background-size: 350px;
            height: 26px;
            width: 26px;
            top: 7px;
        }

        #nav a span.icon-inspections {
            background-position: 0 -4px;
        }

        #nav a span.icon-installation {
            background-position: -27px -4px;
        }

        #nav a span.icon-vessels {
            background-position: -54px -4px;
        }

        #nav a span.icon-reporting {
            background-position: -83px -4px;
        }

        #nav a span.icon-users {
            background-position: -110px -4px;
        }

        #nav a span.icon-licencsing {
            background-position: -140px -4px;
        }

    a.licencsing:after {
        margin-top: 21px;
    }



    #nav a span.icon-support {
        background-position: -167px -4px;
    }
}

@media screen and (max-width:900px) {
    .chk_container {
        width: 50%;
    }
}

@media screen and (max-width:800px) {
    #login-wrap {
        margin: 7% 30px auto;
        width: auto;
        display: block;
    }
}

@media screen and (max-width:700px) {
    .chk_container {
        width: 100%;
    }

    .selection-options {
        float: none;
    }

    .col-2 {
        float: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }
}

@media screen and (max-width:1395px) {
    .table-responsive .btn, .table-responsive-1 .btn, .table-responsive .inline_form .btn {
        margin-top: 5px;
        /*font-size: 12px;*/
    }

    /*.table-responsive td {
        word-break: break-all;
    }*/

    .table-responsive td .btn {
        word-break: normal;
    }
}

@media screen and (min-width:768px) {
    .table-responsive th, .table-responsive td {
        padding: .5em !important;
    }
}

/*@media (min-width: 600px) and (max-width: 768px) {
    .table-responsive th, .table-responsive td {padding: 0.5em !important;}
}*/

@media screen and (min-width:600px) {
    .page-search .mobile-sort {
        display: none;
    }

    .top-link {
        display: none;
    }

    .table-responsive td:before {
        display: none;
    }

    .table-responsive th, .table-responsive td {
        display: table-cell;
        padding: .25em .5em;
    }

    .m-width {
        min-width: 110px;
    }

    .table-responsive th:first-child, .table-responsive td:first-child {
        padding-left: 0;
    }

    .table-responsive th:last-child, .table-responsive td:last-child {
        padding-right: 0;
    }

    .support-contact-info {
        width: 60%;
    }

    .support-form {
        width: 35%;
    }
    /*#adminmenuback.active{ display:inline-block!important;}*/
}

@media screen and (max-width:767px) {
    .buttons li {
        width: 100%;
        margin-bottom: 20px;
    }

    .mobile-sort, .searchBox {
        width: 100%;
        margin: 0 0 15px;
    }

    .action-btn, .action-btn a {
        width: 100%;
        text-align: center;
    }

    .action-btn {
        padding: 10px 0;
    }

    .page-search {
        width: 100%;
    }

    .mobile-sort label {
        width: 100%;
        display: inline-block;
        margin-bottom: 5px;
    }

    .mobile-sort select {
        float: left;
        display: inline-block;
        width: 50%;
    }

        .mobile-sort select:last-child {
            float: right;
            width: 48%;
        }

    .searchBox input[type="text"] {
        float: left;
        max-width: 60%;
        width: 100%;
    }

    .searchBox input[type="submit"] {
        float: right;
        max-width: 38%;
        width: 100%;
    }

    .searchBox select {
        display: inline-block;
    }

    .table-responsive th, .table-responsive td:before, .table-responsive th a, .table-responsive td a {
        font-size: 13.5px;
    }

    .table-responsive td, .table-responsive .btn, .table-responsive-1 .btn, .table-responsive .inline_form .btn {
        font-size: 12px;
    }

    .table-responsive a.btn, .table-responsive input.btn[type="submit"], .table-responsive .button, .table-responsive input[type="submit"] {
        height: 30px;
    }
}

@media screen and (max-width:600px) {
    #login-wrap {
        margin: 0;
        width: 100%;
        display: block;
    }

    .page-search .mobile-sort {
        display: inline-block;
    }

    .login {
        padding: 5%;
    }

    #header {
        padding: 10px 20px 20px;
    }

        #header .block {
            display: none;
        }

        #header .logo {
            float: right;
            max-width: 70%;
        }

    .accountRetrieval .forgotLoginContainer {
        width: 100%;
        margin-top: 20px;
    }

    .top-link {
        display: inline-block;
        width: 100%;
        margin-bottom: 10px;
    }

        .top-link li {
            display: inline-block;
            float: left;
            color: #b6b6b6;
            font-size: 14px;
        }

            .top-link li:last-child {
                float: right;
            }

            .top-link li a:not(.btn) {
                color: #b6b6b6;
            }

            .top-link li a:hover {
                color: #fff;
            }

    #header .logo {
        margin-left: 7px;
    }

    #sidebar {
        top: 95px;
    }

    #content {
        padding: 20px;
    }

    .page-heading h1 {
        width: 100%;
    }

    .page-heading .action-btn {
        float: left;
    }

        .page-heading .action-btn li {
            margin-left: 0;
            margin-right: 5px;
        }

    .table-responsive-1 th, .table-responsive-1 th a {
        font-size: 15px;
    }

    .table-responsive-1 th, .table-responsive-1 td {
        padding: 10px 5px;
    }

        .table-responsive-1 th.created, .table-responsive-1 td.created {
            display: none;
        }

    .searchBox .btn {
        margin-top: 0;
    }

    .table-responsive-1 th a {
        pointer-events: none;
    }

        .table-responsive-1 th a:after {
            display: none;
        }

    #header.header-acceptinvite .logo {
        float: left;
        margin-left: 0;
        max-width: 60%;
    }

    #header.header-acceptinvite .top-link {
        display: none;
    }

    #header.header-acceptinvite .block {
        display: block;
        margin-top: 5px;
    }
}

@media screen and (max-width:480px) {
    .table-responsive td > .btn:first-child, .table-responsive-1 td > .btn:first-child, table td > .inline_form:first-child .btn {
        margin-left: -4px;
    }
}

@media screen and (max-width:380px) {
    #header.header-acceptinvite .logo, #header.header-acceptinvite .block {
        max-width: 100%;
        width: 100%;
        display: inline-block;
        text-align: center;
    }

    #header.header-acceptinvite .block {
        margin-top: 15px;
    }
}

@media screen and (max-width:300px) {
    .top-link li {
        font-size: 12px;
    }

    #sidebar {
        top: 92px;
    }
}

#newPlatformLink {
    float: right;
}

.ui-datepicker-title select {
    display: inline;
    padding: 0;
}

.action-btn.checklist {
    margin-top: 10px;
}

h1#checklist {
    float: left;
    margin-bottom: 10px;
}

@media screen and (min-width:500px) {
    .tabs li a {
        font-size: 15px;
    }
}


.notification {
    color: #555;
    border-radius: 10px;
    /*font-family:Tahoma,Geneva,Arial,sans-serif;*/
    font-size: 13px;
    padding: 10px 36px;
    margin: 10px 0;
}

    .notification span {
        font-weight: bold;
        text-transform: uppercase;
    }

.error {
    background: #ffecec url('/images/error.png') no-repeat 10px 50%;
    border: 1px solid #f5aca6;
}

.success {
    background: #e9ffd9 url('/images/success.png') no-repeat 10px 50%;
    border: 1px solid #a6ca8a;
}

.warning {
    background: #fff8c4 url('/images/warning.png') no-repeat 10px 50%;
    border: 1px solid #f2c779;
}

.notice {
    background: #e3f7fc url('/images/notice.png') no-repeat 10px 50%;
    border: 1px solid #8ed9f6;
}


.uploadsLink {
    /*margin-top: 5px;*/
}

.optionLink {
    margin-bottom: 5px;
}

.inspection-action {
    content: "\f071";
    color: rgb(255, 116, 0);
    font-size: 23px;
    margin-top: 8px;
}

.unanswered .inspection-action {
    color: #00A9DF;
}

.note-icon {
    font-size: 25px;
    margin-top: 8px;
}

tr .action, tr .note {
    display: none;
}

    tr .action form, tr .note form {
        background: #eee;
        border-radius: 5px;
        width: 98%;
        padding: 1%;
        overflow: auto;
        margin-top: 4px;
    }

        tr .action form .fa-exclamation-triangle {
            margin-left: 4px;
        }

        tr .action form h6, tr .note form h6 {
            margin: 0;
            display: inline;
            font-size: 17px;
            margin-left: 4px;
        }

        tr .action form textarea, tr .note form textarea {
            width: 100%;
            height: 100px;
            resize: vertical;
            margin-bottom: 6px;
        }

    tr .action input[type='submit'], tr .note input[type='submit'] {
        font-size: 0.7em;
        float: right;
    }


.row-overlay {
    position: absolute;
    background: #000;
    opacity: 0.8;
    text-align: center;
    display: table;
    border-radius: 2px;
    border: 1px solid #00A9DF;
}

    .row-overlay .content {
        display: table-cell;
        vertical-align: middle;
        color: #fff;
        padding: 7px;
    }

    .row-overlay .fa {
        font-size: 30px;
        margin-right: 8px;
    }

.charts {
    text-align: center;
    padding-top: 10px;
}

.col-3 > .chart-img {
    width: 33%;
}

.col-2 > .chart-img {
    margin-top: 100px;
    /*width: 100%;*/
}


.error-message {
    color: red !important;
}
