:root {
    --blue: #85b4f2;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #E04239;
    --orange: #f29232;
    --yellow: #FFD832;
    --light-yellow: #fffe7a;
    --green: #8cbe00;
    --light-green: #c0e260;
    --teal: #20c997;
    --cyan: #17a2b8;
    --violet: #796aee;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #212529;
    --primary: #f59619;
    --secondary: #34384b; /*rgba(29,29,29, 0.8);*/
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --light-blue: #29afad;
    --dark: #0b0b0b;
    --background-color: #515261;
}

@keyframes pulse {
    0% {
        opacity: 1;
        width: 7px;
        height: 7px;
        left: 0;
        top: 50%;
    }

    95% {
        opacity: 0.1;
        left: 10.5px;
        top: -10.5px;
        width: 28px;
        height: 28px;
    }

    100% {
        opacity: 0;
        width: 5px;
        height: 5px;
        left: 0;
        top: 100%;
    }
}

.scrollable {
    overflow-y: auto;
}

.dragscroll {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

    .dragscroll.grabbing {
        cursor: -webkit-grabbing;
        cursor: grabbing;
    }
/*  Firefox  */
/*  From version 64 - https://drafts.csswg.org/css-scrollbars-1/  */
* {
    scrollbar-width: thin;
    scrollbar-color: #677073 #1b1b1b;
}

/*  Chorme and Opera  */

/*   scrollbar width   */

::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
}

/*   scrollbar track color   */

::-webkit-scrollbar-track {
    background: #dddddd;
}

/*   scrollbar thumb   */

::-webkit-scrollbar-thumb {
    background: #677073;
}

    /*   scrollbar thumb hover   */

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--white);
}

.black
{
    color: var(--dark);

}

a, i, span {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

a {
    color: var(--primary);
    text-decoration: none;
    background-color: transparent;
}

    a:hover {
        color: var(--secondary);
        text-decoration: none;
    }

    a.terms:hover {
        color: var(--secondary);
        text-decoration: none;
    }

    a.text-muted {
        cursor: not-allowed;
    }

.no-padding-bottom {
    padding-bottom: 0 !important;
}

@media (min-width:1440px) {
    .col-xxl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.loader {
    background: var(--gray-dark) url(/App_Themes/ALC.Stylesheet/img/ajax-loader.gif) no-repeat 50% 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0.8;
}

.shine {
    background: #8cbe0033;
    background-image: linear-gradient(to right, #8cbe0033 0%, #8cbe0033 20%, #8cbe0033 40%, #8cbe0033 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    display: inline-block;
    position: relative;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: placeholderShimmer;
    -webkit-animation-timing-function: linear;
    width: 150px;
    height: 10px;
}

@-webkit-keyframes placeholderShimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

.container-fluid .container {
    padding: 0;
}

.hide {
    display: none !important;
}

.page {
    overflow-x: hidden;
    height: 100vh;
    position: relative;
}

.has-shadow {
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.1),-1px 0 2px rgba(0,0,0,0.05);
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1),-1px 0 2px rgba(0,0,0,0.05);
}

.required-mark, .FormErrorLabel {
    color: var(--danger);
}

.text-primary {
    color: var(--dark) !important;
}

/*   Background-color   */
.bg-primary {
    background: var(--primary) !important;
    color: var(--light);
}

.bg-yellow {
    background: var(--yellow) !important;
    color: var(--light);
}

.bg-light-yellow {
    background: var(--light-yellow) !important;
    color: var(--dark);
}

.bg-green {
    background: var(--green) !important;
    color: var(--light);
}

.bg-light-green {
    background: var(--light-green) !important;
    color: var(--dark);
}

.bg-violet {
    background: var(--violet) !important;
    color: var(--light);
}

.bg-gray {
    background: var(--gray) !important;
    color: var(--light);
}

.bg-white {
    background: var(--white) !important;
    color: var(--dark);
}

.bg-blue {
    background: #85b4f2 !important;
    color: var(--light);
}

.bg-orange {
    background: var(--orange) !important;
    color: var(--light);
}

.bg-red {
    background: var(--red) !important;
    color: var(--light);
}

.bg-light-blue {
    background: var(--light-blue) !important;
    color: var(--light);
}

.bg-black {
    background-color: var(--gray-dark) !important;
    color: var(--light);
}

.bg-edited {
    background: rgba(255, 206, 0, 0.3) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.text-light-blue {
    color: var(--light-blue) !important;
}

.text-red {
    color: var(--red) !important;
}

.text-yellow {
    color: var(--yellow) !important;
}

.text-violet {
    color: var(--violet) !important;
}

.text-green {
    color: var(--dark) !important;
}

.text-grey {
    color: var(--gray) !important;
}

.badge {
    font-weight: 500;
}

.badge-primary {
    color: var(--light);
    background-color: var(--primary);
}

.HiddenButton {
    display: none;
}

.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 4px;
    box-shadow: none;
    text-shadow: none;
    outline: none;
    /*color:var(--light) !important;*/
}

    .btn-primary:hover {
        color: var(--light);
        background-color: #12908E;
        border-color: #12908E;
    }

    .btn-primary.focus, .btn-primary:focus {
        box-shadow: 0 0 0 .2rem rgb(67,108,8);
    }

    .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 .2rem rgba(67,108,8,0.5);
    }

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: var(--light);
        background-color: var(--light-blue);
        border-color: #0000c1;
    }

.btn-link {
    color: var(--primary);
}

    .btn-link:hover, .btn-link:focus {
        color: var(--green);
    }

.background-img {
    /*background-image: url("../img/Dark-Background.jpg");*/
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-color: var(--secondary);
}

/*  table  */

.table {
    font-size: 14px;
    color: var(--dark);
    background-color: var(--light);
    margin-bottom: 0;
}

    .table td, .table th {
        padding: .75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
        text-align: center;
    }

    .table thead th, .table .thead-header {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
        background-color: var(--primary) !important;
        font-weight: bold;
        vertical-align: middle;
    }

        .table thead th:first-of-type, .table .thead-header td:first-of-type, .table .thead-header th:first-of-type {
            border-radius: 5px 0px 0px 0px;
        }

        .table thead th:last-of-type, .table .thead-header td:last-of-type, .table .thead-header th:last-of-type {
            border-radius: 0px 5px 0px 0px;
        }

    .table tbody + tbody {
        border-top: 2px solid #dee2e6;
    }

.table-sm td, .table-sm th {
    padding: .3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

    .table-bordered td, .table-bordered th {
        border: 1px solid #dee2e6;
    }

    .table-bordered thead td, .table-bordered thead th {
        border-bottom-width: 2px;
    }

.table-borderless tbody + tbody, .table-borderless td, .table-borderless th, .table-borderless thead th {
    border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

.table-hover tbody tr:hover {
    color: var(--dark);
    background-color: rgba(0,0,0,.075);
}

.table-responsive > .table-bordered, .table-responsive > div > .table-bordered {
    border: 0;
    border-radius: 5px 5px 5px 5px;
}

.table td a {
    color: var(--info);
}

    .table td a:hover {
        color: var(--dark);
    }

    .table td a[data-toggle=tooltip] {
        color: var(--dark);
    }

.table td .completed {
    vertical-align: text-top;
    color: var(--green);
}

.contest-winner i {
    color: var(--yellow);
    font-size: 20px;
}

.table .form-control-edit{
    width: 150px;
}

.table td input[type='checkbox'], .table th input[type='checkbox'] {
    /*-webkit-appearance: none;*/
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 5px;
    border: 2px solid #555;
}
/*.table td input {
  width: 150px;
}*/
/*  Button Switch  */
.button-switch {
    font-size: 1em;
    height: 25px;
    position: relative;
    width: 62px;
    margin-left: 5px;
}

    .button-switch .switch-off, .button-switch .switch-on {
        cursor: pointer;
        display: block;
        font-size: 0.75em;
        font-weight: bold;
        line-height: 25px;
        position: absolute;
        transition: opacity 0.25s ease-out 0.1s;
        text-transform: uppercase;
        color: var(--light);
    }

    .button-switch .switch-off {
        right: 7px;
    }

    .button-switch .switch-on {
        opacity: 0;
        left: 7px;
    }

    .button-switch .switch {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        height: 0;
        font-size: 1em;
        left: 0;
        line-height: 0;
        outline: none;
        position: absolute;
        top: 0;
        width: 0;
    }

        .button-switch .switch:before, .button-switch .switch:after {
            content: '';
            font-size: 1em;
            position: absolute;
        }

        .button-switch .switch:before {
            border-radius: 1.25em;
            background: var(--primary);
            height: 25px;
            left: 0;
            top: 0;
            transition: background-color 0.25s ease-out 0.1s;
            width: 60px;
        }

        .button-switch .switch:after {
            box-shadow: 0 0.0625em 0.375em 0 #666;
            border-radius: 50%;
            background: var(--light);
            height: 25px;
            transform: translate(0, 0);
            transition: transform 0.25s ease-out 0.1s;
            width: 25px;
        }

        .button-switch .switch:checked:after, .button-switch .switch:checked + label:after {
            transform: translate(35px, 0);
        }

        .button-switch .switch:checked ~ .lbl-off, .button-switch .switch:checked ~ .switch-off {
            opacity: 0;
        }

        .button-switch .switch:checked ~ .lbl-on, .button-switch .switch:checked ~ .switch-on {
            opacity: 1;
        }

        .button-switch .switch:checked, .button-switch .switch:checked + label:before {
            background: var(--primary);
        }

/*   Top navigation bar   */
.fixed-top {
    z-index: 998;
}

nav.navbar {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background: var(--white);
    color: #739b03;
}

    nav.navbar.fixed-top + div {
        margin-top: 41px;
    }

@media (min-width: 576px) {
    nav.navbar.fixed-top + div {
        margin-top: 59px;
    }
}

nav.navbar {
    font-size: 14px;
}

@media (min-width: 576px) {
    nav.navbar {
        font-size: inherit;
        height: 59px;
    }
}

nav.navbar-transparent {
    background-color: transparent;
}

nav.navbar .navbar-holder {
    width: 100%;
}

.navbar-toggler {
    padding: 0 .75rem;
    border-color: transparent !important;
}

@media (min-width: 576px) {
    .navbar-toggler {
        padding: .8rem .8rem;
    }
}


.navbar-toggler .navbar-toggler-icon-bar {
    width: 35px;
    height: 5px;
    background-color: var(--white);
    margin: 4px 0px;
    transition: 0.4s;
    border-radius: 0.25rem;
    transition: 0.4s;
}

@media (max-width: 1024px) {
    .navbar-toggler.active .navbar-toggler-icon-bar:nth-child(2) {
        -webkit-transform: rotate(-45deg) translate(-5px, 7px);
        transform: rotate(-45deg) translate(-5px, 7px);
    }

    .navbar-toggler.active .navbar-toggler-icon-bar:nth-child(3) {
        opacity: 0;
    }

    .navbar-toggler.active .navbar-toggler-icon-bar:last-child {
        -webkit-transform: rotate(45deg) translate(-6px, -8px);
        transform: rotate(45deg) translate(-6px, -8px);
    }
}

@media (min-width: 1025px) {

    /*.navbar-toggler .navbar-toggler-icon-bar {
        width: 25px;
        height: 2px;
        margin: 6px 0px;
        transition: 0.4s;
    }*/

    .navbar-toggler .navbar-toggler-icon-bar:nth-child(2) {
        -webkit-transform: rotate(-45deg) translate(-5px, 7px);
        transform: rotate(-45deg) translate(-5px, 7px);
    }

    .navbar-toggler .navbar-toggler-icon-bar:nth-child(3) {
        opacity: 0;
    }

    .navbar-toggler .navbar-toggler-icon-bar:last-child {
        -webkit-transform: rotate(45deg) translate(-6px, -8px);
        transform: rotate(45deg) translate(-6px, -8px);
    }

    .navbar-toggler.active .navbar-toggler-icon-bar {
        opacity: 100;
        -webkit-transform: none;
        transform: none;
    }
}


.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 576px) {
    .navbar-brand {
        padding-top: .20rem;
        padding-bottom: 0;
    }
}

.brand-logo {
    width: 120px;
}

@media (min-width: 576px) {
    .brand-logo {
        width: 200px;
    }
}

nav.navbar .nav-menu {
    margin-bottom: 0;
}

nav.navbar .dropdown-menu {
    right: 2.5vw;
    width: 90vw;
    left: 2.5vw;
    margin: 0 auto;
    padding: 15px 0;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.1),-2px 0 2px rgba(0,0,0,0.1);
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1),-2px 0 2px rgba(0,0,0,0.1);
    background-color: var(--white);
}

@media (min-width: 576px) {
    nav.navbar .dropdown-menu {
        right: 0;
        min-width: 250px;
        left: auto;
        margin-top: 10px;
        margin-bottom: 0;
        padding: 15px 0;
        max-width: 400px;
    }
}

nav.navbar .nav-item > a {
    font-size: 16px;
}

@media (min-width: 576px) {
    nav.navbar .nav-item > a {
        font-size: inherit;
    }
}

nav.navbar .nav-link {
    position: relative;
    color: var(--primary);
    cursor: pointer;
    padding: .5rem 0.5rem;
}

    nav.navbar .nav-link:hover {
        position: relative;
        color: #12908E;
        padding: .5rem 1rem;
    }

@media (min-width: 321px) {
    nav.navbar .nav-link {
        padding: .5rem 1rem;
    }

        nav.navbar .nav-link:hover {
            padding: .5rem 1rem;
        }
}

nav.navbar .dropdown {
    position: static;
}

@media (min-width: 576px) {
    nav.navbar .dropdown {
        position: relative;
    }
}

nav.navbar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 0.8rem;
    color: var(--dark);
    width: 100%;
}

    nav.navbar .dropdown-menu .dropdown-item:hover {
        background: rgba(30,162,184,0.5);
        color: var(--light);
    }

    nav.navbar .dropdown-menu .dropdown-item i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: var(--white);
        border-radius: 50%;
        margin-right: 10px;
    }

.notification {
    width: 100%;
}

    .notification .notification-content {
        width: 100%;
        height: 40px;
    }

        .notification .notification-content span {
            width: 90%;
        }

    .notification .indicator {
        height: 7px;
        width: 7px;
        background-color: #f00000;
        border-radius: 50%;
        display: inline-block;
        float: right;
    }

.notifications .badge, .messages .badge {
    width: 19px;
    height: 19px;
    line-height: 19px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
}

.notifications span.badge-corner, .messages span.badge-corner {
    position: absolute;
    top: 0;
    right: 5px;
    font-weight: 400;
    font-size: 0.65rem;
}

    .notifications span.badge-corner::before {
        background-color: #f00000;
        content: "";
        display: table;
        border-radius: 50%;
        position: absolute;
        animation-name: pulse;
        animation-duration: .9s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-out;
    }

nav.navbar .dropdown-menu .msg-profile {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}

nav.navbar .nav-menu .fa.fa-bell {
    font-size: 16px;
}

nav.navbar .nav-menu .fa.fa-gear {
    font-size: 19px;
}

.content {
    width: 100%;
}

/*   Login Form   */

.login-form {
    margin-bottom: 80px;
    background: transparent;
}

@media (min-width: 768px) {
    .login-form {
        min-height: calc(100vh - 105px);
        margin-bottom: 0;
    }
}

.login-form .login-background-cover {
}

.login-form form, .login-form .login-form-body {
    max-width: 280px;
    background-color: var(--light);
    padding: 40px;
    border-radius: 4px;
    color: var(--dark);
    box-shadow: 5px 5px 10px rgba(0,0,0,0.9);
    opacity: 0.90;
}

@media (min-width: 321px) {
    .login-form form, .login-form .login-form-body {
        max-width: 320px;
    }
}

.login-form form .btn-primary:active, .login-form .login-form-body .btn-primary:active {
    transform: translateY(1px);
}

.login-form form .forgot:hover, .login-form form .forgot:active, .login-form .login-form-body .forgot:hover, .login-form .login-form-body .forgot:active {
    opacity: 1;
    text-decoration: none;
}

.login-form form .forgot, .login-form .login-form-body .forgot {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--dark);
    opacity: 0.9;
    text-decoration: none;
}

.login-form form .btn-primary:hover, .login-form form .btn-primary:active, .login-form .login-form-body .btn-primary:hover, .login-form .login-form-body .btn-primary:active {
    background: #FFAD01;
    outline: none;
}

.login-form form .btn-primary, .login-form .login-form-body .btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 4px;
    padding: 11px;
    box-shadow: none;
    margin-top: 26px;
    text-shadow: none;
    outline: none;
}

.login-form form .form-control, .login-form .login-form-body .form-control {
    background: none;
    border: none;
    border-bottom: 1px solid #434a52;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    color: black;
}

.login-form .illustration {
    text-align: center;
    padding: 15px 0 45px;
    font-size: 100px;
    color: var(--primary);
}

.login-form h1, .login-form h2, .login-form h3, .login-form h4, .login-form h5, .login-form h6 {
    color: var(--primary);
}

.login-form .illustration .logo {
    width: 120px;
}

/*   Footer   */

.footer {
    background-color: var(--primary);
    color: var(--dark);
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    bottom: 0px;
    -webkit-box-shadow: 1px -1px 4px rgba(0,0,0,0.5);
    box-shadow: 1px -1px 4px rgba(0,0,0,0.5);
    position: fixed !important;
    z-index: 2;
}

.footer a.text-white:hover{
      color: var(--secondary) !important; 
        text-decoration: none;
  }

    .footer span {
        font-size: 0.9rem;
        font-weight: 500;
    }

/*   Side Nav bar   */

nav.side-navbar {
    background: var(--white);
    min-width: 250px;
    max-width: 250px;
    color: var(--dark);
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 1rem;
    height: calc(100vh - 50px);
    margin-left: -250px;
    position: fixed;
}

@media (min-width: 1200px) {
    nav.side-navbar {
        margin-left: 0;
    }
}

nav.side-navbar.active {
    margin-left: 0;
}

@media (min-width: 1200px) {
    nav.side-navbar.active {
        margin-left: -250px;
    }
}

nav.side-navbar .sidebar-header {
    padding: 30px 15px;
}

nav.side-navbar a {
    color: inherit;
    position: relative;
    font-size: 0.9em;
}

.avatar {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    border-radius: 50%;
    display: inline-block;
    background: #ced4da no-repeat center/cover;
    position: relative;
    text-align: center;
    color: #868e96;
    font-weight: 600;
    vertical-align: bottom;
}

nav.side-navbar .avatar {
    width: 48px;
    height: 48px;
}

nav.side-navbar .profile-title {
    margin-left: 10px;
}

    nav.side-navbar .profile-title h1 {
        color: var(--dark);
    }

    nav.side-navbar .profile-title p {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 0;
        color: var(--dark);
    }

nav.side-navbar .heading {
    text-transform: uppercase;
    font-weight: 400;
    margin-left: 20px;
    color: var(--primary);
    font-size: 1.4rem;
}

nav.side-navbar ul {
    padding: 15px 0;
}

    nav.side-navbar ul li a {
        padding: 10px 15px;
        text-decoration: none;
        display: block;
        font-weight: 300;
        border-left: 4px solid transparent;
    }

        nav.side-navbar ul li a:hover {
            color: var(--light);
            background: var(--primary);
        }

    nav.side-navbar ul li.active > a {
        color: var(--light);
        border-left: 4px solid var(--primary);
        background: var(--primary   );
    }

        nav.side-navbar ul li.active > a:hover {
            border-left: 4px solid var(--primary);
            background: #282b3e;
        }

*[class*="fa-"] {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
}

nav.side-navbar a i {
    font-size: 1.2em;
    margin-right: 10px;
    -webkit-transition: none;
    transition: none;
    text-align: center;
    width: 24px;
    height: 24px;
}

nav.side-navbar ul li ul {
    padding: 0;
}

nav.side-navbar ul li li a {
    padding-left: 50px;
}

nav.side-navbar a[data-toggle="collapse"]::before {
    content: '\f054';
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 50%;
    right: 20px;
    font-weight: 900;
}

nav.side-navbar a[data-toggle="collapse"]::before {
    content: '\f054';
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 50%;
    right: 20px;
    font-weight: 900;
}

nav.side-navbar a[aria-expanded="true"] {
    /*background: rgba(78,78,78,0.5);*/
}

    nav.side-navbar a[aria-expanded="true"]::before {
        content: '\f078';
    }

nav.side-navbar ul li li.active > a {
    color: var(--light);
    border-left: 4px solid var(--primary);
    background: var(--primary);
}

nav.side-navbar ul li ul.show {
    /*background: rgba(78,78,78,0.5);*/
}

nav.side-navbar .notifications span.badge-corner, nav.side-navbar .messages span.badge-corner {
    right: initial !important;
}

/*   Side-Content   */

.content-header {
    width: 100%;
    padding: 5px 10px 5px 15px;
    background: var(--primary);
    color: var(--light);
    border-radius: 5px 5px 0 0;
}

    .content-header h1, .content-header h2, .content-header h3, .content-header h4, .content-header h5, .content-header h6 {
        margin: 0;
        color: var(--light);
    }

    .content-header a {
        color: var(--white);
    }

        .content-header a:hover {
            color: var(--white);
        }

    .content-header *[class*="fa-"] {
        font-size: 20px !important;
    }

.side-content {
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: var(--white);
    padding-bottom: 30px;
    min-height: calc(100vh - 60px);
}

.side-navbar-expand {
    left: 0;
    width: 100%;
    position: absolute;
}

@media (min-width: 1200px) {
    .side-navbar-expand {
        left: 250px;
        width: calc(100% - 250px);
    }
}

.side-navbar-expand.active {
    left: 250px;
}

@media (min-width: 1200px) {
    .side-navbar-expand.active {
        left: 0;
        width: 100%;
    }
}

.side-content .page-header {
    padding-top: 3px;
    padding-bottom: 3px;
    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    color: var(--light);
}

.side-content section {
    padding: 30px 0;
}

.side-content .container-fluid {
    padding: 0 30px;
}

@media (min-width: 576px) {
    .side-content .container-fluid {
        padding: 0 20px;
    }
}

.side-main-content {
    width: 100%;
}

/*   Password strength   */

.password-strength .passw-strength-indicator div {
    height: 100%;
}

.password-strength .password-strength-text {
    line-height: 32px;
    font-weight: 100;
    font-size: 0.8rem;
    color: var(--green);
}

.password-strength .passw-strength-indicator {
    margin-bottom: 4px;
    width: 100%;
    height: 8px;
    background-color: var(--light);
}

.password-strength .password-strength-not-acceptable, .password-strength .password-strength-weak, .password-strength .password-strength-acceptable, .password-strength .password-strength-average, .password-strength .password-strength-strong, .password-strength .password-strength-excellent {
    font-weight: bold;
}

.password-strength .password-strength-not-acceptable, .password-strength .password-strength-weak {
    color: var(--danger);
}

.password-strength .password-strength-acceptable {
    color: var(--warning);
}

.password-strength .passw-indicator-not-average {
    background-color: var(--info);
    width: 0;
}

.password-strength .passw-indicator-not-strong {
    background-color: var(--success);
    width: 0;
}

.password-strength .passw-indicator-not-excellent {
    background-color: var(--success);
    width: 0;
}

.password-strength .passw-indicator-weak {
    background-color: var(--danger);
    width: 20%;
}

.password-strength .passw-indicator-acceptable {
    background-color: var(--warning);
    width: 40%;
}

.password-strength .passw-indicator-average {
    background-color: var(--info);
    width: 60%;
}

.password-strength .passw-indicator-strong {
    background-color: var(--success);
    width: 80%;
}

.password-strength .passw-indicator-excellent {
    background-color: var(--success);
    width: 100%;
}

/*   Form control error   */

.form-control-error {
    font-size: 15px;
    color: var(--danger);
    display: inline-block;
    margin-top: 6px;
    margin-right: 8px;
}

/*  Dashboard  */

.dashboard {
}

.dashboard-bg-color {
    background-color: var(--white) !important;
    color: var(--dark);
    border-radius: 5px 5px 5px 5px;
}

.profile-dashboard-bg-color {
    background-color: var(--light) !important;
    border-radius: 5px 5px 5px 5px;
}

.dashboard .icon {
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    min-width: 40px;
    max-width: 40px;
    border-radius: 50%;
}

.dashboard *[class*="fa-"] {
    font-size: 20px;
}

.dashboard-action {
    padding: 10px 10px;
}

    .dashboard-action a, .dashboard-action button, .dashboard-action .form-control {
        width: 100%;
        text-align: center;
        line-height: 30px;
        font-weight: bold;
        padding: 0 5px;
        color: var(--light);
        padding: 0 15px;
        margin: 0 3px;
    }

        .dashboard-action a.shine, dashboard-action button.shine, .dashboard-action .form-control.shine {
            border: none;
            border-radius: 4px;
            box-shadow: none;
            text-shadow: none;
            outline: none;
            color: var(--light) !important;
            padding: 0 15px !important;
            height: auto;
        }

    .dashboard-action .form-group {
        margin: 5px 0px;
    }

        .dashboard-action .form-group label {
            color: var(--primary);
            font-weight: 500;
            padding: 0;
        }

    .dashboard-action .form-control {
        color: #495057;
    }

    .dashboard-action a:not(.btn-primary) {
        padding: 0px 3px;
    }

    .dashboard-action a[data-function="getAgentList"] {
        color: var(--gray);
    }

    .dashboard-action a.active {
        color: var(--light-blue);
    }

    .dashboard-action *[class*="fa-"] {
        font-size: 20px;
    }

    .dashboard-action div[class*='col-'] {
        padding: 0 2px;
    }

    .dashboard-action .date-picker {
        color: transparent !important;
        text-shadow: 0 0 0 white;
        width: 120px;
        padding: 5px 15px;
        cursor: pointer;
        font-weight: bold;
        /*text-align:center;*/
    }

    .dashboard-action .date-picker-dropdown {
        position: relative;
    }

    .dashboard-action .date-picker:disabled {
        background: #8cbe0033;
        background-image: linear-gradient(to right, #8cbe0033 0%, #8cbe0033 20%, #8cbe0033 40%, #8cbe0033 100%);
        background-repeat: no-repeat;
        background-size: 800px 104px;
        display: inline-block;
        position: relative;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: forwards;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-name: placeholderShimmer;
        -webkit-animation-timing-function: linear;
    }

    .dashboard-action .date-picker + i {
        position: absolute;
        right: 5px;
        color: var(--light);
    }

    .dashboard-action select {
        width: max-content !important;
        height: 25px;
        border-radius: 1.25em;
        font-size: 0.8em;
        background: var(--primary);
        border: none;
        box-shadow: none;
        text-shadow: none;
        outline: none;
        color: var(--light) !important;
        /*width: 100%;*/
        text-align: center;
        line-height: 30px;
        font-weight: bold;
        padding: 0 5px 0 10px;
        margin: 0 3px;
    }

        .dashboard-action select:focus, .dashboard-action select:hover {
            color: var(--light) !important;
        }

.dashboard div[class*='col-'].dashboard-item {
    padding-left: 5px;
    padding-right: 5px;
}

@media (min-width: 768px) {
    .dashboard div[class*='col-'].dashboard-item:last-of-type {
        /*padding-right: 15px;*/
    }
}

@media (min-width: 768px) {
    .dashboard div[class*='col-'].dashboard-item:first-of-type {
        /*padding-left: 15px;*/
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .dashboard div[class*='col-'].dashboard-item.dashboard-md-padding {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.dashboard-cards div[class*='col-'] .summary {
    border-right: none;
    padding: 15px 0;
}

.dashboard-card {
    height: 150px;
}

.profile .dashboard-card {
    height: 150px;
}

    .profile .dashboard-card.dashboard-active-agent {
        height: 150px;
    }


@media (min-width: 576px) {
    .dashboard-card {
        height: 175px;
    }

    .profile .dashboard-card {
        height: 175px;
    }

        .profile .dashboard-card.dashboard-active-agent {
            height: 175px;
        }
}

@media (min-width: 768px) {
    .dashboard-card {
        height: 195px;
    }

    .profile .dashboard-card {
        height: 195px;
    }

        .profile .dashboard-card.dashboard-active-agent {
            height: 214px;
        }
}

@media (min-width: 992px) {
    .dashboard-card {
        height: 210px;
    }

    .profile .dashboard-card {
        height: 210px;
    }

        .profile .dashboard-card.dashboard-active-agent {
            height: 233px;
        }

    .profile .dashboard-card {
        height: 210px;
    }

        .profile .dashboard-card.dashboard-active-agent {
            height: 233px;
        }
}

.number-lg {
    min-width: 130px;
}

.number-sm {
    min-width: 100px;
}

.dashboard-card .summary {
    width: 100%;
}

.dashboard-card .title strong {
    font-size: 0.8em;
    font-weight: 400;
}

@media (min-width: 768px) {
    .dashboard-card .title strong {
        font-size: 1em;
    }
}

.dashboard-card .number strong {
    font-size: 0.9em;
    font-weight: 700;
}

@media (min-width: 576px) {
    .dashboard-card .number strong {
        font-size: 1.0em;
    }
}

@media (min-width: 768px) {
    .dashboard-card .number strong {
        font-size: 1.2em;
    }
}

@media(min-width:992px) {
    .dashboard-card .number strong {
        font-size: 1.8em;
    }
}

.dashboard .currency {
    font-size: 0.6em;
    padding-right: 5px;
    font-weight: bold;
}

.submission-case-container a:hover {
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
}
/*  Content Card  */
.card-accordion {
    border-radius: 5px 5px 5px 5px;
    background: var(--light);
}

.card-content-header.collapsed {
    width: 100%;
    padding: 5px 10px 5px 15px;
    background: var(--primary);
    color: var(--light);
    border-radius: 5px 5px 5px 5px;
}

.card-content-header {
    width: 100%;
    padding: 5px 10px 5px 15px;
    background: var(--primary);
    color: var(--light);
    border-radius: 5px 5px 0 0;
}

/*  Collape card with minus icon  */

.card-accordion .card-content-header:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f068";
    float: right;
    font-weight: 900;
}

/*  Collape card with plus icon  */

.card-accordion .card-content-header.collapsed:after {
    content: "\f067";
}

/*  Charts  */

canvas {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.dashboard-chart .chart-content {
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.dashboard-chart .chart-md-content {
}

@media (min-width: 992px) {
    .dashboard-chart .chart-md-content {
        height: 375px;
    }
}

.dashboard-chart .chart-content canvas {
    width: calc(100% - 30px) !important;
    max-height: 100%;
}

dashboard-cases-list {
}

.dashboard-cases-list .summary {
    height: 62px;
}

.dashboard-cases-list .title {
    padding-left: 1rem;
}

.dashboard-cases-list .number {
    width: 70px;
    height: 62px;
    color: var(--gray-dark) !important;
    font-size: 1.2em;
}

.dashboard-card.dashboard-pr {
    height: auto;
}

.profile .dashboard-card.dashboard-pr {
    height: auto;
}

@media (min-width: 576px) {
    .dashboard-card.dashboard-pr {
        height: 140px;
    }

    .profile .dashboard-card.dashboard-pr {
        height: 115px;
    }
}

@media (min-width: 768px) {
    .dashboard-card.dashboard-pr {
        height: 140px;
    }

    .profile .dashboard-card.dashboard-pr {
        height: 115px;
    }
}

@media (min-width: 992px) {
    .dashboard-card.dashboard-pr {
        height: 120px;
    }

    .profile .dashboard-card.dashboard-pr {
        height: 120px;
    }
}

.dashboard-pr div[class*='col-']:first-of-type {
    padding-right: 0;
}

.dashboard-pr div[class*='col-']:last-of-type {
    padding-left: 0;
}

.dashboard-pr .summary {
    height: auto;
    padding-top: 2px !important;
    width: 33.333333%;
    padding-bottom: 2px !important;
}

.dashboard-pr .title strong {
    font-size: 0.8em;
    font-weight: 500;
}

.dashboard-pr .number {
    font-size: 1.5em;
}

@media (min-width: 768px) {
    .dashboard-pr .number {
        font-size: 0.9rem;
    }
}
/*Dashboard CE*/

.dashboard-card.dashboard-ce {
    height: auto;
}

.proile .dashboard-card.dashboard-ce {
    height: auto;
}

.proile .dashboard-card.dashboard-ce {
    height: auto;
}


@media (min-width: 576px) {
    .dashboard-card.dashboard-ce {
        height: 120px;
    }

    .profile .dashboard-card.dashboard-ce {
        height: 90px;
    }
}

@media (min-width: 768px) {
    .dashboard-card.dashboard-ce {
        height: 120px;
}

    .profile .dashboard-card.dashboard-ce {
        height: 90px;
    }
}

@media (min-width: 992px) {
    .dashboard-card.dashboard-ce {
        height: 105px;
    }

    .profile .dashboard-card.dashboard-ce {
        height: 105px;
    }
}
}
.dashboard-ce div[class*='col-']:first-of-type {
    padding-right: 0;
}

.dashboard-ce div[class*='col-']:last-of-type {
    padding-left: 0;
}

.dashboard-ce .summary {
    height: auto;
    /*padding-top: 10px !important;*/
    width: 33.333333%;
}

.dashboard-ce .title strong {
    font-size: 0.8em;
    font-weight: 500;
}

.dashboard-ce .number {
    font-size: 1.5em;
}

@media (min-width: 768px) {
    .dashboard-ce .number {
        font-size: 0.9rem;
    }


    .dashboard-ce .summary {
        height: auto;
        padding-top: 2px !important;
        width: 33.333333%;
    }
}

.dashboard-news {
    height: 426px;
}

    .dashboard-news .card {
        height: 395px;
        background: transparent;
    }

.card-link {
}

.dashboard-news .card .card-body {
    padding: 1rem 15%;
}

    .dashboard-news .card .card-body .card-link {
        padding: 5px 0px;
        display: -webkit-box;
        height: 105px;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.card-link h1, .card-link h2, .card-link h3, .card-link h4, .card-link h5, .card-link h6 {
    color: var(--primary);
}

.dashboard-news .card .card-body .card-subtitle {
}

.dashboard-news .card .card-body .card-text {
    display: -webkit-box;
    height: 200px;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 5px;
}

.dashboard-news .carousel-control-next, .dashboard-news .carousel-control-prev {
    color: var(--primary);
}

    .dashboard-news .carousel-control-next:focus, .dashboard-news .carousel-control-next:hover, .dashboard-news .carousel-control-prev:focus, .dashboard-news .carousel-control-prev:hover {
        color: var(--primary);
    }

.dashboard-news .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
}

.dashboard-news .carousel-control-prev-icon, .dashboard-news .carousel-control-next-icon {
    background-image: none;
    width: 30px;
    height: 30px;
}

.dashboard-news *[class*="fa-"] {
    font-size: 30px;
}

/*@media (min-width: 768px) {
    .dashboard-agent-list {
        height: 450px;
    }
/*}*/
/*}*/

.agent-list {
    position: relative;
    min-height: 350px;
}

.dashboard-agent-list .badge {
    font-weight: 800;
}

.dashboard-agent-list .agent-details {
    padding: 0px 15px;
    height: 100%;
}

@media (min-width: 768px) {
    .dashboard-agent-list {
        height: 470px;
    }

    .agent-list {
        position: relative;
        min-height: 420px;
    }

    .dashboard-agent-list .agent-details {
        padding: 0px 15px;
        max-height: 380px;
    }
}

@media (min-width: 992px) {
    .dashboard-agent-list {
        height: 450px;
    }

    .agent-list {
        position: relative;
        min-height: 400px;
    }

    .dashboard-agent-list .agent-details {
        padding: 0px 15px;
        max-height: 360px;
    }
}

/*@media (min-width: 768px) {
    .dashboard-agent-list .agent-details {
        padding: 0px 15px;
        max-height: 360px;
    }
}*/

.dashboard-agent-list .agent-profile {
    border-bottom: 1px solid var(--primary);
    padding: 1rem 0;
}

    .dashboard-agent-list .agent-profile:hover, .dashboard-agent-list .agent-profile:focus {
        background-color: rgba(30,162,184,0.1);
    }

@media (min-width: 992px) {
    .dashboard-agent-list .agent-profile {
        min-height: 80px;
        padding: 0.5rem 0;
    }
}

.dashboard-agent-list .agent-profile:last-of-type {
    border-style: none;
}

.dashboard-agent-list .agent-profile-img {
    width: 75px;
    margin: auto;
    position: relative;
}

    .dashboard-agent-list .agent-profile-img .badge {
        position: absolute;
        top: 0;
        left: 0;
    }

    .dashboard-agent-list .agent-profile-img img {
        width: 50px;
        height: 50px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

.dashboard-agent-list .agent-profile .agent-info {
}

.dashboard-agent-list .hidden {
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.dashboard-agent-list .show {
    opacity: 1 !important;
    transition: height 2s, opacity 2s;
    height: auto !important;
}

.dashboard-agent-list .agent-performance .agent-performance-details {
}

.dashboard-agent-list .agent-performance .title {
    width: 30%;
    padding-right: 5px;
}

.dashboard-agent-list .agent-performance .number {
    width: 100%;
    padding-left: 5px;
    padding-right: 20px
}

/*  form  */

.form {
}

    .form h1, .form h2, .form h3, .form h4, .form h5, .form h6 {
    }

.form-section {
    background-color: var(--light);
    color: var(--dark);
    border-radius: 5px 5px 5px 5px;
}

.form-control-section {
    padding: 1.5rem;
}

    .form-control-section .avatar {
        height: 150px;
        width: 150px;
    }

    .form-control-section .btn-group {
        width: 100%;
        justify-content: center;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .form-control-section img[alt=Avatar] {
        display: none;
    }

@media (min-width: 768px) {
    .form-control-section .btn-group {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.form-control-section .btn-group .btn {
    width: 100%;
    margin: 2px 0;
    border-radius: 4px;
}

.form-control-section .btn-group > .btn-group:not(:first-child), .form-control-section .btn-group > .btn:not(:first-child), .form-control-section .btn-group > .btn-group:not(:last-child) > .btn, .form-control-section .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-radius: 4px;
}

@media (min-width: 768px) {
    .form-control-section .btn-group .btn {
        flex: none;
        width: 180px;
        margin: 0 5px;
    }
}

.form-search-result {
    padding: 1rem 0px;
}

    .form-search-result header {
        padding: 5px 10px 5px 15px;
    }

/*  news  */

.news-section {
    color: var(--dark);
    border-radius: 5px;
    background-color: var(--light);
}

.news-body .h1, .news-body .h2, .news-body .h3, .news-body .h4, .news-body .h5, .news-body .h6, .news-body h1, .news-body h2, .news-body h3, .news-body h4, .news-body h5, .news-body h6 {
    color: var(--gray);
}

.news-body {
    padding-left: 20px;
    padding-right: 20px;
    text-align: justify;
    margin: 0px;
    color: var(--gray);
    border-bottom: 1px solid var(--primary);
    padding: 1rem;
}

    .news-body .news-date {
        padding: 0 10px 0 5px;
    }

    .news-body .news-title h1 {
        padding: 5px;
        font-size: 15pt;
        color: var(--primary);
        font-weight: bold;
    }

    .news-body .news-summary, .news-body .news-title {
    }

        .news-body .news-summary, .news-body .news-summary a, .news-body .news-text, .news-body .news-text a {
            margin-top: 5px;
            text-decoration: none;
            background-color: transparent;
            margin-bottom: 10px;
            padding: 10px 10px;
        }

.UnreadNewsIndicated {
    height: 7px;
    width: 7px;
    background-color: #f00000;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
}

/* Pages */
.page-item.active .page-link {
    z-index: 1;
    color: var(--light);
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-link {
    color: var(--gray-dark);
    width: 32px;
    text-align: center;
}

    .page-link:focus {
        box-shadow: 0 0 0 0.2rem var(--primary);
    }

    .page-link:hover {
        color: var(--light);
        background-color: var(--primary);
        border-color: var(--primary);
    }

/* Smart Search */

.smart-search-result span {
    background-color: #ffd83269;
}

.smart-search-result .ContentLabel {
    background-color: initial;
    padding: 10px;
}

.predictiveSearchHolder {
    position: relative;
    margin-top: -1rem;
}

.predictiveSearchCategory {
    display: none;
}

.predictiveSearchResults .selectedResult {
    text-decoration: none !important;
    background-color: rgba(140,190,0,0.5);
    color: var(--dark) !important;
}

/* agent hierarchy */
.agent-hierarchy {
    overflow-x: auto;
}

    .agent-hierarchy .tree-view {
        padding-left: 0 !important;
        width: 100%;
    }

    .agent-hierarchy a {
        height: 40px;
        padding: 5px 10px 5px 15px;
    }

@media (min-width: 576px) {
    .agent-hierarchy a {
        padding: 5px 0px 5px 5px;
    }
}

.agent-hierarchy a i {
    font-size: 1.2rem;
}

.agent-hierarchy .agent-profile span {
    font-weight: 500;
    padding: 5px 5px;
    vertical-align: middle;
}

.agent-hierarchy .agent-profile img {
    height: 22px;
    width: 22px;
    margin: auto;
}

.agent-hierarchy ul {
    padding-left: 32px;
}

.agent-hierarchy a {
    color: var(--gray-dark);
}

    .agent-hierarchy a:hover, .agent-hierarchy a:focus {
        color: var(--primary);
    }

.agent-hierarchy .agent-profile::before {
    content: "\f111";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Free';
    font-size: 5px;
    padding: 0 20px 0 15px;
    vertical-align: middle;
    font-weight: 900;
}

.agent-hierarchy .agent-profile[data-toggle="collapse"]::before {
    content: "\f067";
    font-size: 12px;
    padding: 0 17px 0 12px;
}

.agent-hierarchy .agent-profile[aria-expanded="true"]::before {
    content: "\f068";
    font-size: 10px;
}

.agent-hierarchy .expand-collapse-button {
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .agent-hierarchy .expand-collapse-button {
        float: right;
    }
}

/* agent horizontal hierarchy */
.agent-horizontal-hierarchy {
    overflow-x: auto;
}

    .agent-horizontal-hierarchy .horizontal-tree-view {
        padding-left: 0 !important;
        padding-top: 15px;
        width: max-content;
        /*height: calc(100vh - 420px);*/
        font-size: 0.8rem;
    }

@media (min-width: 1024px) {
    .agent-horizontal-hierarchy .horizontal-tree-view {
        /*height: calc(100vh - 420px);*/
    }
}

.agent-horizontal-hierarchy a {
    /*height: 40px;*/
    padding: 0px 5px 10px 5px;
    vertical-align: top;
}

@media (min-width: 576px) {
    .agent-horizontal-hierarchy a {
        /*padding: 5px 0px 5px 5px;*/
    }
}

.agent-horizontal-hierarchy a i {
    font-size: 1.2rem;
}

.agent-horizontal-hierarchy .agent-profile span {
    font-weight: 500;
    padding: 5px 5px;
    vertical-align: top;
}

    .agent-horizontal-hierarchy .agent-profile span.agent-name {
        width: 150px;
        white-space: normal;
        margin-top: -6px
    }

.agent-horizontal-hierarchy .agent-profile img {
    height: 22px;
    width: 22px;
    margin: auto;
}

.agent-horizontal-hierarchy ul {
    padding-left: 0px;
}

.agent-horizontal-hierarchy a {
    color: var(--gray-dark);
}

    .agent-horizontal-hierarchy a:hover, .agent-horizontal-hierarchy a:focus {
        color: var(--primary);
    }

.agent-horizontal-hierarchy .agent-profile {
}

    .agent-horizontal-hierarchy .agent-profile > ul {
        padding-left: 45px;
    }

        .agent-horizontal-hierarchy .agent-profile > ul .agent-profile span {
            font-weight: 400;
        }

            .agent-horizontal-hierarchy .agent-profile > ul .agent-profile span.agent-name {
                width: 140px;
            }

    .agent-horizontal-hierarchy .agent-profile[data-toggle]::before {
        content: "\f111";
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-family: 'Font Awesome 5 Free';
        font-size: 5px;
        padding: 0 4px 0 15px;
        vertical-align: middle;
        font-weight: 900;
    }

    .agent-horizontal-hierarchy .agent-profile[aria-expanded="false"]::before {
        content: "\f067";
        font-size: 12px;
        padding: 0 0px 0 14px;
    }

    .agent-horizontal-hierarchy .agent-profile[aria-expanded="true"]::before {
        content: "\f068";
        font-size: 10px;
        padding: 0 0px 0 16px;
    }

.agent-horizontal-hierarchy .expand-collapse-button {
    display: inline-block;
    vertical-align: middle;
}

.agent-horizontal-hierarchy .agent-loading .agent-profile span,
.agent-horizontal-hierarchy .agent-loading .agent-profile a {
    vertical-align: middle;
    padding: 5px 0px 5px 5px;
}

    .agent-horizontal-hierarchy .agent-loading .agent-profile span.agent-name {
        margin: auto;
    }

@media (min-width: 768px) {
    .agent-horizontal-hierarchy .expand-collapse-button {
        /*float: right;*/
    }
}

h4 .textcolorBlack {
    color: black;
}

.ManPowerText {
    font-size: 0.8rem;
    color: black;
}

.textBlack {
    color: black;
}

.alc-logo-fixed {
    width: auto;
    /*max-height: 60px;*/
}

.title-xs {
    font-size: 0.9rem !important;
}

.name-xs {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.formStyle {
    margin-left: 0.5rem;
}

.title-xs {
    font-size: 0.9rem !important;
}

/*Setting Top Nav*/
nav.navbar .dropdown-menu .dropdown-itemSetting {
    padding: 0.5px 10px;
    font-size: 0.8rem;
    color: var(--dark);
    width: 100%;
}

.dropdown-itemSetting {
    display: block;
    width: 100%;
    padding: .2rem 1rem;
    clear: both;
    font-weight: 500;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

nav.navbar .dropdown-menu .dropdown-itemSetting i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--black);
    border-radius: 50%;
    margin-right: 10px;
}

nav.navbar .dropdown-menu .dropdown-itemSetting .secondLevelSetting {
    padding: 0.5px 15px 0.5px 35px;
    font-size: 0.8rem;
    /*color: var(--primary);*/
    width: 100%;
}

.activeSetting {
    background: #00ac5b;
    color: var(--white);
}

.imgStyle {
    margin-top: 7.0px;
}

nav.navbar .dropdown-menuSetting {
    padding: 10px 0;
}


/*Modal*/
.modal-xxl {
    max-width: 85%;
}

.modal {
    z-index: 999;
}

.modal-backdrop {
    z-index: 950;
}

/*Homepage Dashboard-graph design*/
.recruitedDashboardStyle {
    padding: 15px;
}

/*file-upload-control*/
.uploader-main {
    display: inline-flex;
    width: 100%;
}

.uploader-current {
    padding: 0px 15px;
}

.uploader-upload {
    padding: 0px 15px;
}

.icon-bin {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

    .icon-bin:before {
        content: "\f1f8";
    }

.agentDashboardStyle {
    width: 50px;
}

.result-edit-buttons {
    top: 55px !important;
}

/*Error Page*/
.errorPage {
    width: 100%;
    min-height: 600px;
    background: #ffffff url(/Img/mainBg) repeat-x;
}

.errorMainContainer {
    margin: 0px auto;
    width: 960px;
    padding-top: 100px;
    text-align: center;
    font-weight: normal;
    color: #666;
    letter-spacing: 1px;
}

element.style {
}

.errorFace {
    width: 100%;
    height: 200px;
    display: block;
}

.errorBigFont {
    font-size: 40pt;
}

/*Contact*/
h1.pageHeader {
    font-family: Georgia,serif;
    font-style: italic;
    letter-spacing: 0px;
    color: #555;
    margin: 5px;
    padding: 5px;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: normal;
    text-shadow: #333 0px 1px 1px;
}

.fieldInput {
    margin-bottom: 10px;
    text-align: center;
}

    .fieldInput label, .FieldLabel label {
        /* font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif; */
        font-family: Tahoma,Geneva,sans-serif;
        /*width: 180px;*/
        display: inline-block;
        text-align: right;
        padding-right: 10px;
        font-size: 15px;
        color: #555;
    }

.sectionContainer h4 {
    font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
    font-weight: normal;
    font-size: 18px;
    font-family: Arial;
    color: #333;
    letter-spacing: -1px;
    margin-top: 5px;
}

.sectionContainer .content {
    padding: 10px;
    display: inline-block;
}

.file-upload {
    padding: 0;
}

.btn.btn-outline-success.contest-upload-result:hover,
.btn.btn-outline-success.contest-upload-result:focus,
.btn.btn-outline-success.contest-upload-result:visited {
    color: #fff;
    background-color: transparent;
    border-color: #28a745;
}

.all-top-agents .dashboard-agent-list, .all-top-agents .agent-list, .all-top-agents .dashboard-agent-list .agent-details,
.leaderboard-all-top-agents .dashboard-agent-list, .leaderboard-all-top-agents .agent-list, .leaderboard-all-top-agents .dashboard-agent-list .agent-details {
    height: auto;
    max-height: 100%;
}

/*.leaderboard-all-top-agents .number{
    min-width : 135px;
}*/

.ExplanationText {
    margin: 4px;
}

.checkbox {
    max-height: 200px;
    display: block;
    width: 100%;
    overflow: auto
}

    .checkbox tr {
        position: relative;
        display: block;
        padding-left: 1.25rem;
    }

        .checkbox tr input[type=checkbox] {
            position: absolute;
            margin-top: .3rem;
            margin-left: -1.25rem;
        }

        .checkbox tr label {
            display: inline-block;
            margin-bottom: .5rem;
        }

.progress {
    height: 0.5rem;
}

.dashboard-contest {
    min-height: 60px;
}

    .dashboard-contest .contest-item {
        /*border-bottom: 1px solid var(--primary);*/
        padding-bottom: 1rem;
        border-right: 0;
        margin-left: 30px
    }

        .dashboard-contest .contest-item .completed {
            vertical-align: text-top;
            color: var(--green);
            font-size: 14px !important;
        }

@media (min-width: 768px) {
    .dashboard-contest .contest-item {
        border-bottom: 0;
        border-right: 1px solid var(--primary);
        padding: 0px 1.8rem;
        margin-left: auto;
    }
}

/*.dashboard-contest .contest-item:last-child {
    border-bottom: 0;
    border-right: 0;
}*/

.owl-carousel .owl-dots, .owl-carousel .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    font-size: 4rem;
    line-height: 0;
}

    .owl-carousel .owl-nav [class*="owl-"] {
        /*width: 28px;*/
        /*height: 56px;*/
        /*line-height: 28px;*/
        /*margin: -16px 0 0;*/
        display: block;
        position: absolute;
        top: 50%;
        z-index: 10;
        cursor: pointer;
        text-align: center;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        color: #343a40;
        background-color: #ffffff;
        text-align: center;
        z-index: 200;
        border: 2px solid #ffffff;
        box-sizing: initial;
    }

.owl-carousel .owl-prev {
    right: auto;
    left: 15px;
    /*opacity: 0;*/
    border-radius: 3px;
}

.owl-carousel .owl-next {
    left: auto;
    right: -10px;
    /*opacity: 0;*/
    border-radius: 3px;
    []
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: transparent;
    color: #FFF;
    text-decoration: none;
}

.owl-carousel.arrow-dark .owl-nav [class*="owl-"] {
    color: #ffffff;
    border-color: #8db941;
    background-color: #8db941;
}

.owl-carousel .owl-nav [class*="owl-"] i {
    line-height: 28px;
    color: #343a40;
    font-size: 22px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-nav .owl-prev .ti-angle-left {
    margin-left: -2px;
    font-size: 12px;
}

.owl-carousel.arrow-dark .owl-nav [class*="owl-"] i {
    color: #ffffff;
}


.clickable {
    cursor: pointer !important;
}

    .clickable:hover, .clickable:focus {
        background-color: var(--primary) !important;
    }

.selected {
    background-color: var(--primary) !important;
}

.selected a{
   color:var(--info) !important;
}

.downline-item[aria-expanded="true"].clickable {
    background-color: var(--primary) !important;
}

.downline-item td:first-child::before {
    content: "\f111";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Free';
    font-size: 5px;
    padding: 0 5px 0 0px;
    vertical-align: middle;
    font-weight: 900;
}

.downline-item[aria-expanded="false"].clickable td:first-child::before {
    content: "\f067";
    font-size: 12px;
    padding: 0 5px 0 0px;
}

.downline-item[aria-expanded="true"].clickable td:first-child::before {
    content: "\f068";
    font-size: 10px;
    padding: 0 5px 0 0px;
}


.expand-item[aria-expanded="true"].clickable {
    background-color: var(--primary) !important;
}

.expand-item td:first-child::before {
    content: "\f111";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Free';
    font-size: 5px;
    padding: 0 5px 0 0px;
    vertical-align: middle;
    font-weight: 900;
}

.expand-item[aria-expanded="false"].clickable td:first-child::before {
    content: "\f067";
    font-size: 12px;
    padding: 0 5px 0 0px;
}

.expand-item[aria-expanded="true"].clickable td:first-child::before {
    content: "\f068";
    font-size: 10px;
    padding: 0 5px 0 0px;
}

.context-menu-enabled {
}

.context-menu {
}

    .context-menu .context-menu-item:hover, .context-menu .context-menu-item:focus {
        color: var(--white);
        text-decoration: none;
        background-color: var(--primary);
    }

.leaderboard-top-products .dashboard-agent-list, .leaderboard-top-products .agent-list, .leaderboard-top-products .dashboard-agent-list .agent-details,
.leaderboard-top-state .dashboard-agent-list, .leaderboard-top-state .agent-list, .leaderboard-top-state .dashboard-agent-list .agent-details {
    height: auto;
    max-height: 100%;
}

.filter-button.sticky-top {
    top: 45px;
    z-index:900 !important;
}

@media (min-width: 756px) {
    .filter-button.sticky-top {
        top: 65px;
    }
}

.leaderboard .dashboard-agent-list, .leaderboard .agent-list, .leaderboard .dashboard-agent-list .agent-details {
    height: auto;
    max-height: 100%;
    min-height: 850px;
}

    .leaderboard .dashboard-agent-list .agent-profile {
        border-bottom: 1px solid var(--primary);
        padding: 1rem 0;
        min-height: 250px;
    }

@media (min-width: 992px) {
    .leaderboard .dashboard-agent-list .agent-profile {
        min-height: 120px;
        padding: 0.5rem 0;
    }
}

@media (min-width: 1440px) {
    .leaderboard .dashboard-agent-list .agent-profile {
        min-height: 95px;
        padding: 0.5rem 0;
    }
}

.filter-section .title {
    font-size: 1.25rem;
}

.filter-section .accicon {
    /*float: right;*/
    font-size: 20px;
    width: 1.2em;
    margin:auto;
    padding-left: 10px;
    padding-top: 5px;
    vertical-align:top;
}

.filter-section header,
.filter-section .header {
    cursor: pointer;
    border-bottom: none;
}

.filter-section header:not(.collapsed) .rotate-icon {
    transform: rotate(180deg);
}


/* The container */
.filter-checkbox {
    /*display: block;*/
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .filter-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
    .filter-checkbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: var(--gray);
    }

/* On mouse-over, add a grey background color */
.filter-checkbox:hover input ~ .checkmark {
    background-color: var(--gray);
}

/* When the checkbox is checked, add a blue background */
.filter-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.filter-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.filter-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.filter-checkbox .checkmark:after {
    left: 6px;
    top: 3px;
    width: 7px;
    height: 12px;
    border: solid var(--dark);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* The container */
.filter-radio-button {
    /*display: block;*/
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .filter-radio-button input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
    .filter-radio-button .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: var(--gray);
        border-radius: 50%;
    }

/* On mouse-over, add a grey background color */
    .filter-radio-button:hover input ~ .checkmark {
        background-color: var(--gray);
    }

/* When the radio button is checked, add a blue background */
.filter-radio-button input:checked ~ .checkmark {
    background-color: var(--primary);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
    .filter-radio-button .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

/* Show the indicator (dot/circle) when checked */
.filter-radio-button input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
    .filter-radio-button .checkmark:after {
        top: 5px;
        left: 5px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: black;
    }

.form-group.position-relative input {
    padding-right: 32px;
}

.form-clear {
    align-items: center;
    /*background: #cecece;*/
    border-radius: 50%;
    bottom: 8px;
    color: rgba(0, 0, 0, .54);
    cursor: pointer;
    display: flex;
    height: 24px;
    justify-content: center;
    position: absolute;
    right: 80px;
    width: 24px;
    z-index: 10;
}

.state-item{
    font-weight: 700;
}

.sub-header-item{
    font-weight : 600;
}

.state-item td, .leader-item td, .branch-item td{
  vertical-align : middle;
}

    .state-item td:first-child, .leader-item td:first-child, .branch-item td:first-child {
        width: 50px;
        padding-top: 15px;
    }

    .state-item td:last-child, .leader-item td:last-child, .branch-item td:last-child {
        font-size: 18px;
        vertical-align: top;
        width: 50px;
    } 

    .state-item td:last-child a, .leader-item td:last-child a, .branch-item td:last-child a{
        font-size: 18px;
    }


.leader-item.expand-item[aria-expanded="true"].clickable, .branch-item.expand-item[aria-expanded="true"].clickable {
    background-color: var(--green) !important;
}