/* The html and body elements cannot have any padding or margin for the footer to work correctly. */

html,
body {
    height: 100%;
}
/* TODO: fix auto height */

.full-height-container {
    height: 100%;
}
/*
 * START Checkbox Tree Styles
 */

.tree li {
    margin: 0px 0;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 1px 5px;
}
.tree label.checkbox {
    margin-bottom: -7px;
}
.tree li::before {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    right: auto;
    left: -20px;
    border-left: 1px solid #ccc;
    bottom: 50px;
}
.tree li::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 25px;
    height: 20px;
    right: auto;
    left: -20px;
    border-top: 1px solid #ccc;
}
.tree li a {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
    color: #666;
    font-family: arial, verdana, tahoma;
    font-size: 11px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
/*Remove connectors before root*/

.tree>ul>li::before,
.tree>ul>li::after {
    border: 0;
}
/*Remove connectors after last child*/

.tree li:last-child::before {
    height: 30px;
}
/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/

.tree li a:hover,
.tree li a:hover+ul li a {
    background: #c8e4f8;
    color: #000;
    border: 1px solid #94a0b4;
}
/*Connector styles on hover*/

.tree li a:hover+ul li::after,
.tree li a:hover+ul li::before,
.tree li a:hover+ul::before,
.tree li a:hover+ul ul::before {
    border-color: #94a0b4;
}
/*
 * END Checkbox Tree Styles
 */

.hidden-form {
    margin: 0 !important;
}
.navbar .nav {
    z-index: 1004;
}
.report-chart {
    width: calc(100% - 38px);
    height: 300px;
    padding: 0px;
}
.map-container {
    width: 100%;
    height: 300px;
    padding: 0px;
}
/*
 * START Print Styles
 */

.visible-print {
    display: none !important;
}
.hidden-print {} @media print {
    @page {
        /*size: landscape;*/
    }
    .visible-print {
        display: inherit !important;
    }
    .hidden-print {
        display: none !important;
    }
}
/*
 * END Print Styles
 */
/*
 * START Loading Styles
 */

#loadingModal {
    position: fixed;
    width: 100%;
    bottom: 15px;
}
.loadingBox {
    margin: 0 auto;
    position: relative;
    padding: 10px;
    width: 150px;
    background-color: #04c;
    border-radius: 8px;
    opacity: .7;
    box-shadow: 6px 6px 12px #888888;
    text-align: center;
}
.loadingText {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: bold;
    vertical-align: text-bottom;
    color: #fff;
}
.spinner {
    margin: 0 auto;
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
}
.container1>div,
.container2>div,
.container3>div {
    width: 6px;
    height: 6px;
    background-color: #fff;
    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);
    }
}
/*
 * END Loading Styles
 */

.scrollable-container {
    overflow-y: auto;
    max-height: 400px;
    margin-bottom: 10px;
}
/* Push down footer */

#main-content {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    min-height: calc(100% - 30px);
    /* Bring footer back with negative margin */
    /*margin: 0px auto -60px;*/
}
/* Footer fixed height */

#push {
    height: 1px;
    margin-top: 29px;
}
/* Footer style */

#main-footer {
    background-color: #eeeeee;
    height : 30px;
}
/* Footer content. Allows margin and padding. */

#footer-text {
    justify-content: flex-end;
    display : flex;
    flex-flow : row wrap;
}
/* Footer responsive CSS fixes */


.copyright {
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
}

@media ( max-width: 767px) {
    #main-footer {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.menu-logo {
    max-height:70px;
    margin-left:10px !important;
    width: auto;
}

#menu-container {
    margin-top: 10px;
}
.section-header {
    display: inline-block;
}
.section-buttons {
    margin-bottom: 10px;
}
.input-append,
.input-preppend {
    display: block;
}
.hasPlaceholder {
    color: #777;
}
.icon-truck {
    background-image: url("../images/icon_truck_white.png") !important;
    background-position: center center !important;
    background-size: 23px !important;
}
/* Fix for openlayers popups */

.map img,
#map img {
    max-width: none;
}
/* START Accordion default styles */

.guarnic-accordion .accordion-group {
    border-radius: 5px;
}
.guarnic-accordion .accordion-group.shadow {
    box-shadow: 5px 6px 7px -2px gray;
}
.guarnic-accordion .accordion-group:not (:first-child) {
    margin-top: 20px;
}
.guarnic-accordion .accordion-heading {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.guarnic-accordion .accordion-heading {
    -moz-transition: background 0.5s;
    -webkit-transition: background 0.5s;
    -o-transition: background 0.5s;
    -ms-transition: background 0.5s;
    transition: background 0.5s;
    background: rgb(20, 100, 246);
}
.guarnic-accordion .accordion-heading:hover {
    background: rgb(14, 56, 133);
}
.guarnic-accordion .accordion-heading a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}
.guarnic-accordion .accordion-inner {
    padding: 0;
}
.guarnic-accordion .accordion-inner>div {
    padding: 8px 2px 8px 7px;
    border-bottom: 1px solid #e5e5e5;
}
.guarnic-accordion .accordion-inner>div:not (.no-hover) {
    -moz-transition: background 0.5s;
    -webkit-transition: background 0.5s;
    -o-transition: background 0.5s;
    -ms-transition: background 0.5s;
    transition: background 0.5s;
    cursor: pointer;
}
.guarnic-accordion .accordion-inner>div:not (.no-hover):hover {
    background: rgb(236, 236, 236);
}
/* END Accordion default styles */

.required:after {
    font-family: 'FontAwesome';
    color: red;
    font-size: 8px;
    vertical-align: top;
    content: " \f069";
}
.no-cursor {
    cursor: default;
}
.cursor {
    cursor: pointer;
}
.olMap {
    border: 1px solid #ccc;
}
.notificationContainer {
    overflow: auto;
}
.fa-md {
    font-size: 1.3em !important;
}

.inline {
	display: inline-block;
}

.table .options {
	padding: 8px;
	width: 1%;
	white-space: nowrap;
}

.table .centered {
	text-align: center;
    vertical-align: middle;
}

.wrap {
	width: 1%;
}

/* Flatten boostrap 2 */
.well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid {
    background-image: none !important;
}