﻿/* ---------------------------------------------------------------------------------------------- 
/*  Locosoft - Site CSS  					         										      
/* ----------------------------------------------------------------------------------------------

1. INIT

2. BASIC ELEMENTS

3. LAY-OUT
    - Basic Layout - Header Logo
    - Navigation
    - Navigation - Main - Toggle
    - Navigation - Main - Menu
    - Navigation - Account - Menu
    - Navigation - Account - Logout Form
    - Utility - Clear Fix
    - Utility - Vertical Spacing

4. COMPONENTS
    - Button - Back to Top
    - Collapsible
    - Collapsible - Account Menu
    - Copy
    - Form Elements
    - Form Elements - Dropdown
    - Heading
    - Icon - Letter Index    
    - List - Bordered
    - List - No Style
    - Logo
    - Notification - Button
    - Side Panel
    - Side Panel - Notification
    - Search Bar
    - Search Term - Navigation
    - Search Term - Highlight
    - Section View
    - Table
    - Table - Index List
    - Text
    - Image Radio button

5. 3RD PARTY COMPONENTS
    - Bootstrap - Alert
    - Bootstrap - Breadcrumb
    - Bootstrap - Button
    - Bootstrap - Button - Icon Only
    - Bootstrap - Button - Link
    - Bootstrap - Button - Outline
    - Bootstrap - Checkbox
    - Bootstrap - Container    
    - Bootstrap - Card - Featured
    - Bootstrap - Card - Widget
    - Bootstrap - Jumbotron
    - Bootstrap - Modal Box
    - Bootstrap - Navigation - Tabs
    - Bootstrap - Text
    - Bootstrap - Toast
    - Kendo UI - Button
    - Kendo UI - Calendar
    - Kendo UI - Date Picker
    - Kendo UI - Dropdown
    - Kendo UI - Editor
    - Kendo UI - Filter Menu
    - Kendo UI - Form Elements
    - Kendo UI - Grid
    - Kendo UI - Grid - Sticky
    - Kendo UI - Grid - Mod - Index List
    - Kendo UI - Grid - Mod - Wide
    - Kendo UI - List (Dropdown List)
    - Kendo UI - List View
    - Kendo UI - Multi Select
    - Kendo UI - Numeric Textbox
    - Kendo UI - Tabstrip
    - Kendo UI - Tooltip
    - Kendo UI - Window (Modal Box)

6. STATE & UTILITIES

7. TEMP

/* -----------------------------------------------------------------------------------------------
/* 1. INIT
/* ----------------------------------------------------------------------------------------------- */

/* .Net Default site.css  */
a.navbar-brand {white-space: normal;text-align: center;word-break: break-all;} a {color: #0366d6;} .btn-primary { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } .nav-pills .nav-link.active, .nav-pills .show > .nav-link { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } html {font-size: 14px;} @media (min-width: 768px) { html { font-size: 16px; } } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } button.accept-policy { font-size: 1rem; line-height: inherit; } html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 60px; } .l-footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; line-height: 60px; /* Vertically center the text there */ }


/* -----------------------------------------------------------------------------------------------
/* 2. BASIC ELEMENTS
/* ----------------------------------------------------------------------------------------------- */

#page-container {
    position: relative;
    min-height: 100vh;
}

#content-wrap {
    padding-bottom: 11rem; /* Footer height */
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 11rem;
}

body {
    margin: 0;
    background-color: #ECF0F1;
    color: #FFF;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 1rem;
}

a {
    color: #3498DB;
}

    a:hover {
        color: #2980B9;
    }

ul, ol {
    padding-left: 15px;
}

label {
    margin-bottom: 3px;
    font-weight: 700;
}

@media (min-width: 768px) {
    label {
        margin-top: 8px;
    }
}

input[type="text"],
input[type="date"],
input[type="number"],
input[type="password"],
textarea {
    padding: 0 10px;
    width: 100%;
    height: 36px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    font-weight: 300;
    outline: none;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

input[type="number"] {
    width: 246px;
}

textarea {
    padding: 5px 10px;
    height: 180px;
    resize: none;
}

    input[type="text"]:focus,
    input[type="date"]:focus,
    input[type="number"]:focus,
    input[type="password"]:focus,
    textarea:focus {
        border-color: #80bdff;
        color: #495057;
        background-color: #FFF;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
    }


select {
    position: relative;
    padding: 0 41px 0 5px;
    width: 100%;
    height: 36px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    line-height: 34px;
}

    select::-ms-expand { /* NOTE: For removing the default select arrow on IE11 */
        display: none;
    }


table {
    width: 100%;
    border-top: 1px solid #DFDFDF;
    border-right: 1px solid #DFDFDF;
}

td, th {
    padding: 0.75rem;
    border-left: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
}

th {
    font-weight: 500;
    background-color: #F8F9FA;
}

td {
    border-left-color: #DFDFDF;
    border-right-color: #DFDFDF;
}


/* -----------------------------------------------------------------------------------------------
/* 3. LAY-OUT
/* ----------------------------------------------------------------------------------------------- */

/* Basic Layout - Header */

.l-header {
    background-color: #FFF;
    color: #2c3e50;
}

.l-header-tools {
    margin-top: 15px;
    flex-basis: 100%;
}

@media (min-width: 992px) {
    .l-header-tools {
        margin-top: 25px;
        flex-basis: 215px;
    }
}

@media (min-width: 1200px) {
    .l-header-tools {
        flex-basis: 300px;
    }
}

.navbar-m-header {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #bdc3c7;
}

@media (min-width: 992px) {
    .navbar-m-header {
        padding-top: 30px;
        padding-bottom: 30px;
        border-bottom: 0;
        box-shadow: none;
    }
}

.navbar-m-header > .container {
}

@media (min-width: 992px) {
    .navbar-m-header > .container {
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        align-items: flex-start;
    }
}

.navbar-m-header .notification {
    position: absolute;
    top: 5px;
    right: 45px;
}

@media (min-width: 992px) {
    .navbar-m-header .notification {
        right: 105px;
        top: 10px;
    }
}


/* Basic Layout - Header Logo */

.navbar-brand {
    padding: 0;
    width: 270px;
    height: 28px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .navbar-brand {
        display: flex;
        margin-right: calc(100% - 475px);
        width: 450px;
        height: 46px;
        flex-basis: 100%;
    }
}

.navbar-brand img {
    display: block;
    max-width: 100%;
    height: 28px;
}

@media (min-width: 992px) {
    .navbar-brand img {
        height: 46px;
    }
}


/* Basic Layout - Content */

.l-content {
    background-color: #ECF0F1;
    color: #2c3e50;
}

    .l-content > .container {
    }

@media (min-width: 576px) {
    .l-content > .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .l-content > .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.l-content > .container:first-child {
    padding-top: 60px;
}

.l-content .container-m-single {
    padding-top: 60px;
    padding-bottom: 60px;
}


/* Basic Layout - Footer */

.l-footer {
    position: relative;
    padding: 60px 0;
    font-weight: 300;
    line-height: 100%;
}

    @media (min-width: 992px) {
        .l-footer {
            padding-bottom: 70px;
        }
    }

    .l-footer a {
        color: #FFF;
        font-weight: 400;
    }

    .l-footer .logo-m-algim {
        width: 120px;
        height: auto;
    }

        @media (min-width: 992px) {
            .l-footer .logo-m-algim {
                position: relative;
                top: 6px;
            }
        }

    .l-footer .logo-m-locosoft {
        margin: 0 5px;
        position: relative;
        top: 2px;
        width: 120px;
        height: auto;
    }

    .l-footer .logo-m-efinity {
        position: relative;
        top: 12px;
        margin: 0 5px;
        display: inline-block;
        width: 55px;
        height: 30px;
    }

    .l-footer--brand {
        margin-bottom: 15px;
        text-align: center;
    }

        @media (min-width: 992px) {
            .l-footer--brand {
                margin-bottom: 0;
                text-align: left;
                line-height: 100%;
            }
        }

    .l-footer--info {
        text-align: center;
        line-height: 3;
    }

        @media (min-width: 768px) {
            .l-footer--info {
                line-height: 100%;
            }
        }

        @media (min-width: 992px) {
            .l-footer--info {
                text-align: right;
            }
        }

    .l-footer--divider {
        display: none;
    }

        @media (min-width: 768px) {
            .l-footer--divider {
                display: inline-block;
            }
        }


/* Navigation */

.navbar {
}

    .navbar > .container {
        position: relative;
    }

    .navbar .nav-link {
        color: #2c3e50;
        font-weight: 700;
        text-transform: uppercase;
    }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: #ED4683;
        }


/* Navigation - Main - Toggle */

.navbar-toggler {
    position: relative;
    padding: 0;
    border: 0;
    width: 28px;
    height: 21px;
}

.navbar-toggler-icon,
.navbar-toggler-icon:after,
.navbar-toggler-icon:before {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #2c3e50;
}

    .navbar-toggler-icon:after,
    .navbar-toggler-icon:before {
        position: absolute;
        left: 0;
        content: " ";
    }

    .navbar-toggler-icon:after {
        bottom: 0;
    }

    .navbar-toggler-icon:before {
        top: 0;
    }


/* Navigation - Main - Menu */

.navbar-collapse-m-menu {
    padding-top: 15px;
}

@media (min-width: 992px) {
    .navbar-collapse-m-menu {
        padding-top: 25px;
        margin-right: 15px;
        max-width: calc(100% - 230px);
    }
}

@media (min-width: 1200px) {
    .navbar-collapse-m-menu {
        margin-right: 15px;
        max-width: calc(100% - 315px);
    }
}

.navbar-collapse-m-menu .nav-link {
}

@media (min-width: 992px) {
    .navbar-collapse-m-menu .nav-link {
        position: relative;
        line-height: 100%;
    }
}

.navbar-nav-m-main-menu {
}

@media (min-width: 992px) {
    .navbar-nav-m-main-menu {
        flex-wrap: wrap;
    }
}

.navbar-nav-m-main-menu .nav-item {
}

@media (min-width: 992px) {
    .navbar-nav-m-main-menu .nav-item {
        margin-right: 30px;
    }
}

.navbar-nav-m-main-menu .nav-link {
    font-size: 1rem;
}

@media (min-width: 992px) {
    .navbar-nav-m-main-menu .nav-link {
        padding: 11px 0 !important;
    }
}

.navbar-nav-m-main-menu .nav-link:after {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    content: " ";
}

.navbar-nav-m-main-menu .nav-link.active:after {
}

@media (min-width: 992px) {
    .navbar-nav-m-main-menu .nav-link.active:after {
        display: block;
    }
}

.help-file-link {
    line-height: 45px;
    position: absolute;
    right: 140px;
    top: -2px;
}

@media (max-width: 992px) {
    .help-file-link {
        right: 75px;
        top: -9px;
    }
}

.help-file-icon {
    font-size: 16px;
}


/* Navigation - Account - Menu */

.navbar-nav-m-account-menu {
    margin-top: 10px;
    border-top: 1px solid #ced4da;
}

@media (min-width: 992px) {
    .navbar-nav-m-account-menu {
        position: absolute;
        top: 0;
        right: 15px;
        flex-direction: row;
        margin-top: 0;
        border-top: 0;
    }
}

.navbar-nav-m-account-menu ul {
    padding-left: 0;
    list-style-type: none;
}

.navbar-nav-m-account-menu .nav-item {
    flex-basis: 100%;
}

@media (min-width: 992px) {
    .navbar-nav-m-account-menu .nav-item {
        flex-basis: auto;
        margin-top: 0;
        margin-left: 55px;
    }
}

.navbar-nav-m-account-menu .btn {
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (min-width: 992px) {
    .navbar-nav-m-account-menu .btn {
        margin-top: 4px;
        margin-bottom: 4px;
    }
}


/* Navigation - Account - Logout Form */

.l-logout-form {
}

@media (min-width: 992px) {
    .l-logout-form {
        margin-left: 50px;
    }
}


/* Utility - Clear Fix */

.copy:after,
.l-v-spacing-lv-0:after,
.l-v-spacing-lv-1:after,
.l-v-spacing-lv-2:after,
.l-v-spacing-lv-3:after,
.l-v-spacing-top-lv-3:after,
.l-v-spacing-lv-4:after,
.l-v-spacing-lv-5:after,
.l-v-spacing-lv-6:after,
.l-v-spacing-lv-7:after,
.l-v-spacing-lv-8:after,
.l-v-spacing-lv-9:after,
.u-clearfix:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
}

/* Utility - Vertical Spacing */

l-v-spacing-lv-0 {
    margin-bottom: 0;
}

.l-v-spacing-lv-1 {
    margin-bottom: 5px;
}

.l-v-spacing-lv-2 {
    margin-bottom: 10px;
}

.l-v-spacing-lv-3 {
    margin-bottom: 15px;
}

.l-v-spacing-lv-4 {
    margin-bottom: 20px;
}

.l-v-spacing-lv-5 {
    margin-bottom: 25px;
}

.l-v-spacing-lv-6 {
    margin-bottom: 30px;
}

.l-v-spacing-lv-7 {
    margin-bottom: 35px;
}

.l-v-spacing-lv-8 {
    margin-bottom: 40px;
}

.l-v-spacing-lv-9 {
    margin-bottom: 45px;
}

.l-v-spacing-top-lv-3 {
    margin-top: 15px;
}

#test-banner-container {
    width: 100%;
}

#test-banner {
    padding-top: 25px;
    padding-bottom: 25px;

}

.first-home-container {
    padding-top: 60px;
}

/* -----------------------------------------------------------------------------------------------
/* 4. COMPONENTS
/* ----------------------------------------------------------------------------------------------- */
/* Button - Back to Top */
.btn-m-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 15px;
}


/* Collapsible */

.collapsible {
}

.collapsible--trigger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.collapsible--label {
    cursor: pointer;
}

    .collapsible--label:after {
        display: inline-block;
        position: relative;
        top: 1px;
        margin-left: 5px;
        font: normal normal normal 16px/36px "Font Awesome 5 Pro";
        font-weight: 700; /* NOTE: Necessary to be separated for IE11 rendering */
        text-rendering: auto;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f107";
    }

.collapsible--content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease-in-out;
}

.collapsible--trigger:checked ~ .collapsible--content {
    max-height: 5000px;
}


/* Collapsible - Account Menu  */

.collapsible-m-account-menu {
}

    .collapsible-m-account-menu .collapsible--label {
        margin-bottom: 0;
        padding: 15px 0 10px;
        color: #3498DB;
        font-size: 16px;
    }

@media (min-width: 992px) {
    .collapsible-m-account-menu .collapsible--label {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0;
        line-height: 36px;
    }
}

.collapsible-m-account-menu .collapsible--label:after {
    display: none;
}

@media (min-width: 992px) {
    .collapsible-m-account-menu .collapsible--label:after {
        display: inline-block;
    }
}

.collapsible-m-account-menu .collapsible--label:hover {
}

@media (min-width: 992px) {
    .collapsible-m-account-menu .collapsible--label:hover {
        text-decoration: underline;
    }
}

.collapsible-m-account-menu .collapsible--content {
    max-height: none;
}

@media (min-width: 992px) {
    .collapsible-m-account-menu .collapsible--content {
        position: relative;
        top: -10px;
        left: -5px;
        z-index: 10000;
        max-height: 0;
        background: transparent;
    }
}

.collapsible-m-account-menu--greeting-label {
}

@media (min-width: 992px) {
    .collapsible-m-account-menu--greeting-label {
        display: none;
    }
}

.collapsible-m-account-menu--menu {
}

@media (min-width: 992px) {
    .collapsible-m-account-menu--menu {
        margin: 5px;
        padding-top: 7px;
        padding-bottom: 7px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        max-width: 280px;
        background-color: #FFF;
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.05);
    }
}

.collapsible-m-account-menu--menu .nav-link {
}

@media (min-width: 992px) {
    .collapsible-m-account-menu--menu .nav-link {
        padding-left: 15px !important;
        padding-right: 15px !important;
        text-transform: none;
        font-weight: 500;
    }
}

/* Copy */

.copy {
}

    .copy br:first-child,
    .copy br:last-child {
        display: none;
    }

    .copy table {
        max-width: 100%;
    }


/* Form Elements */

.required-mark {
    color: #E74C3C;
}

.input-validation-error,
input[type="text"].input-validation-error {
    border-color: #C0392B;
}

.field-validation-error {
    margin-top: 4px;
    color: #C0392B;
    font-size: 12px;
}


/* Form Elements - Dropdown */

.dropdown-wrapper {
    position: relative;
    background: #FFF;
    border-radius: 4px;
}

    .dropdown-wrapper:after {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 0;
        width: 36px;
        height: 36px;
        color: #2c3e50;
        font: normal normal normal 16px/36px "Font Awesome 5 Pro";
        font-weight: 900; /* NOTE: Necessary to be separated for IE11 rendering */
        text-rendering: auto;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f107";
    }

    .dropdown-wrapper select {
        position: relative;
        z-index: 1;
        background: transparent;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }

        .dropdown-wrapper select:focus {
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
        }


/* Heading */

.heading-hero {
    color: #FFF;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 2px 2px #2C3E50;
}


/* Icon - Letter Index */

.letter-index-icon {
    display: block;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    background-color: #BDC3C7;
    font-size: 24px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
}


/* List - Bordered */

.list-with-border {
    margin-bottom: 0;
    border: 1px solid #dcdfe1;
    padding-left: 0;
    list-style-type: none;
}

    .list-with-border li {
        padding: 6px 9px 6px 9px;
        position: relative;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .list-with-border li + li {
            border-top: 1px solid #dcdfe1;
        }

    .list-with-border .icon-container {
        position: absolute;
        top: 7px;
        left: 9px;
        width: 28px;
        text-align: center;
    }

.list-with-border-m-with-icon {
}

    .list-with-border-m-with-icon li {
        padding-left: 45px;
    }


/* List - No Style */

.list-with-no-style {
    list-style-type: none;
    padding-left: 0;
}


/* Logo */

.logo {
    display: inline-block;
}

    .logo img {
        display: block;
        max-width: 100%;
    }

.settings-logo {
    height: 46px;
    width: auto;
    max-width: 100%;
}

.settings-jumbotron {
    height: 200px;
    width: auto;
    max-width: 100%;
}

/* Notification - Button */
.notification {
    position: relative;
    margin: 0;
    padding: 0 0 0 11px;
    border: 0;
    background: transparent;
}

.notification--number {
    position: absolute;
    bottom: -7px;
    left: 0;
    box-sizing: border-box;
    display: block;
    background-color: #C0392B;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #FFF;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
}


/* Side Panel */

.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: z-index 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

    .side-panel .btn-link,
    .side-panel .btn-link:hover {
        color: #FFF !important;
    }

.side-panel--wrapper {
    position: absolute;
    top: 0;
    right: -300px;
    background-color: #2c3e50;
    width: 300px;
    height: 100%;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.3);
    transition: right 0.2s ease-in-out;
}

@media (min-width: 576px) {
    .side-panel--wrapper {
        right: -550px;
        width: 550px;
    }
}

.side-panel--header {
    position: relative;
    padding: 20px 20px 5px 20px;
}

.side-panel--close {
    padding: 0 15px !important;
    text-align: center;
    border: 0;
    background: transparent;
    position: absolute;
    top: 11px;
    left: 6px;
}

.side-panel--heading {
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
}

.side-panel--body {
    padding: 0 5px;
    max-height: calc(100% - 127px);
    overflow-x: hidden;
    overflow-y: auto;
}

.side-panel--footer {
    padding: 10px 20px 20px 20px;
    text-align: right;
}


/* Side Panel - Notification */

.side-panel-m-notification {
}

    .side-panel-m-notification .btn {
        font-size: 14px;
    }

    .side-panel-m-notification .side-panel--body {
        font-size: 14px;
    }

.side-panel-m-notification--row {
}

    .side-panel-m-notification--row:after {
        margin-bottom: 14px;
        margin-left: 15px;
        border-top: 1px solid #FFF;
        width: calc(100% - 30px);
        content: " ";
    }

.side-panel-m-notification--text-col {
}

.side-panel-m-notification--button-col {
    text-align: right;
    padding-bottom: 15px;
}


.s-notification-side-panel-displayed {
    overflow: hidden;
}

    .s-notification-side-panel-displayed .side-panel-m-notification {
        opacity: 1;
        z-index: 100001;
    }

    .s-notification-side-panel-displayed .side-panel--wrapper {
        right: 0;
    }


/* Search Bar */

.search-bar {
    position: relative;
}

    .search-bar input[type="text"] {
        padding: 0 90px 0 10px;
        width: 100%;
        height: 36px;
        border-radius: 4px;
    }

.search-bar--button {
    display: block;
    margin: 0;
    padding: 0 15px;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
    background-color: transparent;
    line-height: 34px;
}

.search-bar--button-advanced {
    right: 45px;
    color: #6c757d;
}

.search-bar--button-advanced:hover,
.search-bar--button-advanced:focus {
    color: #343a40;
}

.search-result-title {
    font-weight: 600;
}

.search-result-sections-title {
    margin-top: 4px;
    font-size: 0.875rem;
    color: #6c757d;
}

.search-result-sections {
    margin: 4px 0 0;
    padding-left: 18px;
    font-size: 0.875rem;
}

.search-result-sections li {
    margin-bottom: 2px;
}

.search-result-sections-note {
    margin-top: 4px;
    font-size: 0.75rem;
    color: #6c757d;
}

.role-section-detail {
    padding: 16px 20px;
    background-color: #f8fbff;
    border-left: 4px solid #1f6feb;
    border-radius: 0 6px 6px 0;
    box-shadow: inset 0 1px 0 rgba(31, 111, 235, 0.1);
}

.search-result-sections-empty {
    padding: 16px 20px;
    font-size: 0.875rem;
    color: #6c757d;
}

.role-section-detail-cell {
    background: transparent !important;
}

.k-grid .k-hierarchy-cell {
    width: 42px;
    padding-left: 8px;
}

.k-grid .k-hierarchy-cell a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.k-grid .k-hierarchy-cell a:hover,
.k-grid .k-hierarchy-cell a:focus {
    text-decoration: none;
    outline: none;
}

.k-grid .k-hierarchy-cell .k-icon {
    color: #1f6feb;
    font-size: 16px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.k-grid .k-hierarchy-cell a:hover .k-icon,
.k-grid .k-hierarchy-cell a:focus .k-icon {
    color: #0d47a1;
}

.search-bar-advanced {
    position: absolute;
    top: 44px;
    right: 0;
    width: 260px;
    padding: 12px;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    z-index: 1050;
}

.search-bar-advanced--label {
    font-size: 0.875rem;
    font-weight: 600;
}


/* Search Term  - Navigation */

.btn-group-m-search-highlight-nav {
    position: fixed;
    bottom: 30px;
    right: 68px;
    background-color: #34495E;
    border-radius: 4px;
}

    .btn-group-m-search-highlight-nav .btn-m-pseudo {
    }

        .btn-group-m-search-highlight-nav .btn-m-pseudo:hover,
        .btn-group-m-search-highlight-nav .btn-m-pseudo:focus,
        .btn-group-m-search-highlight-nav .btn-m-pseudo:active {
            background-color: #34495E !important;
            border-color: #34495E !important;
            outline: none;
            box-shadow: none !important;
            text-decoration: none;
        }


/* Search Term  - Highlight */

.searched-text-highlight {
    background: #F1C40F;
}

.current-highlight {
    background: #C0392B;
    color: #FFF;
}


/* Section View */

.section-view {
    border-radius: 4px;
    border: 1px solid #DFDFDF;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #FFF;
}

    .section-view:last-child {
        margin-bottom: 15px;
    }

.section-view-m-with-end-action-button {
    padding-bottom: 0;
}

.section-view dl,
.section-view dt,
.section-view dd {
    box-sizing: border-box;
}

.section-view dt {
    margin-bottom: 3px;
}

.section-view dd {
    margin-bottom: 15px;
}

.section-view td {
    border-left-color: #FFF;
    border-right-color: #FFF;
}


/* Table */

.table-wrapper {
    width: 100%;
    border: 1px solid #DFDFDF;
    border-radius: 4px;
    overflow-x: auto;
}

    .table-wrapper table {
        border: 0;
    }

    .table-wrapper th:first-child,
    .table-wrapper td:first-child {
        border-left: 0;
    }

    .table-wrapper tbody tr:last-child th,
    .table-wrapper tbody tr:last-child td {
        border-bottom: 0;
    }

.table-wrapper-m-with-background {
    background-color: #FFF;
}


/* Table - Index List */

.table-wrapper-m-index-list {
    background-color: #FFF;
}

    .table-wrapper-m-index-list thead {
        display: none;
    }

    .table-wrapper-m-index-list tbody td {
        display: block;
        padding: 10px 20px;
        border-bottom-width: 0;
        border-left-color: #FFF;
        border-right-color: #FFF;
        font-size: 20px;
        font-weight: 400;
    }

@media (min-width: 992px) {
    .table-wrapper-m-index-list tbody td {
        display: table-cell;
        padding: 15px 20px;
        border-bottom-width: 1px;
        font-size: 24px;
    }
}

.table-wrapper-m-index-list tbody td:last-child {
    padding-top: 0;
    border-bottom-width: 1px;
}

@media (min-width: 992px) {
    .table-wrapper-m-index-list tbody td:last-child {
        padding-top: 10px;
        text-align: right;
    }
}


/* Text */

.text-prominent {
    display: block;
    margin: 15px 0;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
}

.text-hidden {
    opacity: 0.4;
}

/* Image Radio button */
/* HIDE RADIO */
.algim-logo-option {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* IMAGE STYLES */
.algim-logo-option + img {
    cursor: pointer;
    width: 120px;
}

/* CHECKED STYLES */
    .algim-logo-option:checked + img {
        outline: 2px solid #ED4683;
    }


/* -----------------------------------------------------------------------------------------------
/* 5. 3RD PARTY COMPONENTS
/* ----------------------------------------------------------------------------------------------- */

/* Bootstrap - Alert */

.alert-warning {
    background-color: #F1C40F;
    border-color: #F1C40F;
}

.alert-danger {
    background-color: #E74C3C;
    border-color: #E74C3C;
    color: #FFF;
}

.alert-success {
    background-color: #2ECC71;
    border-color: #2ECC71;
    color: #FFF;
}

    .alert-danger .close,
    .alert-success .close {
        color: #FFF;
        text-shadow: 0 1px 0 #000;
    }


/* Bootstrap - Breadcrumb */

.breadcrumb {
    margin-bottom: 1rem;
    padding: 0;
    background: transparent;
}

.breadcrumb-item {
    margin-bottom: 5px;
    font-size: 12px;
}

    .breadcrumb-item.active {
        color: #2c3e50;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: #2c3e50;
        font: normal normal normal 12px/1 "Font Awesome 5 Pro";
        font-weight: 900; /* NOTE: Necessary to be separated for IE11 rendering */
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f0da";
    }


/* Bootstrap - Button */

.btn {
    padding: 0 10px;
    height: 36px;
    line-height: 34px;
}

    .btn:hover {
        text-decoration: none !important;
    }

    .btn.disabled,
    .btn:disabled {
        background-color: #BDC3C7 !important;
        border-color: #BDC3C7 !important;
        outline: none;
        box-shadow: none !important;
        text-decoration: none;
    }

    .btn .fa,
    .btn .far,
    .btn .fas,
    .btn .fal {
        margin-right: 5px;
    }

.btn-primary,
.k-button.k-primary {
    background-color: #3498DB;
    border-color: #3498DB;
}

    .btn-primary:hover,
    .k-button.k-primary:hover {
        background-color: #2980B9;
        border-color: #2980B9;
    }

.btn-secondary {
    background-color: #34495E;
    border-color: #34495E;
}

    .btn-secondary:hover {
        background-color: #2C3E50;
        border-color: #2C3E50;
    }

.btn-success {
    background-color: #2ECC71;
    border-color: #2ECC71;
}

    .btn-success:hover {
        background-color: #27AE60;
        border-color: #27AE60;
    }

.btn-danger {
    background-color: #E74C3C;
    border-color: #E74C3C;
}

    .btn-danger:hover {
        background-color: #C0392B;
        border-color: #C0392B;
    }


/* Bootstrap - Button - Icon Only */

.btn-m-icon-only {
}

    .btn-m-icon-only .fa,
    .btn-m-icon-only .far,
    .btn-m-icon-only .fas,
    .btn-m-icon-only .fal {
        margin-right: 0;
        line-height: 34px;
    }


/* Bootstrap - Button - Outline */

.btn-outline-primary {
    color: #3498DB !important;
    border-color: #3498DB;
}

    .btn-outline-primary:hover {
        color: #FFF !important;
        background-color: #2980B9;
        border-color: #2980B9;
    }

.btn-outline-secondary {
    color: #34495E !important;
    border-color: #34495E;
}

    .btn-outline-secondary:hover {
        color: #FFF !important;
        background-color: #2C3E50;
        border-color: #2C3E50;
    }

.btn-outline-success {
    color: #2ECC71 !important;
    border-color: #2ECC71;
}

    .btn-outline-success:hover {
        color: #FFF !important;
        background-color: #27AE60;
        border-color: #27AE60;
    }

.btn-outline-danger {
    color: #E74C3C !important;
    border-color: #E74C3C;
}

    .btn-outline-danger:hover {
        color: #FFF !important;
        background-color: #C0392B;
        border-color: #C0392B;
    }


/* Bootstrap - Button - Link */

.btn-link {
    padding-left: 0;
    padding-right: 0;
    color: #3498DB !important;
}

    .btn-link:hover {
        color: #2980B9 !important;
        text-decoration: underline !important;
    }

    .btn-link.text-primary {
        color: #3498DB !important;
    }

    .btn-link:hover.text-primary {
        color: #2980B9 !important;
    }


    .btn-link.text-secondary {
        color: #34495E !important;
    }

    .btn-link:hover.text-secondary {
        color: #2C3E50 !important;
    }

    .btn-link.text-success {
        color: #2ECC71 !important;
    }

    .btn-link:hover.text-success {
        color: #27AE60 !important;
    }

    .btn-link.text-danger {
        color: #E74C3C !important;
    }

    .btn-link:hover.text-danger {
        color: #C0392B !important;
    }


/* Bootstrap - Checkbox */

.form-check {
}

    .form-check-label {
        margin-top: 0;
        font-weight: 400;
    }



/* Bootstrap - Container */

.container {
}

    @media (min-width: 1730px) {
        .container {
            max-width: 1670px;
        }
    }

.container-m-content {
    padding-bottom: 60px;
}


/* Bootstrap - Card - Featured */

.card-m-featured {
    margin-bottom: 30px;
    height: 315px;
}

    .card-m-featured .card-body {
        position: relative;
        padding: 50px 15px 15px;
    }

@media (min-width: 576px) {
    .card-m-featured .card-body {
        padding: 50px 20px 20px;
    }
}

.card-m-featured .card-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
}

.card-m-featured--icon-wrapper {
    position: relative;
    height: 70px;
    flex-shrink: 0;
    border-bottom: 1px solid #dcdfe1;
}

.card-m-featured--icon {
    position: absolute;
    top : 30px;
    left: 15px;
    width: 80px;
    height: 80px;
    background-color: #e9ecef;
    border-radius: 50%;
    text-align: center;
    color: #FFF;
}

@media (min-width: 576px) {
    .card-m-featured--icon {
        left: 20px;
    }
}

.card-m-featured--icon .fas {
    line-height: 80px;
}

.card-m-featured--cta {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

@media (min-width: 576px) {
    .card-m-featured--cta {
        right: 20px;
        bottom: 20px;
    }
}

.card-m-featured--cta a {
    color: #3498DB;
}


/* Bootstrap - Card - Widget */

.card-m-widget {
    height: auto;
}

@media (min-width: 768px) {
    .card-m-widget {
        height: 372px;
    }
}

.card-m-widget .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-m-widget .card-title {
    font-weight: 400;
    font-size: 1.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .card-m-widget .card-title {
        height: 67px;
        overflow: hidden;
    }
}

.card-m-widget .card-text {
    margin-top: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .card-m-widget .card-text {
        margin-top: 0;
        height: 192px;
        overflow-y: auto;
    }
}

.card-m-wigdet--cta {
}


/* Bootstrap - Jumbotron */

.jumbotron {
    min-height: 350px;
    border-radius: 0;
    background-color: #7F8C8D;
}

    .jumbotron > .container {
        padding-left: 0;
        padding-right: 0;
    }

@media (min-width: 992px) {
    .jumbotron > .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.jumbotron .heading-hero {
    margin-top: 90px;
}

.jumbotron-m-home {
    margin-bottom: -71px;
}


/* Bootstrap - Modal Box */

.modal {
    color: #212529;
}

.modal-body {
    max-height: 400px;
    overflow: auto;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 1000px;
        margin: 1.75rem auto;
    }
}

.update-spinner {
    width: 1rem;
    height: 1rem;
    margin-left: 10px;
}

/* Bootstrap - Navigation Tabs */
.nav-tabs {
    border-bottom-color: #2c3e50;
}

    .nav-tabs .nav-link {
        border: 0;
        border-bottom: 3px solid transparent;
        color: #2c3e50;
        font-weight: 400;
        text-transform: uppercase;
    }

        .nav-tabs .nav-link:hover {
            color: #ED4683;
            border-bottom-color: transparent;
        }

        .nav-tabs .nav-link.active {
            color: #ED4683;
            background-color: transparent;
            border-bottom-color: #ED4683;
        }


/* Bootstrap - Text */

.text-primary {
    color: #3498DB;
}

.text-secondary {
    color: #34495E;
}

.text-success {
    color: #2ECC71;
}

.text-danger {
    color: #E74C3C;
}

/* Bootstrap - Toast */

.toast-container {
    position: absolute;
    z-index: 9999;
    top: 20px;
    right: 10px;
}

.toast {
    border-radius: 0.25rem;
}

.toast-success {
    color: #fff;
    background-color: #28a745;
}

    .toast-success .toast-header {
        color: #fff;
        background-color: #28a745;
    }

.toast-error {
    color: #fff;
    background-color: #dc3545;
}

    .toast-error .toast-header {
        color: #fff;
        background-color: #dc3545;
    }


/* Kendo UI - Button */

.k-button {
    padding: 0 10px;
    height: 36px;
    line-height: 36px;
    font-family: inherit;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .k-button:focus {
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
    }

.k-button-icontext {
}

    .k-button-icontext .k-icon,
    .k-button-icontext .fa,
    .k-button-icontext .far,
    .k-button-icontext .fas {
        margin: 0 7px 0 0;
    }


/* Kendo UI - Calendar */
.k-calendar {
}

    .k-calendar .k-month .k-link,
    .k-calendar .k-calendar-monthview .k-link {
        width: 38px;
        height: 38px;
    }

    .k-calendar .k-state-selected .k-link {
        border-color: #3498DB;
        background-color: #3498DB;
    }

    .k-calendar .k-state-selected:hover .k-link,
    .k-calendar .k-state-selected.k-state-hover .k-link {
        border-color: #2980B9;
        background-color: #2980B9;
        box-shadow: inset 0 0 0 2px #2980B9;
    }

    .k-calendar .k-calendar-header .k-today,
    .k-calendar .k-footer .k-nav-today {
        color: #3498DB;
    }

        .k-calendar .k-calendar-header .k-today:hover,
        .k-calendar .k-calendar-header .k-today:focus,
        .k-calendar .k-footer .k-nav-today:hover,
        .k-calendar .k-footer .k-nav-today:focus {
            color: #2980B9;
        }

    .k-calendar .k-content .k-today .k-link,
    .k-calendar .k-calendar-content .k-today .k-link {
        box-shadow: inset 0 0 0 1px #3498DB;
    }


/* Kendo UI - Date Picker */

.k-datepicker {
    border-radius: 4px;
}

    .k-datepicker .k-picker-wrap {
        border-radius: 4px;
    }

    .k-datepicker .k-input,
    .k-datepicker input[type="text"] {
        padding: 0 46px 0 10px;
        border: 0;
        text-indent: 0;
    }

    .k-datepicker .k-select {
        position: absolute;
        top: 0;
        right: 0;
        border-radius: 0;
        border-left: 0;
        line-height: normal;
        width: 36px;
        height: 100%;
        background-color: transparent;
        color: #7F8C8D;
    }

    .k-datepicker .k-picker-wrap:hover .k-select,
    .k-datepicker .k-picker-wrap.k-state-hover .k-select,
    .k-datepicker .k-picker-wrap.k-state-focus .k-select,
    .k-datepicker .k-picker-wrap.k-state-active .k-select {
        color: #7F8C8D;
        background-color: #ECF0F1 !important;
    }

.k-i-calendar:before {
    font: normal normal normal 16px/1 "Font Awesome 5 Pro";
    font-weight: 500; /* NOTE: Necessary to be separated for IE11 rendering */
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f073"; /* Calendar Alt Pro */
}


/* Kendo UI - Dropdown */

.k-dropdown {
    display: inline-block;
    width: 246px;
    font-family: inherit;
}

    .k-dropdown .k-dropdown-wrap,
    .k-dropdown .k-dropdown-wrap.k-state-hover,
    .k-dropdown .k-dropdown-wrap.k-state-focused {
        border-color: #ced4da;
        background-color: #FFF;
    }

        .k-dropdown .k-dropdown-wrap.k-state-focused {
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
        }

        .k-dropdown .k-dropdown-wrap .k-select {
            width: 26px;
        }

    .k-dropdown .k-i-arrow-60-down:before {
        font: normal normal normal 16px/36px "Font Awesome 5 Pro";
        font-weight: 900; /* NOTE: Necessary to be separated for IE11 rendering */
        text-rendering: auto;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f107";
    }

    .k-dropdown .k-input {
        display: block;
        padding: 0 10px;
        max-width: calc(100% - 20px);
        height: 34px;
        line-height: 34px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


/* Kendo UI - ComboBox */

.k-combobox {
    display: inline-block;
    width: 246px;
    font-family: inherit;
}

    .k-combobox .k-dropdown-wrap,
    .k-combobox .k-dropdown-wrap.k-state-hover,
    .k-combobox .k-dropdown-wrap.k-state-focused {
        border-color: #ced4da;
        background-color: #FFF;
    }

        .k-combobox .k-dropdown-wrap.k-state-focused {
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
        }

        .k-combobox .k-dropdown-wrap .k-select {
            width: 26px;
        }

    .k-combobox .k-i-arrow-60-down:before {
        font: normal normal normal 16px/36px "Font Awesome 5 Pro";
        font-weight: 900; /* NOTE: Necessary to be separated for IE11 rendering */
        text-rendering: auto;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f107";
    }

    .k-combobox .k-input {
        display: block;
        padding: 0 10px;
        max-width: calc(100% - 20px);
        height: 34px;
        line-height: 34px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


/* Kendo UI - Editor */

.k-editor-wrapper {
}

.k-editor {
    border-radius: 4px;
    overflow: hidden;
}

    .k-editor td.k-editor-toolbar-wrap {
        padding: 0;
        border-left-width: 0;
        border-right-width: 0;
        border-bottom-width: 0;
    }

    .k-editor .k-toolbar {
        padding: 10px;
    }

    .k-editor .k-dropdown .k-input {
    }

@media (min-width: 992px) {
    .k-editor .k-dropdown .k-input {
        line-height: 31px;
    }
}


/* Kendo UI - Filter Menu */

.k-filter-menu {
    max-width: 280px;
}

    .k-filter-menu .k-textbox {
        position: relative;
        margin: 0 0 15px;
        height: 36px;
    }

        .k-filter-menu .k-textbox > input {
            height: 34px;
            line-height: 34px;
        }

        .k-filter-menu .k-textbox .k-i-zoom {
            position: absolute;
            top: 0;
            left: auto;
            right: 10px;
            margin: 0;
            height: 34px;
            line-height: 34px;
        }

            .k-filter-menu .k-textbox .k-i-zoom:before,
            .k-list-filter > .k-i-zoom:before {
                font: normal normal normal 16px/36px "Font Awesome 5 Pro";
                font-weight: 900; /* NOTE: Necessary to be separated for IE11 rendering */
                text-rendering: auto;
                text-align: center;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                content: "\f002";
            }

    .k-filter-menu label {
        margin: 0 0 5px 0;
        font-weight: 400;
    }

    .k-filter-menu .k-multicheck-wrap {
        max-width: 280px;
    }

        .k-filter-menu .k-multicheck-wrap .k-label {
            display: block;
            position: relative;
            padding-left: 20px;
            max-width: 100%;
            font-size: 14px;
            white-space: pre-wrap;
        }

        .k-filter-menu .k-multicheck-wrap input[type="checkbox"] {
            position: absolute;
            top: 4px;
            left: 0;
        }

    .k-filter-menu .k-action-buttons {
        margin-top: 0;
    }

        .k-filter-menu .k-action-buttons .k-button {
            background-color: #3498DB;
            border-color: #3498DB;
            color: #FFF;
        }

            .k-filter-menu .k-action-buttons .k-button:hover {
                background-color: #2980B9;
                border-color: #2980B9;
            }


/* Kendo UI - Form Elements */

.k-input {
    height: 36px;
}

.k-textbox {
    border-radius: 4px;
    font: inherit;
    overflow: hidden;
}

    .k-textbox > input,
    .k-textbox > .k-input {
        border-width: 0;
        text-indent: 0;
        padding: 0 10px;
    }

    .k-textbox.k-state-focused {
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
    }

.k-textarea {
    font: inherit;
}

    .k-textarea .k-input {
        padding: 5px 10px;
    }

.k-textbox.k-invalid,
.k-textbox.k-state-invalid,
.k-textbox.ng-invalid.ng-touched,
.k-textbox.ng-invalid.ng-dirty {
    border-color: #C0392B;
}

.k-form-error,
.k-text-error,
.k-form-field-error {
    color: #C0392B;
}


/* Kendo UI - Grid */

.k-grid {
    overflow: hidden;
    border-radius: 4px;
    font: inherit;
}

    .k-grid td {
        border-left-color: #FFF;
        border-right-color: #FFF;
    }

    .k-grid tr:hover td {
        background-color: #FFF;
    }

    .k-grid td a {
        color: #3498DB;
    }

        .k-grid td a:hover {
            text-decoration: underline;
        }

    .k-grid th {
        background-color: #F8F9FA;
        font-weight: 500;
    }

    .k-grid tbody td {
        border-bottom-width: 1px;
        word-break: break-word;
        word-wrap: break-word;
    }

    .k-grid tbody tr:last-child td {
        border-bottom-width: 0;
    }

    .k-grid tbody tr:hover > td {
        background-color: #DFDFDF;
        border-left-color: #DFDFDF;
        border-right-color: #DFDFDF;
    }

    .k-grid tr.k-state-selected > td {
        border-left-color: #BFDEFF;
        border-right-color: #BFDEFF;
    }

    .k-grid .k-alt {
        background-color: #FFF;
    }

.k-grid--button-group {
    text-align: right;
}

    .k-grid--button-group .btn {
        text-align: center;
    }

        .k-grid--button-group .btn + .btn {
            margin-left: 15px;
        }

.k-grid .k-button {
    margin: 5px 10px 5px 0;
    height: 36px;
    line-height: 34px;
}

    .k-grid .k-button:hover {
        text-decoration: none;
    }

.k-grid .k-command-cell .k-button {
    display: inline-block;
}

.k-grid .k-grid-edit {
    border-color: #3498DB;
    background-color: transparent;
    color: #3498DB;
}

    .k-grid .k-grid-edit:hover {
        background-color: #3498DB;
        color: #FFF;
    }

    .k-grid .k-grid-custom-delete,
    .k-grid .k-grid-delete,
    .k-grid .k-grid-cancel {
        border-color: #E74C3C;
        background-color: transparent;
        color: #E74C3C;
    }

        .k-grid .k-grid-custom-delete:hover,
        .k-grid .k-grid-delete:hover,
        .k-grid .k-grid-cancel:hover {
            background-color: #E74C3C;
            color: #FFF;
        }

    .k-grid .k-grid-update {
        border-color: #3498DB;
        background-color: #3498DB;
        color: #FFF;
    }

        .k-grid .k-grid-update:hover {
            border-color: #2980B9;
            background-color: #2980B9;
        }

    .k-grid .k-pager-wrap {
        padding: 10px;
        font: inherit;
        background-color: #F8F9FA;
    }

        .k-grid .k-pager-wrap .k-pager-numbers-wrap {
            top: -1px;
        }

            @media (min-width: 576px) {
                .k-grid .k-pager-wrap .k-pager-numbers-wrap {
                    top: 0;
                }
            }

        .k-grid .k-pager-wrap .k-pager-numbers-wrap:after {
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 0;
            width: 36px;
            height: 36px;
            color: #3498DB;
            font: normal normal normal 16px/36px "Font Awesome 5 Pro";
            font-weight: 900; /* NOTE: Necessary to be separated for IE11 rendering */
            text-rendering: auto;
            text-align: center;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "\f107";
        }

        @media (min-width: 576px) {
            .k-grid .k-pager-wrap .k-pager-numbers-wrap:after {
                display: none;
            }
        }

    .k-grid .k-pager-wrap select.k-dropdown {
        position: relative;
        z-index: 1;
        color: #3498DB;
        border-color: #3498DB;
        background: transparent;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }

        .k-grid .k-pager-wrap select.k-dropdown:focus {
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
        }

    .k-grid .k-pager-numbers .k-link,
    .k-grid .k-pager-nav.k-link {
        border-color: #3498DB;
        background-color: transparent;
        color: #3498DB;
    }

        .k-grid .k-pager-numbers .k-link.k-state-selected {
            background-color: #3498DB;
            color: #FFF;
        }

.k-grid-norecords {
    padding: 0.75rem;
}

.k-grid-header .k-grid-filter.k-state-active,
.k-grid-header .k-header-column-menu.k-state-active,
.k-grid-header .k-hierarchy-cell .k-icon.k-state-active {
    background-color: #3498DB;
}

/* Kendo UI - Grid - Sticky */

.k-grid-header .k-grid-header-sticky, 
.k-grid-header .k-grid-header-sticky.k-sorted {
    border-right-color: #DFDFDF;
    border-left-color: #DFDFDF;
}

.k-master-row .k-grid-content-sticky {
    border-color: #FFF;
    border-bottom-color: #DFDFDF;
}

.k-master-row.k-alt .k-grid-content-sticky, 
.k-master-row.k-alt .k-grid-row-sticky {
    background-color: #FFF;
}

.k-master-row:hover .k-grid-content-sticky,
.k-master-row:hover .k-grid-row-sticky,
.k-master-row.k-state-hover .k-grid-content-sticky,
.k-master-row.k-state-hover .k-grid-row-sticky {
    background-color: #DFDFDF;
    border-bottom-color: #c7c7c8;
}


/* Kendo UI - Grid - Mod - Index List */
.k-grid-m-index-list {
}

    .k-grid-m-index-list colgroup {
        display: none;
    }

@media (min-width: 992px) {
    .k-grid-m-index-list colgroup {
        display: block;
    }
}

.k-grid-m-index-list tbody tr:hover {
    background: transparent;
}

.k-grid-m-index-list tr td {
    display: block;
    padding: 10px 20px;
    border-left: 0;
    border-right: 0;
    border-bottom-width: 0;
    font-size: 20px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .k-grid-m-index-list tr td {
        display: table-cell;
        padding: 15px 20px;
        border-bottom-width: 1px;
        font-size: 24px;
    }
}

.k-grid-m-index-list tr td:last-child {
    padding-top: 0;
    border-bottom-width: 1px;
}

@media (min-width: 992px) {
    .k-grid-m-index-list tr td:last-child {
        padding-top: 10px;
    }
}

.k-grid-m-index-list .k-grid-header {
    display: none;
}

.k-grid-m-index-list .k-grid--button-group {
    text-align: left;
    min-width: 200px;
}

@media (min-width: 992px) {
    .k-grid-m-index-list .k-grid--button-group {
        text-align: right;
    }
}

.k-grid-m-index-list .k-grid-norecords {
    padding: 15px 20px;
}


/* Kendo UI - Grid - Mod - Wide */

.k-grid-m-wide { /* NOTE: This class is used in JS setup for grid */
    position: relative;
    overflow-x: auto; /* NOTE: Somehow this cause a z-index problem when a dialog box is active on IE 11 */
    -webkit-transform: translate3d(0, 0, 0); /* NOTE: For Mac OS scrollbar z-index problem */
}

.k-ie11 .s-body-locked .k-grid-m-wide {
    overflow-x: visible; /* NOTE: Fix for IE11 z-index problem when a dialog box is active */
}

.k-grid-m-wide .k-grid-top,
.k-grid-m-wide .k-pager-wrap {
    position: relative;
}


/* Kendo UI - List (Dropdown List) */

.k-list {
}

    .k-list .k-item,
    .k-list-optionlabel {
        padding: 3px 14px;
        font: inherit;
    }

        .k-list .k-item.k-state-selected,
        .k-list-optionlabel.k-state-selected {
            background-color: #3498DB;
        }

.k-list-container {
    font-family: inherit !important;
}


/* Kendo UI - List View */

.k-listview {
    font: inherit;
}

.kendo-list-view {
}

.kendo-list-view-m-section .k-listview {
    border: 0;
    background: transparent;
}

.kendo-list-view-m-section .k-pager-wrap {
    border: 0;
    padding: 0;
    background: transparent;
}

.kendo-list-view-m-section .k-pager-first {
    padding-left: 0;
}

.kendo-list-view-m-section .k-pager-info {
    margin-right: 0;
}

.k-edit-item .k-textbox {
    width: 100%;
}

.k-edit-item .k-textarea {
    width: 100%;
    height: 180px;
}


/* Kendo UI - Multi Select */

.k-multiselect {
    font-family: inherit;
}

    .k-multiselect .k-multiselect-wrap {
        padding-top: 2px;
        padding-left: 5px;
        padding-bottom: 2px;
    }

        .k-multiselect .k-multiselect-wrap .k-button {
            padding-left: 10px;
            padding-right: 5px;
            line-height: 1.5;
            font-size: 14px;
        }

        .k-multiselect .k-multiselect-wrap .k-clear-value {
            top: 0.6rem;
        }


/* Kendo UI - Tabstrip */

.k-tabstrip-top {
}

    .k-tabstrip-top > .k-tabstrip-items {
        flex-wrap: wrap;
        border-color: #2c3e50;
    }

        .k-tabstrip-top > .k-tabstrip-items .k-item {
            box-sizing: border-box;
            flex-grow: 1;
            flex-shrink: 1;
            flex-basis: auto;
            margin-bottom: -1px;
            border: 0;
            color: #2c3e50;
            text-align: center;
            font-weight: 400;
        }

    .k-tabstrip-top .k-item.k-state-active {
        background-color: transparent;
        color: #ED4683;
    }


    .k-tabstrip-top > .k-tabstrip-items .k-link {
        display: inline-block;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: auto;
        border-bottom: 3px solid transparent;
        text-align: center;
        text-transform: uppercase;
    }

    .k-tabstrip-top .k-item.k-state-active .k-link {
        border-bottom-color: #ED4683;
    }

    .k-tabstrip-top > .k-content {
        padding: 30px 0;
        border: 0;
        border-radius: 0;
        background-color: transparent;
        color: #2c3e50;
    }


.s-k-tabstrip-top-no-nav {
}

    .s-k-tabstrip-top-no-nav .k-tabstrip-items {
        display: none;
    }

    .s-k-tabstrip-top-no-nav > .k-content {
        padding-top: 0;
    }


/* Kendo UI - Numeric Textbox */

.k-numerictextbox {
    display: inline-block;
    width: 246px;
    font-family: inherit;
}

    .k-numerictextbox .k-numeric-wrap {
    }

        .k-numerictextbox .k-numeric-wrap input[type="text"] {
            border: 0;
            box-shadow: none;
            height: 34px;
            line-height: 34px;
        }

            .k-numerictextbox .k-numeric-wrap input[type="text"]:focus {
                box-shadow: none !important;
            }

        .k-numerictextbox .k-numeric-wrap .k-select,
        .k-numerictextbox .k-numeric-wrap.k-state-hover .k-select,
        .k-numerictextbox .k-numeric-wrap .k-select > .k-state-selected {
            background-color: transparent;
        }


/* Kendo UI - Tooltip */

.k-tooltip {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
}

    .k-tooltip.field-validation-error {
        color: #FFF;
    }


/* Kendo UI - Window (Modal Box) */

.k-window {
    max-width: calc(100% - 30px);
}

    .k-window .k-window-titlebar .k-button {
        line-height: 19px;
    }

        .k-window .k-window-titlebar .k-button:before {
            display: none;
        }

.k-window-title {
    font-family: Roboto, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.k-window .k-button {
    display: inline-block;
    line-height: 34px;
}

.k-window .k-edit-form-container {
    min-width: 260px;
}

.k-window .k-edit-label {
    display: block;
    float: none;
    padding: 0;
    width: 100%;
    text-align: left;
}

    .k-window .k-edit-label label {
        margin: 0;
        font-weight: 400;
    }

.k-window .k-edit-field {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
}

.k-window .k-checkbox-label {
    font-weight: 400;
}

.k-window .k-viewhtml-dialog {
    padding: 16px 0;
}

    .k-window .k-viewhtml-dialog textarea {
        width: calc(100% - 32px);
        margin: 0 16px;
        max-height: 300px;
    }

    .k-window .k-viewhtml-dialog .k-edit-buttons {
        margin-top: 15px;
        padding: 16px;
    }

.k-window .k-edit-buttons .k-dialog-close {
    border-color: #3498DB;
    background-color: transparent;
    color: #3498DB;
}

    .k-window .k-edit-buttons .k-dialog-close:hover {
        border-color: #2980B9;
        background-color: #2980B9;
        color: #FFF;
    }


/* -----------------------------------------------------------------------------------------------
/* 6. STATE & UTILITIES
/* ----------------------------------------------------------------------------------------------- */

.s-hidden {
    display: none;
}

.u-background-brand-yellow {
    background-color: #FFC510;
}

.u-background-brand-green {
    background-color: #43c3d6;
}

.u-background-brand-red {
    background-color: #ed4683;
}

.u-background-brand-purple {
    background-color: #7653a1;
}

.u-margin-top-8 {
    margin-top: 8px;
}

.u-margin-right-10 {
    margin-right: 10px;
}

.u-text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overflow_hidden {
    overflow: hidden;
}

@media print {
    .section-view {
        break-inside: avoid;
    }
}
