/*
 * Base structure
 */

h1 {  font-size: 4em; margin-top: 15px; margin-bottom: 15px;  }
h2 {  font-size: 3em; margin-top: 15px; margin-bottom: 15px; }
h3 {  font-size: 2em; margin-top: 12px; margin-bottom: 12px; }
h4 {  font-size: 1.5em; margin-top: 11px; margin-bottom: 11px; }
h5 {  font-size: 1em; margin-top: 10px; margin-bottom: 10px; }

h1, h2, h3, h4, h5 {
    text-align: center;
    text-decoration: underline;
}

.theme_padding {
    padding-left: 20px;
    padding-right: 20px;
}

.not-selectable * {
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.selectable * {
    -o-user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
    user-select: text;
}

.form-horizontal .form-control-feedback {
    visibility: hidden;
}

.form-horizontal .has-feedback .form-control-feedback {
    line-height: 32px;
    visibility: visible !important;
}


.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.ml-0 {
    margin-left: 0;
}

.mr-0 {
    margin-right: 0;
}

/*
 * Global add-ons
 */

body.poweredBy {
    background-image: url(../img/poweredbytransparent250.png);
    background-repeat: no-repeat;
    background-position: bottom;
    padding-bottom: 75px;
}

.clickable,
[ng-click],
input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
}

/* input[type='checkbox']:read-only */
input[type='checkbox'][readonly] {
    pointer-events: none;
}

.sub-header {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar {
    height: 70px;
}

#loading-bar .bar {
    position: fixed;
    top: 70px;
}

/* Move down content because we have a fixed navbar that is 60px tall */
body {
    padding-top: 69px;
}
.navbar-toggle {
    margin-top: 18px;
}
.navbar-fixed-top {
    border: 0;
}
.navbar-brand {
    height: auto;
    width: auto;
    padding: 10px;
}
.navbar-logo {
    height: 50px;
    width: 140px;
}

.navbar-default .navbar-nav > li {
    background-color: white;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: white;
}
.navbar-default .navbar-nav>li>a {
    font-size: 1.5em;
    cursor: pointer;
}
.navbar-default .navbar-nav>li>a {
    user-select: none;
}

.navbar-nav {
    margin: 0;
    border: 1px solid gray;
}

/* Apply only when in top bar */
@media (min-width: 768px) {
    .navbar-default .navbar-nav > li {
        background-color: transparent;
    }

    .navbar-default .navbar-nav > li > a {
        color: white;
        line-height: 40px;
    }
    .navbar-default .navbar-nav > li > a:hover {
        color: black;
        background-color: white;
    }
    .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.open>a {
        background-image: -webkit-linear-gradient(top, #F9F9F9 0, #FFFFFF 100%);
        background-image: -o-linear-gradient(top, #F9F9F9 0, #FFFFFF 100%);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#FFFFFF));
        background-image: linear-gradient(to bottom, #F9F9F9 0, #FFFFFF 100%);
    }
    .navbar-nav {
        border: 0;
    }
}

.btn {
    margin-left: 10px;
    margin-right: 10px;
    outline: none;
}

.copyright-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
}
.copyright {
    height: 60px;
    text-align: center;
    padding: 30px 0;
}

.row.same-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
}

.row.same-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 65px;
    background-color: #f5f5f5;
}

.footer p {
    text-align: center;
}



/*
 * Sidebar
 */

/* Hide for mobile, show later */
.sidebar {
    display: none;
}
@media (min-width: 768px) {
    .sidebar {
        position: fixed;
        top: 51px;
        bottom: 0;
        left: 0;
        z-index: 1000;
        display: block;
        padding: 20px;
        overflow-x: hidden;
        overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
        background-color: #f5f5f5;
        border-right: 1px solid #eee;
    }
}

/* Sidebar navigation */
.nav-sidebar {
    margin-right: -21px; /* 20px padding + 1px border */
    margin-bottom: 20px;
    margin-left: -20px;
}
.nav-sidebar > li > a {
    padding-right: 20px;
    padding-left: 20px;
}

/*
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
    color: #fff;
    background-color: #428bca;
}
*/
.nav-sidebar {
    color: #003d77;
}

.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
    color: #1e1e1e;
    background-color: #ffd100;
}
/*
 * Main content
 */

.main {
    padding: 20px;
}
@media (min-width: 768px) {
    .main {
        padding-right: 40px;
        padding-left: 40px;
    }
}
.main .page-header {
    margin-top: 0;
}


.form-medium-size {
    max-width: 600px;
    margin: 0 auto;
}
.form-small-size {
    max-width: 300px;
    margin: 0 auto;
}

.btn-icon-left {
    margin-right: 8px;
}

.btn-icon-right {
    margin-left: 8px;
}

.row {
    margin-bottom: 15px;
}


/*
 * Placeholder dashboard ideas
 */
.placeholders {
    margin-bottom: 30px;
    text-align: center;
}
.placeholders h4 {
    margin-bottom: 0;
}
.placeholder {
    margin-bottom: 20px;
}
.placeholder img {
    display: inline-block;
    border-radius: 50%;
}
.d-inline {
    display: inline-block;
}

.ngFade {
    transition: 1s linear all;
    -webkit-transition: 1s linear all;
}

.ngFade.ng-enter {
    opacity: 0;
}

.ngFade.ng-enter.ng-enter-active {
    opacity: 1;
}

.ngFade.ng-leave {
    opacity: 1;
}

.ngFade.ng-leave.ng-leave-active {
    opacity: 0;
}

.thumb {
    border: 1px solid lightgray;
    padding: 3px;
}
.truncate {
    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.background-image-contain {
    background-image: url("");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.background-image-fill {
    background-image: url("");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.verticle-align-middle {
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
}


.sm_tab_block {
    max-width:600px;
    margin-left: auto;
    margin-right: auto;
}
.md_tab_block {
    max-width:900px;
    margin-left: auto;
    margin-right: auto;
}
.tab_block_header {
    margin-top: 10px;
    z-index: 100;
    border-bottom: 0;
}
.sub_tab_block {
    z-index: 99;
    padding: 10px;
    border: 1px solid rgb(221, 221, 221);
    top: -1px;
}

.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

p {
    margin: 20px 0 0 0;
}

.dropdown-menu li, .nav-tabs li {
    cursor: pointer;
}

.mouse-pointer {
    cursor: pointer;
}




.modules {
    text-align: center;
    margin-top: 20px;
    display: table-cell;        /* ie9 */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec */
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.modules .module {
    width: 150px;
    -webkit-box-flex: 1;        /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;           /* OLD - Firefox 19- */
    -webkit-flex: 1 0 150px;          /* Chrome */
    -ms-flex: 1 0 150px;              /* IE 10 */
    flex: 1 0 150px;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
    cursor: pointer;
    padding: 1vw;
    margin: 0 2vw 0 2vw;
}

.modules .module .icon {
    width: 100%;
    height: 120px;
}


.modules .module:hover .icon .base {
    display: none;
}
.modules .module:hover .icon .hover {
    display: block;
}
.modules .module .icon .base {
    display: block;
}
.modules .module .icon .hover {
    display: none;
}

.modules .module .icon img {
    margin: 12px auto;
    -webkit-filter: drop-shadow(5px 5px 5px #d3d3d3);
    filter: drop-shadow(5px 5px 5px #d3d3d3);
    height: 100px;
    display: block;
}

.modules .module .title {
    margin: 10px auto 10px auto;
    text-align: center;
    text-decoration: none;
}

.modules .module .notification {
    font-weight: bold;
    top: -30px;
    left: 50%;
    width: 50px;
    display: block;
    position: relative;
    background-color: orange;
    border-radius: 22px;
    padding: 3px;
}

.modules .module .complete {
    display: block;
    position: relative;
    top: -70px;
    right: -20px;
    background-color: transparent;
}

.modules .module .complete img {
    margin: 0;
    height: 50px;
    margin-top: 10px;
}


.components .component .images {
    margin-bottom: 5px;
}
.components .component .images .complete img {
    height: 40px;
    position: absolute;
    margin-left: -30px;
    margin-top: 20px;

    -webkit-filter: drop-shadow(2px 2px 2px #d3d3d3);
    filter: drop-shadow(2px 2px 2px #d3d3d3);
}

.components .component .images .component-image {
    height: 60px;

    -webkit-filter: drop-shadow(5px 5px 5px #d3d3d3);
    filter: drop-shadow(5px 5px 5px #d3d3d3);
}



.dont-break-out {
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;

    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;

    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}


.components {
    text-align: center;
    margin-top: 20px;
    display: table-cell;        /* ie9 */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec */
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;

}

.components .component {
    width: 200px;
    -webkit-box-flex: 1;        /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;           /* OLD - Firefox 19- */
    -webkit-flex: 1 0 200px;          /* Chrome */
    -ms-flex:  1 0 200px;              /* IE 10 */
    flex:  1 0 200px;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
    cursor: pointer;
    padding: 1vw;
    margin: 0 2vw 1vh 2vw;
}

.components .component .title {
    margin: 0 auto 10px auto;
    text-align: center;
    text-decoration: none;
}

.components .component .complete {
    color: lightgreen;
    line-height: 40px;
}
.components .component .complete .fa {
    font-size: 40px;
}


.table-icon {
    width: 40px;
}
.table-icon img {
    width: 40px;
}

/*
.table-striped tr:hover {
    background-color: #d4dde8 !important;
}
*/

.demo-user {
    background-color: rgba(255, 160, 122, 0.27058823529411763) !important;
}

.caret, .fa, .btn i {
    color: inherit;
}

.btn-back {
    position: absolute;
    margin: 0;
}

.btn-bar-answer {
    margin: 0;
    padding-left: 8px;
    padding-right: 8px;
}


.title-completed {
    font-size: 12px;
}

.question-title {
    font-size: 25px;
}

.question-answers {
    margin: 10px 0;
}

.question-answer.even {
    background-color: #d3d3d330;
}
.question-answer {
    margin-bottom: 0;
    padding: 10px 0;
}

.question-answer-title {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 10px 10px 30px;
    text-align: center;
    white-space: pre-wrap;
}

.question-answer-last {
    font-size: 14px;
    color: grey;
    font-style: italic;
    line-height: 16px;
    text-align: center;
    margin-bottom: 10px;
}

.question-answer-response {

}

.question-answer-response .input-group {
    margin: auto;
}
.question-answer-response .input-group input {
    text-align: right;
    width: 65px;
    float: none;
}

.question-answer-response .input-group .input-group-addon {
    width: auto;
}

.question-answer-response .input-group .input-group-btn {
    width: auto;
}

.dual-input-group .input-group .form-control {
    width: 50%;
}

.question-total {
    text-align: center;
}
.question-total .total, .question-total .title {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    padding: 0 5px;
}
.question-total .complete, .question-total .error {
    line-height: 30px;
    vertical-align: bottom;
    padding: 0 5px;
}
.question-total .complete {
    color: lightgreen;
}
.question-total .error {
    color: lightcoral;
}
.question-total .complete.fa, .question-total .error.fa {
    font-size: 30px;
}

.question-total .complete img {
    height: 40px;
    margin-top: -5px;
}

.modal-sm {
    width: 300px;
    margin: auto;
}

.question-navigation {
    display: table-cell;        /* ie9 */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec */
    /*-ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;*/
}

.question-navigation .completion {
    -webkit-box-flex: 1;        /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;           /* OLD - Firefox 19- */
    -webkit-flex: auto;          /* Chrome */
    -ms-flex: auto;              /* IE 10 */
    flex: auto;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
    margin: 0 20px;
}

.question-navigation .completion .bullet {
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 12px;
    background-color: black;
    margin-top: 15px;
}

.question-navigation .next, .question-navigation .previous {
    -webkit-box-flex: 0;        /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 0;           /* OLD - Firefox 19- */
    -webkit-flex: 0;          /* Chrome */
    -ms-flex: 0;              /* IE 10 */
    flex: 0 0 150px;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
    width: 150px;
}



.completion-display {
    display: table-cell;        /* ie9 */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec */
    /*-ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;*/
}

.completion-display .bullet-item {
    -webkit-box-flex: 0;        /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 0;           /* OLD - Firefox 19- */
    -webkit-flex: 0;          /* Chrome */
    -ms-flex: 0;              /* IE 10 */
    flex: 0;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
    width: 12px;
}

.completion-display .bar-item {
    -webkit-box-flex: 1;        /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;           /* OLD - Firefox 19- */
    -webkit-flex: auto;          /* Chrome */
    -ms-flex: auto;              /* IE 10 */
    flex: auto;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bar-item .bar {
    border: 0;
    border-bottom: 2px solid black;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.bar-item .bar .bar-progress {
    background-color: white;
    border: 2px solid black;
    font-size: 1.25em;
    color: black;
    background-image: none;
    padding: 2px;
    border-radius: 5px;
    display: block;
    position: relative;
    top: -15px;
    height: 30px;
    width: 80px;
    left: -40px;
    text-align: center;

    -moz-transition: all 0.3s ease-out;  /* FF4+ */
    -o-transition: all 0.3s ease-out;  /* Opera 10.5+ */
    -webkit-transition: all 0.3s ease-out;  /* Saf3.2+, Chrome */
    -ms-transition: all 0.3s ease-out;  /* IE10 */
    transition: all 0.3s ease-out;
}

.alert strong {
    color: inherit;
}

.clickable {
    cursor: pointer;
}

.lotplanMap {
    height: 350px;
}

.lotPlanTable thead tr td {
    font-weight: bold;
    text-align: center;
}

.lotPlanTable tbody tr td {
    line-height: 34px;
    text-align: center;
}

.asterisk-required {
    color: indianred;
}
.text-warning {
    color: orange !important;
}
.text-error {
    color: red !important;
}
.text-success {
    color: green !important;
}

.a-no-a {
    text-decoration: none;
}

.input-table-search {
    margin: 0 auto; width: 70%; max-width: 300px;
}

.googleMapOverlay {
    background-color: rgb(245, 245, 245);
    border-radius: 5px;
    opacity: 0.9;
    padding: 5px;
    margin: 10px;
}
.googleMapOverlay .gmoimage {
    width: 34px;
    height: 34px;
    border: solid 1px darkgray;
    padding: 2px;
    margin: 0 2px;
}
.googleMapOverlay .gmotext {
    display: inline-block;
    width: 170px;
    height: 34px;
    line-height: 14px;
    vertical-align: middle;
}
.googleMapOverlay .gmotitle {
    display: block;
    width: 130px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    height: 20px;
    line-height: 20px;
    font-weight: bold;
}


.modal-sm {
    max-width: 420px;
    margin: auto;
}

.modal-body {
    max-height: calc(100vh - 210px);
    overflow-y: auto;
}

.modal-dialog {
    margin-top: 0;
    margin-bottom: 0;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}


.force-fit-window {
    position: absolute;
    width: 95vw;
    left: 2vw;
}


.btn-little {
    font-size: 1em;
    padding: 2px 5px;
    margin: 2px;
    color: white;
}

.novixTable {
    min-height: 600px;
}

#output {
    margin: 30px;
}

.info {
    /*font-size:13pt !important;*/
    font-size:18pt !important;
    vertical-align:middle;
    cursor: pointer;
    margin-left:25px;
}


.glyphicon  {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-chevron-left:before {
    content: "\f053";
}

.glyphicon-chevron-right:before {
    content: "\f054";
}

.zone-title {
    font-weight: bold;
    font-size: 10pt;
    color: #b53737;
}

.zone-title-selected {
    font-style: italic;
    font-size: 10pt;
    color: red;
}

.action-planning .risk-low {
    background-color: #107228; /* Green for Low Risk */
}
.action-planning .risk-low * {
    color: white !important;
    font-weight: bold !important;
}
.action-planning .risk-low-med {
    background-color: #28a745;
}
.action-planning .risk-low-med * {
    color: black !important;
    font-weight: bold !important;
}
.action-planning .risk-medium {
    background-color: #ffc107;
}
.action-planning .risk-medium * {
    color: black !important;
    font-weight: bold !important;
}
.action-planning .risk-high {
    background-color: #ffa500;
}
.action-planning .risk-high * {
    color: black !important;
    font-weight: bold !important;
}
.action-planning .risk-severe {
    background-color: #ff0000;
}
.action-planning .risk-severe * {
    color: black !important;
    font-weight: bold !important;
}


.gm-button-icon {
    direction: ltr;
    margin-top: 10px;
    padding: 0;
    height: 34px;
    font-size: 20px;
    line-height: 34px;
    min-width: 37px;
    overflow: hidden;
    text-align: center;
    position: relative;
    color: rgb(0, 0, 0);
    font-family: Roboto, Arial, sans-serif;
    user-select: none;
    background-color: rgb(255, 255, 255);
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    box-shadow: rgba(0, 0, 0, 0.298039) 0 1px 4px -1px;
    border-left: 0;
    font-weight: 500;
}

.esg-important-flag {
    color: indianred;
    text-decoration: none !important;
}

.esg-sedex-flag {
    color: #29588C;
    text-decoration: none !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}