@charset "UTF-8";

@media all and (-ms-high-contrast: none) {
    html {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.app,
.app-dashboard,
.app-root {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

.app-header {
    -ms-flex: 0 0 55px;
    flex: 0 0 55px;
}

.app-footer {
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
}

.app-body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-grow: 1;
    overflow: hidden;
}

.app-body .main {
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.app-body .sidebar {
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    -ms-flex-order: -1;
    order: -1;
}

.app-body .aside-menu {
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
}

div#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #333 url("../img/loading.gif") no-repeat center center;
}

.main .container-fluid {
    height: 100%;
    padding: 0;
    position: relative;
}

#ui-view {
    height: calc(100vh - 100px);
}

#ui-view #map-container {
    height: 100%;
    width: 100%;
}

#devices, #addresses {
    padding: 30px;
}

.IWInfoBalloon .main {
    margin-left: 0;
}

#geocoding-map {
    height: 300px;
    width: 100%;
}

/*
#save-address-form-container {
  width: 40%;
}
*/
input::-webkit-input-placeholder {
    color: #CCC !important;
}

input:-ms-input-placeholder {
    color: #CCC !important;
}

input::-ms-input-placeholder {
    color: #CCC !important;
}

input::placeholder {
    color: #CCC !important;
}

#info-message-container {
    position: absolute;
    top: 55px;
    z-index: 1030;
    background: #FFF;
    padding: 5px 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

#devices-status-info-panel span {
    display: block;
}

#devices-status-info-panel span#devices-status-total-devices {
    color: #4d6672;
}

#devices-status-info-panel span#devices-status-total-active-devices {
    color: #00a67c;
}

#devices-status-info-panel span#devices-status-total-active-devices a {
    color: #00a67c;
    text-decoration: underline;
}

#vehicle-context-menu {
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    width: 280px;
}

#vehicle-context-menu #vehicle-context-menu-vehicle-info {
    background: #EEE;
}

#address-context-menu {
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    width: 280px;
}

#address-context-menu #address-context-menu-info {
    background: #EEE;
}

#vehicle-details-sidebar {
    background: #FFF;
    right: -15%;
    height: 100%;
    position: absolute;
    top: 0;
    width: 15%;
    z-index: 1000;
}

#vehicle-details-sidebar.visible {
    right: 0;
}

#vehicle-details-container #vehicle-context-sidebar-info {
    height: calc(100% - 70px);
    overflow-y: auto;
    word-break: break-all;
}

#vehicle-details-container #vehicle-details-sidebar-toggler {
    position: absolute;
    right: 100%;
}

#vehicle-details-container h3 {
    font-size: 20px;
    margin: 0 0;
    text-align: center;
    width: 100%;
}

#vehicle-details-container #close-vehicle-details-sidebar {
    font-size: 20px;
    position: absolute;
    right: 10px;
}

#vehicle-details-container .vehicles-info-vehicle {
    border-bottom: 1px solid #CCCC;
    margin: 0 0;
    padding-bottom: 10px;
}

#vehicle-details-container .vehicles-info-vehicle .vehicles-info-vehicle-order {
    color: #CCC;
    font-size: small;
    text-align: center;
}

#vehicle-details-container .vehicles-info-vehicle .vehicles-info-vehicle-order .vehicles-info-vehicle-deselect-link {
    color: #0b0e10;
    margin-left: 5px;
    text-decoration: underline;
}

.spinner {
    margin: 10px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: #e30513;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

#orders {
    padding: 30px;
}

#route-container {
    height: 100%;
    position: relative;
}

#route-container #route-sidebar {
    background: #FFF;
    left: -25%;
    height: 100%;
    position: absolute;
    top: 0;
    width: 25%;
    z-index: 999;
}

#optimize-preloader {
    position: absolute;
    background: #333333;
    z-index: 100;
    width: calc(100% - 30px);
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.route-sidebar-address-marker {
    font-size: 20px;
    text-align: center;
    width: 20px;
}

#route-sidebar-addresses li {
    font-family: 'FontAwesome', serif;
    list-style: none;
}

#route-sidebar-addresses li .input-group-container {
    padding-right: 15px;
}

#route-sidebar-addresses li .input-group-container .countries-list {
    font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
    padding: 0;
}

#route-sidebar-addresses li .input-group-container input {
    font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
    width: auto;
}

#route-sidebar-addresses li.route-address-input:before {
    content: "\f142";
    position: absolute;
    left: 10px;
    color: #EEE;
    vertical-align: middle;
    top: 50%;
    margin: -7px 0 0 0;
}

#route-sidebar-addresses li .route-remove-row-container {
    display: none;
}

#route-sidebar-addresses li .route-remove-row-button {
    color: #be160b;
}

#route-sidebar-addresses li .route-remove-row-button:hover {
    color: #e9ecef;
    background: #be160b;
    border-color: #be160b;
    text-decoration: none;
}

#route-sidebar-addresses li.route-address-input .input-group-prepend {
    cursor: move;
}

#route-sidebar-addresses li.selected {
    background: #EEE;
}

#route-sidebar-addresses .btn {
    width: 100%;
}

#current-selected-device-address .input-group-prepend {
    height: 38px;
}

#current-selected-device-address .form-control {
    height: auto;
}

#calculated-route-description {
    height: calc(100% - 50px);
    overflow: auto;
}

#calculated-route-description .entryimage {
    width: 25px;
}

#calculated-route-description .entryimage div {
    height: 25px;
}

#calculated-route-description tr.odd {
    background: #EEE;
}

.route-sidebar-panel {
    display: none;
}

.route-sidebar-panel.active {
    display: block;
}


#route-sidebar-toggler:focus, #route-container #route-sidebar #route-sidebar-toggler.focus {
    box-shadow: none;
}

#route-container #route-map {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#route-optimize-addresses {
    display: none;
}

.route-disambiguisation-list li:hover {
    background: #e30513;
    color: #a4b7c1;
    cursor: pointer;
}

#routing-context-menu, #current-route-context-menu, #current-vehicle-route-context-menu {
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    width: 250px;
}

/*style map*/
.map-header {
    max-width: 100%;
    min-width: 100%;
    position: relative;
    padding: 20px 20px 20px 10px;
    margin-bottom: -76px;
    display: flex;
    z-index: 1;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.2ms all ease-in-out;
    pointer-events: none;
}

.map-header * {
    pointer-events: all;
}

.map-header .left-panel, .map-header .right-panel {
    display: flex;
}

.map-header .left-panel .btn-container, .map-header .right-panel .btn-container {
    margin-left: 10px;
    display: block;
}

.map-header .left-panel .btn, .map-header .right-panel .btn {
    color: #606873;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 36px;
    width: fit-content;
    height: 36px;
    padding: 0 .375rem 0 .375rem;
    border-radius: 3px;
    background-color: #ffffff;
    border: solid 1px #c6ccd4;
    position: relative;
    font-size: 0.9rem;
}

.map-header .left-panel .btn.active, .map-header .right-panel .btn.active {
    background: #606873;
    color: #FFF;
}

.map-header .left-panel .btn:hover, .map-header .right-panel .btn:hover {
    background-color: #f7f7f7;
    transition: 0.2ms all ease-in;
}

.map-header .left-panel .btn.active:hover, .map-header .right-panel .btn.active:hover {
    background-color: #606873;
    transition: none;
}

.map-header .left-panel .btn img, .map-header .right-panel .btn img {
    width: 20px;
    height: 20px;
}

.map-header .left-panel .publish, .map-header .right-panel .publish {
    width: auto;
    color: #ffffff;
    font-size: 14px;
    padding: .375rem .75rem;
    background-color: #e97f02;
    border: none;
    text-transform: uppercase;
}

.map-header .left-panel .publish:hover, .map-header .right-panel .publish:hover {
    background-color: #e07d00;
    transition: 0.2ms all ease-in;
}

.map-header .left-panel .publish img, .map-header .right-panel .publish img {
    margin-right: 5px;
}

.map-header .info-panel {
    width: 100%;
    /*max-width: 644px;*/
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px 0 15px;
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
}

.map-header .info-panel.ctrl-info {
    width: 70%;
}

.map-header .info-panel.track-name-panel {
    font-weight: bold;
    color: #bd1550;
    min-width: 100px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-align: center;
    padding: 5.5pt 8pt 0 8pt;
}

.map-header .info-panel .info-icon {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #bd1550;
    font-size: 12px;
    font-family: monospace;
    color: #fff;
}

.map-header .info-panel .info-text {
    font-family: Roboto, serif;
    font-size: 14px;
    color: #606873;
}

.map-header .info-panel .info-text .info-ctrl {
    padding: 2px 5px;
    border: solid 1px #606873;
    border-radius: 3px;
}

.left-panel .btn #vehicle-details-stats-selected-vehicles {
    margin-left: 5px;
}

.left-panel #vehicle-details-sidebar-toggler i {
    font-size: 1.1rem;
}

.left-panel .dropdown-toggle i {
    margin-right: 5px;
    font-size: 1.1rem;
}

.left-panel #btn-vehicle-search-dropdown i {
    font-size: 1.3rem;
}

.left-panel #btn-zoom-to-all {
    font-size: 1.1rem;
}

.left-panel .btn span {
    font-size: 0.9rem;
}

.right-panel #routing-search-form #search-results-disambiguisation {
    display: none;
}

.right-panel #routing-search-form .dropdown-menu {
    padding-right: 5px;
    padding-left: 5px;
    min-width: 350px;
}

/* TES CSSS */

#vehicle-dropdown .dropdown-menu {
    padding-left: 5px;
}

#vehicle-dropdown .dropdown-menu .form-check {
    padding-left: 2.5rem;
}

#vehicle-search-dropdown .dropdown-menu {
    padding: 5px;
    min-width: 350px;
    font-size: 0.9rem;
    z-index: 1100;
}

#vehicle-search-dropdown .dropdown-menu ul {
    max-height: 500px;
    max-width: 350px;
    overflow: hidden;
    overflow-y: scroll;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

#vehicle-search-dropdown .dropdown-menu ul li {
    cursor: pointer;
}

#vehicle-search-dropdown .dropdown-menu ul li:hover {
    background-color: #e9e9e9;
}

#vehicle-search-dropdown .dropdown-menu ul li label {
    cursor: pointer;
}

#vehicle-search-dropdown .dropdown-menu #click-to-zoom {
    font-size: 0.8rem;
}

#vehicle-search-dropdown .dropdown-menu button {
    font-size: 0.8rem;
}

#vehicle-search-dropdown .dropdown-menu button.selected {
    background-color: #a8ce9a;
    color: #FFF;
}

#vehicle-search-dropdown .dropdown-menu button:hover {
    background-color: #c9c9c9;
    color: #fff;
}

#vehicle-search-dropdown .dropdown-menu button.selected:hover {
    background-color: #FFF;
    color: #a8ce9a;
}

#maptrip-remote-logo {
    width: auto;
    height: 50px;
}

.resizer-rb {
    position: absolute;
    border: 0;
    right: 3px;
    bottom: 3px;
    width: 22px;
    height: 22px;
    cursor: se-resize;
}

.resizer-rb .img-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url("../img/window_scale.svg");
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
}

#cancelWatchRequest {
    color: darkred;
    font-weight: bold;
}

#cancelWatchRequest:hover {
    color: #be0000;
}

.btn-cta-outline-primary {
    color: #e97f02;
    border-color: #e97f02;
}

.btn-cta-outline-primary:hover {
    color: #fff;
    background-color: #e97f02;
    border-color: #e97f02;
}

.btn-cta-outline-secondary {
    color: #b1c151;
    border-color: #b1c151;
}

.btn-cta-outline-secondary:hover {
    color: #fff;
    background-color: #b1c151;
    border-color: #b1c151;
}

#modalRoutingForm .form-control.disabled label {
    color: #CCC;
}

#current-selected-device-address {
    display: none;
}

#current-selected-device-address-form-control {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 12px;
}

#current-selected-device-address-form-control small {
    display: block;
    font-size: 10px;
    color: #8C8C8C;
}

.map-footer {
    bottom: 30px;
    position: fixed;
    right: 5px;
    width: 210px;
    display: flex;
    justify-content: flex-end;
}

.map-footer .btn {
    color: #606873;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    margin-right: -1px;
    height: 36px;
    padding: .375rem 0;
    border-radius: 3px 0 0 3px;
    background-color: #ffffff;
    border: solid 1px #c6ccd4;
    pointer-events: all;
}

.map-footer .btn:hover {
    background-color: #f4f4f4;
    color: #0b0e0f;
    transition: 0.2ms all ease-in;
}

.map-footer .btn img {
    width: 12px;
    height: 12px;
}

.map-footer .revers-radius {
    border-radius: 0 3px 3px 0;
}

.map-footer #mapTypeSwitcher .btn img {
    height: 20px;
    width: 20px;
}
