@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Thin.ttf");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-ThinItalic.ttf");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-ExtraLight.ttf");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-ExtraLightItalic.ttf");
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Light.ttf");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-LightItalic.ttf");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Italic.ttf");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Medium.ttf");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-MediumItalic.ttf");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-SemiBoldItalic.ttf");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-BoldItalic.ttf");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-ExtraBold.ttf");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-ExtraBoldItalic.ttf");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Black.ttf");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-BlackItalic.ttf");
    font-weight: 900;
    font-style: italic;
}

/*========== Custom Checkbox ==========*/
/*======= Custom radio  button ======*/
html {
    width: 100%;
}

body {
    width: 100%;
    margin: 0;
    padding: 0 0 0 0;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #fff;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    color: #333;
    text-decoration: none;
}

    a:hover {
        color: #333;
        text-decoration: none;
    }

    a:focus {
        color: #333;
        text-decoration: none;
    }

button:focus {
    outline: none;
}

.cust-chk-bx {
    display: block;
    position: relative;
    padding-left: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    color: #141414;
    line-height: 22px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .cust-chk-bx input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

        .cust-chk-bx input:checked ~ .cust-chkmark {
            background-color: #005ff1;
            border-color: #005ff1;
        }

            .cust-chk-bx input:checked ~ .cust-chkmark:after {
                display: block;
            }

        .cust-chk-bx input:focus ~ .cust-chkmark {
            border-color: #005ff1;
            -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 92, 241, 0.15);
            box-shadow: 0 0 0 0.2rem rgba(0, 92, 241, 0.15);
        }

    .cust-chk-bx .cust-chkmark:after {
        left: 5px;
        top: 2px;
        width: 6px;
        height: 10px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.cust-chkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: #fff;
    border-radius: 3px;
    border: 2px solid #e0e0e0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .cust-chkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

.cust-radio-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    color: #5a5a5a;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .cust-radio-btn input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

        .cust-radio-btn input:checked ~ .cust-radio-chkmark {
            background-color: #fff;
        }

            .cust-radio-btn input:checked ~ .cust-radio-chkmark:after {
                display: block;
            }

        .cust-radio-btn input:focus ~ .cust-radio-chkmark {
            -webkit-box-shadow: 0 0 0 0.17rem rgba(208, 208, 208, 0.7);
            box-shadow: 0 0 0 0.17rem rgba(208, 208, 208, 0.7);
        }

    .cust-radio-btn .cust-radio-chkmark:after {
        top: 3px;
        left: 3px;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #2b170f;
    }

.cust-radio-chkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: #fff;
    border: 2px solid #2b170f;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .cust-radio-chkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

.dropdown-menu {
    border: 0;
    -webkit-box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.05);
    border-radius: .125rem;
    font-size: 14px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

    .dropdown-menu .dropdown-item {
        color: #282828;
        font-size: 14px;
        letter-spacing: 0.3px;
        text-transform: capitalize;
        border-bottom: 1px solid #f5f5f5;
        font-weight: 500;
        line-height: normal;
        padding: 10px 15px 10px 15px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

.dropdown-item:focus {
    background-color: #f5f5f5;
    color: #282828;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #282828;
}

.dropdown-item:active {
    color: #fff !important;
    background-color: #005ff1;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    font-weight: 500;
}

.dropdown-item.active {
    color: #fff !important;
    background-color: #005ff1;
}

.dropdown-arrow-remove.dropdown-toggle::after {
    display: none;
}

.simplebar-track.simplebar-horizontal {
    height: 9px;
}

.bootstrap-select > .dropdown-toggle.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
    height: auto;
}

.bootstrap-select > .dropdown-toggle.btn-lg {
    min-height: calc(1.5em + (1.437rem + 2px));
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
}

.bootstrap-select .dropdown-toggle.btn-lg .filter-option {
    padding: 5px 0;
}

.form-control {
    height: 40px;
}

.bootstrap-select > .dropdown-toggle {
    border: 1px solid #dcdcdc;
    border-radius: .25rem;
    height: 40px;
    padding: 7px 10px;
    outline: none !important;
    font-weight: 400;
    font-size: 15px;
    background-color: #fafafa;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    color: #141414;
    background-color: #fff;
    border-color: #005ff1;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 92, 241, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(0, 92, 241, 0.25);
}

.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
    color: #141414;
    background-color: #fff;
    border-color: #005ff1;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 92, 241, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(0, 92, 241, 0.25);
}

.bootstrap-select .dropdown-menu {
    padding: 0;
    -webkit-box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
    border: 0;
}

    .bootstrap-select .dropdown-menu li a span.text {
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
    }

.bs-actionsbox {
    padding: 10px 8px 4px 8px;
}

.bs-donebutton {
    padding: 10px 8px 4px 8px;
}

.bs-searchbox {
    padding: 10px 8px 4px 8px;
}

.header-notification-wrap {
    align-self: center;
}

.header-notification-inner {
    width: 50px;
    padding: 7px 15px 5px 15px;
    cursor: pointer;
    border-right: 1px solid #e2e2e2;
    margin-right: 15px;
}

.login-height-full {
    height: calc(100vh - 40px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.copy-right-line {
    color: #969696;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.login-fix-width {
    width: 450px;
    margin: 0 auto;
}

.login-logo {
    width: 200px;
    margin: 0 auto;
}

.login-box-main {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    background-color: #fff;
    margin-top: 25px;
    border-radius: 5px;
    padding: 0 25px;
}

.login-head h2 {
    color: #141414;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 15px 0 15px 0;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 10px;
}

.forgot-pass-text {
    color: #141414;
    font-weight: 500;
}

    .forgot-pass-text:focus {
        text-decoration: underline;
    }

.menu-toggle-icn {
    width: 27px;
    position: relative;
    top: -1px;
}

.fitscreen-height-main {
    position: relative;
    border-top-left-radius: 14px;
    padding: 0px 12px 12px 12px;
}

.page-header-name h1 {
    color: #323232;
    font-size: 16px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-transform: capitalize;
}

.page-header-name {
    margin-left: 20px;
}

.btn-icon {
    font-size: 18px;
    margin-right: 3px;
    margin-top: 3px;
}

.btn-text {
    font-size: 14px;
    font-weight: 600;
}

.table-box-main {
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

    .table-box-main .cust-chkmark {
        height: 20px;
        width: 20px;
    }

    .table-box-main .cust-chk-bx .cust-chkmark:after {
        left: 6px;
        top: 3px;
    }

    .table-box-main table thead tr th {
        background: #fafafa;
        color: #323232;
        text-transform: capitalize;
        font-size: 13px;
        padding: 10px 10px 10px 10px;
        border-right: 1px solid #e0e3ef;
        border-bottom: 1px solid #e0e3ef;
        border-color: #e6e6e6;
        white-space: nowrap;
        text-align: center;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .table-box-main table tr {
        border-color: #f8f8f8;
    }

    .table-box-main table tbody tr td {
        color: #564a50;
        font-weight: 500;
        border-right: 1px solid #e0e3ef;
        border-bottom: 1px solid #e0e3ef;
        border-top: 0 !important;
        border-color: #e6e6e6;
        text-align: center;
        padding: 3px 10px;
        white-space: nowrap;
        font-size: 13px;
    }

    .table-box-main table tbody tr.group td {
        color: #1e1e1e !important;
        font-weight: 600 !important;
        font-size: 15px !important;
        padding-bottom: 5px !important;
        padding-top: 5px !important;
        border-top: 1px solid #e0e3ef !important;
        border-bottom: 1px solid #e0e3ef !important;
    }

    .table-box-main .dataTables_wrapper.no-footer .dataTables_scrollBody {
        border-bottom: 1px solid #e0e3ef;
    }

    .table-box-main table.dataTable.stripe tbody tr.odd {
        background-color: #fff;
        background-color: #f5f5f5;
    }

    .table-box-main table.dataTable.display tbody tr.odd {
        background-color: #fff;
    }

    .table-box-main table.dataTable.display tbody tr.even {
        background-color: #fbfbfb;
    }

    .table-box-main table.dataTable.display tbody tr:hover {
        background-color: #fff;
    }

    .table-box-main table.dataTable.hover tbody tr:hover {
        background-color: #fff;
    }

    .table-box-main .dataTables_wrapper .dataTables_length {
        float: none;
    }

    .table-box-main .dataTables_wrapper .dataTables_info {
        padding: 0;
    }

    .table-box-main .dataTables_wrapper .dataTables_paginate {
        padding-top: 6px;
        padding-bottom: 6px;
    }

        .table-box-main .dataTables_wrapper .dataTables_paginate .paginate_button {
            border: 1px solid #4e575d;
            border-radius: 3px;
            background: #fff;
            color: #4e575d !important;
            font-weight: 600;
            background: #fff;
        }

            .table-box-main .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
                color: white !important;
                background: #564a50;
                color: white !important;
                border: 1px solid #005ff1 !important;
                background-color: #005ff1 !important;
                background: #005ff1 !important;
                -webkit-box-shadow: none;
                box-shadow: none;
            }

            .table-box-main .dataTables_wrapper .dataTables_paginate .paginate_button:active {
                color: white !important;
                background: #564a50;
                color: white !important;
                border: 1px solid #005ff1 !important;
                background-color: #005ff1 !important;
                background: #005ff1 !important;
                -webkit-box-shadow: none;
                box-shadow: none;
            }

            .table-box-main .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
                border: 1px solid #b4b4b4;
                border-radius: 3px;
                background: #fff;
                color: #4e575d !important;
                font-weight: 600;
                background: #fff;
            }

                .table-box-main .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
                    color: white !important;
                }

                .table-box-main .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
                    color: white !important;
                }

            .table-box-main .dataTables_wrapper .dataTables_paginate .paginate_button.current {
                color: #fff !important;
                border: 1px solid #005ff1;
                background-color: #005ff1 !important;
                background: #005ff1 !important;
            }

                .table-box-main .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
                    color: #fff !important;
                    border: 1px solid #005ff1;
                    background-color: #005ff1 !important;
                    background: #005ff1 !important;
                }

    .table-box-main .dataTables_length label {
        margin: 0;
    }

.modal-header-cust {
    padding-top: 13px;
    padding-bottom: 13px;
}

    .modal-header-cust h5 {
        color: #000000;
        font-size: 17px;
        font-weight: 600;
    }

    .modal-header-cust .close {
        opacity: 1;
        color: #fff;
    }

tr.group {
    background: #fdf8f7 !important;
}

table.dataTable.display tbody tr.odd > .sorting_1 {
    background-color: #ffffff;
}

table.dataTable.display tbody tr.even > .sorting_1 {
    background-color: #faf5f4;
}

table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
    background-color: #ffffff;
}

table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
    background-color: #faf5f4;
}

.Lotno-text {
    color: #333f68;
}

.grid-media-col ul li a {
    display: block;
    color: #4e575d;
    margin: 0 5px;
    font-size: 16px;
}

.tbl-footer-row {
    margin: 0;
}

.pagination-cust .page-item .page-link {
    border: 1px solid #4e575d;
    border-radius: 3px;
    background: #fff;
    color: #4e575d !important;
    font-weight: 600;
    background: #fff;
}

    .pagination-cust .page-item .page-link:hover {
        color: white !important;
        background: #564a50;
    }

    .pagination-cust .page-item .page-link:active {
        color: white !important;
        background: #564a50;
    }

.pagination-cust .page-item.active .page-link {
    color: #fff !important;
    border: 1px solid #005ff1;
    background-color: #005ff1 !important;
    background: #005ff1 !important;
}

    .pagination-cust .page-item.active .page-link:hover {
        color: #fff !important;
        border: 1px solid #005ff1;
        background-color: #005ff1 !important;
        background: #005ff1 !important;
    }

.action-cel-btn {
    background-color: #e6e6e6;
    width: 30px;
    height: 30px;
    display: block;
    line-height: 30px;
    text-align: center;
    border-radius: 50px;
    margin: 0 5px;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #5a5a5a;
}

    .action-cel-btn:hover {
        background-color: #005ff1;
        color: #fff;
    }

.smart-lock-image {
    width: 38px;
    height: 38px;
    line-height: 33px;
    margin: 0 auto;
    border: 1px solid #e0e3ef;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

    .smart-lock-image img {
        width: 20px;
    }

.Model-Animation.modal.fade .modal-dialog {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.Model-Animation.modal.fade.show .modal-dialog {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-opacity: 1;
    opacity: 1;
}

.required-fild {
    color: #fe0000;
}

.add-device-scan-main {
    border: 2px dashed #e6e6e6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.add-device-scan-inner img {
    width: 300px;
    margin: 0 auto;
}

.add-device-scan-inner h3 {
    color: #c8c8c8;
    margin: 10px 0 0 0;
    font-size: 16px;
    font-weight: 500;
}

.add-device-scan-inner h4 {
    color: #828282;
    font-size: 13px;
    font-weight: 500;
    margin: 25px 0;
}

.add-customer-file-upload {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    cursor: pointer;
}

.cust-details-profile-pic {
    width: 90px;
    height: 90px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

.cust-profile-name {
    color: #323232;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cust-profile-details ul li {
    color: #5a5a5a;
    font-weight: 500;
}

.delet-record-txt-lrg {
    color: #323232;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.delet-record-txt-small {
    font-size: 15px;
    font-weight: 500;
    color: #323232;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #005ff1;
}

.chart__canvas {
    margin: 0 auto;
}

.chart__value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .chart__value p {
        font-size: 18px;
        margin: auto;
        padding-left: 0;
        color: #005ff1;
        font-weight: 600;
        margin-top: 15%;
    }

.dashbox-count {
    color: #1e1e1e;
    font-size: 30px;
    font-weight: 700;
}

.dashbox-name {
    color: #646464;
    font-size: 16px;
    font-weight: 600;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.dashbox-wrap {
    width: 100%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0,0, 0, 0.1);
    padding: 15px 15px 15px 15px;
    border-radius: 5px;
    height: 100%;
}

.dashbox-actv-inactv {
    text-align: center;
}

    .dashbox-actv-inactv h6 {
        color: #5a5a5a;
        font-size: 13px;
        margin-bottom: 7px;
    }

    .dashbox-actv-inactv h5 {
        color: #5a5a5a;
        margin-bottom: 0;
        font-weight: 600;
        font-size: 14px;
        padding-left: 10px;
    }

.chart-per-counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 700;
}

ul.squre-nav-tabs {
    border: 2px solid #005ff1;
    border-radius: 5px;
}

    ul.squre-nav-tabs .nav-link {
        border-radius: 0;
        border: 0;
        color: #787878;
        font-weight: 600;
        font-size: 13px;
        padding-left: 25px;
        padding-right: 25px;
        white-space: nowrap;
    }

        ul.squre-nav-tabs .nav-link.active {
            background-color: #005ff1;
            color: #fff;
            margin: 0;
        }

.top-search-header {
    position: relative;
}

.search-btn-main {
    border: 0;
    background: transparent;
    color: #787878;
    font-size: 16px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0, -50%);
    padding: 5px 10px;
}

.top-search-header .form-control {
    border-radius: 50px;
    padding-right: 40px;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
}

.header-device-getway-tabs {
    padding: 0 15px;
}

ul.round-nav-tabs {
    border-radius: 50px;
    overflow: hidden;
    padding: 2px 2px;
}

    ul.round-nav-tabs .nav-link {
        border-radius: 50px;
    }

    ul.round-nav-tabs .nav-link {
        padding: 5px 20px;
    }

.select2-container {
    width: 100% !important;
}

.select2-container {
    z-index: 1039;
}

    .select2-container .select2--lg {
        min-height: calc(1.5em + (1.5rem + 2px));
        padding: 0.5rem 0.5rem;
        border-radius: 0.3rem;
        width: 100%;
        background-color: #fafafa;
        border-color: #dcdcdc;
    }

.select2-container--default .select2-selection--single.select2--lg .select2-selection__arrow {
    bottom: 0;
    height: auto;
}

.select2-container--focus .select2--lg {
    color: #141414;
    background-color: #fff;
    border-color: #005ff1;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 92, 241, 0.25);
    transition: all 0.3s;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #fafafa;
    color: #141414;
}

.select2-container--default .select2-results__option--selected {
    background-color: #005ff1 !important;
    color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: 500;
}

.select2-results__option {
    font-weight: 500;
}

.add-new-subrange-head h6 {
    color: #323232;
    font-weight: 600;
    font-size: 13px;
}

.add-new-subrange-box {
    border: 1px solid #dcdcdc;
    padding: 10px;
}

.dropdown-popupedge {
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
    border-bottom: 1px solid #dcdcdc;
    padding: 5px 0 10px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-popupedge {
    padding: 6px 5px 5px 5px;
    background: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    box-shadow: none !important;
}

.calendar-daterange {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translate(0, -50%);
    font-size: 18px;
}

.thp-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.thp-content h2 {
    color: #005ff1;
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 700;
}

.thp-content p {
    color: #323232;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
}

.thp-details {
    font-weight: 600;
    margin-bottom: 10px;
}

.border-box-wrap {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.10);
    padding: 12px 12px 12px 12px;
    border-radius: 5px;
}

.collected-data-table {
    overflow: auto;
    white-space: nowrap;
}

    .collected-data-table tr th {
        border-bottom-color: #e6e6e6 !important;
        background: #f5f5f5;
        font-size: 13px;
        font-weight: 600;
        color: #464646;
        border-top: 1px solid #e6e6e6;
    }

ul.data-acquisition-tabs {
    background: #005ff1;
}

    ul.data-acquisition-tabs .nav-link {
        color: #fff;
        border-radius: 5px;
    }

        ul.data-acquisition-tabs .nav-link.active {
            background: #fff;
            color: #005ff1;
        }

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 60px;
    border: 1px solid #e6e6e6;
    background: #fafafa;
    border-radius: 5px;
}

    .file-upload-wrapper:after {
        content: attr(data-text);
        font-size: 14px;
        position: absolute;
        top: 0;
        left: 0;
        background: transparent;
        padding: 10px 15px;
        display: block;
        width: calc(100% - 40px);
        pointer-events: none;
        z-index: 20;
        height: 60px;
        line-height: 40px;
        color: #2e4756;
        border-radius: 5px 10px 10px 5px;
        font-weight: 500;
    }

    .file-upload-wrapper:before {
        content: "Browse";
        position: absolute;
        top: 8px;
        right: 9px;
        display: inline-block;
        height: 40px;
        background: #f5f5f5;
        color: #323232;
        font-weight: 600;
        z-index: 25;
        font-size: 13px;
        line-height: 40px;
        padding: 0 15px;
        text-transform: uppercase;
        pointer-events: none;
        border-radius: 5px 5px 5px 5px;
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.10);
    }

    .file-upload-wrapper:hover:before {
        background: #005ff1;
        color: #fff;
    }

    .file-upload-wrapper input {
        opacity: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99;
        height: 60px;
        margin: 0;
        padding: 0;
        display: block;
        cursor: pointer;
        width: 100%;
    }

.auto-ml-head {
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 10px;
}

.blue-box-wrap {
    background-color: #172d4c;
}

    .blue-box-wrap .dashbox-name {
        color: #fff;
    }

.head-percentage-blue {
    color: #005ff1;
    font-weight: 600;
    margin-right: 15px;
}

.head-device-name {
    color: #323232;
    font-weight: 600;
}

.auto-ml-device-time-icn i {
    font-size: 17px;
    margin-right: 5px;
}

.accordion-plane .accordion-button {
    background-color: transparent;
    box-shadow: none;
    color: #323232;
    font-weight: 600;
    font-size: 14px;
}

.auto-ml-device-time-icn {
    font-size: 14px;
    font-weight: 600;
}

.accordion-plane .accordion-button::after {
    background-image: none;
    width: auto;
    content: '\f0d7';
    font-family: "FontAwesome";
    font-size: 18px;
}

.device-id-link {
    text-decoration: underline;
    transition: all 0.3s;
}

    .device-id-link:hover {
        color: #005ff1;
        text-decoration: underline;
    }

.map-form .form-control {
    height: 40px;
}

.map-form .btn {
    height: 40px;
}

.sidebar .accordion-button {
    background-color: #f9f9f9;
}

/*************************************** Radio & CheckBox Style Start ***********************************/
.form-check {
    margin-right: 0px;
    padding-left: 0;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        cursor: pointer;
        display: inline-block;
        color: #333333;
        font-size: 16px;
        padding-left: 31px;
        padding-right: 20px;
        line-height: 18px;
        margin-bottom: 8px;
        margin-top: 8px;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #cbcfd6;
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 8px;
            height: 8px;
            background: #fff;
            position: absolute;
            top: 5px;
            left: 5px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }

        [type="radio"]:checked + label:before {
            border-color: #005ff1;
            background-color: #005ff1;
        }

[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label {
    position: relative;
    cursor: pointer;
    display: inline-block;
    color: #141414;
    font-size: 14px;
    font-weight: 500;
    padding-left: 31px;
    padding-right: 20px;
    line-height: 19px;
    margin-bottom: 8px;
    margin-top: 8px;
}

    [type="checkbox"]:checked + label:before,
    [type="checkbox"]:not(:checked) + label:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        border: 1px solid #cbcfd6;
        border-radius: .25em;
        background: #fff;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    [type="checkbox"]:checked + label:after,
    [type="checkbox"]:not(:checked) + label:after {
        content: '';
        width: 20px;
        height: 20px;
        line-height: 20px;
        content: "\f00c";
        color: #0c2f54;
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        text-rendering: auto;
        position: absolute;
        top: 0px;
        left: 0px;
        font-size: 11px;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        text-align: center;
    }

    [type="checkbox"]:not(:checked) + label:after {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    [type="checkbox"]:checked + label:after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        color: #fff;
    }

    [type="checkbox"]:checked + label:before {
        border-color: #005ff1;
        background-color: #005ff1;
    }

[type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

/*************************************** Radio & CheckBox Style End ***********************************/

.table-box-main table thead tr th label {
    font-size: 13px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.ctm-form-group [type="checkbox"]:checked + label:before, .ctm-form-group [type="checkbox"]:not(:checked) + label:before {
    top: -15px;
}

.ctm-form-group [type="checkbox"]:checked + label:after, .ctm-form-group [type="checkbox"]:not(:checked) + label:after {
    top: -15px;
}

/* add by fajil */
.red_border {
    background-color: #fff0f0 !important;
    box-shadow: 0 0 0 1.3px #FF5555 !important;
}
/* add by fajil */



#dvLoaderFull {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 180, 249, 0.47);
    text-align: center;
    z-index: 9999;
}

    #dvLoaderFull span {
        position: relative;
        top: calc(50% - 50px);
        margin: 0 auto;
        display: block;
    }

        #dvLoaderFull span img {
            height: 100px;
            /*animation: fa-spin 0.3s infinite linear;*/
            animation: fa-spin 0s infinite linear;
        }


#dvLoaderFull {
    background: rgba(100, 180, 249, 0.4);
}

.loader_inner {
    width: 180px;
    height: 180px;
    position: relative;
    margin: 220px auto;
}

.loader .logo {
    width: 22%;
    position: absolute;
    left: 39%;
    top: 39%;
}

    .loader .logo img {
        width: 100%;
        z-index: 5;
        height: 100%;
    }

.bounce1,
.bounce2,
.bounce3 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: spreadout 2.7s infinite ease-in-out;
    animation: spreadout 2.7s infinite ease-in-out;
}

.bounce2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.bounce3 {
    -webkit-animation-delay: -1.8s;
    animation-delay: -1.8s;
}

@-webkit-keyframes spreadout {
    0% {
        -webkit-transform: scale(0.3);
    }

    80% {
        -webkit-transform: scale(1);
    }

    100% {
        opacity: 0;
    }
}

@keyframes spreadout {
    0% {
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
    }
}

.dvMeasure_inner {
    display: flex;
    flex-wrap: nowrap;
}

.thp-wrapper-main {
    flex: 0 0 auto;
    /* margin-right: 15px; */
    /* border-right: 2px solid #ddd; */
    padding-right: 15px;
    padding-bottom: 8px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

    .thp-wrapper-main.selected {
        background-color: #ddd;
    }

    .thp-wrapper-main:hover {
        background-color: #ddd;
    }

/*.thp-wrapper-main:last-child {
    margin-right: 0px;
    border-right: none;
    padding-right: 0px;
}*/

.dvMeasure_main .simplebar-track.simplebar-horizontal {
    height: 7px;
}

.data_chart_boxes {
    display: flex;
}

/*.bootstrap-select > .dropdown-toggle {
  background-color: #ffffff;  
}*/

.infowindow .maptop {
    width: 100%;
    display: inline-block;
    padding: 10px 10px;
    background-color: #005ff1;
    color: #fff;
    border-radius: 12px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

    .infowindow .maptop h2 {
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 10px;
    }

    .infowindow .maptop .topdata i, .infowindow .maptop .topdata img {
        padding-right: 10px;
    }

    .infowindow .maptop .topdata span {
        font-size: 12px;
        font-weight: 400;
        color: #fff;
    }

.infowindow .mapbottom {
    width: 100%;
    display: inline-block;
    margin-top: 14px;
    padding-left: 8px;
}

    .infowindow .mapbottom i {
        padding-right: 10px;
    }

    .infowindow .mapbottom h6 {
        font-size: 14px;
        font-weight: 400;
        color: #323232;
    }

.mapfilters {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background-color: #005ff1;
    padding: 12px 13px;
    border-radius: 6px;
    position: absolute;
    top: 11px;
    left: 11px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0 0 0 / 10%);
    box-shadow: 0px 0px 10px 0px rgba(0 0 0 / 10%);
    z-index: 1000;
}

    .mapfilters:hover, .mapfilters:focus {
        color: #ffffff;
        background-color: #005ff1;
        text-decoration: underline;
    }

.mapmdata {
    width: 100%;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}

    .mapmdata:last-child {
        padding-bottom: 0px;
        margin-bottom: 0px;
        border-bottom: none;
    }

    .mapmdata h3 {
        font-size: 20px;
        font-weight: 500;
        color: #000000;
        margin-bottom: 20px;
    }

    .mapmdata p {
        font-size: 15px;
        font-weight: 400;
        color: #5a5a5a;
    }

.clearbtn {
    font-size: 14px;
    font-weight: 500;
    color: #5a5a5a;
    text-decoration: underline;
}

.style_cap {
    text-transform: uppercase;
}

.customtable .table thead th {
    background-color: #f3fdff;
}

.customtable .table thead th, .customtable .table tbody td {
    padding: 0px;
    color: #323232;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

    .customtable .table tbody td:first-child {
        background-color: #f3fdff;
        text-align: left;
    }

.customtable .txtbox {
    padding: 20px 15px;
    text-transform: uppercase;
}

.redbox {
    background-color: #f5365c;
    color: #fff;
}

.greenbox {
    background-color: #2dce89;
    color: #fff;
}

.modelboxes {
    display: flex;
}

.border-box-wrap {
    width: 100%;
}

/*On Hover Scroll Div RTL AND LTR Start*/

#dvMeasure {
    left: 20px;
    width: calc(100% - 28px);
    white-space: nowrap !important;
    height: 100%;
    position: relative;
    overflow-x: hidden;
}

#next {
    /*height: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
    width: 20px;
    height: 100%;
    color: #fff;
    text-align: center;
    align-items: center;
    display: flex;
    padding: 5px;
    border-radius:5px;
    cursor:pointer;*/
    position: absolute;
    left: -13px;
    top: 10px;
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
    width: 23px;
    height: 23px;
    color: #fff;
    text-align: center;
    align-items: center;
    display: flex;
    padding: 5px;
    border-radius: 18px;
    cursor: pointer;
}

#prev {
    /*height: 100%;
    position: absolute;
    right: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
    width: 20px;
    height: 100%;
    color: #fff;
    text-align: center;
    align-items: center;
    display: flex;
    padding: 5px;
    border-radius:5px;
    cursor:pointer;*/
    position: absolute;
    right: -12px;
    top: 10px;
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
    width: 23px;
    height: 23px;
    color: #fff;
    text-align: center;
    align-items: center;
    display: flex;
    padding: 7px;
    border-radius: 18px;
    cursor: pointer;
}

body::-webkit-scrollbar {
    display: none;
}
/*On Hover Scroll Div RTL AND LTR End*/


.cmbtop {
    width: 100%;
    display: inline-block;
    margin-bottom: 15px;
}

    .cmbtop .btn.btn-outline-secondary {
        color: #fff;
        border-color: #fff;
    }

    .cmbtop .form-label {
        color: #fff;
        margin-bottom: 0;
    }

    .cmbtop .btn {
        height: 35px;
        font-size: 12px;
        line-height: 12px;
    }

    .cmbtop .form-control {
        height: 35px;
        font-size: 12px;
        line-height: 12px;
    }

#chartsplit .bootstrap-select > .dropdown-toggle {
    padding: 10px 10px;
}


.leaflet-popup-content {
    margin: 0px 0px !important;
}

.appliul {
    width: 100%;
    display: inline-block;
}

    .appliul li {
        display: inline-block;
        margin-right: 5px;
        margin-bottom: 8px;
    }

.canvasjs-chart-toolbar .canvas_button {
    position: relative;
    margin: 0px;
    padding: 3px 4px;
    width: 31px;
    border: 1px solid white;
    background: white;
    float: left;
}

    .canvasjs-chart-toolbar .canvas_button:hover {
        /*background: rgb(33, 150, 243);*/
        background: #005ff1;
    }

        .canvasjs-chart-toolbar .canvas_button:hover img {
            filter: invert(100%);
        }

.canvasjs-chart-tooltip .popup_value {
    fill: #2E2E2E;
    color: #2E2E2E;
    font-size: 18px;
    font-weight: bold;
    font-style: normal !important;
}

.canvasjs-chart-tooltip .popup_unit {
    fill: #D2D3D5;
    margin-left: 10px;
    font-style: normal !important;
}

.canvasjs-chart-tooltip .popup_date {
    fill: #6E6E6E;
    font-size: 10px;
    font-weight: bold;
    font-style: normal !important;
}

/*.cust-chk-bx input:checked ~ .cust-chkmark {
  -webkit-animation: click-wave 0.25s;
  -moz-animation: click-wave 0.25s;
  animation: click-wave 0.25s;
}*/

/*@keyframes click-wave {
  0% {
    height: 21px;
    width: 21px;
    opacity: 0.15;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}*/


table.dataTable.display tbody tr.even > .sorting_1 {
    background-color: transparent !important;
}

table.dataTable.display tbody tr.odd > .sorting_1 {
    background-color: transparent !important;
}

.ExportMode_data {
    width: 100%;
    display: inline-block;
}

    .ExportMode_data .emdbm {
        width: 100%;
        display: inline-block;
        /*padding: 20px;*/
        border: 1px solid #f1f1f1;
        border-radius: 10px;
        height: 100%;
        -webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.15);
        -moz-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.15);
        box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.15);
    }

    .ExportMode_data .title_box {
        width: 100%;
        display: flex;
        padding: 20px;
        align-items: center;
        justify-content: space-between;
    }

        .ExportMode_data .title_box h3, .head-device-name {
            font-size: 20px;
            font-weight: 600;
            color: #323232;
            margin-bottom: 0px;
        }

        .ExportMode_data .title_box .dropdown-toggle {
            color: #000000;
            font-size: 18px;
        }

            .ExportMode_data .title_box .dropdown-toggle::after {
                display: none;
            }

    .ExportMode_data .border_sub_title {
        width: 100%;
        display: inline-block;
        border-bottom: 2px solid #e5e5e5;
        padding: 20px;
    }

    .ExportMode_data .border-bottom {
        border-bottom: 2px solid #e5e5e5 !important;
    }

    .ExportMode_data .border_sub_title h4 {
        font-size: 18px;
        color: #323232;
        font-weight: 600;
        margin-bottom: 0px;
    }

    .ExportMode_data .inline_input {
        width: 100%;
        display: inline-block;
        padding: 20px;
    }

    .ExportMode_data .sortable_box {
        width: 100%;
        display: inline-block;
        border-bottom: 2px solid #e5e5e5;
        border-top: 2px solid #e5e5e5;
    }

    .ExportMode_data .sort_boxes {
        background-color: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border-radius: 5px;
        margin-bottom: 15px;
    }

        .ExportMode_data .sort_boxes .sort_title {
            font-size: 14px;
            color: #9d9d9d;
            font-weight: 600;
        }

        .ExportMode_data .sort_boxes i {
            font-size: 16px;
            color: #000;
            opacity: 0;
        }

        .ExportMode_data .sort_boxes:hover i {
            opacity: 1;
        }

    .ExportMode_data .add_layer {
        width: 100%;
        display: inline-block;
        padding: 10px 15px;
        border-radius: 5px;
        margin-bottom: 15px;
        font-size: 14px;
        color: #9d9d9d;
        font-weight: 600;
        border: 1px dashed #b0b0b0;
        text-align: center;
    }

    .ExportMode_data .border-box-wrap {
        width: 100%;
        display: inline-block;
        border: 1px solid #f1f1f1;
        border-radius: 10px;
        padding: 12px 12px 12px 12px;
        -webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.15);
        -moz-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.15);
        box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.15);
    }

    .ExportMode_data .training_output h6 {
        font-size: 18px;
        color: #323232;
        font-weight: 400;
    }


.extralayer_modal .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #323232;
}

    .extralayer_modal .modal-title i {
        padding-right: 15px;
        font-size: 25px;
    }

.extralayer_modal .modal-header {
    border-bottom: none;
}

.extralayer_modal .modal-footer {
    border-top: none;
}

.extralayer_modal .modal-content {
    border: none;
    border-radius: 10px;
}

.modal_note p {
    font-size: 16px;
    color: #323232;
}

    .modal_note p a {
        color: #005ff1;
    }

.modal_data_title {
    background-color: #f0f0f0;
    border-bottom: 1px solid #dcdcdc;
    border-top: 1px solid #dcdcdc;
}

    .modal_data_title h3 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }


.layer_data_boxes {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    justify-content: space-between;
}

    .layer_data_boxes .ldb_data {
        padding-right: 20px;
    }

    .layer_data_boxes h3 {
        font-size: 18px;
        font-weight: 600;
        color: #323232;
    }

    .layer_data_boxes p {
        font-size: 14px;
        font-weight: 500;
        color: #323232;
    }

        .layer_data_boxes p:last-child {
            margin-bottom: 0px;
        }

    .layer_data_boxes .add_btn {
        font-size: 14px;
        font-weight: 500;
        color: #323232;
        border: 1px solid #005ff1;
        color: #005ff1;
        border-radius: 10px;
        padding: 5px 15px;
    }

        .layer_data_boxes .add_btn:hover {
            color: #fff;
            background-color: #004bbd;
            border-color: #004bbd;
        }


.small_modal .modal-content {
    border: none;
    border-radius: 10px;
}

.small_modal .modal-body {
    margin: 40px;
}

.small_modal .que_icon {
    font-size: 60px;
    line-height: 60px;
    color: #005ff1;
    margin-bottom: 15px;
}

.small_modal h3 {
    font-size: 25px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 15px;
}

.small_modal h6 {
    font-size: 16px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 15px;
}

.small_modal .btn_group {
    margin-top: 40px;
}









@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1250px;
    }

    .resto-around-image img {
        height: 190px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1350px;
    }

    body {
        font-size: 15px;
    }

    .table-box-main table tbody tr td {
        font-size: 15px;
    }

    .table-box-main table thead tr th {
        font-size: 15px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 15px;
    }
}

@media (min-width: 1830px) {
    .container {
        max-width: 1500px;
    }
}


/*Added by Ashvin*/
/*// `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .appliulmain {
        flex: 0 0 auto;
        width: 100%;
    }
}

/*// `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .add-device-scan-inner {
        padding: 10% 0;
    }

    .navbar-toggler-right {
        display: block;
    }

    .header-rght-side {
        position: absolute;
        background: #fff;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        padding: 0 15px 0 15px;
    }

    .header-device-getway-tabs {
        padding: 0 0;
        margin-bottom: 0;
    }

    /*ul.squre-nav-tabs .nav-item {
        width: 50%;
    }*/

    ul.squre-nav-tabs .nav-link {
        width: 100%;
    }

    .top-search-header {
        margin-bottom: 10px;
    }

    .automl .form-label {
        font-size: 12px;
        line-height: 12px;
    }

    .automl .inputboxes {
        flex: 0 0 auto;
        width: 50%;
    }
}

/*// `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    #PopupEdge .form-control {
        width: 90px;
    }
}

/*// `md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .login-fix-width {
        width: 100%;
        margin: 15px auto;
    }

    .dashbox-name {
        font-size: 14px;
    }

    .dashbox-count {
        font-size: 20px;
    }

    .modal-header-cust h5 {
        font-size: 15px;
    }

    .delet-record-txt-lrg {
        font-size: 16px;
    }

    .delet-record-txt-small {
        font-size: 14px;
    }

    .dashbox-wrap .position-relative {
        text-align: center;
    }

        .dashbox-wrap .position-relative .chart {
            height: 75px !important;
            width: 75px !important;
            margin: 0 auto;
        }

            .dashbox-wrap .position-relative .chart canvas {
                width: 100% !important;
                height: 100% !important;
            }

    .ExportMode_data .emdboxes_main:first-child {
        margin-bottom: 30px;
    }
}

/*// `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
}

/*// `xs` returns only a ruleset and no media query*/
@media (max-width: 480.98px) {
    .dashbox-wrap .position-relative .chart {
        height: 50px !important;
        width: 50px !important;
        margin: 0 auto;
    }

        .dashbox-wrap .position-relative .chart canvas {
            width: 100% !important;
            height: 100% !important;
        }

    .chart-per-counter {
        font-size: 10px;
    }

    .dashbox-wrap ul.squre-nav-tabs .nav-link {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dashbox-wrap ul.squre-nav-tabs, .dashbox-wrap .dashbox-name {
        margin-bottom: 10px;
    }

    .header-main-fix {
        display: inline-block !important;
    }

        .header-main-fix .header-device-getway-tabs {
            margin-top: 10px;
        }
}
