﻿* {
    font-family: 'Roboto', sans-serif;
}

/* COLORS BG*/
.blue_bg {
    background: #043c6b;
}
.lightBlue_bg {
    background: #9ce5f6;
}
.grayBlue_bg {
    background: #7eafcd;
}
.darkGrayBlue_bg {
    background: #11252c
}
.gray_bg {
    background: #394c52
}
.sugarWhite_bg {
    background: #eff3f6
}
/* COLORS BG*/

/* COLORS TEXT*/
.blue_txt {
    color: #043c6b;
}
.lightBlue_txt {
    color: #9ce5f6;
}
.grayBlue_txt {
    color: #7eafcd;
}
.darkGrayBlue_txt {
    color: #11252c
}
.gray_txt {
    color: #394c52
}
.sugarWhite_txt {
    color: #eff3f6
}
/* COLORS TEXT*/

/* TEXT WEIGHTS */
.lightWeight{
    font-weight:100;
}
.regularWeight {
    font-weight: 300;
}
.mediumWeight {
    font-weight: 400;
}
.semiboldWeight {
    font-weight: 500;
}
.boldWeight {
    font-weight: 700;
}
.blackWeight {
    font-weight: 900;
}
/* TEXT WEIGHTS */







.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}





    body {

}

.login_container{
    width:100%;
    min-height:calc(100vh - 100px);
    display:flex;
    justify-content:center;
    align-items:center;
}

.login_section {
    max-width: 320px;
    text-align: center;
}

.primary_button {
    background: #043c6b;
    color: #fff;
    padding: 15px 15px;
    border: 0px;
    border-radius: 10px;
    min-width: 300px;
    font-weight:700;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
    .primary_button:hover {
        background: #0c538f;
    }
.login_section .form-control {
    padding: 25px 15px;
    background: #eff3f6;
    color: rgba(17,37,44,0.53);
    border: 0px;
    border-radius: 10px;
}

.mainsys_login_footer{
    width:100%;
    text-align:center
}



.rotate180{
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
}


.sidebar {
    margin: 0;
    padding: 0;
    width: 300px;
    background-color: #043c6b;
    position: fixed;
    z-index: 100;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
    .sidebar .sideHead {
        display: flex;
        color: white;
        padding: 16px 24px;
        text-decoration: none;
        justify-content:center;
        align-items:center;
        height:150px;
    }
    .sidebar .sideHead img{
        padding-right:20px
    }
    .sidebar .dd_title {
        display: flex;
        justify-content:space-between;
        align-items:center;
        color: white;
        padding: 16px 24px;
        text-decoration: none;
        cursor:pointer;
    }
        .sidebar .dd_title .dd_arrow {
            font-size: 12px;
            -webkit-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
        }
        .sidebar a {
            display: block;
            color: white;
            padding: 16px 24px;
            text-decoration: none;
        }


        .sidebar a.active {
            background-color: rgba(255,255,255,0.2);
            color: white;
        }

        .sidebar a:hover:not(.active), .sidebar .dd_title:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
            .sidebar a i, .sidebar .dd_title i:first-child {
                margin-right: 20px;
                width: 15px;
                display: inline-block;
            }

    .sidebar .dd-content {
        display: none;
        min-width: 100%;
        padding: 0px 16px;
        z-index: 1;
    }
    .sidebar .dd.active .dd-content {
        display: block;
    }

        .sidebar .dd-content a {
            padding-left: 47px;
        }


        div.main_content {
            margin-left: 300px;
            padding: 0px;
            height: 100vh;
        }
.sidebar_top {
    min-height: calc(100vh - 100px);
    overflow-y:auto;
}
.mainsys_footer{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100px;
    width:100%;
    text-align:center;
}


.overviewGrid {
    height: 50vh;
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.overviewGrid.closed {
    height: 17vh;
}
.indexMapContainer {
    height: 50vh;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
    box-shadow: 0px -2px 4px 0px rgba(0,0,0,0.2);
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
    .indexMapContainer.opened {
        height: 83vh;
    }

.overviewGridReposition {
    height: 180px;
    width: 100%;
}
.indexMapContainerReposition {
    height: calc(100vh - 180px);
    width: 100%;
    box-shadow: 0px -2px 4px 0px rgba(0,0,0,0.2);
    position: relative;
}
    #mapIndex.indexMap {
        height: 100%;
        width: 100%;
    }
.enlargeMap {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px;
    line-height: 10px;
    border: 0px;
    border-radius: 100px;
    background: #fff;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.3);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor:pointer;
}
    .enlargeMap:hover {
        -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    }

    .enlargeMap.opened svg {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .intMap {
        height: 100vh;
        width: 650px;
        position: fixed !important;
        top: 0px;
        right: 0px;
        z-index: 10;
        -webkit-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.4);
        box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.4);
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    .intMap.opened {
        -webkit-transform: translate3d(0vw, 0, 0);
        transform: translate3d(0%, 0, 0);
    }

.intMapIn{
    width:100%;
    height:100%;
}
.intMap button.closeIntMap {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 16px;
    line-height: 10px;
    border: 0px;
    border-radius: 100px;
    background: #fff;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.6);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
    .intMap button.closeIntMap:hover {
        -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
    }







    .main_filters_container {
        position: absolute;
        top: 0px;
        z-index: 2;
        width: calc(100% - 300px);
        overflow-x: auto;
        height: 250px;
    }




    .main_filters_container .swiper-container {
        width: 100%;
        height: 100%;
    }

    .main_filters_container .swiper-slide {
        text-align: center;
        font-size: 18px;
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        padding: 40px;
        padding-right: 0px;
        padding-left: 0px;
        width: 300px;
        height:250px;
    }
    .main_filters_container .swiper-slide:first-child {
        margin-left: 50px;
    }
    .main_filters_container .swiper-slide:last-child {
        margin-right: 50px;
    }
    .main_filters_container .swiper-container .swiper-slide-card {
        background: #fff;
        width: 100%;
        height: 100%;
        padding: 25px;
        padding-bottom: 16px;
        border-radius: 20px;
        -webkit-box-shadow: 0px 6px 30px -1px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 6px 30px -1px rgba(0,0,0,0.3);
        box-shadow: 0px 6px 30px -1px rgba(0,0,0,0.3);
        text-align: left;
        -webkit-transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out;
        cursor:pointer;
    }
        .main_filters_container .swiper-container .swiper-slide-card:hover{
            -webkit-transform:scale(1.05);
            transform:scale(1.05);
        }
        .main_filters_container .swiper-slide .swiper-slide-card {
            background: #fff;
            color: #043C6B;
        }
    .main_filters_container .swiper-slide.active_card .swiper-slide-card {
        background: #11252C;
        color: #fff;
    }
        .main_filters_container .swiper-slide .swiper-slide-card .card_sub {
            color: #7EAFCD;
        }

.main_filters_cont{
    padding:20px;
}

.main_filters_container .swiper-slide-card h6,
.main_filters_cont h6 {
    font-size: 14px;
    color: #043C6B;
}
        .main_filters_container .swiper-slide-card h4,
        .main_filters_cont h4 {
            font-size: 36px;
            font-weight: 900;
            line-height: 36px;
            color: #043C6B;
        }
.card_sub {
    display: inline-flex;
    margin-right: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #7EAFCD;
}
    .card_sub:last-child {
        margin-right: 0px;
    }
    .card_sub h5 {
        font-size: 13px;
        font-weight: 300;
        margin: 0;
    }
    .card_sub span {
        font-size: 26px;
        font-weight: 900;
        line-height:36px;
    }
    .card_sub div{
        margin-right:10px;
    }






    .styled-checkbox {
        position: absolute;
        opacity: 0;
        display:none;
    }

        .styled-checkbox + label {
            position: relative;
            cursor: pointer;
            padding: 0;
            opacity: 0;
            pointer-events: none;
        }
.main_filters_container .swiper-slide.active_card .styled-checkbox + label {
    opacity: 1;
    pointer-events: auto;
}



.main_filters_container .swiper-slide .styled-checkbox + label:before {
    content: '';
    margin-right: 0px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.1);
    border-radius: 100px;
}

.main_filters_container .swiper-slide .styled-checkbox:hover + label:before {
    background: rgba(0,0,0,0.1);
}



.main_filters_container .swiper-slide .styled-checkbox:checked + label:before {
    background: rgba(0,0,0,0.1);
}

.main_filters_container .swiper-slide .styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}

    .main_filters_container .swiper-slide .styled-checkbox:disabled + label:before {
        box-shadow: none;
        background: #ddd;
    }

.main_filters_container .swiper-slide .styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    background: black;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 black, 4px 0 0 black, 4px -2px 0 black, 4px -4px 0 black, 4px -6px 0 black, 4px -8px 0 black;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}





.main_filters_container .swiper-slide.active_card .styled-checkbox + label:before {
    content: '';
    margin-right: 0px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
}

.main_filters_container .swiper-slide.active_card .styled-checkbox:hover + label:before {
    background: rgba(255,255,255,0.1);
}

.main_filters_container .swiper-slide.active_card .styled-checkbox:checked + label:before {
    background: rgba(255,255,255,0.1);
}

.main_filters_container .swiper-slide.active_card .styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}

    .main_filters_container .swiper-slide.active_card .styled-checkbox:disabled + label:before {
        box-shadow: none;
        background: #ddd;
    }

.main_filters_container .swiper-slide.active_card .styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
















.main_content_in{
    padding:30px;
}
    .main_content_in h1 {
        font-weight: 800;
        font-size: 36px;
        color: #043c6b;
    }
    .main_content_in td {
        text-align: left !important;
    }

.dx-datagrid-borders > .dx-datagrid-filter-panel, .dx-datagrid-borders > .dx-datagrid-headers {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #EFF4F7;
}
.dx-datagrid-borders > .dx-datagrid-rowsview, .dx-datagrid-borders > .dx-datagrid-total-footer {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.main_content_in .dx-toolbar-text-auto-hide .dx-button .dx-button-text {
    display: inline;
}
.dx-toolbar-button.dx-toolbar-text-auto-hide .dx-button.dx-state-hover .dx-icon {
    color: rgb(255 255 255);
}
.dx-toolbar-button.dx-toolbar-text-auto-hide .dx-button .dx-icon {
    width: 18px;
    height: 26px;
    background-size: 18px 18px;
    font-size: 18px;
    line-height: 26px;
    color: rgb(255 255 255);
}
.dx-button {
    height: 37px;
}
    .dx-button-mode-text {
    background-color: #043c6b;
    color: rgb(255 255 255);
}
        .dx-button-mode-text.dx-state-hover {
            background: #7eafcd;
        }
        .dx-toolbar-button.dx-toolbar-text-auto-hide .dx-button .dx-button-content {
            padding: 5px 16px;
        }

.dx-toolbar-button.dx-toolbar-text-auto-hide .dx-button.dx-button-has-icon.dx-button-has-text {
    border-radius: 3px;
}
.dx-datagrid-headers .dx-datagrid-table .dx-row > td {
    padding-top: 20px;
    padding-bottom: 20px;
}
.dx-datagrid .dx-row > td {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 16px;
}
.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td.dx-cell-modified:not(.dx-field-item-content).dx-command-edit.dx-command-edit-with-icons .dx-link, .dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td.dx-command-edit.dx-command-edit-with-icons .dx-link, .dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td.dx-datagrid-invalid:not(.dx-field-item-content).dx-command-edit.dx-command-edit-with-icons .dx-link {
    width: 26px;
    height: 16px;
    background-position: 0 0;
    background-size: 26px 16px;
    padding: 0;
    font-size: 24px;
    text-align: center;
    line-height: 16px;
    margin: 0 2px;
    vertical-align: middle;
}
.dx-datagrid .dx-link {
    color: #79a8c0;
}



.kadoi_img{
    width:100px;
    height:100px;
    border-radius:20px;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    cursor:pointer;
}
.kadoi_subtitle {
    padding-bottom: 14px;
    font-size: 13px;
    color: #b5b5b5;
}

.showInMap {
    margin-top: 10px;
    padding: 14px;
    border-radius: 5px;
    background: #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    color: #043c6b;
    cursor: pointer;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
    border: 0px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
    .showInMap i{
        margin-right:4px;
    }
    .showInMap:hover {
        box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
    }

.overviewGrid #dashboardGrid{
    height:calc(50vh - 180px);
    padding:10px;
}

.overviewGrid .dx-item.dx-tile{
    cursor:pointer;
}
.overviewGrid .dx-item.dx-tile.active-item {
    background: #11252C;
    color: #fff;
}
.overviewGrid .dx-item.dx-tile.active-item h6,
.overviewGrid .dx-item.dx-tile.active-item h4 {
    color: #fff;
}

.loader_container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    display: none;
}
.loader_container .dx-overlay-content.dx-resizable.dx-loadpanel-content {
    left: auto !important;
    top: auto !important;
    transform: translate(0,0) !important;
    position: relative !important;
}

.overviewGridReposition .dx-item.dx-tile.active-item {
    background: #11252C;
    color: #fff;
}

    .overviewGridReposition .dx-item.dx-tile.active-item h6,
    .overviewGridReposition .dx-item.dx-tile.active-item h4 {
        color: #fff;
    }

.toggleMap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 25px;
    min-width: 170px;
    display: flex;
    flex-direction: row-reverse;
    align-items:center;
}
    .toggleMap .toggle_txt {
        font-size: 14px;
        display: block;
        padding-left:10px;
    }
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin: 0;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

    .slider.round:before {
        border-radius: 50%;
    }




.infoWStyle button {
    border: 0px;
    margin-right: 5px;
    padding: 10px;
    border-radius:5px;
}
.infoWStyle div {
    margin-bottom: 4px;
    padding: 10px;
    font-weight: 700;
    font-size: 16px;
}
    .infoWStyle button.updateMove {
        background: green;
        color: #fff;
    }






















































    @media screen and (max-width: 1200px) {
        .sidebar {
            width: 70px;
        }

        .sideHead h5 {
            font-size: 18px
        }

        .sb_titles {
            font-size: 14px;
        }

        .sb_titles, .sidebar .dd_title .dd_arrow {
            display: none;
        }

        .sidebar .sideHead img {
            padding-right: 0px;
        }

        .sidebar:hover {
            width: 270px;
            box-shadow: 10px 0px 10px 0px rgba(0,0,0,0.2);
        }

            .sidebar:hover .sb_titles {
                display: inline-block;
            }

            .sidebar:hover .dd_title .dd_arrow {
                display: flex
            }

            .sidebar:hover .sideHead img {
                padding-right: 20px;
            }


        div.main_content {
            margin-left: 70px;
        }

        .main_filters_container {
            width: calc(100% - 70px);
            height: 190px;
        }

            .main_filters_container form {
                height: 100%;
            }

            .main_filters_container .swiper-slide {
                width: 230px;
                padding: 20px;
                padding-right: 0px;
                padding-left: 0px;
                height: 175px;
            }

                .main_filters_container .swiper-slide:first-child {
                    margin-left: 20px;
                }

                .main_filters_container .swiper-slide:last-child {
                    margin-right: 20px;
                }

            .main_filters_container .swiper-container .swiper-slide-card {
                background: #fff;
                width: 100%;
                height: 100%;
                padding: 15px;
                padding-bottom: 10px;
                border-radius: 20px;
                text-align: left;
            }

            .main_filters_container .swiper-slide-card h6 {
                font-size: 12px;
            }

            .main_filters_container .swiper-slide-card h4 {
                font-size: 36px;
                font-weight: 900;
                line-height: 36px;
            }

        .card_sub {
            margin-right: 10px;
        }

            .card_sub h5 {
                font-size: 11px;
                margin: 0;
            }

            .card_sub span {
                font-size: 16px;
                font-weight: 900;
                line-height: 26px;
            }
    }
@media screen and (max-width: 767px) {
    .intMap {
        height: 100vh;
        width: 100%;
    }
}

#locationField {
    position: absolute;
    top: 70px;
    height: 50px;
    left: 10px;
    width: 500px;
}
#locationField input{
    width:100%;
    height:50px;
    padding-left:12px;
    padding-right:12px;
}