@import "fonts-1.0.0.css";
/* ------------- New ------------- */
@import "fonts-1.0.0.css";

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

root {
    display: block;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Montserrat", sans-serif;
}

body.noscroll {
    overflow: hidden;
}


strong {
    font-weight: bold;
}

.clickable {
    cursor: pointer;
}

.hover-primary:hover {
    color: #3f70b9 !important;
    cursor: pointer;
}

.hover-red:hover {
    color: #ff0000 !important;
    cursor: pointer;
}



progress {
    border: 1px solid #ededed;
    background: #3f70b9;
}

progress {
    color: #3f70b9;
}

progress::-moz-progress-bar {
    background: white;
}

progress::-webkit-progress-value {
    background: #3f70b9;
}

progress::-webkit-progress-bar {
    background: white;
}




main {
    margin-top: 70px;
    display: block;
}

#content {
    margin: 2rem 0;
}

[v-cloak] {display: none}


/* Top Bar */

#top_bar {
    background-color: #3f70b9;
    height: 50px;
    top: 0px;
    left: 0px;
    right: 0px;
    position: fixed;
}

#top_bar_logo {
    display: block;
    position: absolute;
    margin-left: 9px;
    margin-top: 9px;
    width: 32px;
    height: 32px;
}

#top_bar_avatar {
    display: inline-block;
    height: 30px;
    width: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    vertical-align: middle;
    line-height: 30px;
    text-align: center;
    font-size: 0.8em;
    font-weight: bold;
    color: #3f70b9;
}

#top_bar_right {
    height: 100%;
    right: 0px;
    display: inline-block;
    float: right;
    margin-right: 5px;
    position: relative;
}

#top_bar_right_trigger {
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

#top_bar_right:hover .top_nav_sub {
    display: block;
}

#top_bar_right:hover #top_bar_right_trigger {
    background-color: #4276c3;
}

#top_nav {
    display: inline-block;
    height: 50px;
    margin-left: 50px;
    vertical-align: middle;
}

#top_nav > li {
    list-style: none;
    float: left;
    position: relative;
}

#top_nav > li > a {
    display: block;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 50px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

#top_nav > li > a:hover {
    background-color: #4276c3;
}

.top_nav_sub {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 150px;
    z-index: 1;
    border: 1px solid #e4e4e4;
    border-top: none;
    
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
}

#top_nav > li:hover .top_nav_sub {
    display: block;
}

.top_nav_sub > li {
    border-top: 1px solid #e4e4e4;
    white-space: nowrap;
}

.top_nav_sub > li:first-child {
    border-top: none;
}

.top_nav_sub > li > a {
    display: block;
    color: #3f70b9;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}

.top_nav_sub > li > a:hover {
    background-color: #f6f6f6;
}



/* Table */

.table {
    margin-top: 1rem;
    
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
    
    font-size: 14px;
}


.table, .table th, .table td {
    border: 1px solid #dddddd;
}

.table.no-border, .table.no-border th, .table.no-border td {
    border: 0 !important;
}

.table th, .table td {
    padding: 8px;
    text-align: center;
}

.table th {
    background-color: #F4F4F4;
    font-weight: bold;
    vertical-align: middle;
}

.table td {
    padding: 5px;
    vertical-align: middle;
}









.lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid #3f70b9;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #3f70b9 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.notification {
    min-width: 350px;
    margin: 0.5rem;
}

.notification:first-child {
    margin-left: 0;
}

.notification:last-child {
    margin-right: 0;
}

.notification > .title {
    background-color: #3f70b9;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-weight: bold;
}

.notification > .content {
    background-color: #ccdffc;
    padding: 1rem;
    max-height: 120px;
    overflow-y: auto;
    font-size: 0.9rem;
}

.notification > .content > ul {
    list-style: disc;
    margin-left: 20px;
}

.notification-alert > .title {
    background-color: red;
}

.notification-alert > .content {
    background-color: #fbcbcb;
}

.notification-warning > .title {
    background-color: orange;
}

.notification-warning > .content {
    background-color: #fceccd;
}


/* Modals */
.my-modal {
    display: none;
    
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    
    overflow: auto;
    
    z-index: 999;
}

.my-modal > .my-modal-wrapper {
    
    background-color: rgba(0, 0, 0, 0.8);
    
    position: absolute;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
}

.my-modal > .my-modal-wrapper > .my-modal-content {
    
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #dddddd;
    
    min-width: 300px;
    
    align-self: center;
    position: relative;
    
    margin: 2rem;
    
    overflow: auto;
    
    animation: modalPopup 0.25s ease-out;
}

.my-modal > .my-modal-wrapper > .my-modal-content > .my-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.3rem;
}

@keyframes modalPopup {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.05);
    }
    
    100% {
        transform: scale(1);
    }
}



/* ----- Context Menu ----- */
#context-menu {
    padding: 0 0;
    background-color: #fff;
    border: 1px solid #ddd;
}

#context-menu ul li {
    white-space: nowrap;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #eee;
}

#context-menu ul li:last-child {
    border: 0;
}

#context-menu ul li:hover {
    background-color: #f3f3f3;
    cursor: pointer;
}



/* --- GPS-S --- */
.gpss-map {
    background-color: white;
    border: 1px solid #AAAAAA;
}

#gpss_form_add .controls {
    background-color: white;
    padding: 5px;
    overflow: hidden;
}

.gpss-map-popup {
    border: 1px solid #cccccc;
    border-radius: 3px;
    padding: 5px;
    z-index: 9999;
    top: 200px;
    left: 200px;
    background-color: white;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
}

#popup111 {
    display: none;
}




/* ------------- Old ------------- */




a {
    color: #3f70b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#wrapper_login {
    width: 1200px;
    margin: 0px auto;
}














#docsync_directory_browser_container {
    padding: 5px;
}

#docsync_directory_browser_container ul {
    margin: 0px;
    padding-left: 10px;
    list-style: none;
}

#docsync_directory_browser_container > ul {
    padding-left: 0px;
}

#context_menu_container {
    width: 200px;
    position: absolute;
    z-index: 100;
}

.context_menu ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    border: 1px solid #e4e4e4;
    background-color: #ffffff;
}

.context_menu ul li {
    border-top: 1px solid #e4e4e4;
    padding: 3px;
}

.context_menu ul li:first-child {
    border-top: 0px;
}

.context_menu ul li:hover {
    background-color: #eeeeee;
}






























.overview_module {
    overflow: hidden;
    border: 1px solid #E4E4E4;
    border-radius: 5px;
    padding: 20px;
    background-color: #ffffff;
    position: relative;
}

.overview_module:hover {
    border-color: #00bbff;
}




div.page_list {
    display: block;
    margin: 0px auto;
    text-align: center;
    margin-top: 20px;
    clear: both;
}

div.page_list ul {
    display: inline-block;
    border: 1px solid #dddddd;
    border-radius: 3px;
    margin: 0px;
    padding: 0px;
    background-color: #fff;
}

div.page_list ul li {
    display: block;
    padding: 0px;
    margin: 0px;
    float: left;
}

div.page_list ul li a, div.page_list ul li span {
    display: block;
    padding: 0.5rem 1rem;
    vertical-align: top;
    margin: 0px;
}

div.page_list ul li a {
    text-decoration: none;
}

div.page_list ul li a:hover, div.page_list ul li span.active {
    background-color: #f0f0f0;
}



div#overlay_container {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    
    background-color: rgba(0, 0, 0, 0.65)
}


/* OpenLayers Map */
.ol-bw {
    filter: grayscale(75%);
}

.ol-bw-dark {
    filter: grayscale(75%) brightness(0.8);
}