﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #F2F4F7;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins", sans-serif;
}


header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 50px;
    /*box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.15);*/
}

header h4 {
    position:absolute;
    left:10%;
    bottom:1rem;
    font-size:1.6rem;
}

.navbar-toggler {
    margin-right:20px;
}

@media (max-width: 576px) {
    .navbar-collapse {
        padding-bottom: 20px;
    }
}

footer {
    background-color: #fff;
    padding: 20px;
    margin-top: 10px;
}




/*------------------------------------*/
/*            INTRO SPLASH            */
/*------------------------------------*/

.intro {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #5ca6dc;
    background-image: linear-gradient(to right, #8dc0e5, #2e76aa);
    /*transition: 1s;*/
}

.logo-header {
    position:absolute;
    top:40%;
    left:50%;
    transform:translate(-50%, -50%);
    color: #ffffff;
    min-width:290px;
}

.logo-segment-1 {
    position: relative;
    display: inline-block;
    bottom: -50px;
    opacity: 0;
    font-size: 50px;
    font-weight: 200;
}

.logo-segment-2 {
    position: relative;
    display: inline-block;
    bottom: 50px;
    opacity: 0;
    font-size: 50px;
    font-weight: 600;
}

.logo-img {
    position: relative;
    display: block;
    /*bottom: -20px;*/
    opacity: 0;
    width: 100px;
    margin: auto;
    margin-top: 10px;
}

.logo-segment-fade-in {
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.3s;
}

.logo-img-fade-in {
    /*bottom: 0;*/
/*    opacity: 1;
    transition: ease-in-out 0.5s;*/
    animation: logo-img-anim 0.5s ease-in-out forwards;
}

.intro.fade-out {
    /*bottom: 150px;*/
/*    top: -100vh;
    opacity: 0;
    transform: scale(10.0);
    transition: ease-in-out 1.0s;*/
    animation: intro-fade-out 0.8s ease-in-out forwards;
}

@keyframes logo-img-anim {
    0% {
        opacity: 0;
        transform: scale(1.0);
    }

    30% {
        opacity: 0.5;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1.0);
    }
}

@keyframes intro-fade-out {
    0% {
        opacity: 1;
    }

    30% {
        /*top: 100vh;*/
        /*opacity: 1;*/
        /*transform: scale(10.0);*/
    }

    99% {
        /*top: -100vh;*/
        opacity: 0;
        transform: scale(1.0);
    }

    100% {
        /*top: -100vh;*/
        opacity: 0;
        transform: scale(0.0);
    }
}






/*------------------------------------*/
/*             MAP VIEWER             */
/*------------------------------------*/

.map {
    height:100%;
}

.ol-popup {
    position: absolute;
    background-color: white;
    -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    min-width: 280px;
}

.ol-popup:after, .ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}

.ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}

.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 8px;
}

.ol-popup-closer:after {
    content: "✖";
}




/*------------------------------------*/
/*     BOOTSTRAP CUSTOMIZATIONS       */
/*------------------------------------*/

.alert-primary {
    color: #1d5176;
    background-color: #e3eff7;
    border-color: #d2e5f3;
}

.alert-primary hr {
    border-top-color: #bedaee;
}

.alert-primary .alert-link {
    color: #13354d;
}

.badge-primary {
    color: #ffffff;
    background-color: #4093cf;
}

.badge-primary[href]:hover, .badge-primary[href]:focus {
    color: #ffffff;
    background-color: #2c78af;
}

.bg-primary {
    background-color: #4093cf !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #2c78af !important;
}

.border-primary {
    border-color: #4093cf !important;
}

.btn-primary {
    color: #ffffff;
    background-color: #4093cf;
    border-color: #4093cf;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #2f80bc;
    border-color: #2c78af;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(64, 147, 207, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #ffffff;
    background-color: #4093cf;
    border-color: #4093cf;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #2c78af;
    border-color: #2970a3;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(64, 147, 207, 0.5);
}

.btn-outline-primary {
    color: #4093cf;
    background-color: transparent;
    border-color: #4093cf;
}

.btn-outline-primary:hover {
    color: #ffffff;
    background-color: #4093cf;
    border-color: #4093cf;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(64, 147, 207, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #4093cf;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #4093cf;
    border-color: #4093cf;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(64, 147, 207, 0.5);
}

.list-group-item-primary {
    color: #1d5176;
    background-color: #d2e5f3;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #1d5176;
    background-color: #bedaee;
}

.list-group-item-primary.list-group-item-action.active {
    color: #ffffff;
    background-color: #1d5176;
    border-color: #1d5176;
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #d2e5f3;
}

.table-hover .table-primary:hover {
    background-color: #bedaee;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #bedaee;
}

.text-primary {
    color: #4093cf !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #2c78af !important;
}



/*------------------------------------*/
/*    OVERRIDE MAIN CONTAINER WIDTH   */
/*------------------------------------*/
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 100%!important;
}

.container {
    padding-bottom: 20px;
    background-color: white;
}

a {
    color: #4aaaf0;
}

input {
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    padding: 1px;
}

input:focus {
    outline: none !important;
}

input[readonly] {
    background-color: #F2F4F7;
    cursor: default;
}

input[readonly]:focus {
    background-color: #F2F4F7;
}

.form-select {
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
}

.form-select option:hover {
    background: #198754!important;
    color: #fff!important;
}



#divMainContent {
    background-color: #F2F4F7;
    z-index: 1;
}



/*------------------------------------*/
/*            MENU SIDEBAR            */
/*------------------------------------*/
#divSidebar {
    padding: 7px;
    height: auto;
    min-height: 100vh;
    background: linear-gradient(to right, #3a84ba, #8cbee2);
}

#divSidebar:hover {
    width: 180px !important;
}

#divSidebar:hover + #divMainContent {
    width: calc(100% - 150px) !important;
}

#divSidebar:hover .sidebarLabel {
    display: inline !important;
}

#divSidebar {
    transition: width 0.5s;
    color: #555;
}

#divMainContent {
    transition: width 0.5s;
}

.sidebarMenuItem {
    width: 100%;
    height: 50px;
    text-align: left;
    cursor: pointer;
    padding-top: 7px;
    color: white;
}

    .sidebarMenuItem:hover {
        /*background-color: #e5f6ff;*/
        font-weight: 700;
        /*background-color: #3a84ba;*/
        color: white;
    }

.sidebarMenuItemSelected {
    /*background-color: #3a84ba;*/
    /*background: linear-gradient(to right, #3a84ba, #79b3dd);*/
    /*background: linear-gradient(to right, #8a3aba, #79b3dd);*/
    border-left: 5px solid #cccf40;
}

    .sidebarMenuItemSelected .sidebarIcon {
        color: white;
        font-weight: 500;
        text-align: center;
        margin-left: -3px;
    }

    .sidebarMenuItemSelected .sidebarLabel {
        color: white;
        font-weight: 700;
    }

    .sidebarMenuItemSelected:hover {
        /*background-color: #3a84ba;*/
    }

    .sidebarMenuItemSelected:hover .sidebarIcon {
        color: white;
        /*font-weight: 500;*/
    }

    .sidebarMenuItemSelected:hover .sidebarLabel {
        color: white;
        /*font-weight: 700;*/
    }

.sidebarIcon {
    font-size: 20px;
    margin-top: 7px;
    float: left;
    width: 45px;
    text-align: center;
    color: white;
    /*margin-left: 10px;*/
}


@media only screen and (max-width: 768px) {

    #divSidebar {
        width: 0px;
        padding: 0px;
    }

    #divMainContent {
        width: 100%;
    }

    #btnToggleSideMenu {
        display: block;
        font-size: 25px;
        padding: 5px;
        color: white;
        background-color: #4aaaf0;
        margin: 5px;
        margin-left: 0px;
        float: left;
        position: fixed;
        top: 5px;
        left: 0px;
        z-index: 9999;
        opacity: 0.7;
        cursor: pointer;
    }

    .sidebarLabel {
        display: inline !important;
        position: absolute;
        margin-top: 8px;
        white-space: nowrap;
        font-size: 14px;
    }

    .navbar-brand {
        margin-left: 40px !important;
    }
}

@media only screen and (min-width: 769px) {

    #divSidebar {
        width: 45px;
        padding: 0px;
    }

    #divMainContent {
        width: calc(100% - 45px);
    }

    #btnToggleSideMenu {
        display: none;
    }

    .sidebarLabel {
        display: none !important;
        position: absolute;
        margin-top: 8px;
        white-space: nowrap;
        font-size: 14px;
    }
}




/*------------------------------------*/
/*          GRID STACK PANELS         */
/*------------------------------------*/

.grid-stack {
    background: #F2F4F7;
}

.grid-stack.grid-stack-static {
    background: #F2F4F7;
}

.sidebar > .grid-stack-item,
.grid-stack-item-content {
    text-align: center;
    background-color: #F2F4F7;
    box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.container-fluid {
    padding: 0px;
}

.card-header {
    margin: 0;
    cursor: move;
    height: 25px;
    background-color: #4aaaf0;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}

.card-header:hover {
    background-color: #4093cf;
    color: #fff;
}

.card {
    width: 100%;
    height: calc(100% - 25px);
    padding: 10px;
    border-radius: 0px;
    overflow: scroll;
}

.ui-draggable-disabled.ui-resizable-disabled > .grid-stack-item-content {
    background: #777;
}

.grid-stack-item-removing {
    opacity: 0.5;
}

/* make nested grid have slightly darker bg take almost all space (need some to tell them apart) so items inside can have similar to external size+margin */
.grid-stack > .grid-stack-item.grid-stack-sub-grid > .grid-stack-item-content {
    background: rgba(0,0,0,0.1);
    inset: 0 2px;
}

.grid-stack.grid-stack-nested {
    background: none;
    inset: 0;
}

.grid-stack.show-dimensions .grid-stack-item:after {
    content: '1x1';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2px;
    color: black;
    background-color: white;
    pointer-events: none; /* to not interfere with dragging the item */
}

.grid-stack.show-dimensions .grid-stack-item[gs-h]::after {
    content: '1x' attr(gs-h);
}

.grid-stack.show-dimensions .grid-stack-item[gs-w]::after {
    content: attr(gs-w) 'x1';
}

.grid-stack.show-dimensions .grid-stack-item[gs-h][gs-w]::after {
    content: attr(gs-w) 'x' attr(gs-h);
}
.gridStackHeaderIcon {
    font-size: 20px;
    margin-top: 3px;
}

.gridStackIconButtonLeft {
    font-size: 20px;
    margin-top: 3px;
    float: left;
    cursor: pointer;
}

.gridStackIconButtonRight {
    font-size: 20px;
    margin-top: 3px;
    float: right;
    cursor: pointer;
}

.hidden {
    display: none;
}

.visible {
    display: '';
}

.visibleFlex {
    display: 'flex';
}

.media-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    container-type: inline-size;
}

/* Create four equal columns that sits next to each other */
.media-column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.media-column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@container (max-width: 600px) {
    .media-column {
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@container (max-width: 300px) {
    .media-column {
        flex: 100%;
        max-width: 100%;
    }
}

.hand-cursor {
    cursor: pointer;
}




/*------------------------------------*/
/*          TOAST UI DATAGRID         */
/*------------------------------------*/

.datagrid-cell-edited {
    background-color: #ffe6ec !important;
}

.datagrid-highlight-row {
    background-color: #e5f6ff !important;
}

.tui-grid-cell-editable {
    color: green !important;
    font-weight: 500 !important;
}

.datagrid-cell-updated {
    background-color: #e0fde0 !important;
}




/*------------------------------------*/
/*          TOAST UI DROPDOWN         */
/*------------------------------------*/

.tui-select-box-input, .tui-select-box-item-group-label, .tui-select-box-item {
    font-size: 16px!important;
    border-radius:5px;
}

.form-floating > .form-dropdown ~ label {
    color: rgba(var(--bs-body-color-rgb), .65);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.tui-select-box-placeholder {
    line-height: 70px!important;
    padding-left: 5px!important;

}

.tui-select-box-dropdown {
    z-index: 99999;
    border-radius: 5px;
    box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.25);
    max-height: 400px !important;
}

.tui-select-box-highlight {
    background: #e5f6ff !important;
    outline: none !important;
}

@media only screen and (min-width: 769px) {
    .tui-select-box-input {
        border: 1px solid #ccc;
        height: 57px !important;
        font-size: 16px !important;
    }

    .tui-select-box-input, .tui-select-box-item-group-label, .tui-select-box-item {
        font-size: 16px !important;
        border-radius: 5px;
    }

    .tui-select-box-item {
        height: 50px !important;
        line-height: 50px !important;
    }
}


@media only screen and (max-width: 768px) {
    .tui-select-box-input {
        border: 1px solid #ccc;
        height: 57px !important;
        font-size: 14px !important;
    }

    .tui-select-box-input, .tui-select-box-item-group-label, .tui-select-box-item {
        font-size: 14px !important;
        border-radius: 5px;
    }

    .tui-select-box-item {
        height: 40px!important;
        line-height: 40px!important;
    }
}





/*------------------------------------*/
/*          FILTER SEARCH BOX         */
/*------------------------------------*/

.searchBox {
    position: relative;
    display: inline-block;
}

.searchBox-items {
    background-color: white;
    position: absolute!important;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99999;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 400px;
    overflow-y: scroll;
}

.searchBox-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.searchBox-items div:hover {
    background-color: #e5f6ff;
}

.searchBox-item-active {
    background-color: #4aaaf0 !important;
    color: #ffffff;
}

.action-icon {
    padding: 10px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
}

.action-icon-lt-wide {
    padding: 10px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
}

.action-icon:hover {
    background-color: #e9ebed;
}

.action-icon-lt-wide:hover {
    background-color: #e5f6ff;
}

.action-icon-text {
    font-size: 1rem;
    font-weight: 500;
    vertical-align: middle;
    color: #666666;
}

.fa-md {
    vertical-align: middle;
    font-size: 20px;
}

.filter-column-check {
    background-color: #4aaaf0;
    margin-right: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    color: #fff;
    border: 1px solid #ccc;
    font-size: 12px;
    float: left;
    margin-bottom: 5px;
}

.filter-column-check input[type='checkbox'] {
    margin-right: 10px;
    vertical-align: middle;
    margin-bottom: 3px;
}

.filter-tag {
    background-color: #ddd;
    margin-right: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    color: #333;
    border: 1px solid #ccc;
    font-size: 12px;
    float: left;
    margin-bottom: 5px;
}

.parameter-column-check {
    margin-right: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    margin-bottom: 5px;
    float: left;
}

.parameter-column-check-label {
    padding-left: 5px;
}

.map-layer-check {
    margin-right: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    margin-bottom: 5px;
    float: left;
}

.map-layer-check-label {
    padding-left: 5px;
}

.skeleton-single-block {
    --c-bg: #EBEDEF !important;
    --bg: #E0E3E6 !important;
    --shine: #FAFBFB !important;
    --l-h: 100% !important;
    --c-w: 100% !important;
    min-height: 30px !important;
}

.skeleton-image-block {
    --c-bg: #EBEDEF !important;
    --bg: #E0E3E6 !important;
    --shine: #FAFBFB !important;
    --i-w: 200px !important;
}

.skeleton-list-block {
    --c-bg: #EBEDEF !important;
    --bg: #E0E3E6 !important;
    --shine: #FAFBFB !important;
    --c-w: 100% !important;
    --lines: 10 !important;
    min-height: 30px !important;
}

.skeleton-rect-block {
    --rect-h: 300px;
    --c-w: 100% !important;
    --lines: 0;
    min-height: 30px !important;
}

.panel-bg-img-media {
    background-image: url('../img/picture-o.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-bg-img-datagrid {
    background-image: url('../img/table.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-bg-img-map {
    background-image: url('../img/map-o.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-bg-img-reports {
    background-image: url('../img/bar-chart.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-bg-img-chart {
    background-image: url('../img/line-chart.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-bg-img-dashboard {
    background-image: url('../img/tachometer.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-bg-img-forms {
    background-image: url('../img/pencil-square-o.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-bg-img-documents {
    background-image: url('../img/files-o.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-bg-img-exports {
}

.panel-bg-img-detail {
    background-image: url('../img/list.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-bg-img-intelligence {
    background-image: url('../img/lightbulb-o.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.toast-success {
    background: #e0fde0;
    color: darkgreen;
}

.toast-error {
    background: #ffe6ec;
    color: darkred;
}

.toast-close {
    color: #000;
}



#tblDetailView {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

#tblDetailView th, #tblDetailView td {
    padding: 10px;
    text-align: left;
    border: 1px solid #E8EAEC;
}

#tblDetailView th {
    font-weight: 600;
    padding-right: 50px;
}

#tblDetailView tr:nth-child(even) {
    background-color: #F7F8FA; /* Light gray */
}

#tblDetailView tr:nth-child(odd) {
    background-color: #ffffff; /* White */
}


.e-reportviewer-viewer .e-native-toolbar {
    z-index: 999!important;
}


.vrow {
    width: 100%;
}


#divIntelligencePromptResponse {
    width: 100%;
    overflow: auto;
}

#divIntelligencePromptResponse table, #divIntelligencePromptResponse th, #divIntelligencePromptResponse td {
    border: 1px solid black;
    border-collapse: collapse;
}

#divIntelligencePromptResponse table {
    margin: auto;
    margin-bottom: 30px;
    background-color: white;
}

#divIntelligencePromptResponse img {
    margin: auto;
    margin-bottom: 30px;
    display: block;
}

#divIntelligencePromptResponse th, #divIntelligencePromptResponse td {
    padding: 10px;
}

#divIntelligencePromptResponse th {
    background-color: #F2F4F7;
}

.container-auth {
    text-align: center;
    padding-top: 40px;
    padding-left: 25px;
    padding-right: 25px;
}

.center-div {
    margin: auto;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #4093cf;
}

.nav-link {
    color: #4093cf;
}

#divMapLegendContent {
    margin: auto;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    float: left;
    background-color: white;
}

#divMapLayersContent {
    margin: auto;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    float: left;
    background-color: white;
}

#ddlProject .tui-select-box-dropdown {
    z-index: 999999 !important;
}

#ddlSurvey .tui-select-box-dropdown {
    z-index: 999999 !important;
}

#ddlView .tui-select-box-dropdown {
    z-index: 999999 !important;
}

select {
    border-radius: 5px !important;
    border-color: #ccc !important;
    padding: 1px;
}

.toggle-switch {
    height: 25px !important;
    width: 50px !important;
}

.input-group-text {
    width: 60px;
}


/*------------------------------------*/
/*                ADMIN               */
/*------------------------------------*/
#divAdminMainContent {
    width: 100%;
    background-color: white;
    padding: 20px;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 1;
}

.nav-item {
    margin-left: 10px;
    margin-right: 10px;
}