﻿html, body {
    height: 100%;
}

body {
    color: #272727;
    font-family: "Open Sans", Arial, sans-serif;
}

.no-scroll {
    overflow: hidden;
}

.clear {
    clear: both;
}

.text-muted {
    color: #a2a2a2;
}

a:focus {
    outline: 0;
}

.icon {
    background-color: transparent;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    text-indent: -9999px;
}

.react-icon {
    background-color: transparent;
    background-repeat: no-repeat;
    display: block;
/*    position: absolute;*/
    text-indent: -9999px;
}

.unselectable {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.selectable-text {
    -moz-user-select: text;
    -khtml-user-select: text;
    -webkit-user-select: text;
    user-select: text;
}

[draggable] {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    /* Required to make elements draggable in old WebKit */
    -khtml-user-drag: element;
    -webkit-user-drag: element;
}

/* BUTTONS
-----------------------------*/
.btn {
    background-image: none;
    border: 0;
    color: #fff;
    font-size: 18px;
    padding: 9px 12px;
    text-shadow: none;
}

    .btn:hover {
        color: #fff;
    }

.btn-primary, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    color: #fff;
    border-radius: 2px;
    background-color: #00a651;
    border-color: transparent;
}

    .btn-primary:hover {
        background-color: #01813f;
    }

.btn-default, .btn-default:focus {
    background-color: #707376;
}

    .btn-default:hover {
        background-color: #414345;
    }

.btn-danger {
    background-color: #cc0000;
}

    .btn-danger:hover {
        background-color: #ae0202;
    }

.btn-strip {
    background: 0;
    border: 0;
    box-shadow: none;
}

.btn-delete {
    background-position: -48px -28px;
    top: 11px;
    right: 12px;
    width: 16px;
    height: 16px;
}


/* DROPDOWNS
-----------------------------*/
.modal-content, .dropdown-menu {
    border: 0;
    border-radius: 0;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}

.dropdown-menu {
    background-color: #f8f8f8;
    font-size: 13px;
    margin-top: 10px;
    padding: 7px 0;
}

    .dropdown-menu .dropdown-header {
        color: #272727;
        font-weight: bold;
    }

    .dropdown-menu .divider {
        background-color: #c5c6c7;
        margin: 4px 0;
    }

    .dropdown-menu li:not(.dropdown-header), .dropdown-menu li:not(.divider) {
        cursor: pointer;
    }

    .dropdown-menu > li > a:hover {
        background-color: #e4e3e3;
        background-image: none;
    }

.dd-menu-footer {
    background-color: #f0eeee;
    padding: 15px 0;
    text-align: center;
}

.dropdown-select .dropdown-menu {
    box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
    margin-top: 0;
    z-index: 0;
    width: 100%;
}

    .dropdown-select .dropdown-menu:before {
        display: none;
    }

.dropdown-menu:before, .dropdown-menu:after, .has-caret:before, .has-caret:after, .datepicker-dropdown.datepicker-orient-left:before, .datepicker-dropdown.datepicker-orient-left:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
}

.dropdown-menu-left:before {
    left: 7px;
}

.dropdown-menu-left:after {
    left: 8px;
}

.dropdown-menu-right:before {
    left: auto;
    right: 7px;
}

.dropdown-menu-right:after {
    left: auto;
    right: 8px;
}

.dropdown-menu::before, .has-caret:before, .datepicker-dropdown.datepicker-orient-left:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-top: 0;
    top: -7px;
    margin-left: -7px;
}

.dropdown-menu::after, .has-caret:after, .datepicker-dropdown.datepicker-orient-left:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #f8f8f8;
    border-top: 0;
    top: -6px;
    margin-left: -6px;
}

.dropup .dropdown-menu::before, .datepicker-dropdown.datepicker-orient-bottom:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #ccc;
    border-bottom: 0;
    top: auto;
    bottom: -7px;
    margin-left: -7px;
}

.dropup .dropdown-menu::after, .datepicker-dropdown.datepicker-orient-bottom:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #f8f8f8;
    border-bottom: 0;
    top: auto;
    bottom: -6px;
    margin-left: -6px;
}

.dropdown-toggle .caret {
    border-top: 7px dashed;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    color: #515151;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* MODALS 
-----------------------------*/
.modal-backdrop {
    background-color: transparent !important;
    z-index: -1;
}

.modal {
    z-index: 10050;
}

.modal-body {
    padding: 25px 20px 20px;
}

/* FORMS
-----------------------------*/
fieldset {
    margin-bottom: 17px;
}

legend {
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: bold;
    color: #272727;
    border-bottom: none;
}

select {
    cursor: pointer;
}

.placeholder {
    color: #999;
}

option {
    color: #000;
}

.form-group, .input-group {
    margin-bottom: 12px;
}

    .input-group .form-group {
        margin-bottom: 0;
    }

.form-group {
    position: relative;
}

    .form-group label {
        color: #4c4f52;
        font-size: 13px;
        font-weight: normal;
        margin-bottom: 3px;
    }

.form-control {
    color: #272727;
    font-size: 13px;
    height: 30px;
    line-height: 1.32857143;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 3px;
    padding: 4px 12px;
}


    .form-control[disabled],
    .form-control[readonly],
    fieldset[disabled] .form-control {
        background-color: #eee;
        opacity: 1;
    }

.review-time {
    height: 24px;
    padding: 0px 10px;
}

textarea.form-control {
    /*max-width: 718px;*/
    resize: vertical;
}

textarea.form-control.has-error{
    /* max-width: 718px; */
    border-color: red;
}

.form-control.datepickerfield {
    padding-right: 30px;
}

.different-tracker-type {
    background-color: #ffb36f
}

.important-message {
    font-size: 13px;
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    color: red;
}

.form-control:disabled + .btn-add {
    display: none;
}

.checkbox * {
    vertical-align: middle;
}

.checkbox label {
    padding-left: 0;
}

.checkbox input[type="checkbox"] {
    display: none;
}

    .checkbox input[type="checkbox"] + .fake-check {
        background-color: #fff;
        border: 1px solid #a2a2a2;
        border-radius: 3px;
        cursor: pointer;
        display: inline-block;
        float: left;
        height: 20px;
        margin: 0 10px 0 0;
        padding: 0;
        width: 20px;
    }

.checkbox input[type=checkbox]:checked + .fake-check:before {
    content: "\2714";
    font-size: 15px;
    color: #655a48;
    padding-left: 3px;
    text-align: center;
    line-height: 15px;
    position: relative;
    top: -2px;
}

.checkbox-txt {
    float: left;
    width: 85%;
}

.form-group .twitter-typeahead {
    display: block !important;
}

.twitter-typeahead .tt-hint[readonly] {
    background-color: #fff;
}

.twitter-typeahead .tt-input[readonly] {
    background-color: #eee !important;
}

.form-group-num .form-control[type='text'] {
    text-align: right;
}

.form-control[type='text']::-webkit-input-placeholder { /* WebKit browsers */
    text-align: left;
}

.form-control[type='text']:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    text-align: left;
}

.form-control[type='text']::-moz-placeholder { /* Mozilla Firefox 19+ but I'm not sure about working */
    text-align: left;
}

.form-control[type='text']:-ms-input-placeholder { /* Internet Explorer 10+ */
    text-align: left;
}

.form-group .dropdown-select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.form-group .dropdown-toggle {
    background-color: #f8f8f8;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #ccc;
    box-shadow: none;
    color: #272727;
    font-size: 13px;
    line-height: 27px;
    text-align: left;
    margin: 0;
    padding-left: 10px;
    height: 30px;
    position: relative;
    z-index: 1;
}

.input-group .form-group {
    display: table-cell;
    width: 50%;
}

    .input-group .form-group:first-child .form-control {
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

.input-group-btn {
    vertical-align: bottom;
    width: 50%;
}

    .input-group-btn .btn {
        background-color: #f7f7f7;
        border: 1px solid #ccc;
        color: #272727;
        height: 30px;
        width: 100%;
    }

    .input-group-btn:last-child .btn, .input-group-btn:last-child .btn-group {
        border-left: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin: 0;
        text-align: left;
    }

    .input-group-btn .dropdown-menu {
        margin-top: 0;
        width: 100%;
    }

        .input-group-btn .dropdown-menu:before, .input-group-btn .dropdown-menu:after {
            display: none;
        }

    .input-group-btn.open .btn {
        border-bottom-right-radius: 0;
    }

.form-group-ms {
    padding-top: 29px;
}

    .form-group-ms .dropdown-select {
        width: 50%;
    }

        .form-group-ms .dropdown-select .dropdown-toggle {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            width: 100%;
        }

    .form-group-ms .form-control {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.form-group .dropdown-track-type {
    left: auto;
    right: 0;
}

    .form-group .dropdown-track-type .dropdown-toggle {
        border-top-left-radius: 0;
        border-top-right-radius: 3px;
        border-left: 0;
    }

.dropdown-type .dropdown-toggle {
    width: 73px;
}

.dropdown-ph.open .dropdown-toggle-ph {
    border-bottom-left-radius: 0;
}

.form-group-ph .btn-delete {
    top: 2px;
    right: 14px;
}

.form-group .dropdown-select .caret {
    position: absolute;
    top: 10px;
    right: 14px;
    border-top: 7px dashed;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}

.form-control-ph {
    padding-left: 80px;
}

.dropdown-type .dropdown-menu-ph {
    min-width: 120px;
}

.dropdown-menu-ph > li > a {
    padding: 3px 16px;
}


.tt-menu {
    background-color: #f8f8f8;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
    width: 100%;
}

.tt-scrollable-menu {
    height: auto;
    width: 100%;
    max-height: 110px;
    overflow-x: hidden;
}

.tt-dataset-typeAheadField .tt-suggestion, .tt-dataset-typeAheadField .empty-message {
    background-color: #f7f7f7;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.2;
    padding: 3px 8px;
    word-break: break-all;
}

    .tt-dataset-typeAheadField .tt-suggestion:hover {
        background-color: #e4e3e3;
    }

.tt-dataset-typeAheadField .empty-message {
    cursor: default;
}

#passwordStrength {
    background-color: #f2f0eb;
    border: 1px solid #655a48;
    border-radius: 3px;
    color: #878686;
    display: block;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
    padding: 0;
}

    #passwordStrength.alert-error {
        padding-left: 12px;
    }

#passwordTxt {
    font-weight: bold;
}

#passwordImg {
    display: block;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
}

    #passwordImg.active {
        background-color: transparent;
    }

#passwordStrength.alert-strong #passwordImg {
    background-color: #00a651;
    width: 100%;
}

#passwordStrength.alert-medium #passwordImg {
    background-color: #feaa72;
    width: 66%;
}

#passwordStrength.alert-weak #passwordImg {
    background-color: #feffad;
    width: 33%;
}

.form-mv-gp {
    position: relative;
}

    .form-mv-gp .btn-delete {
        background-position: -48px -28px;
        bottom: 8px;
        right: 15px;
        width: 16px;
        height: 16px;
    }

.form-group .btn-add {
    cursor: pointer;
    width: 16px;
    height: 16px;
    bottom: 7px;
    right: 14px;
}

.field-icon {
    padding-right: 30px;
}

.btn-group .btn:only-child {
    float: none;
}

.form-group.required .control-label:after {
    content: "*";
    color: red;
}

.expanding-form-control {
    position: relative;
}

    .expanding-form-control > pre {
        display: none;
        font-size: 13px;
        line-height: 1.32857143;
        min-height: 33px;
        border-radius: 3px;
        padding: 8px 12px;
        display: block;
        visibility: hidden;
        -webkit-transition: min-height 0.3s;
        -moz-transition: min-height 0.3s;
        transition: min-height 0.3s;
        white-space: pre-wrap;
    }

    .expanding-form-control.active > pre {
        min-height: 78px;
    }

    .expanding-form-control > .form-control {
        min-height: 33px;
        overflow: hidden;
        padding: 8px 12px;
        resize: none;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        -webkit-transition: min-height 0.3s;
        -moz-transition: min-height 0.3s;
        transition: min-height 0.3s;
    }

        .expanding-form-control > .form-control:focus {
            min-height: 78px;
        }

        .expanding-form-control > .form-control.has-content {
            background-color: #f7f7f7;
            cursor: pointer;
        }

            .expanding-form-control > .form-control.has-content:focus {
                background-color: transparent;
                cursor: text;
            }

/* Temporary Multi Value Form Group*/
.form-group-mval {
    position: relative;
}

    .form-group-mval .icon-type {
        top: 7px;
        left: 14px;
        z-index: 1;
    }

    .form-group-mval label {
        display: none;
    }

    .form-group-mval .form-control {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        float: left;
        width: 70%;
    }

    .form-group-mval .mval-type .form-control {
        background-color: #f8f8f8;
        border-radius: 3px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-right: 0;
        width: 30%;
        padding-left: 37px;
    }

    .form-group-mval .btn-link-url {
        background-color: #f8f8f8;
        background-position: -146px -64px;
        width: 18px;
        height: 18px;
        top: 7px;
        left: 14px;
        z-index: 1;
    }

.mval-type.has-mailto .icon-email {
    display: none;
}

.form-group-mval > .form-group {
    margin-bottom: 0px;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-save-cancel{
    padding-bottom: 10px
}

.datepicker-control {
    display: flex;
    justify-content: space-between;
    margin: 0 -1rem;
}

.form-grouping-title {
    font-size: 20px;
    font-weight: bold;
    padding-left: 10px;
}

.form-grouping-separator {
    height: 1px;
    background-color: #aaa;
    border: none;
    margin: 5px;
}

.datepicker-control > select {
    margin: 0 1rem;
}

.form-save-cancel{
    padding-bottom: 10px
}

/* ERROR MESSAGING
-----------------------------*/
.form-group.has-error, .required {
    position: relative;
}

    .has-error .control-label:before, .required .control-label:before {
        content: "*";
        color: #cc0000;
        font-size: 16px;
        position: absolute;
        top: 1px;
        left: -11px;
    }

.errors {
    display: block;
    margin-top: -5px;
    padding-bottom: 5px;
}

.icon-error {
    background-position: -194px -26px;
    position: absolute;
    top: 30px;
    right: -10px;
    width: 3px;
    height: 17px;
}

.form-group-mval .icon-error, .add-entity .icon-error {
    top: 7px;
}

.error-msg {
    position: absolute;
    bottom: 42px;
    right: -20px;
    z-index: 1060;
    width: 200px;
    padding: 7px 12px 12px;
    color: #4c4f52;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    border: none;
    border: 1px solid #a2a2a2;
    border-top: 4px solid #cc0000;
    border-radius: 3px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}

    .error-msg h5 {
        font-size: 13px;
        font-weight: bold;
        margin: 0 0 9px 0;
    }

    .error-msg .dlg-close {
        top: 8px;
        right: 13px;
    }

    .error-msg:after {
        background: transparent url("/mod/Traffic.Core/content/images/modal-caret-error-s.png") 0 0 no-repeat;
        content: '';
        bottom: -13px;
        left: 45.6%;
        position: absolute;
        width: 20px;
        height: 13px;
        z-index: 1;
    }

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #cc0000;
}

.has-error .form-control {
    border-color: #cc0000;
}

/* TABLES
-----------------------------*/
.table {
    background-color: #fff;
    border-bottom: 1px solid #dedfe0;
}

    .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
        padding: 6px 10px;
    }

    .table > thead > tr > th {
        background-color: #f0eeee;
        color: #686e74;
        font-weight: normal;
    }

.table-cell-amt, .table-cell-amt input[type="text"] {
    text-align: right;
}

.table > tbody > tr > .table-cell-edit {
    padding: 3px 5px;
}

.table-cell-edit input {
    border: 0;
    padding: 4px 5px;
    height: 22px;
    line-height: 22px;
    width: 100%;
}

.table-cell-field label {
    display: none;
}

.gridItemLink {
    cursor: pointer;
}

/* LANDING
-----------------------------*/
.logo-traffic {
    display: block;
    margin: 55px auto 0 auto;
    position: relative;
    text-align: center;
    text-indent: -9999px;
    z-index: 0;
    width: 98px;
    height: 116px;
}

.home-head-img {
    text-align: center;
    margin: 35px auto 0 auto;
    max-width: 380px;
    width: 100%;
    height: 210px;
}

.home-footer {
    font-size: 12px;
    text-align: center;
}

    .home-footer p,
    .home-footer-nav {
        display: inline-block;
        padding-left: 0;
    }

        .home-footer-nav > li {
            display: inline-block;
        }

    .home-footer li:first-child a {
        border-left: 0;
    }

.home-footer-nav a {
    border-left: 1px solid #a2a2a2;
    color: #272727;
    padding-left: 2px;
}

/*  TRAFFIC APP
-----------------------------*/
#trafficApp {
    height: 100%;
    position: relative;
}

#sidePane {
    background: #000;
    overflow-y: hidden;
    position: fixed;
    left: 0px;
    float: left;
    width: 44px;
    height: 100%;
    margin-left: 0px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#navigator {
    overflow-y: auto;
    overflow-x: hidden;
    width: 250px;
}

#mainPane {
    box-sizing: border-box;
    height: 100%;
    position: relative;
}

#centerPane {
    position: fixed;
    left: 44px; /* this is the initial small view */
}

#centerPaneTop {
    background-color: #f0eeee;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #c3c4c6;
    height: 50px;
    padding: 12px 0 0 8px;
}

.main-panel-body {
    padding-top: 0px;
}


/* PAGINATION
-----------------------------*/
#gridViewPager {
    float: right;
    margin-right: 12px;
}

.traffic-pager {
    background-color: #f0eeee;
    border-top: 1px solid #c3c4c6;
    line-height: 50px;
    padding: 0 8px;
    position: relative;
    width: 100%;
    height: 50px;
}

.tab-pane-full .traffic-pager {
    padding: 0 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.page-slider {
    height: 18px;
    position: absolute;
    top: 15px;
    left: 50%;
    margin-left: -150px;
    width: 300px;
}

    .page-slider:after {
        background-color: #fff;
        content: '';
        display: block;
        width: 290px;
        height: 4px;
        position: absolute;
        top: 7px;
        left: 5px;
        z-index: 0;
    }

.page-slider-end,
.page-slider-current {
    cursor: pointer;
    font-size: 13px;
    position: absolute;
    top: 0;
    text-align: center;
    z-index: 1;
}

.page-slider-end {
    background-color: #fff;
    border-radius: 10px;
    color: #686e74;
    height: 20px;
    line-height: 20px;
    padding: 0 7px;
    min-width: 20px;
    width: auto;
}

.page-slider-first {
    left: 0;
}

.page-slider-last {
    right: 0;
}

.page-slider-current {
    background-color: #4c4f52;
    border-radius: 10px;
    color: #fff;
    line-height: 18px;
    padding: 0 7px;
    height: 18px;
    width: auto;
    left: 50%;
}

.traffic-pager .button-group {
    float: right;
    margin-top: -2px;
}

.traffic-pager .button-group-prevnext .btn {
    background-color: #4c4f52;
    background-image: none;
    font-size: 1px;
    margin: 0;
    padding: 0;
    width: 25px;
    height: 24px;
}

.traffic-pager .button-group-prevnext .btn-prev {
    border-right: 1px solid #808182;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.traffic-pager .button-group-prevnext .btn-next {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.traffic-pager .button-group-prevnext .glyphicon {
    color: #fff;
    font-size: 10px;
    top: 0;
    right: 0;
}

.user-init, .entity-avatar {
    border-radius: 2px;
    background-color: #659ba8;
    color: #fff;
    font-family: Tahoma, Verdana, Segoe, sans-serif;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 2px;
    left: 0;
}

    .user-init.alt, .entity-avatar.alt {
        background-color: #a864a8;
    }

    .user-init > .glyphicon {
        margin-left: 1px;
    }

    .user-init > .glyphicon, .entity-avatar .glyphicon {
        top: 2px;
    }

/* LOADING ANIMATION
-----------------------------*/
.spinner {
    margin: 20px auto;
    width: 60px;
    height: 60px;
    position: relative;
}

.spinner-container > div {
    background-color: #fff;
}

.container1 > div, .container2 > div, .container3 > div {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    position: absolute;
    -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
    animation: bouncedelay 1.2s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .spinner-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.container2 {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.container3 {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.circle1 {
    top: 0;
    left: 0;
}

.circle2 {
    top: 0;
    right: 0;
}

.circle3 {
    right: 0;
    bottom: 0;
}

.circle4 {
    left: 0;
    bottom: 0;
}

.container2 .circle1 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.container3 .circle1 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.container1 .circle2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.container2 .circle2 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.container3 .circle2 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.container1 .circle3 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.container2 .circle3 {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.container3 .circle3 {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.container1 .circle4 {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.container2 .circle4 {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.container3 .circle4 {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0);
    }

    40% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* FULL PANE MODALS
-----------------------------*/
.panel {
    border: 0;
}

.panel-full {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

#fullPane {
    margin-top: 40px;
    overflow-y: hidden;
}

.panel-full-wait {
    background-color: rgba(0,0,0,0.5);
    display: table;
    text-align: center;
}

.panel-landing .spinner-container > div, .panel-full-load .spinner-container > div {
    background-color: #00a651;
}

.panel-full > .panel-heading {
    background: rgba(55,59,64,1);
    background-image: none;
    border: 0;
    border-radius: 0;
    height: 40px;
    padding: 11px 15px 0 15px;
    position: relative;
}

.tab-panel-head {
    background-color: #f0eeee;
    border-bottom: 1px solid #c3c4c6;
    height: 50px;
    position: relative;
    z-index: 1;
}

.tab-panel-head-wrap {
    margin: 0 auto;
    max-width: 1080px;
    padding-top: 13px;
    position: relative;
    text-align: center;
}

#actionsMenu {
    position: absolute;
    left: 0;
}

.tab-panel-head-wrap .panel-nav-tabs {
    margin: 0 auto;
    display: inline-block;
}

.nav-tabs > li > div {
    background-color: #4c4f52;
    border: 0;
    border-left: 1px solid #f0eeee;
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    height: 24px;
    margin: 0;
    padding: 4px 10px;
    cursor: pointer;
}

    .nav-tabs > li > div:focus {
        background-color: #4c4f52;
    }

    .nav-tabs > li.active > div, .nav-tabs > li.active > div:hover, .nav-tabs > li.active > div:focus, .nav-tabs > li > div:hover {
        background-color: #00a651;
        border: 0;
        border-left: 1px solid #f0eeee;
        color: #fff;
    }

.nav-tabs > li:first-child > div {
    border-left: none !important;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.nav-tabs > li:last-child > div {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.tab-pane-link {
    color: #ffffff;
}

.tab-pane-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.nav-tabs + .tab-panel {
    clear: left;
}

.panel-select {
    text-align: left;
    position: absolute;
    right: 0;
    top: 13px;
}

    .panel-select .dropdown-toggle {
        border-radius: 2px;
        color: #fff;
        width: 175px;
        height: 24px;
        background-color: #448ccb;
        font-size: 13px;
        line-height: 24px;
        padding: 0 10px;
        text-align: left;
        position: relative;
        z-index: 1;
    }

    .panel-select .open > .dropdown-toggle {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

        .panel-select .dropdown-toggle:focus, .panel-select .open > .dropdown-toggle.btn-default {
            background-color: #448ccb;
            color: #fff;
        }

    .panel-select .dropdown-toggle .caret {
        border-top: 7px dashed;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        color: #fff;
        position: absolute;
        top: 9px;
        right: 10px;
    }

.panel-full-tab-wrap {
    overflow-y: auto;
    padding: 20px 0;
}

    .panel-full-tab-wrap > .tab-panel {
        background-color: #fff;
        border: 1px solid #d8d9db;
        border-radius: 5px;
        max-width: 1080px;
        min-height: 100%;
        padding: 0;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .panel-full-tab-wrap > .reviewTime {
        max-width: 1800px;
    }

    .panel-full-tab-wrap > .panel-fluid-body {
        max-width: 100%;
        margin: 0 15px;
        left: 0;
        transform: translateX(0);
    }

.panel-full-body > .tab-content > .tab-pane, #RecordEditor.tab-pane-full-alt {
    padding: 30px 30px 80px 30px;
    position: relative;
}

.panel-full-body > .tab-content > .tab-pane-full-alt {
    padding: 0 0 50px 0;
    position: relative;
}

.tab-pane-full > .tab-pane-content {
    /*padding-bottom: 24px;
    position: relative;*/
}

.tab-pane-head {
    border-bottom: 1px solid #c3c4c6;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: #f0eeee;
    height: 60px;
    padding: 10px 15px;
    position: relative;
    text-align: center;
}

    .tab-pane-head h2 {
        font-size: 16px;
        font-weight: bold;
        margin: 6px 0 0;
    }

.tab-content .row {
    margin-left: -30px;
    margin-right: -30px;
}

.tab-content .col-md-3, .tab-content .col-md-6, .tab-content .col-md-12 {
    padding-left: 30px;
    padding-right: 30px;
}

.tab-panel .btn {
    /*border: 0;*/
    border-radius: 2px;
    /*color: #fff;*/
    font-size: 12px;
    margin: 0 2px;
    padding: 4px 10px 3px 10px;
    position: relative;
}

.tab-panel .btn-add-item {
    padding-left: 29px;
    position: relative;
    text-align: left;
}

.panel-btm-btns {
    width: 100%;
}

.tab-pane-full .panel-btm-btns {
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 1;
}

.panel-btm-btns .btn-primary {
    min-width: 90px;
    width: auto;
}

.btn-dd-actions, .tab-panel .btn-dd-actions {
    width: 25px;
    height: 24px;
    margin: 0;
    padding: 0;
    text-align: center;
}

    .btn-dd-actions .glyphicon {
        left: 0px;
        top: 3px;
        font-size: 16px;
    }

.wait-msg {
    color: #fff;
    display: table-cell;
    font-size: 30px;
    height: 100%;
    margin-top: 20%;
    vertical-align: middle;
}

.panel-full-load .wait-msg, .panel-landing .wait-msg {
    color: #0172ba;
    display: block;
    margin: 150px auto;
    text-align: center;
}

.cancel-btn-wrap, .clear-btn-wrap, .copy-btn-wrap, .carry-forward-btn-wrap {
    position: relative;
    display: inline-block;
}

.show-btn-section {
    display: inline-block;
}

.hide-btn-section {
    display: none;
}

.table-fourteen-percent {
    width: 14%;
}

.table-two-percent {
    width: 2%;
}

.table-seven-percent {
    width: 7%;
}

.table-twentythree-percent {
    width: 23%;
}

.table-ten-percent {
    width: 10%;
}

.dropup .dropdown-confirm::before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #ccc;
    border-bottom: 0;
    bottom: -7px;
    left: 46%;
    position: absolute;
}

.dropup .dropdown-confirm {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #f8f8f8;
    border-top: 4px solid #00a651;
    border-radius: 3px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    color: #4c4f52;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
    left: -68px;
    margin-bottom: 15px;
    padding: 14px 12px 15px 12px;
    width: 210px;
}

    .dropup .dropdown-confirm::after {
        content: '';
        display: inline-block;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #f8f8f8;
        border-bottom: 0;
        bottom: -6px;
        left: 46.5%;
        position: absolute;
    }

.dropdown-confirm .dropdown-header {
    font-weight: normal;
    line-height: 1.2;
    padding: 0;
    text-align: center;
    white-space: normal;
}

.dropdown-confirm .panel-btm-btns {
    padding-top: 15px;
    position: relative;
    bottom: 0;
}

    .dropdown-confirm .panel-btm-btns .btn {
        width: 60px;
        padding: 4px 10px 3px 10px;
    }

.caret-w {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 7px solid #6a7076;
}

.caret-e {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #6a7076;
}


/* OVERVIEW PANE
-----------------------------*/
.overview-pane-content h1 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 17px;
}

.overview-pane-content h2 {
    margin: 0 0 9px 0;
    font-size: 16px;
    font-weight: bold;
    color: #272727;
    border-bottom: none;
}

.overview-ctrl h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 12px 0 4px 0;
}

.overview-ctrl .location-view-card h3 {
    margin-top: 20px;
}

.overview-ctrl {
    margin-bottom: 30px;
}

.overview-ctrl-last-updated {
    margin-bottom: 0;
}

.overview-ctrl-recent-files .table-docs tbody tr:first-child td {
    border-top: 0;
}

.overview-ctrl-recent-files .table-docs > tbody > tr > .table-docs-item-cell {
    padding-left: 0;
}

.overview-ctrl-recent-files .table-docs tr:hover .table-docs-actions-cell .dropdown-toggle {
    display: none;
}

.overview-ctrl .btn-show-all {
    margin-top: 10px;
}

.overview-ctrl .entity-view {
    cursor: default;
}

.ov-well-list {
    padding-top: 7px;
}

.ov-loc-map {
    float: right;
}

.overview-ctrl-general-proj h1 {
    margin-bottom: 2px;
}


/* DETAILS PANE
-----------------------------*/
.code-txt {
    color: #b5b7b9;
    display: block;
    font-size: 13px;
    padding-top: 3px;
}

.conflict-msg h3 {
    color: #cc0000;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 12px 0;
    text-align: center;
}

.conflict-btns {
    margin-bottom: 23px;
    text-align: center;
    width: 100%;
}

    .conflict-btns > .btn {
        float: none;
        margin: 0 -2px;
    }

.conflict-update-msg {
    margin-bottom: 30px;
    padding-left: 40px;
    position: relative;
}

    .conflict-update-msg p {
        font-size: 12px;
        line-height: 1.2;
        margin-bottom: 0;
    }

/* FILES PANE
-----------------------------*/
#documentMenu {
    display: block;
    position: absolute;
    top: 12px;
    left: 15px;
    width: 25px;
}

.egnyteLink {
    float: right
}

.egnyteRefresh {
    float: left
}

.crumbs-docs {
    margin: 3px auto 0 auto;
    padding-left: 0;
}

    .crumbs-docs > li {
        display: inline-block;
        font-size: 16px;
        padding: 0 9px 0 20px;
        position: relative;
    }

        .crumbs-docs > li > a {
            color: #00a651;
            cursor: pointer;
        }

        .crumbs-docs > li:before {
            content: '>';
            color: #272727;
            font-weight: bold;
            position: absolute;
            top: 0;
            left: 0;
        }

        .crumbs-docs > li:first-child {
            padding-left: 0;
        }

            .crumbs-docs > li:first-child:before {
                display: none;
            }

        .crumbs-docs > li:last-child > a {
            color: #272727;
            cursor: default;
            text-decoration: none;
        }

/* ACTIVITY PANE
-----------------------------*/
.activity-add-comment-wrap {
    padding-top: 30px;
    padding-bottom: 40px;
}

.tab-pane-content-activity .today-txt {
    background-color: #f0eeee;
    border-radius: 3px;
    display: inline-block;
    font-size: 13px;
    margin-right: 18px;
    padding: 3px 0;
    width: 47px;
    text-align: center;
}

.btn-add-comment .icon-add-wh {
    top: 7px;
    left: 10px;
}

.activity-form {
    border-bottom: 1px solid #c3c4c6;
    border-top: 1px solid #c3c4c6;
    margin: 40px 0;
    padding: 20px 30px 20px 100px;
    position: relative;
}

    .activity-form:before {
        background-color: #00a651;
        content: '';
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        width: 4px;
        height: 100%;
        position: absolute;
        top: 0;
        left: -4px;
    }

.activity-comment-wrap {
    min-height: 150px;
}

.activity-form .form-group {
    margin-bottom: 0;
}

.form-control-activity-comment {
    max-width: 648px;
}

.activity-form .today-txt {
    position: absolute;
    top: 0;
    left: -70px;
}

.activity-form .panel-btm-btns {
    padding-top: 0;
    position: relative;
    bottom: 0;
}

.activity-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.activity-list-item {
    margin-bottom: 20px;
    padding-left: 70px;
    position: relative;
}

.activity-date {
    background-color: #f0eeee;
    border-radius: 2px;
    width: 47px;
    height: 47px;
    position: absolute;
    top: 0;
    left: 0;
}

    .activity-date > span {
        display: block;
        text-align: center;
        width: 100%;
    }

.activity-date-month, .activity-date-day {
    line-height: 1;
}

.activity-date-month {
    font-size: 11px;
    padding: 4px 0 1px 0;
}

.activity-date-day {
    font-size: 18px;
    font-weight: bold;
}

.activity-date-year {
    background-color: #4b4e53;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    color: #fff;
    font-size: 10px;
    height: 11px;
    line-height: 11px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.activity-list-item-head {
    height: 32px;
    padding-right: 45px;
}

.activity-time, .activity-ttl {
    float: left;
}

.activity-time {
    width: 70px;
    text-transform: uppercase;
}

.activity-ttl {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
}

.activity-user {
    float: right;
    font-size: 12px;
    height: 25px;
    line-height: 23px;
    padding-left: 40px;
    position: relative;
    width: 150px;
}

.activity-user-init {
    top: -2px;
}

.activity-user-name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 110px;
    display: block;
}

.activity-comment {
    font-size: 12px;
    line-height: 1.2;
}

.activity-details {
    border-left: 1px solid #4b4e53;
    list-style: none;
    padding: 6px 8px;
    position: relative;
}

    .activity-details:before, .activity-details:after {
        background-color: #4b4e53;
        content: '';
        height: 1px;
        width: 8px;
        position: absolute;
        left: 0;
    }

    .activity-details:before {
        top: 0;
    }

    .activity-details:after {
        bottom: 0;
    }

    .activity-details > li {
        font-size: 12px;
        line-height: 1.3;
    }


/* NOTIFICATIONS
-----------------------------*/
#notification {
    background-color: #f0eeee;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 50%;
    width: 420px;
    margin-left: -115px;
    min-height: 84px;
    z-index: 10000;
}

.notification-side {
    position: absolute;
    height: 100%;
    text-align: center;
    width: 70px;
}

.icon-notification {
    background-position: -119px -3px;
    margin: 15px auto 0 14px;
    width: 43px;
    height: 39px;
}

.notification-msg {
    background-color: #fff;
    border-left: 1px solid #c5c6c7;
    min-height: 84px;
    margin-left: 70px;
    padding: 12px 30px 12px 12px;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    width: 350px;
}

    .notification-msg h4, .notification-msg p {
        color: #4c4f52;
        font-size: 13px;
        line-height: 1.2;
    }

    .notification-msg h4 {
        font-weight: bold;
        margin: 0 0 8px;
    }

    .notification-msg b {
        font-weight: bold;
    }

.dlg-close {
    background-position: -2px -33px;
    cursor: pointer;
    top: 7px;
    right: 9px;
    width: 10px;
    height: 10px;
}

/* ENTITIES
-----------------------------*/


/* Testing entities in columns */
.entity-list.columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

    .entity-list.columns > div .col-md-6 {
        width: 100%;
        float: none;
        margin: 0;
        -webkit-column-break-inside: avoid; /* Chrome, Safari */
        page-break-inside: avoid; /* Theoretically FF 20+ */
        break-inside: avoid-column; /* IE 11 */
        display: table;
    }
/* */


.entity {
    background-color: #f7f7f7;
    border: 1px solid #c3c4c6;
    border-radius: 3px;
    font-size: 13px;
    margin: 5px 0;
    min-height: 45px;
    padding: 6px 11px 4px 11px;
    position: relative;
}

    .entity .has-clipboard {
        min-height: 52px;
    }

.entity-view {
    cursor: pointer;
}

    .entity-view.disabled {
        cursor: default;
        opacity: 0.4;
    }

        .entity-view.disabled *, .entity-view.is-read-only {
            cursor: default;
        }

    .entity-view.unsaved {
        background-color: #d1effb;
    }

    .entity-view h3 {
        font-size: 13px;
        font-weight: bold;
        margin: 12px 0 4px 0;
    }

.entity h5 {
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

.entity a, .entity a:hover {
    color: #00a651;
}

.entity-view.disabled a, .entity-view.disabled a:hover {
    color: #272727;
    text-decoration: none;
}

.entity b {
    font-weight: bold;
}

.entity .highlight {
    color: #00a651;
    font-style: normal;
}

.entity-view .icon-clipboard {
    right: 12px;
    top: 34px;
}

.entity-view .prog-bar {
    box-shadow: inset 0 0 2px #888b8f;
    margin: 2px 0 10px 0;
}

.entity-view-menu {
    position: absolute;
    top: 9px;
    right: 5px;
    z-index: 1;
}

    .entity-view-menu .dropdown-toggle-entity-view {
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        width: auto;
        height: auto;
        padding: 5px;
    }

.entity-view-ttl {
    display: block;
    font-weight: bold;
}

.entity-view-ttl-amt {
    float: right;
    position: relative;
}

.dropdown-toggle-entity-view .icon-ellipsis {
    position: relative;
}

.dropdown-menu-entity-view {
    border-radius: 3px;
    border-top: 4px solid #00a651;
    left: -61px;
    padding-bottom: 0;
}

    .dropdown-menu-entity-view .divider {
        margin: 5px 0 0;
    }

.entity-view-menu .dropdown-menu-entity-view::after {
    border-top: 6px solid #f1efef;
}

.remove-context-menu .dropdown-toggle-entity-view {
    display: none;
}

.disable-add-entity .add-entity, .read-only-entity-editor .btn-stage-item, .read-only-entity-editor .btn-delete-item {
    display: none;
}

.read-only-entity-editor .dropdown-toggle-entity-view {
    display: none;
}

.read-only-entity-editor .add-entity, .read-only-entity-editor .btn-stage-item, .read-only-entity-editor .btn-delete-item {
    display: none;
}

.entity-editor .btn-add-entity, .entity-editor + .btn-add-entity {
    margin: 15px 30px 0;
    min-width: 135px;
}

.entity-item-viewer {
    padding-bottom: 10px;
}

.entity-item-editor fieldset {
    margin-bottom: 10px;
}

    .entity-item-editor fieldset:last-child {
        margin-bottom: 0;
    }

    .entity-item-editor fieldset legend {
        font-size: 13px;
    }

.entity-edit {
    border-top: 1px solid #d8d9db;
    border-bottom: 1px solid #d8d9db;
    margin: 10px 0 8px 0;
    padding-top: 20px;
    padding-bottom: 18px;
    position: relative;
}

    .entity-edit:before {
        background-color: #00a651;
        content: '';
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        width: 4px;
        height: 100%;
        position: absolute;
        top: 0;
        left: -4px;
    }

    .entity-edit .btn-min {
        background-position: -22px -60px;
        top: 12px;
        right: 12px;
        width: 16px;
        height: 16px;
    }

    .entity-edit .btn-stg-item {
        margin: 20px auto 0 auto;
    }

.entity-editor .btn-add-item {
    margin: 0;
    min-width: 135px;
}

.row .entity-editor .btn-add-item, .entity-item-editor .row .entity-editor .btn-add-item {
    margin: 0px 30px;
}

.entity-editor .entity-item-editor .btn-add-item {
    margin: 0 0 10px 0;
}

.entity-editor .entity-view-unsaved {
    background-color: #ebf7fb;
}

.entity-item-editor {
    position: relative;
    /*z-index: 1;*/
}

.entity-edit h3 {
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

    .entity-edit h3.alt {
        margin: 15px 0 8px 0;
    }

.btn-add-entity .icon-add-wh {
    top: 7px;
    left: 10px;
}

.entity-view .btn-delete {
    background-position: 0 -60px;
    z-index: 1;
}

.entity-view.disabled .btn-delete {
    background-position: -48px -28px;
}

.entity-view-user-role, .entity-view-resource, .entity-view-head.has-icon {
    line-height: 1.2;
    margin-bottom: 8px;
    min-height: 27px;
    padding: 0 35px;
    position: relative;
}

.entity-view-head .checkmark {
    background-color: #00a651;
}

.entity-view-resource .entity-avatar, .entity-view-proj .entity-avatar {
    background-color: transparent;
}

    .entity-view-resource .entity-avatar .icon {
        background-position: -125px -86px;
        width: 25px;
        height: 25px;
        top: 0;
        left: 0;
    }

    .entity-view-proj .entity-avatar .icon-proj-briefcase {
        background-position: -198px -86px;
        width: 25px;
        height: 25px;
        top: 0;
        left: 0;
    }

.entity-view-user-role .user-init, .entity-view-head .user-init {
    top: 2px;
    left: 0;
}

.add-entity {
    position: relative;
}

    .add-entity .control-label {
        display: none;
    }

    .add-entity .typeahead {
        padding-right: 30px;
    }

    .add-entity .twitter-typeahead {
        width: 100%;
    }

    .add-entity .btn-add {
        cursor: pointer;
        bottom: 7px;
        right: 14px;
    }

/* ENTITY GRID EDITOR
-----------------------------*/

.entity-editor .btn-group-stage-entity {
    padding-top: 20px;
    width: 100%;
}

.entity-list {
    position: relative;
}

    .entity-list > div {
        position: relative;
    }

    .entity-list .btn-stage-item, .entity-list .btn-delete-item {
        cursor: pointer;
        position: absolute;
        z-index: 1;
        top: 8px;
        right: 10px;
    }

    .entity-list .btn-delete-item {
        background-position: 0 -60px;
    }

.grid-container {
    border: 1px solid #c3c4c6;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 20px;
    width: 100%;
}

.grid-editor .form-group {
    margin: 0;
}

.grid-editor .form-control, .grid-editor .twitter-typeahead .form-control[readonly] {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-weight: normal;
}

.grid-ttl-row .twitter-typeahead .form-control[readonly] {
    font-weight: bold;
}

.grid-editor .twitter-typeahead .form-control[readonly] {
    background-color: transparent !important;
    background-image: none;
}

.grid-editor .form-control {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.grid-warning {
    color: red;
    margin: -15px 0px 10px 0px;
}

.grid-editor .has-error .form-control {
    background-color: rgba(204,0,0,0.05) !important;
    box-shadow: inset 10px 0px 0px -7px #cc0000;
}

.grid-editor .has-error .icon-error {
    display: none;
}

.grid-editor .grid-cell-amt .has-error .error-msg {
    right: -80px;
}

.grid-editor .tt-dataset-typeAheadField .tt-suggestion, .grid-editor .tt-dataset-typeAheadField .empty-message {
    font-size: 12px;
    font-weight: normal;
}


.grid-row {
    border-top: 1px solid #c3c4c6;
}

.grid-sub-row {
    background-color: #ebf7fb;
}

.grid-ttl-row, .grid-head-row {
    background-color: #f7f7f7;
    color: #272727;
    font-weight: bold;
    vertical-align: top;
}

.grid-ttl-row {
    border-bottom: 1px solid #c3c4c6;
    border-top: 0;
    font-size: 13px;
    font-weight: bold;
}

    .grid-ttl-row label, .grid-cell label {
        display: none;
    }

    .grid-ttl-row .form-control, .grid-ttl-row .grid-cell-txt {
        font-size: 13px;
        font-weight: bold;
    }

    .grid-ttl-row .form-control {
        padding-right: 30px;
    }

    .grid-ttl-row ::-webkit-input-placeholder { /* WebKit browsers */
        font-weight: normal;
    }

    .grid-ttl-row :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
        font-weight: normal;
        opacity: 1;
    }

    .grid-ttl-row input:-moz-placeholder { /* Mozilla Firefox 19+ */
        font-weight: normal;
        opacity: 1;
    }

    .grid-ttl-row #nameField:-ms-input-placeholder { /* Internet Explorer 10+ */
        font-weight: normal;
    }

.grid-row .grid-cell {
    border-right: 1px solid #c3c4c6;
    float: left;
    height: 30px;
}

.grid-body-row .grid-editor > .grid-cell {
    border-right: 1px solid #c3c4c6;
}

.grid-row .grid-cell:last-child,
.grid-body-row .grid-editor > .grid-cell-btn {
    border-right: 0;
}

.grid-container > .grid-head-row:first-child {
    border-bottom: 1px solid #c3c4c6;
    border-top: 0;
}

.grid-head-row .grid-cell {
    padding: 6px 10px;
}

.grid-cell-txt {
    color: #272727;
    display: block;
    font-size: 12px;
    height: 30px;
    line-height: 2;
    padding: 4px 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.grid-cell-full {
    width: 100%;
}

.grid-row .grid-cell-btn {
    position: relative;
    width: 5%;
}

.grid-cell-btn .icon {
    cursor: pointer;
    margin-left: -8px;
    top: 7px;
    left: 50%;
}

.grid-cell-amt, .grid-cell-amt .form-control {
    text-align: right;
}

.grid-add-group-stub {
    padding-bottom: 15px;
}

    .grid-add-group-stub .form-control {
        border: 1px solid #ccc;
        border-radius: 3px;
    }

    .grid-add-group-stub .form-group label {
        display: none;
    }


/* SHARED ENTITIES
-----------------------------*/
/* CONTACTS
-----------------------------*/
.contact-det > span {
    display: block;
    position: relative;
}

.contact-desc {
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 4px;
}

.contact-phone-wrap {
    padding-top: 3px;
}

.contact-phone, .contact-email {
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
    padding: 1px 0 1px 22px;
    position: relative;
}

    .contact-phone .icon-phone {
        width: 17px;
        height: 17px;
        left: 0;
        top: 1px;
    }

    .contact-email .icon-email {
        width: 17px;
        height: 17px;
        left: 0;
        top: 1px;
    }

    .contact-email a {
        font-style: italic;
    }

/* CUSTOMER DETAILS
-----------------------------*/
.our-org-wrap {
    padding-bottom: 10px;
    text-align: center;
}

.our-org-mark {
    border-radius: 50%;
    border: 4px solid #4c4f52;
    color: #272727;
    width: 57px;
    height: 57px;
    font-size: 24px;
    line-height: 52px;
    margin: 0 auto;
    letter-spacing: -.05em;
}

/* LOCATIONS
-----------------------------*/
.loc-tabs-wrap .nav-tabs-wrap {
    text-align: center;
}

.loc-tabs-wrap .nav-tabs {
    display: inline-block;
    padding-top: 22px;
    margin-bottom: 10px;
}

.loc-tabs-wrap .tab-content {
    height: 205px;
}

/* RESOURCES
-----------------------------*/
.add-res-group {
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #f7f7f7;
    padding-right: 50px;
    position: relative;
    z-index: 1;
}

    .add-res-group .dropdown-select {
        float: left;
        position: relative;
        width: 33.333333%;
    }

    .add-res-group .dropdown-toggle {
        border: 0;
        width: 100%;
        padding-left: 20px;
        position: relative;
    }

    .add-res-group:first-child .dropdown-toggle {
        padding-left: 10px;
    }

    .add-res-group .dropdown-toggle:before {
        content: '';
        display: block;
        background: transparent url("/mod/Traffic.Core/content/images/select-arrow-e.png") right top no-repeat;
        position: absolute;
        top: 0;
        right: -11px;
        width: 11px;
        height: 30px;
    }

    .add-res-group .has-value .dropdown-toggle {
        background-color: #fff;
    }

        .add-res-group .has-value .dropdown-toggle:before {
            background-position: 0 -33px;
        }

    .add-res-group .dropdown-user .dropdown-toggle {
        border-right: 1px solid #ccc;
    }

        .add-res-group .dropdown-user .dropdown-toggle:before {
            background: none;
        }

    .add-res-group .dropdown-res-type {
        z-index: 2;
    }

    .add-res-group .dropdown-role-type {
        z-index: 1;
    }

    .add-res-group .dropdown-user {
        z-index: 0;
    }

    .add-res-group .dropdown-select .caret {
        top: 11px;
        right: 18px;
    }

    .add-res-group .dropdown-menu {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-top: 1px;
    }

    .add-res-group .dropdown-select:first-child .dropdown-menu {
        left: 0;
    }

    .add-res-group .icon-add-primary {
        cursor: pointer;
        right: 13px;
        top: 7px;
    }

.res-group-chargeunit {
    font-style: italic;
}

/* RELATED QUOTES
-----------------------------*/
.entity-rel-quote h5 > em {
    font-style: normal;
    color: #00a651;
}

.entity-rel-quote .quote-date, .entity-rel-quote .quote-desc {
    font-size: 12px;
}

.entity-rel-quote .quote-desc {
    margin: 3px 0 0;
}

.entity-rel-quote .quote-ttl-row {
    margin-top: 6px;
}

.entity-rel-quote .quote-ttl-amt {
    float: right;
    font-weight: bold;
}

/* RW GRID
-----------------------------*/
.gridViewDataGrid {
    border: 0;
    display: block;
    overflow-x: hidden;
}

.rcs-grid-content {
    background-color: transparent;
    border-spacing: 0;
    width: 100%;
    max-width: 100%;
}

.rcs-grid-content-row {
    background-color: #fff;
}

    .rcs-grid-column-head.ui-state-hover, .rcs-grid-content-row.ui-state-hover, .rcs-grid-content-row.ui-state-focus, .rcs-grid-content-row.ui-selected {
        background: #e4e3e3;
        border: 0;
    }

.rcs-grid-column-head.ui-state-hover {
    background-color: transparent;
}

.rcs-grid-column-head, .rcs-grid-content-cell {
    font-size: 13px;
    padding: 8px;
    line-height: 1.2;
    vertical-align: top;
}

.rcs-grid-column-head {
    background-color: #fff;
    color: #a7a9ac;
    display: table-cell;
}

    .rcs-grid-column-head > * {
        vertical-align: middle;
    }

.rcs-grid-content-cell {
    border-top: 1px solid #dedfe0;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .rcs-grid-content-cell.clickable {
        cursor: pointer;
    }

    .rcs-grid-content-cell.traffic-menu-col {
        overflow: visible;
        padding: 0 8px;
        vertical-align: middle;
    }

td.custom-permissions {
    overflow: visible;
    position: relative;
    z-index: 1;
}

    td.custom-permissions:before {
        background-color: #cc0000;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        z-index: 1;
    }

    td.custom-permissions:hover:after {
        background-color: #fff;
        border: 1px solid #cc0000;
        border-radius: 3px;
        padding: 5px;
        content: 'This item has custom permissions';
        font-size: 12px;
        position: absolute;
        top: 50%;
        left: 10px;
        width: 150px;
        z-index: 2;
        transform: translateY(-50%);
        text-align: center;
        white-space: normal;
    }

.rcs-grid-content-cell.traffic-menu-col .dropdown-toggle {
    width: 26px;
    padding: 5px 0;
    position: relative;
    top: -1px;
}

.rcs-grid-content-cell.traffic-menu-col .icon-ellipsis {
    position: relative;
}

.rcs-grid-sort-arrow.ui-icon {
    display: inline-block;
    margin-left: 8px;
    width: 11px;
    height: 7px;
}

.rcs-grid-sort-arrow.ui-icon-triangle-1-s, .rcs-grid-sort-arrow.ui-icon-triangle-1-s.ui-state-hover {
    background-position: -2px -4px;
}

.rcs-grid-sort-arrow.ui-icon-triangle-1-n, .rcs-grid-sort-arrow.ui-icon-triangle-1-n.ui-state-hover {
    background-position: -2px -19px;
}

.rcs-grid-column-sortable:hover {
    cursor: pointer;
}

.grid-context-menu {
    position: relative;
}

    .grid-context-menu .dropdown-menu {
        left: 45px;
        top: -11px;
        margin-top: 0;
    }

.rcs-grid-content-row:last-child .grid-context-menu .dropdown-menu {
    top: -40px;
}

.grid-context-menu .dropdown-menu:before, .grid-context-menu .dropdown-menu:after {
    display: none;
}

.grid-context-menu .dropdown-menu li {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .grid-context-menu .dropdown-menu li:hover,
    .grid-context-menu .dropdown-menu li:focus {
        color: #333;
        background-color: #e4e3e3;
    }

.no-items-wrap, .alert-danger {
    border: 0;
    box-shadow: none;
    color: #bfc0c1;
    margin-top: 100px;
    padding-top: 105px;
    text-align: center;
    text-shadow: none;
}

.no-items-ttl, .alert-ttl {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

.no-items-msg, alert-msg {
    font-size: 15px;
}

/* TABLES - DOCS
--------------------------------*/
.table-docs {
    border-bottom: 0;
}

    .table-docs > thead > tr > th, .table-docs > tbody > tr > td {
        background-color: #fff;
        display: table-cell;
        font-size: 13px;
        padding: 8px;
        line-height: 1.2;
        vertical-align: top;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .table-docs > thead > tr > th {
        border-bottom: 1px solid #ddd;
        color: #a7a9ac;
    }

.table-docs-item-head {
    cursor: pointer;
}

.table-docs .icon-sort {
    display: inline-block;
    position: relative;
    width: 11px;
    height: 7px;
}

.table-docs > tbody > tr:hover > td {
    background-color: #e4e3e3;
}

.table-docs-item-cell a {
    color: #00a651;
    cursor: pointer;
    padding-left: 32px;
    position: relative;
}

.table-docs > tbody > tr > td:first-child, .table-docs > tbody > tr > .table-docs-actions-cell {
    padding: 0;
    overflow: visible;
    max-width: 26px;
    width: 26px;
}

.table-docs > tbody > tr > td.table-docs-item-cell {
    max-width: 100px;
    width: 60%;
}

.table-docs-item-cell .icon {
    width: 20px;
    height: 20px;
    top: -2px;
    left: 0;
}

.table-docs-actions-cell .dropdown-toggle-wrap {
    position: relative;
}

.table-docs-actions-cell .dropdown-toggle {
    background-position: -128px -42px;
    display: none;
    width: 26px;
    height: 10px;
    padding: 10px 0;
    position: relative;
    top: 5px;
}

.table-docs tr:hover .table-docs-actions-cell .dropdown-toggle {
    display: block;
}

.table-docs-actions-cell .dropdown-menu {
    top: 21px;
}

/* SUMMER NOTE (WYSIWYG Editor)
--------------------------------*/
.note-editor.panel {
    border: 1px solid #ccc;
    margin-bottom: 0;
}

.note-editor .note-statusbar {
    background-color: transparent;
}

.panel-heading.note-toolbar {
    background-image: none;
    padding-left: 12px;
}

.note-style .btn-default.active {
    background-color: #ccc;
}

.note-editor .note-editing-area .note-editable {
    color: #272727;
    font-size: 13px;
    line-height: 1.32857143;
    padding: 8px 12px;
}

    .note-editor .note-editing-area .note-editable:focus {
        min-height: 67px;
    }

.note-editor-view .note-editing-area .note-editable {
    background-color: #f7f7f7;
    cursor: pointer;
}

.note-link-dialog .form-group.row {
    margin-left: 0;
    margin-right: 0;
}

.note-link-dialog .form-control.col-md-12 {
    padding: 6px 12px;
}

.note-link-dialog .checkbox input[type="checkbox"] {
    display: inline-block;
    padding-top: 0;
    margin-top: 0;
    margin-left: 0;
    position: relative;
    top: -1px;
}

.note-editor .note-editing-area .note-editable.note-editor-empty {
    color: #A6A6A6; /* placeholder text color */
}

.note-editor p {
    margin: 0; /* override the double space in p tag wraps */
}

/* MEDIA QUERIES
--------------------------------*/
@media (max-width: 320px) {
    .login-wrap {
        left: auto;
        margin: 0 auto;
        width: auto;
    }

    .login-subttl {
        margin-bottom: 30px;
    }

    .login-wrap .input-group-login-btns {
        margin-top: 15px;
    }
}

@media (max-width: 367px) {
    #actionsMenu {
        margin-right: 10px;
    }

    .panel-select .dropdown-toggle {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .page-slider {
        display: none;
    }

    .tab-panel-head-wrap > .panel-nav-tabs > li > div {
        width: 25px;
        height: 24px;
        padding: 4px 0 0;
        text-align: center;
    }

    #filterPane {
        display: none;
    }

    .panel-nav-tabs .glyphicon {
        display: block;
    }

    .panel-nav-tab-txt {
        display: none;
    }
}

@media screen and (max-height: 860px) {
    .logo-traffic {
        margin-top: 20px;
    }

    .home-head-img-custom {
        display: none;
    }
}

@media(min-width:768px) {
    #centerPane {
        left: 250px;
    }

    #sidePane {
        width: 250px;
    }

    #pageContentWrapper {
        padding: 20px;
        position: relative;
    }
}

@media(max-width:768px) {
    .tab-panel-head-wrap {
        padding: 13px 20px 0 20px;
    }

    .panel-full-tab-wrap > .tab-panel {
        border: 0;
        margin: 0 auto;
    }

    .panel-full-body > .tab-content > .tab-pane:not(.tab-pane-full-alt) {
        padding: 20px;
    }

    .tab-content .row {
        margin-left: -20px;
        margin-right: -20px;
    }

    .tab-content .col-md-6, .tab-content .col-md-12 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .entity-editor .btn-add-entity {
        margin: 10px 20px;
    }

    .row .entity-editor .btn-add-item {
        margin: 0px 20px;
    }
}

@media(max-width: 767px) {
    #modeSwitcher button {
        text-indent: -9999px;
    }

        #modeSwitcher button .icon {
            display: none;
        }

    .tab-panel-head-wrap .panel-nav-tabs {
        left: 0;
        margin-left: 0;
        position: relative;
    }

    .filter-opts > * {
        display: none;
    }

    .top-opts .btn-timetrack, .top-opts .btn-reports {
        padding-left: 15px;
        text-indent: -9999px;
    }

    .top-search {
        width: 115px;
    }

    #searchField {
        width: 90px;
    }
}

@media(min-width: 368px) and (max-width: 767px) {
    #actionsMenu {
        margin-right: 20px;
    }
}

@media(min-width:481px) and (max-width: 880px) {
    .page-slider {
        margin-left: -105px;
        width: 250px;
    }

        .page-slider:after {
            width: 240px;
        }
}

@media(max-width: 990px) {
    .loc-tabs-wrap .tab-content {
        height: auto;
    }

    .error-msg {
        left: 36%;
    }
}

.dropdown-backdrop {
    display: none;
}

.test-banner {
    height: 30px;
    width: 100%;
    background-color: red;
    font-size: large;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
}

.dropdown-backdrop {
    display: none;
}

.traffic-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.6);*/
    z-index: 9999999;
}

/*.traffic-modal-main {
    position: fixed;
    background: white;
    width: 50%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}*/

.traffic-modal-main {
    position: absolute;
    background: white;
    height: auto;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.display-block {
    display: block;
}

.display-none {
    display: none;
}

.nonbilled {
    background: #ff6b6b
}

.unbilled {
    background: #ffa656
}

.panel-body .panel-full-body .tab-panel .reviewTime {
    max-width: 1800px
}