﻿html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fafafa;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
}

.custom-close {
    opacity: 0.5;
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 18px;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    cursor: pointer;
}

a:focus, *:focus {
    outline: none;
}

/* ICON COLORS */
.nevatxt {
    color: #a1c4fd;
}


h1, h2 {
    font-weight: 300;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

label {
    font-weight: 300;
}

.custom-control-label {
    font-weight: normal;
}

.custom-control:hover {
    background-color: #f6f6f6
}

.vesselcheckbox .custom-control-input {
    position: relative;
}

.mark, mark {
    background-color: #efd968;
}

.modal {
    background: rgba(250,250,250,.8);
}

.modal-content {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

#wrapper {
    min-height: 100%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
}

#main-wrapper {
    height: 100%;
    overflow-y: auto;
    background-color: white;
}

#sidebar-wrapper {
    height: 100%;
}

.row-fluid {
    margin-top: 35px;
}

/* CHECKBOX */
.cbx {
    -webkit-perspective: 20;
    perspective: 20;
    position: absolute;
    top: 10px;
    left: 50%;
    margin: -12px;
    border: 2px solid #e8e8eb;
    background: #e8e8eb;
    border-radius: 4px;
    transform: translate3d(0, 0, 0);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .cbx:hover {
        border-color: #0b76ef;
    }

.flip {
    display: block;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    width: 20px;
    height: 20px;
}

#cbx {
    display: none;
}

    #cbx:checked + .cbx {
        border-color: #0b76ef;
    }

        #cbx:checked + .cbx .flip {
            transform: rotateY(180deg);
        }

.front,
.back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
}

.front {
    background: #fff;
    z-index: 1;
}

.back {
    transform: rotateY(180deg);
    background: #0b76ef;
    text-align: center;
    color: #fff;
    line-height: 20px;
    box-shadow: 0 0 0 1px #0b76ef;
}

    .back svg {
        margin-top: 3px;
        fill: none;
    }

        .back svg path {
            stroke: #fff;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }





/* BACKGROUNDS*/
.bgWhite {
    background: #fff;
}

.alert-tag {
    border: 1px solid #ccc;
}
/* Header */
.topbar {
    background: #fff;
    -webkit-box-shadow: 0 4px 26px -14px rgba(182, 182, 182, 0.5);
    box-shadow: 0 4px 26px -14px rgba(182, 182, 182, 0.5);
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    height: 75px;
}

.navigation-block header {
    padding: 10px 20px;
    background: #fff;
}

.logo-wrapper {
    max-width: 270px;
    width: 270px;
}

.toggle-menu.mob {
    cursor: pointer;
}

.toggle-menu .mdi:before {
    font-size: 2.6em;
}

.toggle-menu .menuBtn {
    display: inline-block;
    cursor: pointer;
}

.menuBtnFlip {
    transform: scaleX(-1);
}

.sticky-top {
    position: sticky;
    top: 0;
}

.sticky-bottom {
    position: absolute;
    bottom: 0px;
    color: #fff;
    height: 50px;
    font-size: 13px;
    border-top: 1px solid #162d42;
}

.btnText {
    background: transparent;
    padding: 0;
    margin-top: 30px;
    color: #2E4C89;
}

.btnText[disabled] {
    background-color: unset !important;
}


.side {
    float: left;
}

.navigation-block {
    height: auto;
    float: left;
    position: fixed;
    height: 100vh;
    transition: ease-in all .2s;
    z-index: 999;
}

.content-full {
    margin-left: 0 !important;
}

.content-block {
    min-height: 100vh;
    padding: 20px 15px;
    color: #555555;
    transition: ease-in all .2s;
}

.content-card {
    border: none;
}

.content-card-chart {
    background-color: transparent !important;
    padding: 0 !important;
    border: none;
}

.btn-content {
    padding: 10px;
    font-size: 20px;
    background: #f4f8fb;
    border-radius: 3px;
    border: 1px solid #f4f8fb;
    color: #007aff;
    transition: transform ease-in .2s;
    display: flex;
}

    .btn-content .show-map, .btn-content .hide-map {
        font-size: 14px;
        color: #616466;
        padding: 0 5px;
    }

    .btn-content .show-map {
        display: none;
    }

    .btn-content.collapsed .show-map {
        display: inline-block;
    }

    .btn-content.collapsed .hide-map {
        display: none;
    }

    .btn-content .mdi:before {
        transform: rotate(180deg);
    }


    .btn-content:hover {
        color: #0069d9;
        background: #e8f0f6;
        border: 1px solid #dbe8f2;
    }



    .btn-content.collapsed .mdi:before {
        transform: rotate(0deg);
    }

    .btn-content:focus {
        border: none;
        outline: none;
    }

    .btn-content .dropdown-divider {
        display: none;
    }

/* Pill menu*/
.menu-pills {
    position: fixed;
    top: 75px;
    width: 100%;
    padding: 15px 40px;
    z-index: 99;
    left: 320px;
    /*width: calc(100% - 368px);*/
}

    .menu-pills .nav-pills .nav-item .nav-link {
        padding: 10px 20px;
        font-size: 14px;
        color: #616466;
        background: #f4f4f4;
        /*box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);*/
        border-radius: 15px;
        /*border: 1px solid #ced4da;*/
    }

        .menu-pills .nav-pills .nav-item .nav-link:hover {
            background: #ebebec;
        }

        .menu-pills .nav-pills .nav-item .nav-link.active {
            background: #d9dbdb;
        }

    .menu-pills .nav-pills {
        margin-bottom: 0;
    }
/* Navigation */
.main-navigation {
    padding: 20px 0;
    margin-right: 10px;
}

.main-navigation, .slimScrollDiv {
    height: calc(100vh - 140px) !important;
}

.current-time {
    padding: 10px;
    font-size: 12px;
    color: #fff;
    background: #141414;
    margin-bottom: 10px;
}

.menu-panel, .menu-panel-single {
    padding: 5px 0;
}

.panel-heading {
    padding: 0 10px;
    margin: 2px 0;
}

    .panel-heading.current {
        font-weight: bold;
    }

.menu-panel-title {
    transition: ease-in all .2s;
    padding-left: 10px;
    position: absolute;
}


.menu-panel a, .menu-panel-single a, .panel-heading {
    position: relative;
}

.menu-arrow {
    display: inline-block;
    position: absolute;
    right: 0;
    transition: ease-in all .2s;
}

.menu-info {
    left: 35px;
}

.menu-info-sub {
    right: 10px;
}

.menu-panel.active, .menu-panel-single.active {
    margin: 10px 0;
}

    .menu-panel.active .menu-arrow {
        transform: rotate(180deg);
    }



.menu-panel a, .menu-panel-single a {
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    letter-spacing: .05em;
    margin-right: 0px;
}

.submenuTitle {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: default;
}

.menucard a, .submenuTitle {
    height: 26px;
    line-height: 26px;
    padding-left: 25px;
    margin: 5px 40px 0px 0;
}

    .menucard a .mdi {
        height: 30px;
        width: 30px;
    }

.panelSub div a {
    padding-left: 40px;
    margin: 0 40px 0 0;
}

.menu-panel a.current, .menu-panel-single a.current, .menu-panel a:hover, .menu-panel-single a:hover {
    -webkit-border-top-right-radius: 15px;
    -webkit-border-bottom-right-radius: 15px;
    -moz-border-radius-topright: 15px;
    -moz-border-radius-bottomright: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.menu-panel .panel-heading .mdi, .menu-panel-single .mdi {
    display: block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    float: left;
    font-size: 1.5em;
    text-align: center;
}

.menu-panel .panel-heading .mdi.mdi-info {
        height: 15px;
        width: 15px;
        line-height: 12px;
        font-size: 1.2em;
        color: yellow;
}

.menucard a .mdi.mdi-info {
    color: yellow;
}

/* Navigation Scrollbar*/
.scrollbar {
    margin-left: 30px;
    float: left;
    height: 300px;
    width: 65px;
    background: #fff;
    overflow-y: scroll;
    margin-bottom: 25px;
}

.scrollbar-no-margin {
    float: left;
    width: 65px;
    background: #fff;
    overflow-y: scroll;
}

.force-overflow {
    min-height: 450px;
}

.scrollbar-primary::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-primary::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #4285F4;
}

.scrollbar-danger::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar-danger::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-danger::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #ff3547;
}

.scrollbar-warning::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar-warning::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-warning::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #FF8800;
}

.scrollbar-success::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar-success::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-success::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #00C851;
}

.scrollbar-info::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar-info::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-info::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #33b5e5;
}

.scrollbar-default::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar-default::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-default::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #2BBBAD;
}

.scrollbar-secondary::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar-secondary::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-secondary::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #aa66cc;
}
/* User avatar */

.user-profile .nav {
    margin-bottom: 0;
}

    .user-profile .nav .nav-item .nav-link {
        padding: .6rem 1rem;
    }


        .user-profile .nav .nav-item .nav-link .mdi {
            font-size: 24px;
        }

        .user-profile .nav .nav-item .nav-link.user-logout {
            padding-top: 0.7rem;
        }

    .user-profile .nav .nav-item .dropdown-menu .dropdown-item {
        font-size: 14px;
        line-height: 16px;
    }



.user-profile {
    padding: 10px;
}



    .user-profile .text-right .mdi:before, .mdi-set {
        font-size: 19px;
    }

    .user-profile .text-right .mdi {
        border: 1px solid #4c4c4c;
        text-align: center;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: inline-block;
        margin-left: 5px;
    }

    .user-profile .client-name {
        padding: .5rem 1rem;
        font-size: 11px;
    }

        .user-profile .client-name strong {
            display: block;
            line-height: 13px;
            letter-spacing: 1px;
        }

            .user-profile .client-name strong a {
                font-size: 13px;
                line-height: 18px;
            }

                .user-profile .client-name strong a:hover {
                    text-decoration: none;
                }

/* HELPDESK*/
.helpdesk {
    /*    margin-left: 5px;
    padding: 5px 0 0 10px;
    border-left: 1px solid #ccc;*/
    margin-left: 5px;
    padding: .4rem 1rem .6rem 1rem;
    border-left: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}


    .helpdesk .mdi {
        font-size: 2.1em;
    }

        .helpdesk .mdi a {
        }

            .helpdesk .mdi a:hover {
            }

/* DataTables */
.dataTables_wrapper {
    width: 100%;
}

    .dataTables_wrapper table.table thead .sorting, table.dataTable thead .sorting, table.dataTable thead .sorting_asc {
        background-image: url("../img/plugins/dataTables/sort_both.png");
    }

.table-contensed th,
.table-contensed td {
    padding: 3px;
    line-height: 1.2em;
    text-align: center;
    font-size: .9em;
}

.table-contensed tr td:first-child {
    text-align: left;
    color: rgba(0, 0, 0, 0.75)
}

table.dataTable tbody th,
table.dataTable.stripe tbody tr.odd:hover, table.dataTable.display tbody tr.odd:hover {
    background-color: #f6f6f6;
}

table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
    background-color: #fafafa;
}

table.dataTable.display tbody tr.odd:hover > .sorting_1, table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1 {
    background-color: #eaeaea;
}

.dataTables_scrollBody table thead th {
    display: none;
}

td#Comment {
    white-space: pre-line;
}

td#Mobile, td#Actions {
    white-space: nowrap;
}

#data-table-simple_wrapper {
    padding: 15px;
    background: #fff;
}

.dataTables_wrapper .dataTables_paginate span {
    padding: 0 15px;
}

    .dataTables_wrapper .dataTables_paginate span .paginate_button.current, .dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover, .dataTables_wrapper .dataTables_paginate span .paginate_button:hover {
        background: transparent;
        border-radius: 50%;
        width: 35px;
        height: 35px;
    }

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    border: 1px solid #e9e9e9;
    color: #2e2e2e !important;
    font-weight: bold;
    background: #fff !important;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover {
    border: 1px solid #e9e9e9;
    background: #e9e9e9 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: 1px solid #e9e9e9;
    background: #e9e9e9 !important;
    color: #2e2e2e !important;
}

.dataTables_wrapper .dataTables_filter input, .dataTables_length select {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 15px;
}

.dataTables_length select {
    height: calc(1.5em + .75rem + 2px);
}

.dtr-title {
    min-width: 55px;
    display: inline-block;
}

.dtr-title {
    font-weight: bold;
    padding-right: 10px;
}

.dtr-details {
    text-align: left;
}

    .dtr-details li {
        padding: 2px 0;
    }

.dtr-data div {
    display: inline;
}

#totalUptime {
    /*display: inline-block;*/
}

.uptime .progress, #uptime .progress {
    margin: 0;
}

#uptime .progress {
    height: 20px !important;
    margin-top: 10px;
}

.tableStats .mdi {
    font-size: 1.3em;
}

.dtr-details .dtr-data a {
    font-size: 1.3em;
}

.table-icons, .table-icons-new {
    /*padding-left:40px!important;*/
    vertical-align: middle;
}

.table-icons-new {
    white-space: nowrap;
    border-top: none !important;
}

.table-icons .has-count {
    position: relative;
    padding: 0 5px 0 0;
}

.table-icons-new div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.table-icons div, .dtr-data .has-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}

    .table-icons div, .table-icons .has-link a, .dtr-data .has-link, .dtr-data .has-link a {
        color: #6f6f6f;
    }

        .table-icons .has-link:hover, .dtr-data .has-link:hover {
            background-color: #ccc;
            border-radius: 50%;
        }

            .table-icons .has-link:hover a, .dtr-data .has-link:hover a {
                color: #444;
            }

.table-icons > div > a {
    color: #cccccc;
}

.table-icons a .mdi, .table-icons-new .mdi, .table-icons-new a .mdi {
    font-size: 1.4em;
}

.table-icons-new .counts {
    position: absolute;
    right: -7px;
    top: -4px;
    font-size: 9px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    background: #ddd;
    border-radius: 50%;
    color: #6f6f6f;
}

    .table-icons-new .counts span {
        font-weight: bold;
        font-size: 12px;
    }

.action-helper {
    position: relative;
    text-align: center;
}

.dotsmenu {
    display: inline-block;
    height: 30px;
    width: 30px;
    margin: auto 0;
    border-radius: 50%;
    background: #fff;
    padding-top: 5px;
    font-size: 20px;
}

    .dotsmenu a .mdi {
        font-size: 20px;
        padding-left: 5px
    }

    .dotsmenu a .mdi, .dotsmenu .mdi {
        color: #616466;
    }

    .dotsmenu.show {
        background: #ccc;
    }

.table-actions {
}

.table-icons.table-actions {
    position: absolute;
    display: none;
    background: #f6f6f6;
    border: 1px solid #ccc;
    border-radius: 5px;
    right: 45px;
    top: -12px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.095);
}

    .table-icons.table-actions.show {
        display: flex !important;
    }

/* NEW TABLE ICONS */
.mgreen {
    color: #00bd9d !important;
}

.idefault-txt {
    color: #666666 !important;
}

.isearch-txt {
    color: #1b3b6f !important;
}

.ibin-txt {
    color: #cf000f !important;
}

.inoeye-txt {
    color: #831123 !important;
}

.ieye-txt {
    color: #00bd9d !important;
}

.ihistory-txt {
    color: #5c95ff !important;
}

.isend-txt {
    color: #1b3b6f !important;
}

.iexport-txt {
    color: #c57b57 !important;
}

.icopy-txt {
    color: #348aa7 !important;
}

.ipencil-txt {
    color: #1f487e !important;
}

.imasspencil-txt {
    color: #8332ac !important;
}

.isettings-txt {
    color: #736372 !important;
}

.iassign-txt {
    color: #c99418 !important;
}

.iflag-txt {
    color: #7e3f8f !important;
}

.ichart-txt {
    color: #6e44ff !important;
}

.iadd-txt {
    color: #2abb9b !important;
}

.ireset-txt {
    color: #5c7c5f !important;
}

.iverifyok-txt {
    color: #03a678 !important;
}

.iverifyno-txt {
    color: #c0392b !important;
}

.iuser-txt {
    color: #2574a9 !important;
}


.persianredtext {
    color: #650d1b;
}

.link-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 3px;
    color: #fff;
}

.link-icon-text {
    display: inline-flex;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: 3px;
    transition: background-color linear .2s;
    position: relative;
}

.link-icon-blank {
    display: inline-flex;
    width: 35px;
    height: 35px;
    margin: 3px;
}

table.dataTable.display tbody tr:hover > .table-icons-new .link-icon-text {
    background-color: #fff;
    box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.05);
}

.link-icon-text:hover {
    box-shadow: 1px 1px 4px 0px rgba(201,225,253,1) !important;
    border: 1px solid rgba(201,225,253,1);
}


.link-icon:hover {
    color: #fff;
    background-color: #5f6368;
}

.link-icon.persianred:hover {
    color: #fff;
    background-color: #831123;
}

.no-allow {
    cursor: not-allowed;
}

.sticky-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    background-color: #fff;
    border-top: 1px solid #e8f0f6;
    box-shadow: 0px -1px 5px 0px rgba(0,0,0,.075);
    width: 100%;
}

.btn-top-arrow {
    color: #ccc;
    background-color: #fff;
    border-color: #fff;
    transition: color linear .5s;
}

    .btn-top-arrow.show {
        color: #212529;
        cursor: pointer;
    }

    .btn-top-arrow.no-allow:hover {
        color: #ccc;
        background-color: #fff;
        border-color: #fff;
    }


    .btn-top-arrow:hover {
        color: #212529;
        background-color: #f8f9fa;
        border-color: #f8f9fa;
    }

.sticky-margin {
    margin-bottom: 100px;
}
/* CUSTOM BUTTONS*/
.fixed-actions {
    position: fixed;
    bottom: 0;
    background: #fff;
    z-index: 2;
    left: 0;
    width: 100%;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.25) !important;
    padding: 15px;
}

.btn-new, .btn-new:not([href]) {
    background: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    color: #007bff;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.2);
    transition: ease-in-out all .2sec;
}

    .btn-new:hover {
        background: #fff;
        color: #007bff;
        -webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.2);
        -moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.2);
        box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.2);
    }


/* PROGRESS BAR TABLE */
.progress {
    height: 26px !important;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background-image: none;
    background-color: #e6e6e6;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}



.main-navigation > ul > li > a {
    line-height: 32px;
    letter-spacing: 0.3px;
    color: #fff;
}

    .main-navigation > ul > li > a > .mdi {
    }

.widget {
    margin: 0 10px 10px 0;
}

.widgets-container {
    margin: 0 0 20px 0;
    border-bottom: 1px solid #d2d3d5;
}


.rssnews {
    height: 900px;
    overflow-y: scroll;
}

tbody > tr.NotPrimary > td {
    background-color: #fdf3cd !important;
}



tbody > tr.Alert > td {
    background-color: lightpink !important;
    color: #555555;
}

.ChangesLog {
    border-top: none !important;
    border-bottom: none !important;
    padding-top: 40px !important;
}

.awe-wrench {
    margin: 2px 10px 0 0;
}

.ChangesLog a {
    font-weight: normal !important;
    font-size: 14px !important;
}

.table-noborder {
    border-top: none;
    border-bottom: none;
}

    .table-noborder th,
    .table-noborder td {
        border-top: none;
    }

/*.dataTables_wrapper table.table thead .sorting,
.dataTables_wrapper table.table thead .sorting_desc,
.dataTables_wrapper table.table thead .sorting_asc {
    background-position: center left !important;
    padding-left: 20px;
}

.dataTables_wrapper table.table td {
    padding-left: 20px;
}

.dataTables_wrapper table.table th:empty {
    background: none;
}*/
.dataTables_wrapper table.table td {
    vertical-align: middle;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 5px;
    border-bottom: 1px solid #616466;
}

.tableStats a {
    color: #0598f5;
}

    .tableStats a:hover {
        color: #1db8b9;
    }

.table tr td {
    color: inherit;
}

.table th,
.table td {
    padding: 8px;
    line-height: 18px;
    text-align: left;
    vertical-align: middle;
    border-top: 1px solid #dddddd;
}

.table thead th {
    vertical-align: top;
}

.log-caret {
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-top: 6px solid #000000;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    content: "";
    bottom: 10px;
    right: 5px;
    position: absolute;
}


.log-caret-up {
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-bottom: 6px solid #000000;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    content: "";
    bottom: 10px;
    right: 5px;
    position: absolute;
}

.log-caret-container {
    height: 100%;
    position: relative;
    width: 100%;
    float: right;
}

.log-caret-container-hidden {
    height: 100%;
    position: relative;
    width: 100%;
    float: right;
    display: none !important;
}

pre.log-message {
    outline: 0px;
    display: block;
    font-family: monospace;
    padding: 0px;
    margin: 0px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
}

    pre.log-message > .string {
        color: green;
    }

    pre.log-message > .number {
        color: darkorange;
    }

    pre.log-message > .boolean {
        color: blue;
    }

    pre.log-message > .null {
        color: magenta;
    }

    pre.log-message > .key {
        color: red;
    }

.side-note {
    right: 15px;
    position: absolute;
    top: -12px;
}

.popover-content {
    max-height: 100px;
    overflow-y: auto;
}

.popover-ips {
    max-height: 60vh;
    overflow-y: auto;
    width: auto;
}

.text-right {
    text-align: right !important;
}

.addedDirectivesTable {
    border-top: transparent;
}

    .addedDirectivesTable thead tr {
        border-top: transparent;
    }

    .addedDirectivesTable tr {
        border-top: 1px solid #d4d4d4;
    }

        .addedDirectivesTable tr td {
            vertical-align: middle;
            word-wrap: break-word;
            word-break: break-all;
            white-space: normal;
        }

            .addedDirectivesTable tr td:first-child {
                padding-left: 10px;
            }

.trExpandedData {
    border-top: transparent !important;
    background: #f5f5f5;
}

    .trExpandedData:last-child {
        border-bottom: 1px solid #d4d4d4;
    }

.trExpanded {
    background: #ededed;
}

.trExpanded, .trExpandedData {
    border-left: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
}

    .trExpanded td {
        border-top: transparent;
        padding: 5px;
    }

    .trExpandedData td {
        border-top: transparent !important;
    }

    .trExpandedData td {
        padding: 10px 5px;
    }

.delete-style {
    color: #ae432e;
    cursor: pointer;
}

    .delete-style:hover {
        color: #712c1e;
    }

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0,0,0,0.1);
    border: 1px solid #ccc;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(left, #fff, #e4e4e4);
    border: 1px solid #aaa;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #fff;
    }

    ::-webkit-scrollbar-thumb:active {
        background: linear-gradient(left, #22ADD4, #1E98BA);
    }

.myInvalidClass {
    border: 1px red solid;
}

.mr-10 {
    margin-right: 10px;
}

.shared-preview {
    max-height: 60vh;
    overflow-y: scroll;
}

[class^="awe-"]:before,
[class*=" awe-"]:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    font-size: 18px;
    padding: 0 5px;
}

a [class^="awe-"],
a [class*=" awe-"] {
    display: inline-block;
    text-decoration: inherit;
}

ul#ui-id-1 {
    border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width:992px) {


    .navigation-block {
        width: 100%;
        left: -800px;
        transition: ease-in-out all .5s;
        z-index: 9999;
        top: 75px;
        height: calc( 100vh - 75px );
    }

    .content-block {
        margin-left: 0;
    }

    .is-mob .navigation-block {
        left: 0;
    }
}

@media (min-width:768px) {




    .navigation-block, .nav-hide.has-scrollbar .navigation-block {
        width: 320px;
    }
    /* HIDE MENU BAR*/
    .nav-hide main-navigation {
        margin-right: 0;
    }

    .nav-hide statuspage-widget {
        display: none !important;
    }

    .nav-hide .navigation-block {
        width: 78px;
    }

    .nav-hide .content-block {
        margin-left: 78px;
    }

    .nav-hide .menu-panel-single .menu-panel-title, .nav-hide .menu-panel .menu-panel-title {
        visibility: hidden;
        opacity: 0;
        height: 0 !important;
        position: absolute;
    }

    .nav-hide .menu-panel a.panel-heading {
        margin-right: 12px;
    }

    .nav-hide.has-scrollbar .menu-panel a.panel-heading {
        margin-right: 15px;
    }

    .nav-hide .menu-panel.current {
        background: transparent;
    }

        /*.nav-hide .menu-panel.current a.panel-heading {
            background: #1db8b9;
            color: #122435
        }*/

        .nav-hide .menu-panel.current a.panel-heading .menu-arrow {
            color: #fff;
        }



    .nav-hide .collapse {
        /*position: absolute;
        right: -320px;*/
    }

    .nav-hide .multi-collapse.collapse.show {
        /*position: absolute;
        right: -320px;*/
        display: none;
    }

    .nav-hide.has-scrollbar .multi-collapse.collapse.show {
        /*position: absolute;
        right: -320px;*/
        display: block;
    }

    .nav-hide .menu-panel .menu-arrow {
        top: 0;
        right: -25px;
    }

    .nav-hide.has-scrollbar .menu-panel .menu-arrow {
        top: 0;
        right: 0;
    }

    .nav-hide.has-scrollbar .menu-panel-single .menu-panel-title, .nav-hide.has-scrollbar .menu-panel .menu-panel-title {
        visibility: visible;
        opacity: 1;
        height: auto;
    }

    .nav-hide.has-scrollbar .collapse {
        position: relative;
        right: 0;
    }

    .nav-hide.has-scrollbar main-navigation {
        margin-right: 15px;
    }




    /*.content-block, .nav-hide.has-scrollbar .content-block {
        margin-left: 330px;
    }

    .slimScrollDiv {
        margin-top: 80px;
    }*/
}

@media (min-width:992px) {
    .left-sidebar-wrapper {
        margin: 75px 0 60px 0;
    }

    .content-block, .nav-hide.has-scrollbar .content-block {
        margin-left: 330px;
    }
}

@media (min-width: 1200px) {
    .navigation-block, .nav-hide.has-scrollbar .navigation-block {
        width: 280px;
    }

    .content-block, .nav-hide.has-scrollbar .content-block {
        margin-left: 280px;
    }
}

 
/* API TOKENS*/
.apiTokenCard h4, .apiTokenCard hr {
    margin: 0 0 10px 0;
}

.tokenName {
    overflow: hidden;
}

    .tokenName h3 {
        font-weight: normal;
    }
/*sensor tags*/
.tag-ctn {
    position: relative;
    height: 38px;
    padding: 0;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    cursor: default;
    display: block;
}

.tag-ctn-invalid {
    border: 1px solid #CC0000;
}

.tag-ctn-readonly {
    cursor: pointer;
}

.tag-ctn-disabled {
    cursor: not-allowed;
    background-color: #eeeeee;
}

.tag-ctn-bootstrap-focus,
.tag-ctn-bootstrap-focus .tag-res-ctn {
    border-color: rgba(82, 168, 236, 0.8) !important;
    /* IE6-9 */
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6) !important;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6) !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6) !important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.tag-ctn input {
    border: 0;
    box-shadow: none;
    -webkit-transition: none;
    outline: none;
    display: block;
    padding: 4px 6px;
    line-height: normal;
    overflow: hidden;
    height: auto;
    border-radius: 0;
    float: left;
    margin: 2px 0 2px 2px;
}

.tag-ctn-disabled input {
    cursor: not-allowed;
    background-color: #eeeeee;
}

.tag-ctn .tag-input-readonly {
    cursor: pointer;
}

.tag-ctn .tag-empty-text {
    color: #DDD;
}

.tag-ctn input:focus {
    border: 0;
    box-shadow: none;
    -webkit-transition: none;
    background: #FFF;
}

.tag-ctn .tag-trigger {
    float: right;
    width: 27px;
    height: 100%;
    position: absolute;
    right: 0;
    border-left: 1px solid #CCC;
    background: #EEE;
    cursor: pointer;
}

    .tag-ctn .tag-trigger .tag-trigger-ico {
        display: inline-block;
        width: 0;
        height: 0;
        vertical-align: top;
        border-top: 4px solid gray;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        content: "";
        margin-left: 9px;
        margin-top: 13px;
    }

    .tag-ctn .tag-trigger:hover {
        background: -moz-linear-gradient(100% 100% 90deg, #e3e3e3, #f1f1f1);
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f1f1f1), to(#e3e3e3));
    }

        .tag-ctn .tag-trigger:hover .tag-trigger-ico {
            background-position: 0 -4px;
        }

.tag-ctn-disabled .tag-trigger {
    cursor: not-allowed;
    background-color: #eeeeee;
}

.tag-ctn-bootstrap-focus {
    border-bottom: 1px solid #CCC;
}

.tag-res-ctn {
    position: relative;
    background: #FFF;
    overflow-y: auto;
    z-index: 9999;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #CCC;
    left: -1px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

    .tag-res-ctn .tag-res-group {
        line-height: 23px;
        text-align: left;
        padding: 2px 5px;
        font-weight: bold;
        border-bottom: 1px dotted #CCC;
        border-top: 1px solid #CCC;
        background: #f3edff;
        color: #333;
    }

    .tag-res-ctn .tag-res-item {
        line-height: 25px;
        text-align: left;
        padding: 2px 5px;
        color: #666;
        cursor: pointer;
    }

    .tag-res-ctn .tag-res-item-grouped {
        padding-left: 15px;
    }

    .tag-res-ctn .tag-res-odd {
        background: #F3F3F3;
    }

    .tag-res-ctn .tag-res-item-active {
        background-color: #3875D7;
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3875D7', endColorstr='#2A62BC', GradientType=0 );
        background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(20%, #3875D7), color-stop(90%, #2A62BC));
        background-image: -webkit-linear-gradient(top, #3875D7 20%, #2A62BC 90%);
        background-image: -moz-linear-gradient(top, #3875D7 20%, #2A62BC 90%);
        background-image: -o-linear-gradient(top, #3875D7 20%, #2A62BC 90%);
        background-image: linear-gradient(#3875D7 20%, #2A62BC 90%);
        color: #fff;
    }

.tag-sel-ctn {
    overflow: auto;
    line-height: 22px;
    padding-right: 27px;
}

    .tag-sel-ctn .tag-sel-item {
        background: #555;
        color: #EEE;
        float: left;
        font-size: 12px;
        padding: 0 5px;
        border-radius: 3px;
        margin-left: 5px;
        margin-top: 4px;
    }

    .tag-sel-ctn .tag-sel-text {
        background: #FFF;
        color: #666;
        padding-right: 0;
        margin-left: 0;
        font-size: 14px;
        font-weight: normal;
    }

.tag-res-ctn .tag-res-item em {
    font-style: normal;
    background: #565656;
    color: #FFF;
}

.tag-sel-ctn .tag-sel-item:hover {
    background: #565656;
}

.tag-sel-ctn .tag-sel-text:hover {
    background: #FFF;
}

.tag-sel-ctn .tag-sel-item-active {
    border: 1px solid red;
    background: #757575;
}

.tag-ctn .tag-sel-ctn .tag-sel-item {
    margin-top: 3px;
}

.tag-stacked .tag-sel-item {
    float: inherit;
}

.tag-sel-ctn .tag-sel-item .tag-close-btn {
    width: 7px;
    cursor: pointer;
    height: 7px;
    float: right;
    margin: 8px 2px 0 10px;
    background-image: url(data:image/png;base64,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);
}

    .tag-sel-ctn .tag-sel-item .tag-close-btn:hover {
        background-position: 0 -7px;
    }

.tag-helper {
    color: #AAA;
    font-size: 10px;
    position: absolute;
    top: -17px;
    right: 0;
}

input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
    cursor: not-allowed;
    background-color: transparent;
}

textarea#Notes {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

/* NEW LOGIN*/
.login-page .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.login-page .login-wrapper {
    width: 360px;
    border-radius: 10px;
}

.login-page .brand {
    height: 70px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.login-logo {
    background-image: url('../images/login-bg.jpg');
    background-position: center center;
    background-size: cover;
    -webkit-border-top-left-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-bottomleft: 15px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.logo-type {
    background: #fff;
    border-radius: 5px;
}

.login-title {
    font-size: 1.8em;
    color: #3E606F;
    font-weight: 300;
}

.login-img {
    width: 100px;
    height: 100px;
    margin: 3em auto;
}

.logo-type h1 {
    text-align: center;
    margin: 0;
}

.login-left {
    background: #fff;
    -webkit-border-top-right-radius: 15px;
    -webkit-border-bottom-right-radius: 15px;
    -moz-border-radius-topright: 15px;
    -moz-border-radius-bottomright: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.fildset-login {
    border: none;
    padding: 0;
}

    /*.fildset-login input {
        border: none;
    }*/

    .fildset-login input:focus {
        border: none;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
    }

.login-alert {
    -webkit-border-radius: 0px;
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius: 0px;
    -moz-border-radius-topright: 15px;
    border-radius: 0px;
    border-top-right-radius: 15px;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    text-align: center;
}

.editor-label label {
    margin-bottom: 0;
}

.text-line-validation .field-validation-error {
    margin-left: 0;
    font-weight: normal;
}

.btn-login {
    padding: 10px 0;
    font-size: 1.4em;
    margin-top: 1em;
}
/* MEDIA FOR LOGIN */
@media (max-width:480px) {
    .content-block {
        padding: 20px 0px;
    }

    .fildset-login {
        padding: 10px 0 30px 0 !important;
    }

    .brand img {
        max-width: 140px;
        height: auto;
    }

    .login-logo {
        background-image: url(../images/login-bg.jpg);
        background-position: center center;
        background-size: cover;
        -webkit-border-top-left-radius: 15px;
        -webkit-border-bottom-left-radius: 15px;
        -moz-border-radius-topleft: 15px;
        -moz-border-radius-topright: 15px;
        -moz-border-radius-bottomleft: 0;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0;
    }

    .login-img {
        width: 80%;
        margin: 25px auto 0;
    }

    .login-left {
        -webkit-border-radius: 0;
        -webkit-border-bottom-right-radius: 15px;
        -webkit-border-bottom-left-radius: 15px;
        -moz-border-radius: 0;
        -moz-border-radius-bottomright: 15px;
        -moz-border-radius-bottomleft: 15px;
        border-radius: 0;
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
    }

    .login-alert {
        position: relative;
    }
}

@media (max-width:768px) {
}

@media (min-width:1921px) {
    .login-page .login-container label,
    .login-page .login-container input,
    .login-page .login-container button {
        font-size: 15px;
    }

        .login-page .login-container input[type="text"],
        .login-page .login-container input[type="password"] {
            font-size: 15px;
            line-height: 20px;
        }
}

/*OVERWRITE*/
.InternalTablesHeadWhiteGB th {
    background-color: white !important;
}

/*autocomplete textbox
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative !important;
    width: 280px;
}*/
/*autocomplete textbox*/
.ui-autocomplete {
    max-width: 280px;
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    padding-right: 20px;
}

/* RESPONSIVE DATATABLE OVERIDES*/
table.dataTable > tbody > tr.child ul.dtr-details {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: stretch;
    flex-wrap: wrap;
}

    table.dataTable > tbody > tr.child ul.dtr-details > li {
        border-bottom: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        margin-right: 15px;
        padding-right: 15px;
        border-right: 1px solid #ddd;
        align-items: start;
        justify-content: center;
    }

        table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
            border-right: none;
        }

table.dataTable.display.collapsed tbody .even td, table.dataTable.display.collapsed tbody .odd td {
    border-top: 1px solid #000;
}

.directive-standalone {
    width: 80% !important;
}

/* DATATABLE EXPORT BUTTONS OVERIDE*/
.buttons-excel, .buttons-csv, .buttons-copy, .buttons-colvis {
    color: #fff !important;
    border-color: #17a2b8 !important;
    background: #17a2b8 !important;
    font-size: 14px !important;
    border-radius: 20px !important;
    padding: .275rem .95rem !important;
}

    .buttons-excel:hover, .buttons-csv:hover, .buttons-copy:hover, .buttons-colvis:hover {
        color: #fff !important;
        background-color: #13879a !important;
        border-color: #13879a !important;
    }


button .dt-button, div.dt-button, a.dt-button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    background-image: none;
}

    button.dt-button:hover:not(.disabled), div.dt-button:hover:not(.disabled), a.dt-button:hover:not(.disabled) {
        color: #212529;
        background-color: #e2e6ea;
        border-color: #dae0e5;
        background-image: none;
    }

/* Edit VEssel Group Multiselect*/
.multiselect-container {
    z-index: 99999;
}

/* NOTES MODAL */
@media (min-width: 576px) {
    .NotesModal .modal-dialog {
        max-width: 500px;
        margin: 0;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 500px;
    }
}

.NotesModal .modal-content {
    border: none;
    border-radius: 0;
    height: 100vh;
}

.NotesModal {
    background-color: transparent;
}

.modal.fade.NotesModal .modal-dialog {
    -webkit-transform: translate(50px, 0);
    transform: translate(500px, 0);
}

.modal.fade.NotesModal.show .modal-dialog {
    -webkit-transform: translate(50px, 0);
    transform: translate(0, 0);
}

.NotesModal .modal-header {
    border-bottom: none;
    border-radius: 0;
    background: #3498db;
}

.NotesModal h5 {
    font-size: 1.3em;
    font-weight: normal;
    color: #fff;
    margin: 15px;
}

.NotesModal .modal-body {
    padding: 2.2rem;
    font-size: 1.1em;
}

    .NotesModal .modal-body .noNote {
        color: #a5b1c2;
    }

@media (max-width: 576px) {
    .user-profile .nav {
        /*        width: 90px;*/
    }

        .user-profile .nav .nav-item .nav-link .mdi {
            font-size: 20px;
        }

        .user-profile .nav .nav-item .nav-link.user-logout {
            padding-top: .6rem;
        }

        .user-profile .nav .nav-item .nav-link {
            padding: .6rem .5rem;
        }

    .helpdesk {
        padding: .4rem 0 .6rem .5rem;
    }
}

/*Kibana Dashboard*/
#wrap {
    width: 100%;
    height: 780px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.resp-iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    -webkit-transform: scale(0.729);
    transform: scale(0.729);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.euiFlexGroup--gutterLarge .euiFlexItem {
    min-width: 200px !important;
}
/*input placeholder color*/
.input-placeholder::-webkit-input-placeholder {
    color: #ababab;
    opacity: 1
}

.input-placeholder::-moz-placeholder {
    color: #ababab;
    opacity: 1
}

.input-placeholder:-ms-input-placeholder {
    color: #ababab;
    opacity: 1
}

.input-placeholder::-ms-input-placeholder {
    color: #ababab;
    opacity: 1
}

.input-placeholder::placeholder {
    color: #ababab;
    opacity: 1
}

.input-group-addon-custom {
    padding-top: 9px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 1;
    color: #555;
    text-align: center;
}

.increasedMargin {
    margin-left: 10px !important;
}

.increasedLineHeight {
    line-height: 19px;
}

.loaderModal {
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

    .loaderModal img {
        width: 100px;
    }

.openloaderModal {
    display: flex;
    z-index: 98999;
}

.disabled {
    pointer-events: none;
    cursor: default;
}

.map-placeholder {
    width: 100%;
    height: 75vh;
    border: 1px solid #AAA;
}

.map-placeholder-small {
    width: 250%;
    height: 40vh;
    border: 1px solid #AAA;
}
/* TABLE SORTING BUTTONS */
.dt-button-collection .dt-button.buttons-columnVisibility {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0.25em 1em !important;
    margin: 0 !important;
    text-align: left !important;
}

.dt-button-collection .buttons-columnVisibility:before,
.dt-button-collection .buttons-columnVisibility.active span:before {
    display: block;
    position: absolute;
    top: 1.2em;
    left: 0;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
}

.dt-button-collection .buttons-columnVisibility:before {
    content: ' ';
    margin-top: -8px;
    margin-left: 10px;
    border: 1px solid black;
    border-radius: 3px;
}

.dt-button-collection .buttons-columnVisibility.active span:before {
    font-family: 'Arial' !important;
    content: '\2714';
    margin-top: -15px;
    margin-left: 12px;
    text-align: center;
    text-shadow: 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

.dt-button-collection .buttons-columnVisibility span {
    margin-left: 17px;
}

.buttons-colvisRestore {
    background-color: #ececec !important;
    border: 1px solid #ececec !important;
    background-image: none !important;
    box-shadow: none !important;
    border-radius: 5px !important;
    margin-top: 10px !important;
}

    .buttons-colvisRestore:hover {
        background-color: #0b5ed7 !important;
        border: 1px solid #0b5ed7 !important;
        color: white !important;
    }

.color-light-blue {
    background-color: #f1f5ff !important;
}

    .color-light-blue td {
        border-bottom: 1px solid #fff;
        border-top: none;
    }

table.dataTable tbody th, table.dataTable tbody td {
    padding: 2px 4px;
}

.text-secondary-30::before {
    color: #6c757d !important;
    opacity: 0.3;
}

table .link-icon-text {
    width: 30px;
    height: 30px;
}

table.dataTable tbody tr.invchild td:not(:last-child) {
    padding: 0px 10px;
}

table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
    padding: 10px 4px;
}

table#childTable thead th {
    padding: 5px 4px;
}

.subArrow {
    background-image: url(../img/assets/turn-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    width: 13px;
    height: 13px;
}

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
    border-top: none;
}
/*table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
    background-color: #e0e9ff;
}*/
table.dataTable tbody th, table.dataTable.stripe tbody tr.odd:hover, table.dataTable.display tbody tr.odd:hover {
    background-color: #fafafa;
}

tr.shown td, tr.shown td.sorting_1 {
    background-color: #e0e9ff !important;
}

.table td {
    padding: 8px;
    line-height: 18px;
    text-align: left;
    vertical-align: middle;
    border-top: 1px solid #f5f5f5;
}

tr.shown td {
    border-bottom: 1px solid #fff;
}

table.dataTable tbody tr:hover {
    box-shadow: 0px 0px 12px 0px rgba(156,184,255, 0.25) inset;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(156,184,255, 0.25) inset;
    -moz-box-shadow: 0px 0px 12px 0px rgba(156,184,255, 0.25) inset;
}

div.dataTables_wrapper div.dataTables_processing {
    top: 110px;
    z-index: 1000;
}

#listInventoriesButtons .dropdown-menu {
    min-width: auto;
}

    #listInventoriesButtons .dropdown-menu a {
        font-size: 14px;
    }

/* CONTROL PANEL TABS - INVENTORY */
.paneltabs {
    background: #2749F2;
    margin-bottom: 0;
}

    .paneltabs .nav-link {
        border-radius: 0;
        padding: 10px 20px;
        color: #fff;
        margin: 0;
    }

        .paneltabs .nav-link.active {
            -webkit-border-top-right-radius: 5px;
            -moz-border-radius-topright: 5px;
            border-top-right-radius: 5px;
            color: #495057;
            background-color: #fff;
            border-color: #fff;
            font-weight: bold;
        }

        .paneltabs .nav-link:hover {
            background-color: #E7EBFE;
            color: #2749F2;
        }

.tab-content > .active.inventory-tab {
    display: flex;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #fff3cd;
    border-left: 5px solid #ffc201;
    background-image: url(../img/warning.png);
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-position-y: 6px;
    padding-left: 3.5rem;
}

.asset-image {
    position: relative;
    overflow: hidden;
    transition: all ease .5s;
}

.image-uploader {
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 100px;
    background-color: rgba(0, 0, 0, .3);
    display: none;
}

.image-del {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
}

.upload-tool {
    position: absolute;
    bottom: 0;
    padding: 5px 10px;
    background-color: #ededed;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.asset-image:hover .image-uploader {
    top: 0px;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
}

.print-qr {
    display: flex;
    width: 100%;
    justify-content: center;
    transition: all ease .5s;
    font-size: 14px;
    color: #2749F2;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    cursor: pointer;
}

    .print-qr img {
        cursor: pointer;
        width: 20px;
        margin-right: 10px;
    }

    .print-qr:hover {
        background-color: #E7EBFE;
        border: 1px solid #2749F2;
    }

}

#NetworkTypesCheckBox span.multiselect-native-select, #CategoriesCheckBox span.multiselect-native-select, #TagsCheckBox span.multiselect-native-select {
    display: flex;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

#NetworkTypesCheckBox ul.multiselect-container.dropdown-menu.show, #CategoriesCheckBox ul.multiselect-container.dropdown-menu.show, #TagsCheckBox ul.multiselect-container.dropdown-menu.show {
    width: fit-content;
    min-width: auto;
}

#NetworkTypesCheckBox .multiselect-container > li > a > label, #CategoriesCheckBox .multiselect-container > li > a > label, #TagsCheckBox .multiselect-container > li > a > label {
    padding: 6px 10px 6px 30px;
}

#NetworkTypesCheckBox .btn-group, #CategoriesCheckBox .btn-group, #TagsCheckBox .btn-group {
    width: 100%;
}

    #NetworkTypesCheckBox .btn-group.show, #NetworkTypesCheckBox .btn-group, #CategoriesCheckBox .btn-group.show, #CategoriesCheckBox .btn-group, #TagsCheckBox .btn-group.show, #TagsCheckBox .btn-group {
        display: flex;
    }

#NetworkTypesCheckBox .dropdown-toggle::after, #CategoriesCheckBox .dropdown-toggle::after, #TagsCheckBox .dropdown-toggle::after, #LabelsFieldsCheckBox .dropdown-toggle::after {
    display: none;
}

#deviceDetails.table th {
    background-color: #ffffff;
}


#deviceDetails.table th {
    padding: 2px 4px;
    line-height: 18px;
    text-align: left;
    vertical-align: middle;
    border-top: 1px solid #f5f5f5;
}

#deviceDetails.table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
    background-color: #f9f9f9 !important;
}

button.multiselect.dropdown-toggle.btn.btn-default {
    border: 1px solid #ced4da;
}

/*Diagrams*/
.diagram-form-control {
    height: calc(1em + 0.5rem + 2px);
    padding: 0 0.75rem;
}

.diagram-form-title {
    height: 25px;
    background-color: white !important;
    border: none;
    cursor: text !important;
    border-bottom: 1px solid #cacaca;
    border-radius: unset;
}

.dhx_sample-container__with-editor {
    display: none;
}

/* Show the main content for screens larger than 800px */
@media screen and (min-width: 900px) {
    .dhx_sample-container__with-editor {
        display: block;
    }
}

.leaflet-container {
    font-family: 'Roboto', sans-serif !important;
}

.border-2 {
    border-width: 2px !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
/*switch toggle button css*/
.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: 12px;
        width: 12px;
        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(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
