:root {
    /* --- COLOR VARIABLES --- */
    /* General */
    --primary-background-color: #F0F0F0;
    --secondary-background-color: #FFF;
    --tertiary-background-color: #E4E4E4;
    --quaternary-background-color: #E6E6E6;
    --primary-text-color: #333;
    --secondary-text-color: #999;
    --tertiary-text-color: #CACACA;
    --primary-border-color: #CCC;
    --secondary-border-color: #EEE;
    --dark-only-border-color: transparent;
    --link-color: #007AFF;
    --watermark-color: rgba(0,0,0,0.08);
    /* Buttons */
    --button-color: #FFFFFF;
    --button-content-color: #686868;
    --button-hover-color: #E6E6E6;
    --button-hover-border-color: #ADADAD;
    /* Tables */
    --table-row-selected-color: #dfdfdf;
    --table-row-grouped-color: #E2E2E2;
    --table-row-hover-color: #EEEEEE;
    --table-row-alternate-color: #F7F7F7;
    /* Controls */
    --control-focus-color: #F4F5F7;
    --control-disabled-color: #D3D3D3;
    /* Indicator/Status/Alert Colors */
    --info-color: #519DD8;
    --info-border-color: #368FCB;
    --info-hover-color: #337CC6;
    --success-color: #19B698;
    --success-border-color: #0FAC8E;
    --success-hover-color: #23C0A2;
    --warning-color: #FF9D23;
    --warning-border-color: #DC881E;
    --danger-color: #EA6153;
    --danger-border-color: #C8553A;
    /* Misc */
    --loading-overlay-color: rgba(255,255,255,0.5);
    --yellow-highlight-color: #fff7c0;
}

/* #region Animations */

.blink {
    animation: blink 0.75s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.25;
    }
}

.wiggle {
    animation: wiggle 3s infinite;
}

.wiggle-once {
    animation: wiggle 3s 1;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(0deg);
    }

    85% {
        transform: rotate(2deg);
    }

    95% {
        transform: rotate(-2deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.horizontal-shake {
    animation: horizontal-shake 1.5s infinite;
}

.horizontal-shake-once {
    animation: horizontal-shake 1.5s 1;
}

@keyframes horizontal-shake {
    0% {
        transform: translateX(0)
    }

    60% {
        transform: translateX(0)
    }

    70% {
        transform: translateX(5px)
    }

    80% {
        transform: translateX(-5px)
    }

    90% {
        transform: translateX(5px)
    }

    100% {
        transform: translateX(0)
    }
}

.vertical-shake {
    animation: vertical-shake 1.5s infinite;
}

.vertical-shake-once {
    animation: vertical-shake 1.5s 1;
}

@keyframes vertical-shake {
    0% {
        transform: translateY(0)
    }

    60% {
        transform: translateY(0)
    }

    70% {
        transform: translateY(5px)
    }

    80% {
        transform: translateY(-5px)
    }

    90% {
        transform: translateY(5px)
    }

    100% {
        transform: translateY(0)
    }
}

/* #endregion */

.accordion {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .accordion {
        margin-bottom: 20px;
    }
}

    .accordion .panel {
        border: 1px solid var(--dark-only-border-color);
        border-radius: 7px;
        box-shadow: 0 1px 0 0 rgba(0,0,0,0.04);
        margin-bottom: 5px;
    }

    .accordion .panel-heading {
        align-items: center;
        background: transparent;
        border-radius: 0;
        color: var(--primary-text-color);
        display: flex;
        flex-wrap: wrap;
        padding: 0 10px 0 0;
    }

        .accordion .panel-heading + .panel-collapse .panel-body {
            border-top: 0;
            padding: 3px 20px 20px 20px;
        }

        .accordion .panel-heading a {
            color: var(--info-color);
            display: flex;
            align-items: center;
            font-size: 15px;
            padding: 17px 16px;
        }

            .accordion .panel-heading a .fa-angle-right {
                margin-right: 10px;
                transform: rotate(90deg);
                transition: transform 200ms ease-in-out;
            }

            .accordion .panel-heading a svg {
                fill: var(--info-color);
                height: 25px;
                width: 25px;
                margin-right: 8px;
            }

                .accordion .panel-heading a svg.angle-right {
                    transform: rotate(90deg);
                    transition: transform 200ms ease-in-out;
                }

            .accordion .panel-heading a.collapsed {
                color: var(--primary-text-color);
            }

                .accordion .panel-heading a.collapsed .fa-angle-right {
                    transform: rotate(0deg);
                }

                .accordion .panel-heading a.collapsed svg {
                    fill: var(--primary-text-color);
                }

                    .accordion .panel-heading a.collapsed svg.angle-right {
                        transform: rotate(0deg);
                    }

    .accordion .panel-title {
        flex: 1;
        margin-top: 0 !important;
    }

    .accordion-on-white .accordion .panel {
        border: 1px solid var(--primary-border-color);
        border-radius: 4px;
        box-shadow: none;
        overflow: auto; /* To hide the inner contents corners when border-radius is applied */
    }

    .accordion-on-white .accordion .panel-heading {
        background: var(--tertiary-background-color);
    }

        .accordion-on-white .accordion .panel-heading + .panel-collapse .panel-body {
            padding: 20px;
        }

    .accordion-on-white .accordion .panel:first-child {
        border: 1px solid var(--primary-border-color);
    }

    .accordion.panel-group .panel + .panel {
        margin-top: 0;
    }

    .alert {
        border-radius: 0;
        box-shadow: 0;
        webkit-border-radius: 0;
    }

        .alert .close {
            text-shadow: none;
        }

        .alert .sign {
            color: rgba(0,0,0,0.2);
            display: inline-block;
            font-size: 20px;
            margin-right: 5px;
            text-align: center;
            vertical-align: middle;
            width: 25px;
        }

    .alert-info {
        background-color: #2980b9;
        border-color: #1f76af;
        color: #fff;
    }

    .alert-success {
        background-color: var(--success-color);
        border-color: var(--success-border-color);
        color: #fff;
    }

    .alert-warning {
        background-color: var(--warning-color);
        border-color: #e76435;
        color: #fff;
    }

    .alert-white {
        background: var(--secondary-background-color);
        border-color: var(--primary-border-color);
        color: var(--primary-text-color);
        padding-left: 61px;
        position: relative;
    }

        .alert-white .icon {
            border: 1px solid #BDBDBD;
            left: -1px;
            padding-top: 15px;
            position: absolute;
            text-align: center;
            top: -1px;
            bottom: -1px;
            width: 45px;
        }

            .alert-white .icon i {
                color: #FFF;
                font-size: 20px;
                left: 12px;
                margin-top: -10px;
                position: absolute;
                top: 50%;
            }

            .alert-white .icon > svg {
                fill: #FFF;
                left: 12px;
                margin-top: -10px;
                position: absolute;
                top: 50%;
                width: 20px;
                height: 20px;
            }

            .alert-white .icon:after {
                background: #fff;
                border: 1px solid #BDBDBD;
                border-bottom: 0;
                border-left: 0;
                content: '';
                display: block;
                height: 10px;
                margin-top: -3px;
                moz-transform: rotate(45deg);
                ms-transform: rotate(45deg);
                o-transform: rotate(45deg);
                position: absolute;
                right: -6px;
                top: 50%;
                transform: rotate(45deg);
                webkit-transform: rotate(45deg);
                width: 10px;
            }

        .alert-white.alert-info .icon {
            background: #2980b9;
            border-color: #1f76af;
        }

            .alert-white.alert-info .icon:after {
                background: #2980b9;
                border-color: #1f76af;
            }

        .alert-white.alert-success .icon {
            background: var(--success-color);
            border-color: var(--success-border-color);
        }

            .alert-white.alert-success .icon:after {
                background: var(--success-color);
                border-color: var(--success-border-color);
            }

        .alert-white.alert-warning .icon {
            background: var(--warning-color);
            border-color: var(--warning-border-color);
        }

            .alert-white.alert-warning .icon:after {
                background: var(--warning-color);
                border-color: var(--warning-border-color);
            }

        .alert-white.alert-danger .icon {
            background: var(--danger-color);
            border-color: var(--danger-border-color);
        }

            .alert-white.alert-danger .icon:after {
                background: var(--danger-color);
                border-color: var(--danger-border-color);
            }

        .alert-white.rounded {
            border-radius: 4px;
        }

            .alert-white.rounded .icon {
                border-radius: 4px 0 0 4px;
            }

    .app .description {
        color: #888;
    }

    .badge {
        background-color: #8A8A8A !important;
        font-size: 12px;
        font-weight: 400;
        padding: 3px 5px;
        border-radius: 3px;
    }

        .badge.badge-red {
            background-color: #FF0000 !important;
        }

    .btn .badge {
        top: 0;
    }

    .bgerror .error-logo {
        margin: 0 0 65px;
    }

    .bgerror .main-container {
        color: #fff;
        padding: 0;
        text-align: center;
    }

        .bgerror .main-container h2 {
            color: #ffcb08;
            font-size: 36px;
            margin-bottom: 20px;
        }

        .bgerror .main-container p {
            color: #B5B5B5;
            font-size: 18px;
        }

            .bgerror .main-container p a {
                color: #ffcb08;
            }

    .block .actions {
        float: right;
        padding-top: 5px;
    }

        .block .actions .refresh i {
            font-size: 12px;
        }

    .block .cl {
        margin-bottom: 20px;
    }

    .block .dropdown-menu {
        border-radius: 1px;
        margin: -1px 0 0;
        webkit-border-radius: 1px;
    }

    .block .header {
        background-color: #FEFEFE;
        border-bottom: 1px solid var(--primary-border-color);
        border-radius: 3px 3px 0 0;
        padding: 10px;
        webkit-border-radius: 3px 3px 0 0;
    }

        .block .header .actions i:hover {
            color: #858585;
        }

        .block .header h2 {
            font-family: Raleway, Helvetica, sans-serif;
            font-size: 29px;
            font-weight: 100;
            line-height: 38px;
            margin: 0;
        }

        .block .header h3 {
            font-family: Raleway, Helvetica, sans-serif;
            font-weight: 200;
            margin: 3px 0;
        }

        .block .header h4 {
            font-size: 15px;
            font-weight: 400;
            margin: 6px 0;
        }

        .block .header.dark {
            background-color: #383A41;
            border-bottom: 0;
            color: #fff;
        }

    .block .items {
        margin: 0;
        padding: 0;
    }

        .block .items li {
            background-color: #FFF;
            border-top: 1px solid #e8e8e8;
            font-size: 14px;
            line-height: 17px;
            list-style: none;
            moz-transition: background .25s ease-in-out;
            padding: 13px;
            transition: background .25s ease-in-out;
            webkit-transition: background .25s ease-in-out;
        }

            .block .items li .value {
                font-size: 15px;
                margin-top: 7px;
            }

            .block .items li i {
                color: #555;
                display: block;
                float: left;
                font-size: 28px;
                height: 38px;
                margin-left: 4px;
                margin-right: 15px;
                margin-top: 2px;
            }

            .block .items li small {
                display: block;
            }

            .block .items li:first-child {
                border-top: 0;
            }

            .block .items li:hover {
                background-color: #F4F4F4;
            }

    .block .loading {
        background: var(--loading-overlay-color);
        cursor: wait;
        display: none;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

        .block .loading i {
            font-size: 26px;
            left: 50%;
            margin-left: -13px;
            margin-top: -13px;
            position: relative;
            top: 50%;
        }

    .block .no-border {
        border-bottom: 0;
    }

    .block h2 i {
        color: #555;
        font-size: 24px;
        margin-right: 6px;
    }

    .block-flat {
        background: var(--secondary-background-color);
        border: 1px solid var(--dark-only-border-color);
        border-radius: 7px;
        box-shadow: 0 2px 0 0 rgba(0,0,0,0.05);
        margin-bottom: 30px;
        moz-transition: padding 500ms;
        padding: 20px;
        position: relative;
        transition: padding 500ms;
        webkit-transition: padding 500ms;
    }

        .block-flat .colored-stripe {
            position: absolute;
            left: 0;
            top: -1px;
            right: 0;
            height: 5px;
            border-top-right-radius: 7px;
            border-top-left-radius: 7px;
        }

        .block-flat .actions {
            float: right;
        }

            .block-flat .actions .action-button {
                clear: both;
                color: var(--button-content-color);
                display: block;
                font-size: 12px !important;
                font-weight: 400;
                line-height: 1.42857;
                margin: 0 !important;
                padding: 5px 20px;
                white-space: nowrap;
            }

            .block-flat .actions a {
                color: rgba(0,0,0,0.4);
                font-size: 17px;
                margin-left: 17px;
            }

                .block-flat .actions a:hover {
                    color: rgba(0,0,0,0.5);
                }

        .block-flat .content {
            padding: 15px 3px 0;
        }

            .block-flat .content h4 {
                margin-top: 20px;
            }

            .block-flat .content.full-width {
                margin-bottom: -20px;
                margin-left: -20px;
                margin-right: -20px;
                padding: 0;
            }

        .block-flat .header {
            align-items: flex-start;
            border-bottom: 1px solid var(--primary-border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 0 10px 0;
            margin-top: -3px;
        }

            .block-flat .header .actions h3.popover-title {
                margin-top: 0 !important;
            }

            .block-flat .header .btn-group {
                align-items: flex-start;
            }

            .block-flat .header h3 {
                margin-top: 0;
                margin-bottom: 0;
                display: inline-flex;
                align-items: center;
                color: var(--primary-text-color);
            }

                .block-flat .header h3 > svg:first-child,
                .block-flat .header h3 > i:first-child {
                    width: 25px;
                    height: 25px;
                    margin-right: 8px;
                    fill: var(--primary-text-color);
                }

            .block-flat .header.no-border {
                border: 0;
            }

        .block-flat .loading {
            background: var(--loading-overlay-color);
            cursor: wait;
            display: none;
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

            .block-flat .loading i {
                font-size: 26px;
                left: 50%;
                margin-left: -13px;
                margin-top: -13px;
                position: relative;
                top: 50%;
            }

        .block-flat .realtime-content {
            padding: 15px 0 0;
        }

            .block-flat .realtime-content .nano {
                height: 261px;
            }

        .block-flat.closed {
            padding-bottom: 9px;
        }

            .block-flat.closed .header {
                border-bottom: 1px solid transparent;
            }

        .block-flat.no-padding .content {
            padding: 0 !important;
        }

            .block-flat.no-padding .content table td {
                padding: 11px 10px 7px;
            }

            .block-flat.no-padding .content table th {
                padding: 11px 10px 7px;
            }

    .blue thead th {
        color: #2980b9;
    }

    .bootstrap-touchspin .btn {
        width: 30px;
    }

    .bootstrap-timepicker-widget table td a:hover,
    .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
    .bootstrap-datetimepicker-widget table td span:hover,
    .bootstrap-datetimepicker-widget table td.day:hover,
    .bootstrap-datetimepicker-widget table td.hour:hover,
    .bootstrap-datetimepicker-widget table td.minute:hover,
    .bootstrap-datetimepicker-widget table td.second:hover {
        background: var(--table-row-hover-color);
    }

    .bootstrap-datetimepicker-widget.dropdown-menu.top:after {
        border-top-color: var(--secondary-background-color);
    }

    .bootstrap-datetimepicker-widget.dropdown-menu.right:after {
        border-right-color: var(--secondary-background-color);
    }

    .bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
        border-bottom-color: var(--secondary-background-color);
    }

    .bootstrap-datetimepicker-widget.dropdown-menu.left:after {
        border-left-color: var(--secondary-background-color);
    }

    .bootstrap-timepicker-widget.dropdown-menu:after {
        border-bottom-color: var(--secondary-background-color);
    }

    .breadcrumb {
        background: transparent;
        margin-bottom: 0;
        margin-top: 5px;
        padding: 4px;
    }

    .btn {
        align-items: center;
        background-color: var(--button-color);
        border-color: var(--primary-border-color);
        color: var(--button-content-color) !important;
        cursor: pointer;
        display: inline-flex;
        fill: var(--button-content-color) !important;
        font-size: 13px !important;
        height: 36px;
        justify-content: center;
        line-height: normal;
        outline: none;
        padding: 7px 8px !important;
        border-radius: 4px;
    }

        .btn .caret {
            color: var(--button-content-color);
            margin-left: 3px;
        }

        .btn i {
            display: inline-block;
            font-size: 17px;
        }

        .btn svg {
            height: 17px;
            width: 17px;
        }

    svg.btn {
        height: 17px;
        width: 17px;
    }

    .btn-block {
        width: 100%;
    }

    .btn.btn-danger {
        background-color: var(--danger-color);
        border-color: transparent;
        color: #fff !important;
        fill: #fff !important;
    }

        .btn.btn-danger .caret {
            border-top-color: #FFF;
        }

        .btn.btn-danger.active {
            background-color: #f46b5d;
            border-color: transparent;
        }

        .btn.btn-danger:active {
            background: #e05749;
            background-color: #f46b5d;
            border-color: transparent;
            box-shadow: none;
        }

        .btn.btn-danger:focus {
            background-color: var(--danger-color);
            border-color: transparent;
            color: #fff !important;
        }

        .btn.btn-danger:hover {
            background-color: #f46b5d;
            border-color: transparent;
        }

    .btn-group {
        align-items: center;
        display: inline-flex;
        justify-content: center;
    }

        .btn-group > .btn {
            border-radius: 0;
        }

        .btn-group .btn:first-child {
            margin-left: 0 !important;
        }

        /* Make sure the first btn in a group has rounded corners on the top left and bottom left */
        .btn-group > .btn:first-child,
        .btn-group > .dropdown:first-child > .btn,
        input[type="hidden"]:first-child + .btn {
            border-top-left-radius: 4px !important;
            border-bottom-left-radius: 4px !important;
        }

        /* Make sure the last btn in a group has rounded corners on the top right and bottom right */
        .btn-group > .btn:last-child,
        .btn-group > .dropdown:last-child > .btn {
            border-top-right-radius: 4px !important;
            border-bottom-right-radius: 4px !important;
        }

        .btn-group > .popover + .btn {
            margin-left: -1px;
        }

        .btn-group > .tooltip + .btn {
            margin-left: -1px;
        }

        .btn-group.open .dropdown-toggle {
            box-shadow: none;
            -webkit-box-shadow: none;
            background-color: var(--control-focus-color);
        }

        .btn-group.horizontal > .btn {
            border-color: rgba(0,0,0,0.08);
        }

    .btn.btn-icon {
        background-color: transparent !important;
        border: none !important;
        padding: 5px !important;
        font-size: 17px !important;
    }

        .btn.btn-icon:hover,
        .btn.btn-icon[disabled]:hover {
            background-color: transparent !important;
            border: none !important;
        }

        .btn.btn-icon[disabled] {
            color: var(--control-disabled-color) !important;
            fill: var(--control-disabled-color) !important;
            opacity: 1;
        }

    .btn-add {
        display: inline-flex;
        align-items: center;
    }

        .btn-add .fa,
        .btn-add .fa-regular,
        .btn-add .fa-solid {
            font-size: 20px;
        }

        .btn-add span {
            font-size: 13px;
            margin-left: 5px;
        }

    .btn.btn-lg {
        font-size: 15px !important;
        font-weight: 300;
        padding: 10px 12px 8px;
    }

        .btn.btn-lg i {
            font-size: 18px;
        }

    .btn.btn-md {
        height: 36px;
        padding: 7px 11px !important;
    }

        .btn.btn-md i {
            font-size: 16.7px;
            vertical-align: middle;
        }

    .btn-add {
        color: var(--info-color);
    }

    .btn.btn-pill {
        border-radius: 17px;
        line-height: 1;
        height: auto;
    }

    .btn.btn-primary {
        background-color: var(--info-color);
        border-color: transparent;
        color: #FFF !important;
        fill: #FFF !important;
    }

        .btn.btn-primary .caret {
            border-top-color: #FFF;
        }

        .btn.btn-primary.active {
            background-color: var(--info-hover-color);
            border-color: transparent;
        }

        .btn.btn-primary.disabled {
            background-color: #999;
            border-color: #999;
        }

        .btn.btn-primary:active {
            background: var(--info-color);
            background-color: var(--info-hover-color);
            border-color: transparent;
            box-shadow: none;
        }

        .btn.btn-primary:focus {
            background-color: var(--info-color);
            border-color: transparent;
            color: #FFF !important;
            fill: #FFF !important;
        }

        .btn.btn-primary:hover {
            background-color: var(--info-hover-color);
            border-color: transparent;
        }

    .btn.btn-sm {
        font-size: 12px !important;
        padding: 4px 7px;
    }

        .btn.btn-sm i {
            font-size: 14px;
        }

    .btn.btn-success {
        background-color: var(--success-color);
        border-color: transparent;
        color: #fff !important;
        fill: #fff !important;
    }

        .btn.btn-success .caret {
            border-top-color: #FFF;
        }

        .btn.btn-success.active {
            background-color: var(--success-hover-color);
            border-color: transparent;
        }

        .btn.btn-success:active {
            background-color: var(--success-hover-color);
            border-color: transparent;
            box-shadow: none;
        }

        .btn.btn-success:focus {
            background-color: var(--success-color);
            border-color: transparent;
            color: #fff !important;
            fill: #fff !important;
        }

    .btn.btn.btn-success:hover {
        background-color: var(--success-hover-color);
        border-color: transparent;
    }

    .btn.btn-warning {
        background-color: var(--warning-color);
        border-color: transparent;
        color: #fff !important;
        fill: #fff !important;
    }

        .btn.btn-warning .caret {
            border-top-color: #FFF;
        }

        .btn.btn-warning.active {
            background-color: #FFAC44;
            border-color: transparent;
        }

        .btn.btn-warning:active {
            background: #e76435;
            background-color: #FFAC44;
            border-color: transparent;
            box-shadow: none;
        }

        .btn.btn-warning:focus {
            background-color: var(--warning-color);
            border-color: transparent;
            color: #fff !important;
        }

        .btn.btn-warning:hover {
            background-color: #FFAC44;
            border-color: transparent;
        }

    .btn.btn-xs {
        font-size: 11px !important;
        padding: 2px 6px;
    }

        .btn.btn-xs i {
            font-size: 12px;
        }

    .btn.bg i {
        color: #FFF;
    }

    .btn:active:not(.disabled) {
        background: var(--button-hover-color);
        box-shadow: none;
    }

    .btn:focus {
        outline: none;
    }

    .btn:hover:not(.disabled):not([disabled]),
    .btn:focus:not(.disabled):not([disabled]) {
        background-color: var(--button-hover-color);
        border-color: var(--button-hover-border-color);
        z-index: 2; /* Z index to make sure that buttons with overlapping borders will show the all borders when hovered */
    }

    .btn:not(.btn-icon) svg:first-child:not(:only-child),
    .btn:not(.btn-icon) i:first-child:not(:only-child) {
        margin-right: 5px;
    }

    .btn:not(.btn-icon) svg:last-child:not(:only-child),
    .btn:not(.btn-icon) i:last-child:not(:only-child) {
        margin-left: 5px;
    }

    .btn[disabled],
    .btn[disabled]:hover,
    .btn[disabled]:focus {
        background: var(--control-disabled-color);
        border-color: transparent;
        color: var(--primary-text-color) !important;
        fill: var(--primary-text-color) !important;
        opacity: 0.65;
    }

    /* Bootstrap calendar styling */
    .cal-month-box, .cal-year-box, .cal-week-box,
    .cal-year-box .row-fluid, .cal-month-box .cal-row-fluid,
    .cal-year-box [class*="span"], .cal-month-box [class*="cal-cell"],
    .cal-column,
    #cal-day-box .cal-day-hour-part {
        border-color: var(--primary-border-color);
    }

    [class*="cal-cell"]:hover {
        background-color: var(--table-row-hover-color);
    }

    .cal-year-box .row-fluid:hover, .cal-row-fluid:hover {
        background-color: inherit;
    }

    .cal-day-today span[data-cal-date] {
        color: white;
        background-color: var(--info-color);
        padding: 5px 10px;
        border-radius: 15px;
        margin-top: 10px;
        opacity: 1;
    }

    .cal-month-box .cal-day-today span[data-cal-date] {
        font-size: 1.2em;
    }

    .cal-day-today {
        background-color: var(--table-row-selected-color);
    }

    span[data-cal-date] {
        opacity: 0.6;
        margin-left: 15px;
        margin-right: 15px;
    }

    .cal-day-weekend span[data-cal-date],
    .cal-day-outmonth span[data-cal-date] {
        opacity: 0.25;
        color: inherit;
    }

    #cal-day-box .cal-day-hour:nth-child(odd) {
        background-color: var(--table-row-alternate-color);
    }

    .cal-cell1.cal-cell.day-highlight.dh-event-important {
        background-color: var(--table-row-hover-color);
    }

    .cal-context .event {
        border: none;
        margin-bottom: 5px;
    }

    #cal-slide-content {
        color: var(--primary-text-color);
        background-image: none;
        border-bottom: 1px solid var(--primary-border-color);
        box-shadow: none;
        -webkit-box-shadow: none;
    }

        #cal-slide-content a.event-item {
            color: var(--primary-text-color);
        }

    #cal-day-tick {
        background-color: var(--table-row-hover-color);
        border-color: var(--primary-border-color);
        bottom: -26px;
        margin-right: -13px;
    }

        #cal-day-tick .glyphicon {
            top: 2px;
            left: -1px;
        }

    /* End of Bootstrap calendar styling */

    .caret {
        color: var(--primary-text-color);
        margin-left: 5px;
    }

    .carousel-indicators {
        bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

        .carousel-indicators .active {
            background-color: #ffa200;
        }

        .carousel-indicators li {
            border: 1px solid #ffa200;
            border-radius: 10px;
        }

    .checkbox-inline {
        display: inline-flex;
        align-items: center;
    }

        .checkbox-inline:first-child {
            padding-left: 0;
        }

        .checkbox-inline .icheckbox_flat-blue {
            margin-right: 7px;
        }

    .cl-mcont {
        background-color: transparent;
        color: inherit;
        margin-top: 0;
        padding: 10px 30px 30px;
    }

        .cl-mcont .block {
            background: #FFF;
            border: 0;
            border-radius: 3px;
            box-shadow: 0 1px 0 0 rgba(0,0,0,0.04);
            margin-bottom: 30px;
            webkit-border-radius: 3px;
        }

            .cl-mcont .block .content {
                padding: 20px;
            }

        .cl-mcont .col-lg-6 {
            padding: 0 15px;
        }

        .cl-mcont .row {
            margin-top: 20px;
        }

        .cl-mcont h1 {
            line-height: 1.3em;
        }

        .cl-mcont.aside {
            display: table;
            height: 100%;
            margin-top: -66px;
            padding: 66px 0 0;
        }

            .cl-mcont.aside > .content {
                display: table-cell;
                vertical-align: top;
                width: 100%;
            }

        .cl-mcont.white {
            background: #fff;
        }

    .cl-sidebar {
        background: #272727;
        display: table-cell;
        padding-bottom: 49px;
        position: relative;
        vertical-align: top;
        width: 240px;
        z-index: 2;
    }

        .cl-sidebar .cl-toggle {
            background: rgba(0,0,0,0.15);
            border-radius: 3px;
            cursor: pointer;
            display: none;
            margin-right: 10px;
            padding: 7px 8px;
            position: absolute;
            right: 15px;
            text-align: center;
            top: 14px;
        }

            .cl-sidebar .cl-toggle i {
                color: #fff;
                font-size: 21px;
            }

        .cl-sidebar .collapse-button {
            background-color: #272727;
            border-top: 1px solid rgba(255,255,255,0.04);
            bottom: 0;
            position: fixed;
            width: inherit;
        }

            .cl-sidebar .collapse-button .search {
                background: none repeat scroll 0 0 #181A21;
                border: 1px solid rgba(0,0,0,0.06);
                border-radius: 2px;
                color: rgba(255,255,255,0.7);
                display: inline-block;
                font-size: 11px;
                height: 33px;
                margin-right: 3px;
                width: 219px;
            }

            .cl-sidebar .collapse-button button {
                background: transparent !important;
                border: 1px solid rgba(255,204,0,0.15) !important;
                border-radius: 2px;
                box-shadow: none;
                margin: 0 !important;
                width: 34px;
            }

                .cl-sidebar .collapse-button button i {
                    margin: 0 !important;
                }

                .cl-sidebar .collapse-button button:hover {
                    background: #111 !important;
                    border: 1px solid rgba(255,204,0,0.5) !important;
                }

    .cl-vnavigation {
        margin: 0;
        padding: 0;
    }

        .cl-vnavigation .active > a {
            background: #1D1D1D;
        }

            .cl-vnavigation .active > a:first-of-type {
                border-left: 2px solid #fc0;
                color: #FFF;
                fill: #FFF;
                padding-left: 20px;
            }

        .cl-vnavigation .parent ul li {
            list-style: none;
        }

            .cl-vnavigation .parent ul li a {
                background-image: none;
                font-size: 12px;
                padding: 7px 18px 7px 42px;
            }

                .cl-vnavigation .parent ul li a:first-child {
                    border-top: 0;
                }

                .cl-vnavigation .parent ul li a:hover {
                    background-color: rgba(0,0,0,0.2);
                }

            .cl-vnavigation .parent ul li.active a {
                background: #1b1b1b;
                background-color: rgba(0,0,0,0.2);
                border-left: 2px solid #fc0;
                color: #fff;
            }

                .cl-vnavigation .parent ul li.active a:first-of-type {
                    padding-left: 40px;
                }

            .cl-vnavigation .parent ul li ul li.active a:first-of-type {
                padding-left: 58px;
            }

            .cl-vnavigation .parent ul li.dropdown-header {
                display: none;
            }

        .cl-vnavigation .selected:hover a {
            background-color: #2494F2;
        }

        .cl-vnavigation .selected:hover ul a {
            background-color: #1A1C20;
        }

        .cl-vnavigation > .parent > a:before {
            content: "";
            display: inline-block;
            float: right;
            font-family: FontAwesome;
            moz-transition: rotate 250ms ease;
            o-transition: rotate 250ms ease;
            transition: transform 250ms ease;
            webkit-transition: rotate 250ms ease;
        }

        .cl-vnavigation > .parent.open > a:before {
            content: "";
            transform: rotate(90deg);
        }

        .cl-vnavigation li a {
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.04);
            color: rgba(255,255,255,0.6);
            display: inline-flex;
            fill: rgba(255,255,255,0.6);
            font-size: 13px;
            font-weight: 400;
            line-height: normal;
            moz-transition: color 250ms ease;
            padding: 15px 22px;
            transition: color 250ms ease;
            webkit-transition: color 250ms ease;
            white-space: nowrap;
            width: 100%;
        }

            .cl-vnavigation li a i {
                font-size: 14px;
                margin-right: 7px;
                text-align: center;
                width: 20px;
            }

            .cl-vnavigation li a span {
                display: inline-block;
                opacity: 1;
            }

            .cl-vnavigation li a:hover {
                background-color: #232323;
                color: #fff;
                fill: #fff;
            }

        .cl-vnavigation li ul {
            background-color: #2F2F2F;
            display: none;
            margin: 0;
            padding: 4px 0 0;
        }

    .cl-wrapper {
        display: table;
        height: 100%;
        margin-left: -20px;
        opacity: 0;
        position: absolute;
        transition: margin-left 600ms ease, opacity 1000ms;
        width: 100%;
    }

        .cl-wrapper.animate-collapse .cl-sidebar {
            moz-transition: width 300ms linear;
            o-transition: width 300ms linear;
            transition: width 500ms linear;
            webkit-transition: width 300ms linear;
        }

            .cl-wrapper.animate-collapse .cl-sidebar .collapse-button {
                moz-transition: width 300ms linear;
                o-transition: width 300ms linear;
                transition: width 500ms linear;
                webkit-transition: width 300ms linear;
            }

        .cl-wrapper.animate-collapse .cl-vnavigation li a i {
            moz-transition: margin 500ms linear, font-size 500ms linear;
            o-transition: margin 500ms linear, font-size 500ms linear;
            transition: margin 500ms linear, font-size 500ms linear;
            webkit-transition: margin 500ms linear, font-size 500ms linear;
        }

        .cl-wrapper.animate-collapse .cl-vnavigation li a span {
            moz-transition: opacity 500ms linear;
            o-transition: opacity 500ms linear;
            transition: opacity 500ms linear;
            webkit-transition: opacity 500ms linear;
        }

        .cl-wrapper.fixed-menu .menu-space {
            background: #272930;
            position: fixed;
            width: 216px;
        }

            .cl-wrapper.fixed-menu .menu-space .left-nav-content {
                outline: none;
            }

        .cl-wrapper.login-container {
            opacity: 0;
            transition: opacity 1000ms;
        }

        .cl-wrapper.sb-collapsed.fixed-menu .menu-space {
            width: 70px;
        }

    .clear {
        clear: both;
    }

    .close {
        text-shadow: none;
        color: var(--primary-text-color) !important;
    }

    .colored-header .modal-header {
        align-items: center;
        background-color: var(--info-color);
        border-bottom: 1px solid var(--info-border-color) !important;
        color: #fff;
        display: flex;
        justify-content: space-between;
    }

        .colored-header .modal-header .close {
            color: #000;
            text-shadow: 1px 0 #fff;
            font-weight: bold;
        }

    .colored-header.info-modal .modal-header {
        background-color: var(--info-color);
        border-bottom: 1px solid var(--info-border-color) !important;
        color: #fff;
    }

    .colored-header.info-modal .modal-body .i-circle i {
        color: var(--info-color);
    }

    .colored-header.success-modal .modal-header {
        background-color: var(--success-color);
        border-bottom: 1px solid var(--success-border-color) !important;
        color: #fff;
    }

    .colored-header.success-modal .modal-body .i-circle i {
        color: var(--success-color);
    }

    .colored-header.warning-modal .modal-header {
        background-color: var(--warning-color);
        border-bottom: 1px solid var(--warning-border-color) !important;
        color: #fff;
    }

    .colored-header.warning-modal .modal-body .i-circle i {
        color: var(--warning-color);
    }

    .colored-header.danger-modal .modal-header,
    .colored-header.danger-input-confirmation-modal .modal-header {
        background-color: var(--danger-color);
        border-bottom: 1px solid var(--danger-border-color) !important;
        color: #fff;
    }

    .colored-header.danger-modal .modal-body .i-circle i,
    .colored-header.danger-input-confirmation-modal .modal-body .i-circle i {
        color: var(--danger-color);
    }

    .danger-input-confirmation-modal .danger-input-confirmation-instructional-text {
        font-weight: bold;
    }

    .danger-input-confirmation-modal .danger-input-confirmation-textbox,
    .danger-input-confirmation-modal .danger-input-confirmation-textbox-placeholder {
        padding: 5px 10px;
        font-size: 30px;
        background-color: transparent;
        outline: none;
    }

    .danger-input-confirmation-modal .danger-input-confirmation-textbox-placeholder {
        background: repeating-linear-gradient( 125deg, var(--primary-background-color), var(--primary-background-color) 10px, var(--tertiary-background-color) 10px, var(--tertiary-background-color) 20px);
    }
        /* These must be seperated in order to function properly */
        .danger-input-confirmation-modal .danger-input-confirmation-textbox-placeholder::placeholder {
            color: var(--secondary-text-color);
        }

        .danger-input-confirmation-modal .danger-input-confirmation-textbox-placeholder:-ms-input-placeholder {
            color: var(--secondary-text-color);
        }

        .danger-input-confirmation-modal .danger-input-confirmation-textbox-placeholder::-ms-input-placeholder {
            color: var(--secondary-text-color);
        }

    .cont h2 {
        font-family: Raleway, Helvetica, sans-serif;
        font-size: 26px;
        font-weight: 100;
        line-height: 38px;
        margin: 0 0 10px;
    }

    .cont h5 {
        font-size: 13px;
        font-weight: 200;
        line-height: 21px;
    }

    .cont p {
        font-size: 13px;
        line-height: 23px;
    }

    .container-fluid {
        padding: 0;
        height: 100%;
        display: flex;
        flex-direction: column
    }

    .main-content-container {
        flex-grow: 1;
        position: relative;
    }

    .context-menu .dropdown-menu {
        border: 1px solid var(--primary-border-color) !important;
    }

        .context-menu .dropdown-menu .menu-option-disabled a {
            color: var(--control-disabled-color) !important;
        }

    .custom-width {
        max-width: none;
        width: 60%;
    }

    .daterangepicker .ranges li {
        color: #666;
    }

    .daterangepicker .ranges ul {
        display: none;
    }

    .daterangepicker td.active {
        background-color: #4aa3df;
        border-color: transparent;
    }

        .daterangepicker td.active:hover {
            background-color: #4aa3df;
            border-color: transparent;
        }

    .daterangepicker.opensright:after {
        display: none;
    }

    .daterangepicker.opensright:before {
        display: none;
    }

    .datetimepicker table td:last-child {
        border-right: 0;
    }

    .datetimepicker table thead th:last-child {
        border-right: 0;
    }

    .datetimepicker table tr td span.active {
        background: #4aa3df !important;
        background-image: none !important;
    }

        .datetimepicker table tr td span.active.disabled {
            background: #4aa3df !important;
            background-image: none !important;
        }

            .datetimepicker table tr td span.active.disabled:hover {
                background: #4aa3df !important;
                background-image: none !important;
            }

        .datetimepicker table tr td span.active:hover {
            background: #4aa3df !important;
            background-image: none !important;
        }

    .datetimepicker table tr td.active {
        background: #4aa3df !important;
        background-image: none !important;
    }

        .datetimepicker table tr td.active.disabled {
            background: #4aa3df !important;
            background-image: none !important;
        }

            .datetimepicker table tr td.active.disabled:hover {
                background: #4aa3df !important;
                background-image: none !important;
            }

        .datetimepicker table tr td.active:hover {
            background: #4aa3df !important;
            background-image: none !important;
        }

    .dd {
        display: block;
        font-size: 13px;
        line-height: 20px;
        list-style: none;
        margin: 0;
        max-width: 600px;
        padding: 0;
        position: relative;
    }

    .dd-collapsed .dd-list {
        display: none;
    }

    .dd-dragel {
        pointer-events: none;
        position: absolute;
        z-index: 9999;
    }

        .dd-dragel .dd-handle {
            box-shadow: 2px 4px 6px 0 rgba(0,0,0,0.1);
            webkit-box-shadow: 2px 4px 6px 0 rgba(0,0,0,0.1);
        }

        .dd-dragel > .dd-item .dd-handle {
            margin-top: 0;
        }

        .dd-dragel > .dd3-item > .dd3-content {
            margin: 0;
        }

    .dd-empty {
        border: 1px dashed var(--primary-border-color);
        box-sizing: border-box;
        display: block;
        font-size: 13px;
        line-height: 20px;
        margin: 5px 0;
        min-height: 30px;
        moz-box-sizing: border-box;
        padding: 0;
        position: relative;
    }

    .dd-handle {
        background: #fff;
        border: 1px solid #ddd;
        color: var(--primary-text-color);
        cursor: default;
        display: block;
        margin: 5px 0;
        padding: 7px 10px;
        text-decoration: none;
    }

        .dd-handle:hover {
            background: var(--info-color);
            border-color: var(--info-border-color);
            color: #FFF;
        }

    .dd-item {
        display: block;
        font-size: 13px;
        line-height: 20px;
        margin: 0;
        min-height: 20px;
        padding: 0;
        position: relative;
    }

        .dd-item > button {
            background: transparent;
            border: 0;
            color: var(--button-content-color);
            cursor: pointer;
            display: block;
            float: left;
            font-family: FontAwesome;
            font-size: 12px;
            height: 20px;
            line-height: 1;
            margin: 8px 2px;
            overflow: hidden;
            padding: 0;
            position: relative;
            text-align: center;
            text-indent: 100%;
            white-space: nowrap;
            width: 25px;
        }

            .dd-item > button:before {
                content: "";
                display: block;
                position: absolute;
                text-align: center;
                text-indent: 0;
                width: 100%;
            }

            .dd-item > button[data-action="collapse"]:before {
                content: "";
            }

    .dd-list {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
    }

        .dd-list .dd-list {
            padding-left: 30px;
        }

    .dd-placeholder {
        background: var(--secondary-background-color);
        border: 1px dashed var(--primary-border-color);
        box-sizing: border-box;
        display: block;
        font-size: 13px;
        line-height: 20px;
        margin: 5px 0;
        min-height: 30px;
        moz-box-sizing: border-box;
        padding: 0;
        position: relative;
    }

    .dd3-content {
        background: none repeat scroll 0 0 var(--secondary-background-color);
        border: 1px solid var(--primary-border-color);
        color: var(--primary-text-color);
        display: block;
        margin: 5px 0;
        padding: 7px 10px 7px 40px;
        text-decoration: none;
    }

        .dd3-content span {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
        }

    .dd-item.dd-nodrag > .dd3-content {
        padding-left: 0;
    }
    /*.dd3-content:hover {
        background: #fff;
    }*/
    .dd3-handle {
        background: #4aa3df;
        border: transparent;
        cursor: all-scroll;
        height: 36px;
        left: 0;
        margin: 0;
        overflow: hidden;
        position: absolute;
        text-indent: 100%;
        top: 0;
        white-space: nowrap;
        width: 34px;
    }

        .dd3-handle:before {
            color: #fff;
            content: '=';
            display: block;
            font-size: 20px;
            font-weight: 400;
            left: 0;
            position: absolute;
            text-align: center;
            text-indent: 0;
            top: 7px;
            width: 100%;
        }

        .dd3-handle:hover {
            background: #4099d5;
        }

    .dd3-item > button {
        margin-left: 35px;
    }

    .device-tracking-icon {
        text-align: center;
        width: 32px;
    }

    .device-tracking-listings {
        height: 540px !important;
        position: relative;
    }

        .device-tracking-listings td {
            padding: 3px 8px;
        }

            .device-tracking-listings td a i {
                font-size: 17px;
            }

                .device-tracking-listings td a i.fa-eye {
                    color: var(--button-content-color);
                }

                .device-tracking-listings td a i.fa-eye-slash {
                    color: var(--control-disabled-color);
                }


    .dp-today-btn { /* Bootstrap datetimepicker today button*/
        color: var(--primary-text-color);
    }

    .dropdown-header {
        color: var(--primary-text-color);
        cursor: pointer;
        font-weight: bold;
        margin-top: 6px;
        padding-left: 11px;
    }

        .dropdown-header i {
            font-size: 14px;
            margin-right: 4px;
            vertical-align: middle;
        }

        .dropdown-header svg {
            fill: var(--primary-text-color);
            height: 16px;
            margin-right: 4px;
            vertical-align: text-bottom;
            width: 16px;
        }

    .dropdown-menu {
        border: 1px solid var(--primary-border-color);
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.176);
        background-color: var(--secondary-background-color);
        z-index: 10000;
    }

        .dropdown-menu .divider {
            background-color: var(--primary-border-color);
        }

        .dropdown-menu .menu-option i {
            text-align: center;
            width: 15px;
        }

        .dropdown-menu > .active > a {
            background: #4aa3df;
        }

            .dropdown-menu > .active > a:focus {
                background: #4aa3df;
            }

            .dropdown-menu > .active > a:hover {
                background: #4aa3df;
            }

        .dropdown-menu > li > a {
            align-items: center;
            clear: both;
            color: var(--button-content-color);
            cursor: pointer;
            display: inline-flex;
            fill: var(--button-content-color);
            font-size: 13px !important;
            font-weight: 400;
            line-height: 1;
            padding: 6px 10px !important;
            white-space: nowrap;
            width: 100%;
        }

            .dropdown-menu > li > a > svg {
                height: 15px;
                margin-right: 7px;
                width: 15px;
            }

            .dropdown-menu > li > a > i {
                margin-right: 5px;
                width: 15px;
            }

            .dropdown-menu > li > a:hover,
            .dropdown-menu > li > a:focus,
            .dropdown-menu li > a:active {
                background-color: var(--table-row-hover-color);
                color: var(--button-content-color);
            }

    .dropdown-submenu {
        position: relative;
    }

        .dropdown-submenu > .dropdown-menu {
            border-radius: 0 0 3px 3px;
            left: 100%;
            margin-left: -1px;
            margin-top: -6px;
            moz-border-radius: 0 0 3px 3px;
            top: 0;
            webkit-border-radius: 0 0 3px 3px;
        }

        .dropdown-submenu.pull-left {
            float: none;
        }

            .dropdown-submenu.pull-left > .dropdown-menu {
                border-radius: 0 0 6px 6px;
                left: -100%;
                margin-left: 10px;
                moz-border-radius: 0 0 6px 6px;
                webkit-border-radius: 0 0 6px 6px;
            }

        .dropdown-submenu:after {
            border-color: transparent transparent transparent var(--button-content-color);
            border-style: solid;
            border-width: 5px 0 5px 5px;
            content: " ";
            display: block;
            float: right;
            height: 10px;
            margin-top: -5px;
            position: absolute;
            right: 8px;
            top: 50%;
            width: 0;
        }

        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }

        .dropdown-submenu:hover > a {
            background-color: var(--table-row-hover-color);
            background-image: none;
        }

            .dropdown-submenu:hover > a:after {
                border-left-color: #656565;
            }

    .dropzone {
        min-height: 210px;
        background-color: var(--secondary-background-color) !important;
        border-radius: 4px;
        border: 1px solid var(--primary-border-color)
    }

        .dropzone.disabled {
            background-color: var(--control-disabled-color);
            opacity: 0.65;
        }

        .dropzone .dz-default.dz-message {
            background-image: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 65px;
            margin-top: -30px;
        }

            .dropzone .dz-default.dz-message svg {
                display: block;
                height: 50%;
                fill: var(--watermark-color);
                margin-bottom: 5px;
            }

            .dropzone .dz-default.dz-message span {
                display: block;
                color: var(--secondary-text-color);
            }

        .dropzone .dz-preview,
        .dropxone-previews .dz-preview {
            background-color: var(--secondary-background-color);
            border: 1px solid var(--primary-border-color);
        }

            .dropzone .dz-preview .dz-details,
            .dropzone-previews .dz-preview .dz-details {
                background-color: var(--tertiary-background-color);
            }

    .elements .block-flat .realtime-content .nano {
        height: auto;
        min-height: 210px;
    }

    .email .description {
        color: #888;
    }

    .eye-icon {
        display: inline !important;
        padding: 0 !important;
    }

    .fa-spin {
        animation: fa-spin 1.2s infinite linear;
    }

    .fd-tile {
        background-color: var(--secondary-background-color);
        border: 1px solid var(--dark-only-border-color);
        border-radius: 7px;
        color: #555;
        margin-bottom: 15px;
        box-shadow: 0 2px 0 0 rgb(0 0 0 / 5%);
    }

        .fd-tile .content {
            padding: 10px;
        }

            .fd-tile .content h1 {
                color: var(--primary-text-color);
                font-size: 40px;
                font-weight: 300;
                margin: 0;
            }

            .fd-tile .content p {
                color: var(--secondary-text-color);
                font-size: 14px;
                font-weight: 400;
                margin-bottom: 0;
            }

        .fd-tile .header {
            border-bottom: 2px solid rgba(255,255,255,0.2);
        }

            .fd-tile .header .ico {
                background: rgba(255,255,255,0.1);
                display: inline-block;
                font-size: 20px;
                padding: 11px 18px;
                text-align: center;
                vertical-align: middle;
            }

            .fd-tile .header .title {
                display: inline-block;
                font-size: 14px;
                font-weight: 400;
                padding: 5px;
                position: absolute;
                text-transform: uppercase;
                top: 7px;
            }

        .fd-tile.clean {
            background-color: var(--secondary-background-color);
            border-color: var(--dark-only-border-color);
        }

            .fd-tile.clean .icon i {
                color: #e5e5e5;
            }

            .fd-tile.clean.tile-blue .details {
                background-color: #1c5391;
            }

            .fd-tile.clean.tile-concrete .details {
                background-color: #a3b1b2;
            }

            .fd-tile.clean.tile-darkgold .details {
                background-color: #ffa200;
            }

            .fd-tile.clean.tile-darkgold a:hover {
                background-color: #FC0;
            }

            .fd-tile.clean.tile-gold .details {
                background-color: #ffb400;
            }

            .fd-tile.clean.tile-green .details {
                background-color: var(--success-color);
            }

            .fd-tile.clean.tile-lemon .details {
                background-color: #2cc36b;
            }

            .fd-tile.clean.tile-orange .details {
                background-color: var(--warning-color);
            }

            .fd-tile.clean.tile-purple .details {
                background-color: #7761a7;
            }

            .fd-tile.clean.tile-purple a:hover {
                background-color: #9371dc;
            }

            .fd-tile.clean.tile-red .details {
                background-color: var(--danger-color);
            }

        .fd-tile.detail {
            overflow: hidden;
            position: relative;
        }

            .fd-tile.detail .content {
                background: transparent;
                display: inline-block;
                padding: 10px 10px 13px;
                position: relative;
                z-index: 3;
            }

            .fd-tile.detail .details {
                background-color: rgba(0,0,0,0.1);
                clear: both;
                color: #fff;
                display: block;
                font-weight: 400;
                padding: 10px;
                text-transform: uppercase;
            }

                .fd-tile.detail .details i {
                    color: rgba(255,255,255,0.4);
                    font-size: 18px;
                }

            .fd-tile.detail .icon {
                color: var(--watermark-color);
                display: block;
                overflow: hidden;
                position: absolute;
                right: 10px;
                top: 10px;
            }

                .fd-tile.detail .icon i {
                    color: var(--watermark-color);
                    font-size: 70px;
                }

                .fd-tile.detail .icon svg {
                    fill: var(--watermark-color);
                    height: 70px;
                    width: 70px;
                }

        .fd-tile.header {
            overflow: hidden;
            position: relative;
        }

            .fd-tile.header .content {
                background: transparent;
                display: inline-block;
                padding: 10px 10px 10px 20px;
                position: relative;
                z-index: 3;
            }

            .fd-tile.header .icon img {
                display: block;
                float: right;
                height: 80px;
                margin-bottom: 10px;
                opacity: 0.8;
                padding-left: 15px;
                padding-top: 10px;
                position: absolute;
                right: 10px;
                top: 50px;
                width: 80px;
            }

        .fd-tile.tile-transparent:not(.clean) {
            background-color: transparent;
            border: none;
            /*color: #fff;*/
        }

        .fd-tile.tile-blue:not(.clean) {
            background-color: #1c5391;
            color: #fff;
        }

        .fd-tile.tile-concrete:not(.clean) {
            background-color: #a3b1b2;
            color: #fff;
        }

        .fd-tile.tile-darkgold:not(.clean) {
            background-color: #ffa200;
            color: #fff;
        }

        .fd-tile.tile-gold:not(.clean) {
            background-color: #ffb400;
            color: #fff;
        }

        .fd-tile.tile-green:not(.clean) {
            background-color: var(--success-color);
            color: #fff;
        }

        .fd-tile.tile-lemon:not(.clean) {
            background-color: #2cc36b;
            color: #fff;
        }

        .fd-tile.tile-orange:not(.clean) {
            background-color: var(--warning-color);
            color: #fff;
        }

        .fd-tile.tile-purple:not(.clean) {
            background-color: #7761a7;
            color: #fff;
        }

        .fd-tile.tile-red:not(.clean) {
            background-color: var(--danger-color);
            color: #fff;
        }

    .footer {
        background-color: #f0f0f0;
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
        border-top: 1px solid #ddd;
        color: #aaa;
        font-size: 13px;
        margin: 0;
        moz-border-bottom-left-radius: 7px;
        moz-border-bottom-right-radius: 7px;
        padding: 15px 30px;
        text-align: center;
        webkit-border-bottom-left-radius: 7px;
        webkit-border-bottom-right-radius: 7px;
    }

    .footerEditControl {
        border: 1px solid var(--primary-border-color);
        background-color: #d3d3d3;
        bottom: 0;
        margin-bottom: -40px;
        position: absolute;
        transition-duration: .4s;
        width: 100%;
        z-index: 400;
    }

        .footerEditControl div {
            text-align: center;
            width: 100%;
        }

            .footerEditControl div a {
                border: none !important;
                margin: 4px;
                width: 100px;
            }

    .forgot-pass .input-group {
        margin-bottom: 5px;
    }

    .forgot-pass h3 {
        margin-top: 0;
        text-align: center;
    }

    .forgot-pass p {
        margin-bottom: 20px;
        text-align: center;
    }

    .form-control {
        background: var(--secondary-background-color);
        border-color: var(--primary-border-color);
        border-radius: 4px;
        box-shadow: none;
        color: var(--primary-text-color);
        font-size: 13px;
        height: 36px;
        padding: 6px 8px;
        webkit-border-radius: 1px;
    }

        .form-control.slider-horizontal.slider {
            border: none;
            margin-top: 7px;
        }

        .form-control:focus {
            background-color: var(--control-focus-color);
            border-color: var(--primary-border-color);
            box-shadow: none;
        }

        .form-control[disabled]:not(.disabled-without-effect),
        .form-control[readonly] {
            background-color: var(--control-disabled-color);
            opacity: 0.65;
        }

    .form-group {
        margin-top: 10px;
    }

    .form-header {
        padding-bottom: 10px;
        border-bottom: 1px solid var(--primary-border-color);
    }

    .form-horizontal .form-group {
        margin-left: 0;
        margin-right: 0;
    }

    .form-horizontal.group-border .form-group {
        border-bottom: 1px solid #efefef;
        margin: 0;
        padding: 20px 0;
    }

        .form-horizontal.group-border .form-group:last-child {
            border-bottom: 0;
        }

    .form-horizontal.group-border-dashed .form-group {
        border-bottom: 1px dashed var(--secondary-border-color);
        margin: 0;
        padding: 20px 0;
    }

        .form-horizontal.group-border-dashed .form-group:last-child {
            border-bottom: 0;
        }

    .gallery-cont .img {
        position: relative;
    }

        .gallery-cont .img .over .func {
            margin-top: -80px;
            position: relative;
            text-align: center;
            top: 50%;
            transition: margin-top 200ms ease-in-out;
        }

            .gallery-cont .img .over .func a {
                background: rgba(255,255,255,0.2);
                border-radius: 50%;
                display: inline-block;
                height: 50px;
                margin-right: 2px;
                width: 50px;
            }

                .gallery-cont .img .over .func a:hover {
                    background: rgba(255,255,255,0.3);
                }

            .gallery-cont .img .over .func i {
                color: #FFF;
                font-size: 20px;
                line-height: 2.4;
            }

    .gallery-cont .item {
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
        width: 25%;
    }

        .gallery-cont .item .head {
            background: #FFF;
            padding: 10px;
        }

            .gallery-cont .item .head .desc {
                color: #999;
                font-size: 12px;
            }

            .gallery-cont .item .head h4 {
                font-size: 17px;
                margin: 0;
            }

            .gallery-cont .item .head span {
                color: #BDBDBD;
                font-size: 14px;
            }

                .gallery-cont .item .head span.active {
                    color: #5eb7f3;
                }

        .gallery-cont .item .img:hover .over {
            opacity: 1;
        }

            .gallery-cont .item .img:hover .over .func {
                margin-top: -25px;
            }

        .gallery-cont .item .over {
            background: rgba(74,163,223,0.8);
            height: 100%;
            opacity: 0;
            position: absolute;
            top: 0;
            transition: opacity 300ms ease;
            webkit-transition: opacity 300ms ease;
            width: 100%;
        }

        .gallery-cont .item img {
            width: 100%;
        }

        .gallery-cont .item.w2 {
            width: 50%;
        }

    .gallery-cont .photo {
        box-shadow: 1px 1px 3px rgba(0,0,0,0.13);
    }

    .green thead th {
        color: var(--success-color);
    }

    .gritter-bottom {
        background: transparent;
    }

    .gritter-close {
        display: block !important;
        right: 0;
        left: auto;
        top: 0;
        width: 25px;
        font-size: 0; /* Hide the default gritter text */
        background: none;
    }

        .gritter-close:after {
            color: #FFF;
            opacity: 0.6;
            content: '×';
            font-size: 24px;
        }

    .gritter-image {
        height: auto;
        margin-top: 3px;
        max-height: 48px;
        max-width: 48px;
        width: auto;
    }

    .gritter-item {
        background: transparent;
    }

    .gritter-item-wrapper {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .gritter-title {
        font-size: 17px;
        font-weight: 400;
        text-shadow: none;
    }

    .gritter-top {
        background: transparent;
    }

    .gritter-with-image {
        padding-left: 7px;
        width: 224px;
    }

    .gritter-without-image {
        padding-left: 7px;
        width: 224px;
    }

    .gutter {
        background-color: var(--primary-border-color);
    }

    .has-switch {
        border: 0;
        border-radius: 15px;
        margin-right: 5px;
        margin-top: 7px;
        min-width: 0;
        webkit-border-radius: 15px;
        width: 75px;
    }

        .has-switch .switch-off span.switch-left {
            background: #e3e3e3;
        }

            .has-switch .switch-off span.switch-left + label {
                border-color: #e3e3e3;
            }

        .has-switch > div {
            width: 160%;
        }

            .has-switch > div.switch-off {
                left: -60%;
            }

        .has-switch label {
            background: #fff;
            border: 3px solid #4aa3df;
            border-radius: 50%;
            float: left;
            height: 28px;
            margin: 0 !important;
            webkit-border-radius: 50%;
            width: 30px;
        }

            .has-switch label.switch-large {
                border-width: 4px;
                height: 40px;
                width: 40px;
            }

            .has-switch label.switch-mini {
                border-width: 3px;
                height: 18px;
                width: 18px;
            }

            .has-switch label.switch-small {
                border-width: 3px;
                height: 23px;
                width: 23px;
            }

            .has-switch label:hover {
                background: #FFF;
            }

        .has-switch span {
            border-radius: 0;
            float: left;
            height: 28px;
            transition: background .5s ease-in-out;
            webkit-border-radius: 0;
            width: 60px;
        }

            .has-switch span.switch-large {
                height: 40px;
                width: 80px;
            }

            .has-switch span.switch-left {
                background: #4aa3df;
                border-radius: 0;
                margin-right: -15px;
                padding-left: 10px;
                text-align: left;
                webkit-border-radius: 0;
            }

                .has-switch span.switch-left:hover {
                    background: #4aa3df;
                }

            .has-switch span.switch-mini {
                height: 18px;
                width: 35px;
            }

            .has-switch span.switch-right {
                background: #e3e3e3;
                margin-left: -15px;
            }

                .has-switch span.switch-right:hover {
                    background: #E3E3E3;
                }

            .has-switch span.switch-small {
                height: 23px;
                width: 45px;
            }

        .has-switch.switch-large {
            border-radius: 20px;
            min-width: 100px;
            webkit-border-radius: 20px;
        }

            .has-switch.switch-large span.switch-left {
                margin-right: -20px;
                padding-left: 16px;
            }

            .has-switch.switch-large span.switch-right {
                margin-left: -20px;
            }

        .has-switch.switch-mini {
            border-radius: 9px;
            min-width: 0;
            webkit-border-radius: 9px;
            width: 45px;
        }

            .has-switch.switch-mini span.switch-left {
                margin-right: -8px;
                padding-left: 8px;
            }

            .has-switch.switch-mini span.switch-right {
                margin-left: -8px;
            }

        .has-switch.switch-small {
            border-radius: 12px;
            min-width: 0;
            webkit-border-radius: 12px;
            width: 59px;
        }

            .has-switch.switch-small > div.switch-off {
                left: -59%;
            }

            .has-switch.switch-small span.switch-left {
                margin-right: -10px;
                padding-left: 8px;
            }

            .has-switch.switch-small span.switch-right {
                margin-left: -9px;
            }

    .hexagon {
        moz-transform: rotate(120deg);
        o-transform: rotate(120deg);
        overflow: hidden;
        transform: rotate(120deg);
        visibility: hidden;
        webkit-transform: rotate(120deg);
    }

    /*.highcharts-background {
    fill: var(--secondary-background-color);
}

.highcharts-legend-item text {
    color: var(--primary-text-color) !important;
    fill: var(--primary-text-color) !important;
}*/

    .hthin {
        font-family: Raleway, Helvetica, sans-serif !important;
    }

    .i-circle {
        border: 5px solid #F1F1F1;
        border-radius: 50%;
        display: inline-block;
        height: 80px;
        margin-bottom: 7px;
        padding-top: 19px;
        webkit-border-radius: 50%;
        width: 80px;
    }

        .i-circle i {
            color: var(--info-color);
            font-size: 34px;
            vertical-align: middle;
        }

    i-circle > svg {
        fill: var(--info-color);
        height: 35px;
        width: 35px;
    }

    .icon-light {
        fill: #FFF;
    }

    .icon-dark {
        fill: var(--button-content-color);
    }

    .icon-popover {
        fill: #FFCB08;
    }

    .icon-extra-sm {
        height: 12px;
        vertical-align: middle;
    }

    .icon-sm {
        height: 18px;
        vertical-align: middle;
    }

    .icon-md {
        height: 25px;
        vertical-align: middle;
    }

    .icon-lg {
        height: 150px;
        vertical-align: middle;
    }

    /* International telephone input control */
    .intl-tel-input .selected-flag,
    .intl-tel-input.separate-dial-code .selected-flag {
        border-right: 1px solid var(--primary-border-color);
        background-color: var(--primary-background-color);
    }

    .intl-tel-input .country-list {
        background-color: var(--secondary-background-color);
        border-color: var(--primary-border-color);
    }

        .intl-tel-input .country-list .divider {
            border-color: var(--primary-border-color);
        }

    .input-group {
        margin-bottom: 15px;
    }

    .input-group-continues {
        border-top-right-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }

        .input-group .btn {
            box-shadow: none;
            display: table-cell;
            padding-bottom: 6px;
            padding-top: 6px;
        }

    .input-group-addon {
        border-radius: 4px;
        webkit-border-radius: 4px;
        padding: 6px 8px;
        /* background-color: var(--primary-background-color); */
        color: var(--secondary-text-color);
        border-color: var(--primary-border-color);
    }

        .input-group-addon.disabled {
            cursor: not-allowed !important;
            background-color: var(--control-disabled-color);
        }

        .input-group-addon:not(.disabled):not(.btn-primary):last-child:hover {
            border: 1px solid var(--button-hover-border-color);
        }

        .input-group-addon.primary {
            background-color: #4aa3df;
            color: #fff;
        }

    .input-group-btn {
        margin-right: -1px;
    }

        .input-group-btn > .btn + .btn {
            margin-left: -5px !important;
        }

    .input-group-lg > .input-group-addon {
        border-radius: 3px 0 0 3px;
        line-height: 0.33;
        webkit-border-radius: 3px 0 0 3px;
    }

    .intro-arrow {
        border: 5px solid #FFF;
        content: '';
        position: absolute;
    }

        .intro-arrow.left {
            border-color: transparent #FFF transparent transparent;
            left: -10px;
            top: 10px;
        }

        .intro-arrow.right {
            border-color: transparent transparent transparent #FFF;
            right: -10px;
            top: 10px;
        }

        .intro-arrow.top {
            border-color: transparent transparent #FFF;
            top: -10px;
        }

    .intro-button {
        background-color: #FFF;
        border: 1px solid #CCC;
        color: var(--button-content-color);
        cursor: pointer;
        display: inline-block;
        font: 11px/normal sans-serif;
        margin: 10px 0 0;
        outline: none;
        overflow: visible;
        padding: .3em .8em;
        position: relative;
        text-decoration: none;
        text-shadow: 1px 1px 0 #fff;
        white-space: nowrap;
    }

    .intro-disabled {
        background-color: #f4f4f4;
        background-image: none;
        border-color: var(--primary-border-color);
        box-shadow: none;
        color: var(--control-disabled-color);
        cursor: default;
        text-decoration: none;
    }

        .intro-disabled:focus {
            background-color: #f4f4f4;
            background-image: none;
            border-color: #d4d4d4;
            box-shadow: none;
            color: #9a9a9a;
            cursor: default;
            text-decoration: none;
        }

        .intro-disabled:hover {
            background-color: #f4f4f4;
            background-image: none;
            border-color: #d4d4d4;
            box-shadow: none;
            color: #9a9a9a;
            cursor: default;
            text-decoration: none;
        }

    .intro-doneButton {
        color: #7a7a7a;
        margin-right: 5px;
    }

    .intro-helperLayer {
        background-color: rgba(255,255,255,.5);
        border: 1px solid rgba(0,0,0,.5);
        border-radius: 4px;
        box-shadow: 0 2px 15px rgba(0,0,0,.4);
        position: absolute;
        transition: all .3s ease-out;
        z-index: 2001;
    }

    .intro-overlay {
        background-color: #000;
        z-index: 2000;
    }

    .intro-prevButton {
        border-right: none;
    }

    .intro-showElement {
        position: relative;
        z-index: 2003 !important;
    }

    .intro-tooltip {
        background-color: #FFF;
        border-radius: 3px;
        box-shadow: 0 1px 10px rgba(0,0,0,.4);
        max-width: 300px;
        min-width: 200px;
        moz-transition: opacity .1s ease-out;
        ms-transition: opacity .1s ease-out;
        o-transition: opacity .1s ease-out;
        padding: 10px;
        position: absolute;
        transition: opacity .1s ease-out;
        webkit-transition: opacity .1s ease-out;
    }

    .jqte {
        border: 1px solid var(--primary-border-color);
    }

        .jqte * {
            color: var(--primary-text-color);
        }

        .jqte .jqte_editor {
            background-color: var(--secondary-background-color);
            color: var(--primary-text-color);
        }

    .jqtree-custom-folder-icon {
        font-size: 16px;
        margin: 0 3px 0 2px;
    }

    .jqtree-custom-layer-icon {
        font-size: 12px;
        margin: 0 3px 0 2px;
    }

    .jqtree-custom-node-label {
        margin: 0 3px 0 2px;
    }

    .jqtree-tree .jqtree-icon {
        color: var(--primary-text-color) !important;
        font-size: 16px;
    }

    .jqtree-tree li.jqtree-selected > .jqtree-element,
    .jqtree-tree li.jqtree-selected > .jqtree-element:hover {
        background-color: var(--table-row-selected-color) !important;
        border: 1px solid var(--info-color) !important;
    }

    .jqte_titleText {
        background-color: #f5f5f5;
    }

    .label {
        border-radius: 0;
        font-size: 95%;
        font-weight: 400;
        webkit-border-radius: 0;
    }

        .label i {
            color: inherit !important;
            font-size: 100% !important;
            min-width: 11px;
            width: auto !important;
        }

    .label-default {
        background-color: #a1a1a1;
    }

    .legend-item {
        display: inline-block;
    }

    .light-text {
        color: var(--secondary-text-color);
    }

    .list-group .active:hover {
        border-left: 1px solid #4aa3df;
        padding-left: 15px;
    }

    .list-group-item {
        font-size: 12px;
        line-height: 22px;
        padding: 13px 15px;
    }

        .list-group-item h4 {
            font-size: 17px;
            margin-bottom: 8px;
        }

        .list-group-item i {
            display: inline-block !important;
            min-width: 15px;
            text-align: center;
        }

        .list-group-item:first-child {
            border-radius: 0;
            webkit-border-radius: 0;
        }

        .list-group-item:last-child {
            border-radius: 0;
            webkit-border-radius: 0;
        }

    .list-group.todo .list-group-item {
        background: #FFF;
        border: 0;
        border-bottom: 1px solid #E2E2E2;
        border-left: 1px solid #EFEFEF;
        border-radius: 3px;
        border-right: 1px solid #EFEFEF;
        box-shadow: 0 1px 0 0 rgba(0,0,0,0.04);
        font-size: 13px;
        margin-bottom: 10px;
        padding: 13px 15px;
    }

        .list-group.todo .list-group-item .date {
            float: right;
            font-size: 12px;
        }

    .loading {
        background: var(--loading-overlay-color);
        cursor: wait;
        display: none;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

        .loading i {
            font-size: 26px;
            left: 50%;
            margin-left: -13px;
            margin-top: -13px;
            position: relative;
            top: 50%;
        }

    .loadingIndicator {
        background: url(https://cdn.nektar.io/loading-indicators/loading-indicator-bg.png) no-repeat scroll center center rgba(0,0,0,0);
        filter: alpha(opacity=80);
        height: 100px;
        left: 50%;
        margin-left: -50px;
        margin-top: -50px;
        opacity: 0.8;
        position: fixed;
        top: 50%;
        width: 100px;
        z-index: 1000000;
    }

        .loadingIndicator img {
            height: 60px;
            margin-left: 20px;
            margin-top: 20px;
            width: 60px;
        }

    .login-container .block-flat {
        border: 1px solid var(--primary-border-color);
        border-radius: 7px;
        margin-bottom: 0;
        padding: 0;
        webkit-border-radius: 2px;
    }

        .login-container .block-flat .content {
            padding: 5px 30px;
        }

            .login-container .block-flat .content .form-control {
                height: auto;
                padding: 10px 8px;
            }

            .login-container .block-flat .content .form-group {
                margin-bottom: 10px;
            }

            .login-container .block-flat .content .title {
                margin-bottom: 20px;
                margin-top: 0;
            }

        .login-container .block-flat .foot {
            padding: 0 30px 10px;
        }

            .login-container .block-flat .foot .btn {
                min-width: 70px;
            }

        .login-container .block-flat .header {
            border-bottom: none;
            padding: 35px 20px 15px 20px;
            justify-content: center;
            background: none;
        }

        .login-container .block-flat .input-group-addon {
            background: #FAFAFA;
        }

    .login-container .middle-login {
        left: 50%;
        margin-left: -220px;
        position: absolute;
        top: 50%;
        width: 440px;
    }

    .login-container .out-links {
        margin-top: 20px;
    }

    .mail-inbox .checkbox {
        background-color: #FFF;
    }

    .mail-inbox .filters {
        border-bottom: 1px solid #E5E5E5;
        padding: 9px 20px 10px;
    }

        .mail-inbox .filters .checkbox {
            margin-right: 8px;
        }

    .mail-inbox .head {
        background: #FFF;
        padding: 20px 25px;
    }

        .mail-inbox .head h3 {
            margin: 9px 0 15px;
        }

            .mail-inbox .head h3 span {
                color: #888;
                font-size: 16px;
                font-weight: 300;
            }

        .mail-inbox .head input[type="text"] {
            border: 1px solid #D8D8D8;
            border-radius: 3px;
            box-shadow: 0 1px 1px rgba(0,0,0,0.01) inset;
        }

            .mail-inbox .head input[type="text"]:focus {
                border-color: #43b6ff;
            }

    .mail-inbox .mails {
        background: #FFF;
    }

        .mail-inbox .mails .item {
            border-bottom: 1px solid #E5E5E5;
            cursor: pointer;
            display: table;
            padding: 17px 20px;
            width: 100%;
        }

            .mail-inbox .mails .item .date i {
                font-size: 14px;
                margin-right: 7px;
            }

            .mail-inbox .mails .item .from {
                font-size: 13px;
                font-weight: 600;
                margin: 0 0 3px;
            }

            .mail-inbox .mails .item .msg {
                font-size: 12px;
                margin: 0;
            }

            .mail-inbox .mails .item > div {
                display: table-cell;
                vertical-align: top;
            }

                .mail-inbox .mails .item > div:first-child {
                    width: 35px;
                }

                    .mail-inbox .mails .item > div:first-child > div {
                        margin-top: 2px;
                    }

            .mail-inbox .mails .item:hover {
                background: rgba(0,0,0,0.035);
            }

            .mail-inbox .mails .item:nth-child(even) {
                background: rgba(0,0,0,0.015);
            }

    .message .checkbox {
        background-color: #FFF;
    }

    .message .head {
        background: #FFF;
        padding: 20px 25px 24px;
    }

        .message .head h3 {
            margin: 9px 0 15px;
        }

            .message .head h3 span {
                float: right;
                font-size: 20px;
                font-weight: 300;
            }

                .message .head h3 span a {
                    color: #888;
                    margin-right: 15px;
                }

        .message .head h4 span {
            float: right;
            font-size: 15px;
            font-weight: 100;
        }

            .message .head h4 span a {
                color: #FEA200;
                margin-right: 10px;
            }

    .message .mail {
        background: #FFF;
        border-top: 1px solid #E5E5E5;
        font-size: 26px;
        padding: 30px;
    }

        .message .mail p {
            font-size: 15px;
            font-weight: 100;
        }

    .message .mails .item {
        border-bottom: 1px solid #E5E5E5;
        cursor: pointer;
        display: table;
        padding: 17px 20px;
        width: 100%;
    }

        .message .mails .item .date i {
            font-size: 14px;
            margin-right: 7px;
        }

        .message .mails .item .from {
            font-size: 13px;
            font-weight: 600;
            margin: 0 0 3px;
        }

        .message .mails .item .msg {
            font-size: 12px;
            margin: 0;
        }

        .message .mails .item > div {
            display: table-cell;
            vertical-align: top;
        }

            .message .mails .item > div:first-child {
                width: 35px;
            }

                .message .mails .item > div:first-child > div {
                    margin-top: 2px;
                }

        .message .mails .item:hover {
            background: rgba(0,0,0,0.035);
        }

        .message .mails .item:nth-child(even) {
            background: rgba(0,0,0,0.015);
        }

    .modal {
        overflow: auto;
    }

    .modal-backdrop {
        background-color: #000;
        opacity: 0.65;
    }

        .modal-backdrop.fade.in {
            opacity: 0.65;
        }

    .modal-body {
        padding: 20px;
    }

        .modal-body p {
            margin: 0 0 10px;
        }

        .modal-body.form {
            padding: 30px 20px 15px;
        }

    .modal-content {
        background-color: var(--secondary-background-color);
        border: 0;
        border-radius: 9px;
    }

        .modal-content .loading {
            border-radius: 9px;
        }

        .modal-content .modal-footer {
            background: var(--primary-background-color);
            border-top: 1px solid var(--primary-border-color);
            margin-top: 0;
            border-radius: 0 0 8px 8px;
        }

        .modal-content .modal-header {
            height: 44px;
            border-radius: 8px 8px 0 0;
        }

            .modal-content .modal-header h3 {
                font-size: 14px;
            }

        .modal-content > .close {
            margin-right: 10px;
            margin-top: 10px;
        }

        .modal-content h2 {
            margin: 0;
        }

        .modal-content h3 {
            font-weight: 300;
            margin-top: 0;
        }

    .modal-dialog.full-width {
        max-width: none;
        width: 90%;
    }

    .modal-footer {
        padding: 12px !important;
        border-top: 1px solid var(--primary-border-color);
    }

        .modal-footer .floatleft {
            float: left;
            margin-left: 0;
        }

    .modal-header .close {
        font-size: 28px;
        margin-top: 0;
        color: var(--primary-text-color);
        text-shadow: none;
        font-weight: normal;
    }

    .modal-header h3 {
        color: #fff;
        flex-grow: 1;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .modal-mainicon {
        text-align: right;
    }

    .modal-maintext {
        padding-right: 55px;
        text-align: left;
    }

    .modalBackground {
        background-color: #000;
        opacity: 0.65;
        z-index: 100 !important;
    }

    .name {
        color: var(--primary-text-color);
    }

    .nano > .pane > .slider {
        width: 100%;
    }

    .nav-pills > li.active > a {
        background-color: #4aa3df;
    }

        .nav-pills > li.active > a:focus {
            background-color: #4aa3df;
        }

        .nav-pills > li.active > a:hover {
            background-color: #4aa3df;
        }

    .navbar-collapse {
        border-top: none;
        max-height: none;
        position: relative;
    }

    .navbar-default {
        border-color: var(--primary-border-color);
        background-color: var(--secondary-background-color);
        border-radius: 0;
    }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
            background-color: #fc0;
            color: #fff;
        }

        .navbar-default .navbar-nav > .active > a {
            color: #3F4148;
        }

            .navbar-default .navbar-nav > .active > a:hover {
                color: #3F4148;
            }

        .navbar-default .navbar-nav > .dropdown > a .caret {
            border-bottom-color: #000;
            border-top-color: #000;
        }

        .navbar-default .navbar-nav > .dropdown > a:focus .caret {
            border-bottom-color: #000;
            border-top-color: #000;
        }

        .navbar-default .navbar-nav > .dropdown > a:hover .caret {
            border-bottom-color: #000;
            border-top-color: #000;
        }

        .navbar-default .navbar-nav > .open > a {
            background-color: transparent !important;
            border-color: none;
            color: #223446;
        }

            .navbar-default .navbar-nav > .open > a:focus {
                background-color: transparent !important;
                border-color: none;
            }

            .navbar-default .navbar-nav > .open > a:hover {
                background-color: transparent !important;
                border-color: none;
                color: #223446;
            }

        .navbar-default .navbar-nav > li > a {
            color: #3F4148;
            font-size: 14px;
            font-weight: 400;
        }

            .navbar-default .navbar-nav > li > a:hover {
                color: #223446;
            }

        .navbar-default .navbar-nav > li.button .dropdown-menu .foot > li {
            list-style: none;
        }

        .navbar-default .navbar-nav > li.button .dropdown-menu .foot a {
            background: #F7F7F7;
            color: #444;
            padding: 8px 17px;
            text-align: center;
        }

        .navbar-default .navbar-nav > li.button .dropdown-menu .nano {
            height: 244px;
        }

        .navbar-default .navbar-nav > li.button .dropdown-menu .title {
            border-bottom: 1px solid #DDDDDF;
            color: #444;
            font-size: 12px;
            font-weight: 300;
            padding: 8px 17px;
        }

            .navbar-default .navbar-nav > li.button .dropdown-menu .title a:hover {
                background: transparent;
            }

        .navbar-default .navbar-nav > li.button .dropdown-menu li > a > i {
            display: inline-block;
            font-size: 14px;
            left: 10px;
            position: absolute;
            text-align: center;
            top: 14px;
            vertical-align: middle;
            width: 20px;
        }

        .navbar-default .navbar-nav > li.button .dropdown-menu li > a:hover {
            background: #F8F8F8;
            color: #444;
        }

        .navbar-default .navbar-nav > li.button .dropdown-menu li a .date {
            color: #999;
            display: block;
            font-size: 11px;
            font-style: italic;
            line-height: 18px;
        }

        .navbar-default .navbar-nav > li.button .dropdown-menu li ul > li > a {
            border-bottom: 1px solid #ececec;
            color: #444;
            font-weight: 300;
            padding: 11px 10px 11px 33px;
            position: relative;
        }

        .navbar-default .navbar-nav > li.button .dropdown-menu li:last-child > a {
            border-bottom: 0;
        }

        .navbar-default .navbar-nav > li.button .messages li > a .name {
            color: #555;
            display: block;
            font-size: 12px;
            font-weight: 600;
            line-height: 19px;
        }

        .navbar-default .navbar-nav > li.button .messages li > a > img {
            height: 30px;
            left: 10px;
            position: absolute;
            top: 16px;
            width: 30px;
        }

        .navbar-default .navbar-nav > li.button .messages li ul > li > a {
            line-height: 16px;
            padding: 12px 10px 12px 48px;
            white-space: normal;
        }

        .navbar-default .navbar-nav > li.button > a {
            border-radius: 2px;
            box-shadow: 1px 1px 0 rgba(255,255,255,0.2) inset;
            padding: 4px;
            text-align: center;
            webkit-border-radius: 2px;
            width: 30px;
        }

            .navbar-default .navbar-nav > li.button > a > i {
                font-size: 18px;
            }

        .navbar-default .navbar-nav > li.button.open:after {
            bottom: 0;
            content: '';
            display: inline-block;
            left: 50%;
            margin-left: -6px;
            position: absolute;
        }

    .navbar-nav .dropdown .dropdown-menu {
        box-shadow: 0 0 3px rgba(0,0,0,0.2);
        margin-top: 10px;
    }

    .navbar-nav > .active > a:focus {
        color: #3F4148;
    }

    .navbar-nav > .open > a:focus {
        background-color: var(--link-color);
        color: #223446;
    }

    .navbar-nav > li > a {
        padding: 22px;
    }

    .navbar-nav > li.button .dropdown-menu {
        max-width: 280px;
        min-width: 260px;
        padding: 0;
    }

    .nektar-form-required {
        border-left: 2px solid #FF0000;
    }

    .nektar-form-success {
        border-left: 2px solid #10C368;
    }

    .no-data-view {
        text-align: center;
        height: 100%;
        display: flex;
        align-items: center;
    }

        .no-data-view .no-data-icon {
            font-size: 150px;
            color: var(--tertiary-text-color);
            margin-bottom: 20px;
        }

        .no-data-view .no-data-title {
            color: var(--secondary-text-color);
            font-size: 18px;
            font-weight: 500;
        }

        .no-data-view .no-data-subtitle {
            color: var(--secondary-text-color);
            font-size: 14px;
        }

    .no-margin {
        margin: 0;
    }

    .no-padding {
        padding: 0 !important;
    }

        .no-padding table th:first-child {
            border-left: 0;
        }

        .no-padding table th:last-child {
            border-right: 0;
        }

        .no-padding table tr td:first-child {
            border-left: 0;
        }

        .no-padding table tr td:last-child {
            border-right: 0;
        }

        .no-padding table tr:last-child td {
            border-bottom: 0;
        }

    .open .dropdown-toggle.btn-danger {
        background-color: #f46b5d;
        border-color: transparent;
    }

    .open .dropdown-toggle.btn-default,
    .open .dropdown-toggle.btn-default:hover,
    .open .dropdown-toggle.btn-default:focus {
        background-color: var(--button-hover-color);
        border-color: var(--button-hover-border-color);
    }

    .open .dropdown-toggle.btn-primary {
        background-color: var(--info-hover-color);
        border-color: transparent;
    }

    .open .dropdown-toggle.btn-success {
        background-color: var(--success-hover-color);
        border-color: transparent;
    }

    .open .dropdown-toggle.btn-warning {
        background-color: #FFAC44;
        border-color: transparent;
    }

    .or-seperator {
        margin: 10px 0;
    }

    .out-links {
        color: #999 !important;
    }

        .out-links a {
            color: #999 !important;
        }

    .overflow-hidden {
        overflow: hidden;
    }

    .panel {
        background-color: var(--secondary-background-color);
    }

    .page-aside {
        background: none repeat scroll 0 0 var(--secondary-background-color);
        border-right: 1px solid var(--primary-border-color);
        display: table-cell;
        height: 100%;
        position: relative;
        vertical-align: top;
        width: 280px;
    }

        .page-aside > div {
            width: 280px;
        }

        .page-aside div.content {
            padding: 20px;
        }

        .page-aside div.fixed {
            height: 100%;
            position: fixed;
        }

        .page-aside.app .header {
            padding: 20px;
        }

        .page-aside.email .compose {
            font-size: 14px;
            font-weight: 300;
            margin-top: 10px;
            padding: 20px 25px;
            text-align: center;
            text-transform: uppercase;
        }

            .page-aside.email .compose .btn {
                background: #58BE89;
                border: 0;
                border-radius: 3px !important;
                max-width: 180px;
                width: 100%;
            }

        .page-aside.email .header {
            padding: 20px;
        }

        .page-aside.email .mail-nav {
            display: block;
            margin-top: 13px;
            padding: 0;
        }

            .page-aside.email .mail-nav .title {
                border-bottom: 1px solid #E5E5E5;
                color: #888;
                margin: 5px 0 0;
                padding: 8px 13px 4px;
            }

            .page-aside.email .mail-nav ul li {
                margin: 0;
            }

                .page-aside.email .mail-nav ul li a {
                    border-radius: 0;
                    color: #555;
                    padding: 12px 15px;
                }

                    .page-aside.email .mail-nav ul li a .label {
                        border-radius: 2px;
                    }

                        .page-aside.email .mail-nav ul li a .label.label-default {
                            background: #b5b5b5;
                        }

                        .page-aside.email .mail-nav ul li a .label.label1 {
                            background: #19B698;
                        }

                        .page-aside.email .mail-nav ul li a .label.label2 {
                            background: #E85647;
                        }

                        .page-aside.email .mail-nav ul li a .label.label3 {
                            background: #F4A425;
                        }

                    .page-aside.email .mail-nav ul li a i {
                        font-size: 14px;
                        text-align: center;
                        width: 24px;
                    }

                    .page-aside.email .mail-nav ul li a:hover {
                        background: rgba(0,0,0,0.01);
                    }

                .page-aside.email .mail-nav ul li.active a {
                    background: rgba(0,0,0,0.025);
                    color: #555;
                }

    .page-head {
        padding-bottom: 10px;
        position: relative;
    }

        .page-head .breadcrumb {
            background: transparent;
            margin-bottom: 0;
            margin-top: 5px;
            padding: 4px;
        }

        .page-head h2 {
            color: #4F4F4F;
            font-weight: 300;
            letter-spacing: -1px;
            margin-bottom: 0;
            margin-top: 6px;
        }

    .pagination {
        margin: 18px 0;
    }

        .pagination > .active > a {
            background-color: #4aa3df;
            border-color: #4aa3df;
        }

            .pagination > .active > a:focus {
                background-color: #4aa3df;
                border-color: #4aa3df;
            }

            .pagination > .active > a:hover {
                background-color: #4aa3df;
                border-color: #4aa3df;
            }

        .pagination > .active > span {
            background-color: #4aa3df;
            border-color: #4aa3df;
        }

            .pagination > .active > span:focus {
                background-color: #4aa3df;
                border-color: #4aa3df;
            }

            .pagination > .active > span:hover {
                background-color: #4aa3df;
                border-color: #4aa3df;
            }

        .pagination > li > a {
            color: #4aa3df;
        }

        .pagination > li > span {
            color: #4aa3df;
        }

        .pagination > li:first-child > a {
            border-radius: 0;
        }

        .pagination > li:first-child > span {
            border-radius: 0;
        }

        .pagination > li:last-child > a {
            border-radius: 0;
        }

        .pagination > li:last-child > span {
            border-radius: 0;
        }

    .paper {
        background: #FFF;
        background-size: 100% 30px;
        font-size: 14px;
        line-height: 30px;
        moz-background-size: 100% 30px;
        ms-background-size: 100% 30px;
        outline: none;
        padding: 30px 55px 27px;
        position: relative;
        webkit-background-size: 100% 30px;
    }

        .paper::after {
            border-left: 1px solid #F8D3D3;
            bottom: 0;
            content: '';
            left: 39px;
            position: absolute;
            top: 0;
            width: 0;
        }

    .parent .sub-menu {
        padding: 10px 0;
    }

    .personal .avatar {
        margin: 0 30px 0 0;
        padding-top: 5px;
    }

    .personal h1.name {
        margin: 0;
    }

    .popover {
        max-width: 500px;
        min-width: 270px;
        background-color: var(--secondary-background-color);
        border: 1px solid var(--primary-border-color);
    }

    .popover-content {
        color: var(--primary-text-color);
        font-weight: 400;
        max-height: 500px;
        overflow-y: auto;
        text-align: left;
    }

    .popover-title {
        background-color: var(--primary-background-color);
        border-bottom: 1px solid var(--dark-only-border-color);
        color: var(--primary-text-color);
        display: block !important;
        font-family: sans-serif;
        text-align: left;
    }

    .popover.top > .arrow {
        border-top-color: var(--primary-border-color);
    }

        .popover.top > .arrow:after {
            border-top-color: var(--secondary-background-color);
        }

    .popover.right > .arrow {
        border-right-color: var(--primary-border-color);
    }

        .popover.right > .arrow:after {
            border-right-color: var(--secondary-background-color);
        }

    .popover.bottom > .arrow {
        border-bottom-color: var(--primary-border-color);
    }

        .popover.bottom > .arrow:after {
            border-bottom-color: var(--secondary-background-color);
        }

    .popover.left > .arrow {
        border-left-color: var(--primary-border-color);
    }

        .popover.left > .arrow:after {
            border-left-color: var(--secondary-background-color);
        }


    .popover_anchor {
        display: inline-block;
        color: #FFCB08 !important;
        cursor: pointer;
        font-size: 13px !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .preload {
        display: none !important;
    }

    .preview-dialog {
        background-color: var(--secondary-background-color) !important;
    }

    .preview-window {
        background-color: var(--secondary-background-color) !important;
    }

    .profile-info {
        margin-bottom: 10px;
    }

        .profile-info .asset-qr img {
            border-radius: 0;
        }

        .profile-info .avatar img {
            height: 100%;
            max-height: 200px;
            max-width: 200px;
            width: 100%;
            background-color: var(--secondary-background-color);
            border: 1px solid var(--primary-border-color);
            border-radius: 15px;
        }

        .profile-info .personal .btn {
            border: 0;
            margin: 0;
            padding-right: 12px;
        }

            .profile-info .personal .btn .fa {
                margin-right: 5px;
            }

        .profile-info .skills .progress {
            border-radius: 2px;
            height: 11px;
        }

        .profile-info .skills td {
            font-size: 13px;
        }

        .profile-info > .row {
            margin-top: 0;
        }

    .progress {
        border-radius: 3px;
        height: 18px;
        webkit-border-radius: 3px;
        background-color: var(--tertiary-background-color);
    }

        .progress .progress-bar {
            line-height: 16px;
        }

        .progress.big {
            height: 24px;
        }

            .progress.big .progress-bar {
                line-height: 22px;
            }

        .progress.extra-small {
            height: 5px;
        }

        .progress.small {
            height: 10px;
        }

            .progress.small .progress-bar {
                line-height: 9px;
            }

    .radio-inline {
        display: inline-flex;
        align-items: center;
    }

        .radio-inline:first-child {
            padding-left: 0;
        }

        .radio-inline .iradio_flat-blue {
            margin-right: 7px;
        }

    /*.realtime-content table tbody td.text-right {
        padding-right: 8px !important;
    }*/

    .realtime-content table th.text-right {
        padding-right: 8px !important;
    }

    .red thead th {
        color: var(--danger-color);
    }

    .sb-collapsed .cl-sidebar {
        min-width: 65px;
        width: 65px;
    }

        .sb-collapsed .cl-sidebar .collapse-button {
            text-align: center;
            width: 65px;
        }

            .sb-collapsed .cl-sidebar .collapse-button .search {
                display: none;
            }

    .sb-collapsed .cl-vnavigation .parent a {
        background-image: none;
    }

    .sb-collapsed .cl-vnavigation > .parent > a:before {
        display: none;
    }

    .sb-collapsed .cl-vnavigation li {
        position: relative;
    }

        .sb-collapsed .cl-vnavigation li a i {
            font-size: 17px;
            margin: 0;
        }

        .sb-collapsed .cl-vnavigation li a span,
        .sb-collapsed .cl-vnavigation li button span {
            display: none;
            opacity: 0;
            width: 0;
        }

        .sb-collapsed .cl-vnavigation li.open ul {
            display: none !important;
        }

    .sb-collapsed .sidebar-logo .logo a {
        content: " ";
        display: block;
    }

    .shadow.tab-content {
        border-bottom: 1px solid var(--primary-border-color);
        border-left: 1px solid var(--primary-border-color);
        border-right: 1px solid var(--primary-border-color);
        box-shadow: 1px 1px 3px rgba(0,0,0,0.13);
    }

    .sidebar-logo {
        display: block;
        height: 50px;
        margin-left: 5px;
    }

        .sidebar-logo .logo a {
            color: #fff;
            font-size: 24px;
        }

    .slider-handle {
        background-color: #FFF;
        background-image: 0;
        box-shadow: 0 1px 2px rgba(0,0,0,0.39);
        cursor: pointer;
        opacity: 1;
        transition: box-shadow 200ms ease-in-out;
    }

        .slider-handle:hover {
            box-shadow: 0 1px 5px rgba(0,0,0,0.45);
        }

    .slider-selection {
        background: #4aa3df;
        border: transparent;
        box-shadow: none;
    }

    .slider.slider-horizontal {
        width: 100% !important;
    }

    .slider.slider-vertical {
        margin-right: 13px;
    }

    .slider-sm.slider-horizontal {
        height: 12px;
    }

    .slider-sm .slider-track {
        height: 5px !important;
        margin-top: -2.5px !important;
    }

    .slider-sm .slider-handle {
        height: 12px !important;
        width: 12px !important;
    }

    /* Spectrum color picker */
    .sp-replacer,
    .sp-replacer:hover,
    .sp-replacer.sp-active {
        background-color: var(--secondary-background-color);
        border: 1px solid var(--primary-border-color);
        min-width: 43px;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 4px;
    }

        .sp-replacer.sp-disabled {
            background-color: var(--control-disabled-color);
            border-color: var(--primary-border-color);
            opacity: 0.65;
        }

    .sp-container {
        background-color: var(--secondary-background-color);
        border: 1px solid var(--primary-border-color);
        border-radius: 4px;
        margin-top: 2px;
    }

        .sp-container button {
            background-color: var(--info-color);
        }

    .sp-dd {
        background: none;
        width: 0;
        height: 0;
        border-top: 4px dashed var(--primary-text-color);
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        margin-top: 6px;
        color: transparent;
    }

    .sp-palette .sp-thumb-el {
        border-color: var(--primary-border-color);
    }

    .sp-palette-container {
        border-color: var(--primary-border-color);
    }

    .sp-picker-container {
        border-left: none;
    }

    .sp-input {
        color: var(--primary-text-color);
        border-color: var(--primary-border-color);
    }

    .sp-cancel {
        background-color: var(--button-color);
        border-color: var(--primary-border-color);
        color: var(--button-content-color);
    }

        .sp-cancel:hover {
            background-color: var(--button-hover-color);
            border-color: var(--button-hover-border-color);
            color: var(--button-content-color);
        }

    .sp-preview {
        width: 20px;
        height: 20px;
        min-width: 20px;
        border-radius: 3px;
    }
    /***********************/
    .sub-menu li a {
        border: 0;
    }

        .sub-menu li a:hover {
            background-color: rgba(0,0,0,0.1);
        }

    .sub-menu-nav ul {
        background: var(--secondary-background-color);
        border: 1px solid var(--primary-border-color);
        border-radius: 3px;
        box-shadow: 1px 1px 4px rgba(0,0,0,0.22);
        color: var(--primary-text-color);
        min-width: 190px;
        padding: 5px 0;
    }

        .sub-menu-nav ul li {
            list-style: none;
        }

            .sub-menu-nav ul li a,
            .sub-menu-nav ul li button {
                width: 100%;
                text-align: left;
                color: var(--primary-text-color);
                display: block;
                background: transparent;
                border: 0;
                font-size: 11px;
                padding: 6px 20px 6px 31px;
            }

                .sub-menu-nav ul li a:hover,
                .sub-menu-nav ul li button:hover {
                    background-color: var(--table-row-hover-color);
                }

            .sub-menu-nav ul li.dropdown-header {
                padding: 5px 5px 5px 15px;
            }

                .sub-menu-nav ul li.dropdown-header i {
                    text-align: center;
                    width: 15px;
                }

            .sub-menu-nav ul li:last-child {
                padding-bottom: 0;
            }

        .sub-menu-nav ul:after {
            background: url(/Content/Images/MenuIcons/menu-tail-left.png) no-repeat right 10px;
            content: "";
            display: inline-block;
            height: 43px;
            left: -9px;
            position: absolute;
            top: 0;
            width: 10px;
        }

    .tab-container > .nav-tabs {
        border-bottom: 1px solid var(--dark-only-border-color);
        margin-top: 3px;
    }

        .tab-container > .nav-tabs > li > a {
            align-items: center;
            border-top: 2px solid transparent;
            display: flex;
            font-size: 13px;
            justify-content: center;
            margin-right: 0;
            min-height: 38px;
            padding: 0 0 0 10px;
            text-align: center;
            color: var(--info-color);
        }

        .tab-container > .nav-tabs > li:not(.active):not(:last-child) > a::after {
            content: '';
            width: 15px;
            height: 20px;
            border-right: 1px solid var(--primary-border-color);
        }

        .tab-container > .nav-tabs > li > a:hover {
            border-color: transparent;
            background-color: transparent;
        }

        .tab-container > .nav-tabs > li.active {
            position: relative;
            background-color: var(--secondary-background-color);
        }

            .tab-container > .nav-tabs > li.active:not(:first-child) {
                margin-left: -2px; /* Cover up the preceeding left border */
            }

            .tab-container > .nav-tabs > li.active > a {
                background-color: var(--secondary-background-color);
                border-bottom: 0;
                border-left: 1px solid var(--dark-only-border-color);
                border-right: 1px solid var(--dark-only-border-color);
                border-top: 2px solid #4aa3df;
                border-radius: 0;
                webkit-border-radius: 0;
                position: static;
                padding: 0 10px;
            }

        .tab-container > .nav-tabs li.active a,
        .tab-container > .nav-tabs li.active a:hover,
        .tab-container > .nav-tabs li.active a:focus {
            color: var(--primary-text-color);
            background-color: transparent;
        }

    .tab-container > .tab-content {
        background: var(--secondary-background-color);
        border: 1px solid var(--dark-only-border-color);
        border-top: none;
        margin-bottom: 40px;
        padding: 20px;
    }

    .tab-container.tab-on-white > .nav-tabs {
        border-bottom: 1px solid var(--primary-border-color);
    }

        .tab-container.tab-on-white > .nav-tabs > li.active > a {
            border-left: 1px solid var(--primary-border-color);
            border-right: 1px solid var(--primary-border-color);
        }

    .tab-container.tab-on-white > .tab-content {
        border: 1px solid var(--primary-border-color);
        border-top: none;
    }

    .tab-container.tab-left > .nav-tabs {
        float: left;
    }

        .tab-container.tab-left > .nav-tabs > li {
            float: none;
            margin-bottom: 0;
            margin-right: 0;
        }

            .tab-container.tab-left > .nav-tabs > li .fa {
                font-size: 14px;
            }

            .tab-container.tab-left > .nav-tabs > li > a > svg {
                height: 15px;
                width: 15px;
                fill: var(--info-color);
            }

            .tab-container.tab-left > .nav-tabs > li > a {
                border-radius: 0;
                min-width: 38px;
                padding: 12px 10px;
                text-align: left;
                webkit-border-radius: 0;
            }

            .tab-container.tab-left > .nav-tabs > li.active > a {
                border-bottom: 1px solid #ECECEC;
                border-left: 2px solid #4aa3df;
                border-right: 0;
                border-top: 0;
                box-shadow: -1px 3px 4px -3px rgba(0,0,0,0.08);
                margin-right: -1px;
                padding: 13px 10px 12px 9px;
            }

                .tab-container.tab-left > .nav-tabs > li.active > a > svg {
                    fill: var(--primary-text-color);
                }

                .tab-container.tab-left > .nav-tabs > li.active > a:after {
                    bottom: 0;
                    height: 100%;
                    top: auto;
                    width: 2px;
                }

                .tab-container.tab-left > .nav-tabs > li.active > a:focus {
                    border-bottom: 1px solid #ECECEC;
                    border-left: 2px solid #4aa3df;
                    border-right: 0;
                    border-top: 0;
                    box-shadow: -1px 3px 4px -3px rgba(0,0,0,0.08);
                    margin-right: -1px;
                    padding: 13px 10px 12px 9px;
                }

                    .tab-container.tab-left > .nav-tabs > li.active > a:focus:after {
                        bottom: 0;
                        height: 100%;
                        top: auto;
                        width: 2px;
                    }

                .tab-container.tab-left > .nav-tabs > li.active > a:hover {
                    border-bottom: 1px solid #ECECEC;
                    border-left: 2px solid #4aa3df;
                    border-right: 0;
                    border-top: 0;
                    box-shadow: -1px 3px 4px -3px rgba(0,0,0,0.08);
                    margin-right: -1px;
                    padding: 13px 10px 12px 9px;
                }

                    .tab-container.tab-left > .nav-tabs > li.active > a:hover:after {
                        bottom: 0;
                        height: 100%;
                        top: auto;
                        width: 2px;
                    }

    .tab-container.tab-left > .tab-content {
        border-radius: 0 3px 3px 3px;
        overflow: auto;
        webkit-border-radius: 0 3px 3px 3px;
    }

    .tab-container.tab-right > .nav-tabs {
        float: right;
    }

        .tab-container.tab-right > .nav-tabs > li {
            float: none;
            margin-bottom: 2px;
            margin-right: 0;
        }

            .tab-container.tab-right > .nav-tabs > li .fa {
                font-size: 14px;
            }

            .tab-container.tab-right > .nav-tabs > li > a {
                min-width: 38px;
                padding: 12px 10px;
                text-align: left;
            }

            .tab-container.tab-right > .nav-tabs > li.active > a {
                border-bottom: 1px solid #ECECEC;
                border-left: 0;
                border-right: 2px solid #4aa3df;
                border-top: 0;
                box-shadow: 1px 3px 4px -3px rgba(0,0,0,0.08);
                margin-left: -1px;
                padding: 13px 10px 12px 12px;
            }

                .tab-container.tab-right > .nav-tabs > li.active > a:after {
                    bottom: 0;
                    height: 100%;
                    left: auto;
                    right: 0;
                    top: auto;
                    width: 2px;
                }

                .tab-container.tab-right > .nav-tabs > li.active > a:focus {
                    border-bottom: 1px solid #ECECEC;
                    border-left: 0;
                    border-right: 2px solid #4aa3df;
                    border-top: 0;
                    box-shadow: 1px 3px 4px -3px rgba(0,0,0,0.08);
                    margin-left: -1px;
                    padding: 13px 10px 12px 12px;
                }

                    .tab-container.tab-right > .nav-tabs > li.active > a:focus:after {
                        bottom: 0;
                        height: 100%;
                        left: auto;
                        right: 0;
                        top: auto;
                        width: 2px;
                    }

                .tab-container.tab-right > .nav-tabs > li.active > a:hover {
                    border-bottom: 1px solid #ECECEC;
                    border-left: 0;
                    border-right: 2px solid #4aa3df;
                    border-top: 0;
                    box-shadow: 1px 3px 4px -3px rgba(0,0,0,0.08);
                    margin-left: -1px;
                    padding: 13px 10px 12px 12px;
                }

                    .tab-container.tab-right > .nav-tabs > li.active > a:hover:after {
                        bottom: 0;
                        height: 100%;
                        left: auto;
                        right: 0;
                        top: auto;
                        width: 2px;
                    }

    .tab-container.tab-right > .tab-content {
        border-radius: 3px 0 3px 3px;
        overflow: auto;
        webkit-border-radius: 3px 0 3px 3px;
    }

    .toolbar-row {
        background: var(--primary-background-color);
        padding: 4px;
    }

        .toolbar-row .btn-toolbar {
            margin-left: 0;
        }

            .toolbar-row .btn-toolbar .btn {
                height: 35px;
            }

            .toolbar-row .btn-toolbar .btn-group:first-child {
                margin-left: 1px; /* To counteract the -1 left margin below */
            }

            .toolbar-row .btn-toolbar .btn-group .btn {
                margin-left: -1px !important;
                margin-right: 0 !important;
            }

    .side-pane {
        padding: 20px;
        background-color: var(--secondary-background-color);
        width: 300px;
        overflow-y: auto;
    }

        .side-pane h3 {
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .side-pane .toolbar-row {
            padding: 0;
        }

    .treeview .tree-toggler {
        cursor: pointer;
    }

    .treeview label {
        border-bottom: 0 solid #E5E5E5;
        display: block;
        font-weight: 400;
        margin: 0;
        padding: 7px 18px;
    }

        .treeview label i {
            color: var(--info-color);
            font-size: 14px;
            text-align: center;
            width: 24px;
        }

        .treeview label.open {
            background: #F9F9F9;
        }

        .treeview label:hover {
            background: #F9F9F9;
        }

    .treeview li > ul {
        display: none;
    }

    .treeview li.open > ul {
        display: block;
    }

    .treeview ul li {
        border-bottom: 0 solid #E5E5E5;
    }

        .treeview ul li a {
            color: #555;
            padding-bottom: 5px;
            padding-left: 36px;
            padding-top: 5px;
        }

            .treeview ul li a:hover {
                background: #F9F9F9;
            }

        .treeview ul li label {
            padding-left: 36px;
        }

        .treeview ul li ul li a {
            padding-left: 54px;
        }

        .treeview ul li ul li label {
            padding-left: 54px;
        }

        .treeview ul li ul li ul li a {
            padding-left: 72px;
        }

        .treeview ul li ul li ul li label {
            padding-left: 72px;
        }

        .treeview ul li ul li ul li ul li label {
            padding-left: 90px;
        }

    .ui-datepicker {
        position: relative;
    }

        .ui-datepicker .ui-datepicker-header {
            border-bottom: 1px solid rgba(255,255,255,0.6);
            margin-bottom: 4px;
            padding-bottom: 5px;
        }

        .ui-datepicker .ui-datepicker-next {
            color: #FFF;
            height: 1.8em;
            position: absolute;
            right: 2px;
            top: 2px;
            width: 1.8em;
        }

            .ui-datepicker .ui-datepicker-next span {
                display: block;
                overflow: hidden;
                text-indent: -99999px;
            }

                .ui-datepicker .ui-datepicker-next span:after {
                    content: "?";
                    cursor: pointer;
                    display: block;
                    font-family: FontAwesome;
                    height: 16px;
                    position: absolute;
                    right: 0;
                    text-indent: 0;
                    top: 0;
                    width: 16px;
                }

        .ui-datepicker .ui-datepicker-prev {
            color: #FFF;
            height: 1.8em;
            left: 2px;
            position: absolute;
            top: 2px;
            width: 1.8em;
        }

            .ui-datepicker .ui-datepicker-prev span {
                display: block;
                overflow: hidden;
                text-indent: -99999px;
            }

                .ui-datepicker .ui-datepicker-prev span:after {
                    content: "?";
                    cursor: pointer;
                    display: block;
                    font-family: FontAwesome;
                    height: 16px;
                    position: absolute;
                    text-indent: 0;
                    top: 0;
                    width: 16px;
                }

        .ui-datepicker .ui-datepicker-title {
            cursor: default;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.8em;
            margin: 0 2.3em;
            text-align: center;
        }

        .ui-datepicker table td {
            border: 0;
            padding: 3px;
        }

        .ui-datepicker table th {
            border: 0;
            padding: 3px;
        }

            .ui-datepicker table th span {
                color: #FFF;
                font-size: 14px;
            }

        .ui-datepicker table tr {
            background: transparent !important;
        }

        .ui-datepicker td a {
            color: #FFF;
            display: block;
            padding: .2em;
            text-align: right;
            text-decoration: none;
        }

        .ui-datepicker td span {
            color: #FFF;
            display: block;
            padding: .2em;
            text-align: right;
            text-decoration: none;
        }

    .ui-state-disabled {
        opacity: 1 !important;
    }

    .viewmode-icon {
        moz-transform: rotate(-0.001deg);
        position: relative;
        top: -1px;
    }

    .violet thead th {
        color: #9b50ba;
    }

    .well p:last-child {
        margin: 0;
    }

    .what-3-words-div {
        margin-top: 5px;
        width: 100%;
    }

    .what-3-words-link {
        color: var(--secondary-text-color) !important;
        display: block;
        font-size: 14px;
        font-weight: 300;
        margin: 0 auto;
        min-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: inherit;
    }

    .what-3-words-slashes {
        color: #e11f26;
        font-weight: 700;
    }

    .widget-table tbody td {
        padding: 7px 8px;
    }

    .widget-table td {
        border-bottom: 1px solid var(--secondary-border-color);
        border-left: 1px solid var(--secondary-border-color);
        padding: 7px 8px;
    }

        .widget-table td:last-child {
            border-right: 1px solid var(--secondary-border-color);
        }

    .widget-table tr.selected {
        background: #bce3fd !important;
    }

    .widget-table tr:hover {
        background: var(--table-row-hover-color) !important;
    }

    .widget-table tr:nth-child(1n) {
        background: var(--secondary-background-color);
    }

    .widget-table tr:nth-child(2n) {
        background: var(--table-row-alternate-color);
    }

    .widget-table.selectable tr:hover {
        cursor: pointer;
    }

    .widget-title {
        border-bottom: 1px solid var(--primary-border-color);
        padding-bottom: 15px;
    }

    .wizard-icon {
        display: inline-block;
        float: left;
    }

    .wizard-text {
        display: block;
        float: right;
        margin-bottom: 2px;
        margin-left: 3px;
        margin-top: 0;
        position: relative;
    }

    .work-order-following-gray,
    .work-order-following-green,
    .work-order-following-red,
    .work-order-following-half-green {
        width: 16px;
        height: 16px;
    }

    .work-order-following-gray {
        fill: #d4d4d4;
    }

    .work-order-following-green {
        fill: #4cd964;
    }

    .work-order-following-red {
        fill: #e6341e;
    }

    .work-order-following-half-green {
        fill: #d4d4d4;
    }

        .work-order-following-half-green .st0 {
            fill: #4cd964;
        }

    .d-none {
        display: none;
    }

    a {
        color: var(--link-color);
        fill: var(--link-color);
        outline: 0 none;
        text-decoration: none;
    }

        a.gold {
            background: #FFCB08;
            color: #000 !important;
        }

        a.list-group-item.active {
            background-color: #4aa3df;
            border-color: #4aa3df;
        }

            a.list-group-item.active:focus {
                background-color: #4aa3df;
                border-color: #4aa3df;
            }

            a.list-group-item.active:hover {
                background-color: #4aa3df;
                border-color: #4aa3df;
            }

        a.list-group-item:hover {
            border-color: #4aa3df;
            border-left: 5px solid #4aa3df;
            padding-left: 11px;
        }

            a.list-group-item:hover + a.list-group-item {
                border-top-color: #4aa3df;
            }

        a:active {
            color: #4099d5;
            outline: 0 none;
            text-decoration: none !important;
        }

        a:focus {
            color: #4099d5;
            outline: 0 none;
            text-decoration: none !important;
        }

        a:hover {
            color: #4099d5;
            outline: 0 none;
            text-decoration: none !important;
        }

            a:hover.gold {
                background: #000;
                color: #FFCB08 !important;
            }

    b {
        font-weight: 600;
    }

    :fullscreen {
        background-color: var(--primary-background-color);
    }

    body {
        background-color: var(--primary-background-color);
        color: var(--primary-text-color);
        font-family: 'Inter', 'Open Sans', sans-serif;
        font-size: 13px;
        height: 100%;
    }

        body.bgerror {
            background: #272930 url("https://cdn.nektar.io/backgrounds/error-background.png") no-repeat top center;
            background-size: cover;
        }

        body.modal-open {
            margin-right: 0;
        }

    code {
        white-space: normal;
    }

    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
        font-weight: 300;
        line-height: initial;
    }

    hr {
        border-top: 1px solid var(--primary-border-color);
    }

    html {
        height: 100%;
    }

    i.nektar-form-required {
        border: none;
        color: #db684f;
    }

    i.nektar-form-success {
        border: none;
        color: var(--success-color);
    }

    input {
        background: var(--secondary-background-color);
        border: 1px solid var(--primary-border-color);
        padding-left: 5px
    }

        input.jqtree-checkbox-radio {
            margin: 0 3px 0 2px;
        }

    label {
        font-weight: 600;
        margin-bottom: 4px;
        margin-top: 4px;
    }

    pre {
        border-radius: 2px;
        margin-top: 10px;
        webkit-border-radius: 2px;
        word-wrap: normal;
    }

    select {
        background-color: var(--secondary-background-color);
        border-color: var(--primary-border-color);
    }

        select.form-control {
            padding: 6px 8px;
        }

    small.timeline {
        color: var(--secondary-text-color);
        font-size: 12px;
    }

    table {
        border-collapse: collapse;
        width: 100%;
    }

        table .danger-emphasis {
            background: #DA4932;
            border-color: #DA4932;
            color: #FFF;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
        }

        table .danger-emphasis-dark {
            background: #DA4932;
            background-color: #c8432e;
            border-color: #c8432e;
            color: #FFF;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
        }

        table .left {
            text-align: left;
        }

        table .no-border th {
            border-left: 0;
        }

        table .no-border tr th:first-child {
            border-left: 1px solid var(--primary-border-color);
        }

        table .no-border-x td {
            border-bottom: 0;
        }

        table .no-border-x tr:last-child td {
            border-bottom: 1px solid var(--primary-border-color);
        }

        table .no-border-y td {
            border-left: 0;
        }

        table .no-border-y tr td:first-child {
            border-left: 1px solid var(--primary-border-color);
        }

        table .right {
            text-align: right;
        }

        table tbody .details {
            background: #FFF;
        }

        table tbody td {
            font-size: 13px;
        }

            table tbody td .btn-group .dropdown-menu {
                margin-top: -1px;
                min-width: 130px;
            }

                table tbody td .btn-group .dropdown-menu li > a {
                    padding: 5px 12px;
                    text-align: left;
                }

        table td .progress {
            margin: 0;
        }

        table td i {
            display: inline-block;
            font-size: 15px;
        }

        table thead span {
            display: block;
            font-size: 16px;
        }

        table thead th {
            border-bottom: 1px solid var(--primary-border-color);
            border-left: 1px solid var(--primary-border-color);
            border-top: 1px solid var(--primary-border-color);
            color: var(--primary-text-color);
            font-size: 15px !important;
            font-weight: 300;
            padding: 5px 8px;
            vertical-align: bottom;
        }

            table thead th span {
                color: var(--primary-text-color);
            }

            table thead th:last-child {
                border-right: 1px solid var(--primary-border-color);
            }

        table.dashed td {
            border-bottom: 1px dashed #ddd;
            border-left: 0;
            padding: 20px;
        }

            table.dashed td:last-child {
                border-right: 0;
            }

        table.dashed tr:nth-child(2n) {
            background: #fff;
        }

        table.hover tbody tr:hover:not(:only-child) {
            background: var(--table-row-hover-color);
        }

        table.information > tbody > tr > td {
            padding-bottom: 30px;
        }

        table.information td {
            font-size: 13px;
            padding: 6px;
            vertical-align: top;
        }

            table.information td i {
                font-size: 14px;
                width: 15px;
            }

            table.information td.category {
                padding-top: 8px;
            }

        table.list .items td {
            padding: 5px;
            vertical-align: middle;
        }

            table.list .items td .progress {
                height: 13px;
            }

                table.list .items td .progress .progress-bar {
                    font-size: 10px;
                    line-height: 12px;
                }

            table.list .items td > span {
                vertical-align: top;
            }

            table.list .items td p span {
                color: #9e9e9e;
                display: block;
                font-size: 12px;
                line-height: 10px;
            }

        table.list.no-border {
            border-top: 0;
        }

        table.no-border tr td:first-child {
            border-left: 0;
        }

        table.no-border tr td:last-child {
            border-right: 0;
        }

        table.no-border tr th {
            border-top: 0;
        }

            table.no-border tr th:first-child {
                border-left: 0;
            }

            table.no-border tr th:last-child {
                border-right: 0;
            }

        table.no-border tr:last-child td {
            border-bottom: 0;
        }

        table.no-row-background tr:nth-child(2n) {
            background: none;
        }

        table.small-table-text .color-blue, table.small-table-text .color-blue a {
            color: var(--link-color);
        }

            table.small-table-text .color-blue a:hover {
                text-decoration: underline;
            }

        table.small-table-text tbody td {
            line-height: 1.3em;
        }

    textarea {
        background: var(--secondary-background-color);
        border: 1px solid var(--primary-border-color);
        padding-left: 6px 8px;
    }

    ul {
        padding-left: 30px;
    }

        ul.asset-profile-gallery {
            list-style: none;
            margin: 30px 0 0;
            padding: 0;
        }

            ul.asset-profile-gallery li {
                display: block;
                float: left;
                height: 60px;
                margin: 0 12px 12px 0;
                width: 60px;
            }

        ul.timeline {
            margin-bottom: 40px;
            padding: 0 0 1px;
            position: relative;
        }

            ul.timeline li {
                list-style: none;
                margin-bottom: 25px;
                position: relative;
            }

                ul.timeline li .content {
                    background: var(--secondary-background-color);
                    border: 1px solid var(--dark-only-border-color);
                    border-radius: 5px;
                    line-height: 15px;
                    margin-left: 75px;
                    padding: 12px 10px;
                    position: relative;
                    box-shadow: 0 2px 0 0 rgb(0 0 0 / 5%);
                }

                    ul.timeline li .content .img-thumbnail {
                        border-radius: 0;
                        cursor: pointer;
                        margin: 10px 5px 0 0;
                    }

                    ul.timeline li .content blockquote {
                        margin: 10px 0 0;
                    }

                        ul.timeline li .content blockquote p {
                            font-size: 14px;
                            margin: 0 0 5px !important;
                        }

                    ul.timeline li .content p {
                        line-height: 1.2em;
                        margin: 0;
                    }

                    ul.timeline li .content:before {
                        background: var(--secondary-background-color);
                        border-bottom: 1px solid var(--dark-only-border-color);
                        border-left: 1px solid var(--dark-only-border-color);
                        content: "";
                        height: 10px;
                        left: -6px;
                        ms-transform: rotate(45deg);
                        position: absolute;
                        top: 14px;
                        transform: rotate(45deg);
                        webkit-transform: rotate(45deg);
                        width: 10px;
                    }

                ul.timeline li .event-feed-icon.green {
                    background: var(--success-color);
                }

                ul.timeline li .event-feed-icon.light-blue {
                    background: var(--info-color);
                }

                ul.timeline li .event-feed-icon.orange {
                    background: var(--warning-color);
                }

                ul.timeline li .event-feed-icon.purple {
                    background: #7761a7;
                }

                ul.timeline li .event-feed-icon.red {
                    background: var(--danger-color);
                }

                ul.timeline li .event-feed-icon.yellow {
                    background: #FC0;
                }

                ul.timeline li > .date {
                    background: var(--tertiary-background-color);
                    border: 1px solid var(--secondary-border-color);
                    border-radius: 5px;
                    color: var(--secondary-text-color);
                    display: block;
                    font-size: 11px;
                    line-height: 19px;
                    position: absolute;
                    text-align: center;
                    top: 45px;
                    width: 50px;
                }

                ul.timeline li > .event-feed-icon {
                    background: #2980b9;
                    border: 2px solid #FFF;
                    border-radius: 25%;
                    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
                    color: #FFF;
                    font-size: 14px;
                    height: 40px;
                    left: 5px;
                    padding: 10px;
                    position: absolute;
                    text-align: center;
                    text-shadow: 0 1px 0 rgba(0,0,0,0.1);
                    top: 0;
                    webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
                    width: 40px;
                }

            ul.timeline:after {
                background-color: var(--primary-border-color);
                border-radius: 50%;
                bottom: -9px;
                content: "";
                height: 10px;
                left: 20px;
                position: absolute;
                width: 10px;
            }

            ul.timeline:before {
                background-color: var(--primary-border-color);
                bottom: 0;
                content: "";
                left: 25px;
                position: absolute;
                top: 2px;
                width: 1px;
            }

    .asset-search-input {
        background: transparent;
        width: 150px;
        border: 1px solid var(--primary-border-color);
        padding-left: 31px;
        color: var(--primary-text-color);
        -webkit-border-radius: 17px;
        -moz-border-radius: 17px;
        border-radius: 17px;
    }

    .dx-row-count-overlay {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
        width: 300px;
        text-align: center;
        margin: 0 auto;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border: 1px solid var(--primary-border-color);
        border-bottom: none;
        background-color: var(--primary-background-color);
    }

        .dx-row-count-overlay label {
            margin-top: 6px !important;
            margin-bottom: 2px !important;
        }

    .dxeMemoEditAreaSys {
        height: auto !important;
    }


    .pill {
        display: inline-block;
        padding: 5px 7px;
        margin: 0px 4px;
        font-size: 95%;
        font-weight: normal;
        line-height: 1.42857143;
        text-align: center;
        vertical-align: middle;
        border-radius: 13px;
        background-color: var(--tertiary-background-color);
        height: 25px;
    }

    .pill-block {
        width: 100%;
    }


    .pill-primary {
        background-color: var(--info-color);
        color: #FFFFFF;
    }

    .pill-success {
        background-color: var(--success-color);
        color: #FFFFFF;
    }

    .pill-warning {
        background-color: var(--warning-color);
        color: #FFFFFF;
    }

    .pill-danger {
        background-color: var(--danger-color);
        color: #FFFFFF;
    }

    .pill-waiting {
        background-color: #7761A7;
        color: #FFFFFF;
    }

    .pill-hold {
        background-color: #FFC800;
        color: #FFFFFF;
    }


    @media (max-width: 1199px) {
        .text-md-center {
            text-align: center;
        }

        .text-md-left {
            text-align: left;
        }

        .text-md-right {
            text-align: right;
        }
    }

    @media (max-width: 320px) {
        .modal-mainicon {
            text-align: center;
        }

        .modal-maintext {
            padding-right: 15px;
            text-align: center;
        }
    }

    @media (max-width: 720px) {
        .daterangepicker.dropdown-menu {
            min-width: inherit;
        }

        .modal-mainicon {
            text-align: center;
        }

        .modal-maintext {
            padding-right: 15px;
            text-align: center;
        }
    }

    @media (max-width: 767px) {
        .aside .content {
            display: block;
        }

        .asset-profile-icon {
            background-image: none;
        }

        .cl-mcont {
            padding: 15px;
        }

            .cl-mcont.aside {
                display: block;
            }

                .cl-mcont.aside > .content {
                    display: block;
                }

        .cl-sidebar {
            display: block;
            padding-bottom: 0;
            position: relative;
            width: 100%;
            z-index: 1020;
        }

            .cl-sidebar .cl-toggle {
                display: block;
            }

            .cl-sidebar .collapse-button {
                display: none;
            }

        .cl-wrapper {
            display: block;
            margin-top: 0;
        }

            .cl-wrapper .menu-space {
                min-height: 0 !important;
            }

            .cl-wrapper.fixed-menu .menu-space {
                height: auto !important;
                position: relative;
                width: 100%;
            }

                .cl-wrapper.fixed-menu .menu-space .left-nav-content {
                    overflow: visible;
                    position: relative;
                }

            .cl-wrapper.fixed-menu.sb-collapsed .menu-space {
                height: auto !important;
                position: relative;
                width: 100%;
            }

                .cl-wrapper.fixed-menu.sb-collapsed .menu-space .left-nav-content {
                    overflow: visible;
                    position: relative;
                }

        .custom-width {
            max-width: none;
            width: 90%;
        }

        .form-horizontal.group-border .form-group {
            padding: 5px 0 15px;
        }

            .form-horizontal.group-border .form-group label {
                margin-bottom: 7px;
            }

        .form-horizontal.group-border-dashed .form-group label {
            margin-bottom: 7px;
        }

        .gallery-cont .item {
            width: 50%;
        }

            .gallery-cont .item.w2 {
                width: 100%;
            }

        .left-nav-content {
            border-bottom: 1px solid var(--primary-border-color);
        }

        .login-container .middle-login {
            left: auto;
            margin-left: 0;
            padding: 0 15px;
            width: 100%;
        }

        .message .mail {
            border-top: 0;
        }

        .modal-mainicon {
            text-align: center;
        }

        .modal-maintext {
            padding-right: 15px;
            text-align: center;
        }

        .navbar-collapse {
            margin: 0 !important;
            padding: 0 !important;
        }

            .navbar-collapse .navbar-nav {
                margin: 0;
            }

            .navbar-collapse.in {
                overflow: visible;
            }

        .navbar-default .navbar-nav .dropdown-submenu > a:after {
            border-width: 0;
        }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a {
            color: #000;
        }

            .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
                color: #FFF;
            }

            .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
                background-color: #4aa3df;
                color: #FFF;
            }

        .navbar-default .navbar-nav > .active > a {
            background: transparent !important;
            color: #FFF !important;
        }

            .navbar-default .navbar-nav > .active > a:hover {
                background: transparent !important;
                color: #FFF !important;
            }

        .navbar-default .navbar-nav > li.button {
            display: inline-block;
            float: none;
            padding: 10px 0;
            top: 100%;
        }

            .navbar-default .navbar-nav > li.button .dropdown-menu {
                background-color: #FFF;
                border-top: 0;
                box-shadow: 0 6px 12px rgba(0,0,0,0.176);
                margin-left: -218px;
                position: absolute;
            }

                .navbar-default .navbar-nav > li.button .dropdown-menu > li > a {
                    text-align: left;
                }

            .navbar-default .navbar-nav > li.button > a > i {
                font-size: 17px;
                vertical-align: middle;
            }

        .navbar-nav .dropdown-header {
            color: #FFF;
        }

        .navbar-nav .dropdown-menu > li > a:focus {
            background-color: transparent;
        }

        .navbar-nav .dropdown-menu > li > a:hover {
            background-color: transparent;
        }

        .navbar-nav .dropdown-submenu ul {
            display: block;
            padding-left: 20px;
        }

        .navbar-nav .dropdown-submenu:hover > a {
            background-color: transparent;
        }

        .navbar-nav > .active > a:active {
            background: transparent !important;
            color: #FFF !important;
        }

        .navbar-nav > .active > a:focus {
            background: transparent !important;
            color: #FFF !important;
        }

        .page-aside {
            display: block;
            height: auto;
            position: relative;
            width: 100%;
        }

            .page-aside > div {
                width: 100%;
            }

            .page-aside div.fixed {
                display: block;
                position: relative;
                width: 100%;
            }

            .page-aside.app div.content {
                border-bottom: 1px solid #E5E5E5;
            }

            .page-aside.email .mail-nav {
                border-bottom: 1px solid #E5E5E5;
                margin-top: 0;
                padding: 0;
                width: 100%;
            }

                .page-aside.email .mail-nav .compose {
                    background: #FCFCFC;
                    border-top: 1px solid #E5E5E5;
                }

                .page-aside.email .mail-nav.collapse {
                    display: none;
                }

                    .page-aside.email .mail-nav.collapse.in {
                        display: block;
                    }

            .page-aside.email .nano .content {
                overflow: visible;
                padding: 0;
                position: static;
            }

            .page-aside.email div.content {
                border-bottom: 1px solid #E5E5E5;
            }

        .profile-info .avatar {
            margin-bottom: 10px;
            text-align: center;
        }

        .block-flat {
            padding: 10px;
        }

            .block-flat .header {
                padding-top: 10px;
                padding-bottom: 10px;
            }

        /* 404 Page */
        .bgerror {
            background: #272930 url("https://cdn.nektar.io/backgrounds/error-background.png") no-repeat top center;
            background-size: cover;
        }

            .bgerror .main-container {
                padding: 0;
                text-align: center;
                color: #fff;
            }

                .bgerror .main-container h2, .bgerror .main-container p {
                    color: #fff;
                }

                .bgerror .main-container h2 {
                    font-size: 36px;
                    margin-bottom: 20px;
                    color: #ffcb08;
                }

                .bgerror .main-container p {
                    font-size: 18px;
                    color: #B5B5B5;
                }

                    .bgerror .main-container p a {
                        color: #ffcb08;
                    }

            .bgerror .error-logo {
                margin: /*  90px */ 0 0 65px 0;
            }

        a.gold {
            background: #FFCB08;
            color: #000 !important;
        }

        a:hover.gold {
            background: #000;
            color: #FFCB08 !important;
        }

        .profile-info .avatar img {
            max-height: 100px;
            max-width: 100px;
        }

        .profile-info .personal {
            text-align: center;
        }

        .sb-collapsed .cl-sidebar {
            display: block;
            padding-bottom: 0;
            position: relative;
            width: 100%;
            z-index: 1020;
        }

        .sb-collapsed .cl-vnavigation > .parent > a:before {
            display: block;
        }

        .sb-collapsed .cl-vnavigation li a i {
            font-size: 14px;
            margin-right: 7px;
            text-align: center;
            width: 20px;
        }

        .sb-collapsed .cl-vnavigation li a span {
            display: inline-block;
            opacity: 1;
        }

        .sb-collapsed .cl-vnavigation li.open ul {
            display: block !important;
        }

        .text-xs-center {
            text-align: center;
        }

        .text-xs-left {
            text-align: left;
        }

        .text-xs-right {
            text-align: right;
        }

        table.information .btn span {
            display: none;
        }
    }

    @media (max-width: 991px) {
        .device-tracking-listings {
            height: 100% !important;
            position: relative;
        }

        .devices-mobile {
            height: auto !important;
            margin-bottom: 40px !important;
        }

        .text-sm-center {
            text-align: center;
        }

        .text-sm-left {
            text-align: left;
        }

        .text-sm-right {
            text-align: right;
        }
    }

    @media (min-width: 1200px) {
        .cl-sidebar .cl-vnavigation {
            display: block !important;
        }
    }

    @media (min-width: 768px) {
        .form-horizontal .control-label {
            padding-left: 15px;
            text-align: left;
        }
    }

    @media (min-width: 768px) and (max-width: 979px) {
        .cl-sidebar .cl-vnavigation {
            display: block !important;
        }

        .cl-sidebar .collapse-button {
            display: block;
        }

            .cl-sidebar .collapse-button .search {
                display: none;
            }

            .cl-sidebar .collapse-button i {
                margin: 0 !important;
            }

        .cl-vnavigation > .parent > a:before {
            display: none;
        }

        .cl-vnavigation li {
            position: relative;
        }

            .cl-vnavigation li a i {
                font-size: 17px;
                margin: 0;
            }

        .cl-wrapper.fixed-menu .menu-space {
            width: 55px;
        }

        .custom-width {
            max-width: none;
            width: 60%;
        }

        .logo-bg {
            background-image: none;
        }

        .modal-mainicon {
            text-align: center;
        }

        .modal-maintext {
            padding-right: 15px;
            text-align: center;
        }

        .personal h1.name {
            font-size: 24px;
        }

        .sidebar-logo {
            background: url(images/logo-default.png) no-repeat scroll -1px -53px;
            background-size: 151px auto;
            padding: 4px 0 5px;
        }
    }

    @media (min-width: 980px) and (max-width: 1199px) {
        .cl-sidebar .cl-vnavigation {
            display: block !important;
        }

        .personal h1.name {
            font-size: 26px;
        }
    }

    /* for rotating */
    @-webkit-keyframes rotating /* Safari and Chrome */ {
        from {
            -webkit-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        to {
            -webkit-transform: rotate(360deg);
            -o-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @keyframes rotating {
        from {
            -ms-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        to {
            -ms-transform: rotate(360deg);
            -moz-transform: rotate(360deg);
            -webkit-transform: rotate(360deg);
            -o-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    .rotating {
        -webkit-animation: rotating 1s linear infinite;
        -moz-animation: rotating 1s linear infinite;
        -ms-animation: rotating 1s linear infinite;
        -o-animation: rotating 1s linear infinite;
        animation: rotating 1s linear infinite;
    }

    .center {
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .qr-prompt {
        color: rgba(255,255,255,0.8);
        text-align: center;
        width: 100%;
        padding-bottom: 5px;
    }

    .qr-shadow {
        display: flex;
        background-color: rgba(0,0,0,0.6);
        flex-grow: 1;
        flex-direction: column;
        justify-content: flex-end;
    }

    .beta-badge {
        border: none;
        padding: 1px 5px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        margin: 0 5px;
        border-radius: 300px;
        font-size: 10px;
        color: white;
        background: red;
    }

    /* Skeleton Loader*/
    .skeleton {
        animation: skeleton-loading 0.5s linear infinite alternate;
    }

    .skeleton-text {
        height: 14px;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .skeleton-block {
        border-radius: 10px;
    }

    @keyframes skeleton-loading {
        0% {
            background-color: #e2e2e2;
        }

        100% {
            background-color: #efefef;
        }
    }