@font-face {
    font-family: 'Dax-Regular';
    src: url("../fonts/DaxRegular.ttf") format("truetype")
}

@font-face {
    font-family: 'HelveticaNeueLight';
    src: url("../fonts/HelveticaNeueLight.ttf") format("truetype")
}

* {
    margin: 0;
    padding: 0
}

.h4, h4 {
    font-size: 18px;
}

.h5, h5 {
    font-size: 14px;
}

.hidden {
    display: none !important;
}

.navbar {
    display: block;
}

.pull-right {
    float: right !important;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: var(--ct-body-bg);
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

.tree li a.tree-item-hover, .tree li a.tree-item-hover + ul li a {
    background: #E9E9E9;
    color: #ff6d2c;
    border: 2px solid #ff6d2c
}

    .tree li a.tree-item-hover + ul li::after, .tree li a.tree-item-hover + ul li::before, .tree li a.tree-item-hover + ul::before, .tree li a.tree-item-hover + ul ul::before {
        border-color: #ff6d2c
    }

.tree li a:hover, .tree li a:hover + ul li a {
    color: #ff6d2c;
    border: 2px solid #ff6d2c
}

    .tree li a:hover + ul li::after, .tree li a:hover + ul li::before, .tree li a:hover + ul::before, .tree li a:hover + ul ul::before {
        border-color: #ff6d2c
    }

.row {
    width: 100%;
}

.tree {
    position: relative
}

    .tree ul {
        display: block;
        position: absolute;
        padding: 0;
        margin: auto;
        padding-top: 40px;
        position: relative;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s
    }

    .tree li {
        float: left;
        text-align: center;
        list-style-type: none;
        position: relative;
        padding: 40px 10px 0 10px;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        margin-bottom: 10px
    }

        .tree li::before, .tree li::after {
            content: '';
            position: absolute;
            top: 0;
            right: 50%;
            border-top: 2px solid #292c30;
            width: 50%;
            height: 40px
        }

        .tree li::after {
            right: auto;
            left: 50%;
            border-left: 2px solid #292c30
        }

        .tree li:only-child::after, .tree li:only-child::before {
            display: none
        }

        .tree li:only-child {
            padding-top: 0
        }

        .tree li:first-child::before, .tree li:last-child::after {
            border: 0 none
        }

        .tree li:last-child::before {
            border-right: 2px solid #292c30;
            border-radius: 0 5px 0 0;
            -webkit-border-radius: 0 5px 0 0;
            -moz-border-radius: 0 5px 0 0
        }

        .tree li:first-child::after {
            border-radius: 5px 0 0 0;
            -webkit-border-radius: 5px 0 0 0;
            -moz-border-radius: 5px 0 0 0
        }

    .tree ul ul::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        border-left: 2px solid var(--ct-card-border-color);
        width: 0;
        height: 40px
    }

    .tree li a {
        border: 2px solid var(--ct-card-border-color);
        padding: 10px 20px;
        text-decoration: none;
        color: var(--ct-body-color);
        font-family: arial, verdana, tahoma;
        font-size: 14px;
        display: inline-block;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s
    }

@media (max-width: 1100px) {
    .tree {
        position: relative;
        padding: 10px
    }

        .tree ul {
            display: initial;
            position: relative;
            padding: 0;
            margin: auto;
            left: 15px;
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s
        }

        .tree li {
            float: initial;
            text-align: left;
            list-style-type: square;
            padding: initial;
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            margin: 0
        }

            .tree li a {
                position: relative;
                border: none;
                padding: initial;
                text-decoration: none;
                color: #292c30;
                font-family: arial, verdana, tahoma;
                font-size: 14px;
                display: initial;
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                transition: all 0.5s;
                -webkit-transition: all 0.5s;
                -moz-transition: all 0.5s
            }

            .tree li::before, .tree li::after {
                position: relative;
                top: 0;
                right: 50%;
                height: 40px;
                border: none
            }

            .tree li::after {
                border: none
            }

            .tree li:only-child::after, .tree li:only-child::before {
                display: none
            }

            .tree li:only-child {
                padding-top: 0
            }

            .tree li:first-child::before, .tree li:last-child::after {
                border: none
            }

            .tree li:last-child::before {
                border: none
            }

            .tree li:first-child::after {
                border: none;
                border-radius: 5px 0 0 0;
                -webkit-border-radius: 5px 0 0 0;
                -moz-border-radius: 5px 0 0 0
            }

        .tree ul ul::before {
            border: none;
            position: relative;
            height: 40px
        }

        .tree li a.tree-item-hover, .tree li a.tree-item-hover + ul li a {
            background: none;
            text-decoration: underline;
            color: #ff6d2c;
            border: none
        }

            .tree li a.tree-item-hover + ul li::after, .tree li a.tree-item-hover + ul li::before, .tree li a.tree-item-hover + ul::before, .tree li a.tree-item-hover + ul ul::before {
                border: none
            }

        .tree li a:hover, .tree li a:hover + ul li a {
            background: none;
            color: #ff6d2c;
            text-decoration: underline;
            border: none
        }

            .tree li a:hover + ul li::after, .tree li a:hover + ul li::before, .tree li a:hover + ul::before, .tree li a:hover + ul ul::before {
                border: none
            }
}

body {
    color: var(--ct-body-color);
    font-family: Arial,sans-serif;
    font-size: 14px;
}

    body .form-control-static {
        line-height: 34px !important
    }

    body .nav-tabs > li {
        margin-bottom: initial !important
    }

    body fieldset > legend {
        font-size: 17px !important
    }

    body h3 {
        font-family: Arial,sans-serif
    }

    body a {
        font-weight: normal
    }

    body ul.nav.nav-tabs li a {
        font-weight: normal
    }

    body .updateClass {
        background-image: url("../../App_Images/General/loading_red.gif");
        background-repeat: no-repeat;
        background-position: center;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        overflow: auto;
        z-index: 100;
        background-color: #cdc8c8;
        filter: alpha(opacity=50);
        opacity: .50
    }

    body .updateProgress {
        background-image: url("../../App_Images/General/loading_red.gif");
        background-repeat: no-repeat;
        background-position: center;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        overflow: auto;
        z-index: 100;
        background-color: #cdc8c8;
        filter: alpha(opacity=50);
        -moz-opacity: .50;
        opacity: .50
    }

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: var(--ct-secondary-bg);
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.progress-bar-success {
    background-color: #5cb85c;
}

@media (max-width: 767px) {
    body .progress-bar-success div.progress-bar-text {
        visibility: hidden;
    }
}

body .progress-bar-success div.progress-bar-text {
    position: absolute;
    text-align: center;
    width: 90%;
    color: #292c30;
    font-size: 15px;
    cursor: pointer;
}

body .modal-backdrop.in {
    z-index: 1000 !important
}

body .navbar-form {
    border-color: #ff6d2c
}

.dropdown-menu {
    overflow-x: hidden;
    height: auto;
    max-height: 300px;
}

body .dropdown-menu > .active > a {
    background-color: #ff6d2c
}

    body .dropdown-menu > .active > a:hover {
        background-color: #ff6d2c
    }

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #ff6d2c;
}

body div#page-wrapper {
    padding-top: 30px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 30px;
    background-color: #f8f8f8
}

body .table-with-hover thead tr#titleRow > td > a {
    text-decoration: none;
    color: #292c30;
    font-weight: bold
}

body .table-with-hover tbody tr:hover {
    background-color: rgba(29,29,29,0.1)
}

body .modal.in div.modal-dialog {
    z-index: 10001 !important
}

body .scheduler_checkboxlist td {
    margin-left: 20px;
    padding-right: 100px;
    padding-bottom: 5px;
    line-height: 34px
}

    body .scheduler_checkboxlist td input[type=checkbox] {
        margin: 0;
        line-height: 34px;
        vertical-align: middle;
        position: relative;
        margin-right: 10px
    }

    body .scheduler_checkboxlist td label {
        position: absolute;
        line-height: 34px;
        margin-bottom: 0;
        font-weight: normal;
        font-size: 14px
    }

    body .scheduler_checkboxlist td:first-child {
        padding-left: 0
    }

body .form-label {
    line-height: 34px;
    vertical-align: middle
}

body div.h3, body h3 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

body .page-title {
    display: inline-block
}

@media (max-width: 862px) {
    body ol.pull-right {
        float: left !important
    }
}

@media (max-width: 992px) {
    body div#page-wrapper {
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px
    }
}

body .checkboxlabel input[type=checkbox] {
    margin: 0;
    line-height: 34px;
    vertical-align: middle;
    position: relative;
    margin-right: 10px
}

body .checkboxlabel label {
    position: relative;
    line-height: 34px;
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px
}

/*body ol.breadcrumb {
    cursor: pointer;
    background-color: #FFF;
    margin-bottom: 0
}

    body ol.breadcrumb li a {
        color: #ff6d2c
    }

    body ol.breadcrumb li.active a {
        color: #292c30
    }

.breadcrumb > .active {
    color: #777;
}

.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}*/

body .page-header {
    margin: 0;
    padding: 0;
    border: none;
    margin-bottom: 15px;
    width: 100%;
}

@media (max-width: 1200px) {
    body .page-header {
        display: inline-block
    }
}

body #scoopsTopBar > ul > li > a {
    color: white
}

body #scoopsSideBar {
    box-sizing: border-box;
    background: #FFF !important;
    box-shadow: 0 0 5px #D1D1D1
}

@media (min-width: 768px) {
    body #scoopsSideBar {
        min-height: calc(99vh - 60px);
        width: 18rem !important;
    }
}

body .navbar.static-top ul.dropdown-menu.dropdown-alerts.Add li {
    display: inline-block;
    width: 49%;
    min-height: 40px;
    height: 20%;
    text-align: center;
    vertical-align: middle;
    line-height: 40px
}

    body .navbar.static-top ul.dropdown-menu.dropdown-alerts.Add li a {
        line-height: 40px;
        text-align: left;
    }

body .navbar.static-top ul.dropdown-menu.dropdown-alerts.Language li > a {
    background: none;
    color: #333;
}

body .navbar.static-top ul.dropdown-menu.dropdown-alerts.Language li.active > a {
    background: none;
    color: #333;
    font-weight: bold
}

    body .navbar.static-top ul.dropdown-menu.dropdown-alerts.Language li.active > a:hover {
        background-color: #f5f5f5
    }

body .navbar.static-top ul.dropdown-menu.dropdown-alerts li {
    display: block;
    min-height: 40px;
    text-align: center;
    vertical-align: middle;
    line-height: 40px
}

    body .navbar.static-top ul.dropdown-menu.dropdown-alerts li a {
        line-height: 40px;
        text-align: left;
        background: none;
        color: #333;
    }

    body .navbar.static-top ul.dropdown-menu.dropdown-alerts li.divider {
        min-height: unset;
        margin: 0
    }

body #scoopsSideBar a {
    color: #292c30
}

    body #scoopsSideBar a > i {
        color: #292c30 !important
    }

    body #scoopsSideBar a.active {
        color: #ff6d2c
    }

        body #scoopsSideBar a.active > i {
            color: #ff6d2c
        }

body #scoopsSideBar a {
    color: #292c30
}

body #scoopsSideBar ul > li > ul > li > a {
    border-bottom: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
    padding-left: 0;
    margin-left: 37px
}

body #scoopsSideBar ul > li > ul > li:last-child > a {
    border-bottom: none;
    border-left: 1px solid #e7e7e7
}

body #scoopsSideBar ul > li > ul > li > a > i {
    margin-right: 15px;
    color: #9099a2
}

body #scoopsSideBar ul > li > ul > li > a.active {
    color: #ff6d2c
}

body #scoopsSideBar ul > li > a > i {
    margin-right: 15px;
    color: #9099a2
}

body li.with-progress {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px
}

    body li.with-progress > div > div > span.sr-only {
        position: absolute;
        text-align: center;
        width: auto;
        overflow: hidden;
        height: auto;
        clip: initial;
        color: #ffffff; /*#292c30*/
    }

body ul.dropdown-alerts > li > a > div > i.fa {
    margin-right: 15px
}

.ajax__fileupload_dropzone {
    height: 200px !important
}

.modal label {
    margin-left: 5px;
}

.modal a {
    line-height: 34px;
    color: #292c30
}

    .modal a.nav-link {
        line-height: unset;
        color: #292c30
    }

.modal .panel-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
    vertical-align: middle
}

    .modal .panel-title input[type=image] {
        height: 20px;
        opacity: 0.6;
        vertical-align: middle
    }

        .modal .panel-title input[type=image]:hover {
            opacity: 0.9
        }

        .modal .panel-title input[type=image]:not(:first-child) {
            margin-left: 5px
        }

    .modal .panel-title a:not(:first-child) img {
        margin-left: 5px
    }

    .modal .panel-title a img {
        height: 20px;
        opacity: 0.6;
        vertical-align: middle
    }

        .modal .panel-title a img:hover {
            opacity: 0.9
        }

    .modal .panel-title div.pull-right {
        position: relative
    }

        .modal .panel-title div.pull-right input[type=text].form-control {
            display: inline-block;
            height: 25px
        }

        .modal .panel-title div.pull-right input[type=image] {
            float: right;
            position: absolute;
            right: 0;
            top: 0;
            padding: 5px;
            height: 25px;
            opacity: 0.45
        }

            .modal .panel-title div.pull-right input[type=image]:hover {
                opacity: .8
            }

.panel.sharp-upper-left-corner {
    margin-top: 1px !important;
    border-radius: 0
}

    .panel.sharp-upper-left-corner div.panel-heading {
        border-top-left-radius: 0
    }

.panel-heading {
    padding: 10px 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel .panel-heading hr {
    border-color: gainsboro;
    margin-top: 5px;
    margin-bottom: 5px
}

.panel .panel-heading .action-bar {
    padding: 0;
    min-height: initial !important;
    box-shadow: none;
    background-color: unset !important
}

    .panel .panel-heading .action-bar.no-border {
        border: none
    }

    .panel .panel-heading .action-bar img {
        float: initial;
        margin-left: 10px;
        height: 20px;
        opacity: 0.6;
        vertical-align: middle
    }

.panel .panel-heading img {
    float: initial;
    margin-left: 10px;
    height: 16px;
    opacity: 0.4;
    vertical-align: middle
}

    .panel .panel-heading img:hover {
        opacity: 0.9
    }

.panel .panel-heading .panel-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
    vertical-align: middle
}

    .panel .panel-heading .panel-title input[type=image] {
        height: 20px;
        opacity: 0.6;
        vertical-align: middle
    }

        .panel .panel-heading .panel-title input[type=image]:hover {
            opacity: 0.9
        }

        .panel .panel-heading .panel-title input[type=image]:not(:first-child) {
            margin-left: 5px
        }

    .panel .panel-heading .panel-title a:not(:first-child) img {
        margin-left: 5px
    }

    .panel .panel-heading .panel-title a img {
        height: 20px;
        opacity: 0.6;
        vertical-align: middle
    }

        .panel .panel-heading .panel-title a img:hover {
            opacity: 0.9
        }

    .panel .panel-heading .panel-title div.pull-right {
        position: relative
    }

        .panel .panel-heading .panel-title div.pull-right input[type=text].form-control {
            display: inline-block;
            height: 25px
        }

        .panel .panel-heading .panel-title div.pull-right input[type=image] {
            float: right;
            position: absolute;
            right: 0;
            top: 0;
            padding: 5px;
            height: 25px;
            opacity: 0.45
        }

            .panel .panel-heading .panel-title div.pull-right input[type=image]:hover {
                opacity: .8
            }

.panel .panel-heading .panel-paging {
    text-align: center
}

    .panel .panel-heading .panel-paging input[type=image] {
        height: 20px;
        opacity: .6
    }

    .panel .panel-heading .panel-paging input[id*=Prev] {
        float: left !important
    }

    .panel .panel-heading .panel-paging input[id*=Next] {
        float: right
    }

    .panel .panel-heading .panel-paging img {
        height: 20px !important;
        opacity: .6
    }

        .panel .panel-heading .panel-paging img[id*=Prev] {
            float: left !important
        }

        .panel .panel-heading .panel-paging img[id*=Next] {
            float: right
        }

    .panel .panel-heading .panel-paging .paginglabel {
        font-size: 12px;
        font-size: inherit;
        font-weight: normal
    }

.panel .panel-heading .panel-subtitle {
    font-size: 14px;
    font-weight: normal
}

.panel .panel-body .alert {
    margin-top: 0;
    margin-bottom: 0
}

.table tbody input[type=image] {
    opacity: 0.6
}

    .table tbody input[type=image]:hover {
        opacity: 0.9
    }

.nav.nav-tabs > li.active {
    margin-bottom: 0
}

.panel-body-with-table {
    margin-bottom: 0px;
    margin-top: 0px !important;
    top: 0px !important;
    padding: 0px
}

    .panel-body-with-table .table {
        top: 0px !important;
        margin-bottom: 0px !important
    }

    .panel-body-with-table .alert {
        margin: 0
    }

.panel.panel-primary {
    border-color: #ff6d2c
}

    .panel.panel-primary .panel-heading {
        background-color: #ff6d2c;
        border-color: #ff6d2c
    }

.panel.scoops-panel {
    box-shadow: 0 0 5px #D1D1D1;
    border: none;
    width: 100%;
    border-radius: unset;
    margin-bottom: 20px;
    background-color: #fff;
}

    .panel.scoops-panel .hidden {
        display: none;
    }

    .panel.scoops-panel.sharp-upper-left-corner {
        margin-top: 1px !important;
        border-radius: 0
    }

        .panel.scoops-panel.sharp-upper-left-corner div.panel-heading {
            border-top-left-radius: 0
        }

    .panel.scoops-panel .panel-waiter {
        display: none;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #808080;
        opacity: 0.7;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url("../../App_Images/General/loading_gray.gif")
    }

    .panel.scoops-panel .scoops-panel-info {
        font-weight: normal;
    }

    .panel.scoops-panel .panel-heading {
        background-color: #FFF;
        border-bottom: 1px solid #ff6d2c
    }

        .panel.scoops-panel .panel-heading hr {
            border-color: gainsboro;
            margin-top: 5px;
            margin-bottom: 5px
        }

        .panel.scoops-panel .panel-heading .action-bar {
            padding: 0;
            min-height: initial !important;
            box-shadow: none;
            background-color: unset;
            border-radius: unset
        }

            .panel.scoops-panel .panel-heading .action-bar img {
                float: initial;
                margin-left: 10px;
                height: 20px;
                opacity: 0.6;
                vertical-align: middle
            }

        .panel.scoops-panel .panel-heading img {
            float: initial;
            margin-left: 10px;
            height: 16px;
            opacity: 0.4;
            vertical-align: middle
        }

            .panel.scoops-panel .panel-heading img:hover {
                opacity: 0.9
            }

        .panel.scoops-panel .panel-heading .panel-title {
            font-size: 14px;
            font-weight: bold;
            line-height: 25px;
            vertical-align: middle
        }

            .panel.scoops-panel .panel-heading .panel-title input[type=image] {
                height: 20px;
                opacity: 0.6;
                vertical-align: middle
            }

                .panel.scoops-panel .panel-heading .panel-title input[type=image]:hover {
                    opacity: 0.9
                }

                .panel.scoops-panel .panel-heading .panel-title input[type=image]:not(:first-child) {
                    margin-left: 5px
                }

            .panel.scoops-panel .panel-heading .panel-title a:not(:first-child) img {
                margin-left: 5px
            }

            .panel.scoops-panel .panel-heading .panel-title a img {
                height: 20px;
                opacity: 0.6;
                vertical-align: middle
            }

                .panel.scoops-panel .panel-heading .panel-title a img:hover {
                    opacity: 0.9
                }

            .panel.scoops-panel .panel-heading .panel-title div.pull-right {
                position: relative
            }

                .panel.scoops-panel .panel-heading .panel-title div.pull-right input[type=text].form-control {
                    display: inline-block;
                    height: 25px
                }

                .panel.scoops-panel .panel-heading .panel-title div.pull-right input[type=image] {
                    float: right;
                    position: absolute;
                    right: 0;
                    top: 0;
                    padding: 5px;
                    height: 25px;
                    opacity: 0.45
                }

                    .panel.scoops-panel .panel-heading .panel-title div.pull-right input[type=image]:hover {
                        opacity: .8
                    }

        .panel.scoops-panel .panel-heading .panel-paging {
            text-align: center
        }

            .panel.scoops-panel .panel-heading .panel-paging input[type=image] {
                height: 20px;
                opacity: .6
            }

            .panel.scoops-panel .panel-heading .panel-paging input[id*=Previous] {
                float: left !important
            }

            .panel.scoops-panel .panel-heading .panel-paging input[id*=Next] {
                float: right
            }

            .panel.scoops-panel .panel-heading .panel-paging span.paginglabel {
                font-size: 12px;
                font-size: inherit;
                font-weight: normal
            }

        .panel.scoops-panel .panel-heading .panel-subtitle {
            font-size: 14px;
            font-weight: normal
        }

    .panel.scoops-panel .panel-body .alert {
        margin-top: 0;
        margin-bottom: 0
    }

    .panel.scoops-panel .panel-body {
        padding: 15px;
    }

.blocks {
    list-style-type: none;
    margin: 0;
    padding: 0
}

    .blocks li {
        margin: 7px 7px 7px 0;
        border: 1px solid var(--ct-card-border-color);
        border-radius: 4px;
        padding: 1px;
        display: inline-block;
        height: auto;
        min-width: 120px !important;
        position: relative;
        text-align: center;
    }
        /*extra css class to change opacity for the startdates*/
        .blocks li .item_image_opacity {
            opacity: 0.4;
            filter: alpha(opacity=60);
            min-height: 80px !important;
            min-width: 80px !important;
            width: 55%;
            height: auto
        }

        .blocks li .item_image {
            min-height: 80px !important;
            min-width: 80px !important;
            width: 55%;
            height: auto
        }

        .blocks li .item_photo_background {
            width: initial !important;
            width: 55%;
            display: block;
            clear: both;
            margin: 0 auto;
            margin-top: 10px;
            height: 80px
        }

            .blocks li .item_photo_background img:first-child {
                top: 0;
                left: 0;
                display: inline;
                position: relative
            }

            .blocks li .item_photo_background img:nth-child(2) {
                top: -55px;
                left: 0;
                position: relative;
                margin: 0 auto
            }

        .blocks li .item_title {
            margin: 5px;
            color: var(--ct-body-color);
            white-space: nowrap;
            overflow: hidden;
        }

        .blocks li:hover a {
            text-decoration: none !important;
        }

        .blocks li .item_title a > img {
            vertical-align: middle;
            opacity: 0.5;
            padding-right: 5px;
            padding-left: 5px
        }

            .blocks li .item_title a > img:hover {
                opacity: 0.8
            }

        .blocks li .item_title a.datelimits > img {
            vertical-align: middle;
            opacity: 1;
            padding-right: 5px;
            padding-left: 5px
        }

        .blocks li .item_buttons {
            position: relative;
            display: block;
            margin-top: 10px;
            margin-bottom: 5px
        }

            .blocks li .item_buttons input[type=image] {
                vertical-align: middle;
                opacity: 0.5;
                padding-right: 3px;
                padding-left: 3px
            }

                .blocks li .item_buttons input[type=image]:hover {
                    opacity: 0.8
                }

            .blocks li .item_buttons a > img {
                vertical-align: middle;
                opacity: 0.5;
                padding-right: 0px;
                padding-left: 0px
            }

                .blocks li .item_buttons a > img:hover {
                    opacity: 0.8
                }

        .blocks li hr.top_divider {
            margin-top: 0;
            margin-bottom: 5px
        }

        .blocks li hr.bottom_divider {
            margin-top: 5px;
            margin-bottom: 0
        }

        .blocks li.medium_block {
            width: 10%
        }

            .blocks li.medium_block .item_image {
                min-height: 80px !important;
                height: 80px !important;
                width: 80px !important;
                min-width: 80px !important
            }

        .blocks li.xs_block {
            width: 5%
        }

        .blocks li.small_block {
            width: 9%
        }

        .blocks li.large_block {
            width: 13%
        }

            .blocks li.large_block .item_image {
                min-height: 80px !important;
                height: 104px !important;
                width: 104px !important;
                min-width: 80px !important
            }

        .blocks li.xl_block {
            width: 15%
        }

            .blocks li.xl_block .item_image {
                min-height: 80px !important;
                height: 80px !important;
                width: 80px !important;
                min-width: 80px !important
            }

        .blocks li.xxl_block {
            width: 20%
        }

.table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border: 1px solid var(--ct-card-border-color);
}

table.table-scheduler {
    border-collapse: collapse;
    border-spacing: 20px 0px;
    color: #292c30;
}

    table.table-scheduler a {
        text-decoration: none !important
    }

    table.table-scheduler span {
        color: var(--ct-warning-text-emphasis);
    }

    table.table-scheduler tr th {
        text-align: center;
        vertical-align: middle
    }

@media only screen and (min-width: 1170px) {
    table.table-scheduler tr th {
        width: 13%
    }

    table.table-scheduler tr td {
        width: 13%
    }

    table.table-scheduler tr th:first-child {
        width: 9%
    }

    table.table-scheduler tr td:first-child {
        width: 9%
    }
}

table.table-scheduler tr td {
    border-top: none
}

table.table-scheduler tr th {
    border-bottom: inherit
}

    table.table-scheduler tr th:first-child {
        border-top: none;
        border-right: none;
        vertical-align: middle;
        border-bottom: none
    }

table.table-scheduler tr td:first-child {
    border-collapse: initial;
    border-spacing: initial;
    border-right: none;
    vertical-align: middle
}

table.table-scheduler td:nth-child(2) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler th:nth-child(2) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler th:nth-child(3) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler td:nth-child(3) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler th:nth-child(4) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler td:nth-child(4) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler th:nth-child(5) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler td:nth-child(5) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler th:nth-child(6) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler td:nth-child(6) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler th:nth-child(7) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler td:nth-child(7) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler th:nth-child(8) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler td:nth-child(8) {
    background: rgba(29,29,29,0.1)
}

table.table-scheduler td {
    text-align: center;
    padding-right: 0 !important
}

table.table-scheduler .playlist {
    border: 1px solid #808080;
    border-radius: 5%;
    margin-bottom: 2px;
    width: 90%;
    margin: auto;
    padding: 0
}

    table.table-scheduler .playlist span {
        display: block
    }

table.table-scheduler .playlist-whole-day {
    /*background: rgba(230,59,1,0.4);*/
    color: var(--ct-warning-text-emphasis);
    background-color: var(--ct-warning-bg-subtle);
    border-color: var(--ct-warning-border-subtle);
    border-color: #e63b01;
    margin-bottom: 2px;
    border-radius: 5%;
}

    table.table-scheduler .playlist-whole-day span {
        font-weight: normal
    }

        table.table-scheduler .playlist-whole-day span:first-child {
            font-weight: bold
        }

table.table-scheduler .playlist-scheduler {
    margin-bottom: 2px;
    background: rgba(50,118,177,0.4);
    border-color: #285E8E
}

    table.table-scheduler .playlist-scheduler span {
        font-weight: normal
    }

        table.table-scheduler .playlist-scheduler span:first-child {
            margin-left: 5px;
            margin-top: 5px;
            margin-right: 5px;
            border-radius: 2px;
            font-weight: bold
        }

table.table-responsive {
    display: table;
}

    table.table-responsive thead > tr {
        border-bottom: none
    }

        table.table-responsive thead > tr th > a {
            color: #292c30;
            text-decoration: none;
            font-weight: bold
        }

div.ajax__fileupload > .ajax__fileupload_dropzone {
    height: 250px;
    line-height: 250px
}

ul.tags {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 10px;
    bottom: -12px;
    list-style: none
}

    ul.tags li, .tags a {
        float: left;
        height: 24px;
        line-height: 24px;
        position: relative;
        color: #FFF;
        font-weight: bold;
        font-size: 13px;
        text-decoration: none
    }

    ul.tags li {
        margin-left: 20px;
        padding: 0 10px 0 12px;
        background: #ff6d2c;
        color: #fff;
        text-decoration: none;
        -moz-border-radius-bottomright: 4px;
        -webkit-border-bottom-right-radius: 4px;
        border-bottom-right-radius: 4px;
        -moz-border-radius-topright: 4px;
        -webkit-border-top-right-radius: 4px;
        border-top-right-radius: 4px
    }

        ul.tags li input[type=image] {
            padding: 0;
            margin: 0;
            margin-left: 10px;
            line-height: 24px;
            vertical-align: middle
        }

            ul.tags li input[type=image]:hover {
                opacity: 1
            }

        ul.tags li:before {
            content: "";
            float: left;
            position: absolute;
            top: 0;
            left: -12px;
            width: 0;
            height: 0;
            border-color: transparent #ff6d2c transparent transparent;
            border-style: solid;
            border-width: 13px 12px 11px 0
        }

        ul.tags li:after {
            content: "";
            position: absolute;
            top: 10px;
            left: 0;
            float: left;
            width: 4px;
            height: 4px;
            -moz-border-radius: 2px;
            -webkit-border-radius: 2px;
            border-radius: 2px;
            background: #fff;
            -moz-box-shadow: -1px -1px 2px #9099a2;
            -webkit-box-shadow: -1px -1px 2px #9099a2;
            box-shadow: -1px -1px 2px #9099a2
        }

        ul.tags li:hover {
            background: #555
        }

            ul.tags li:hover:before {
                border-color: transparent #555 transparent transparent
            }

.bs-wizard {
    margin-top: 20px;
    border-bottom: solid 1px #e0e0e0;
    padding: 0 0 10px 0
}

    .bs-wizard > .bs-wizard-step {
        padding: 0;
        position: relative
    }

        .bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
            color: #292c30;
            font-size: 16px;
            margin-bottom: 5px
        }

            .bs-wizard > .bs-wizard-step .bs-wizard-stepnum a {
                text-decoration: none;
                color: #292c30;
                font-size: 16px;
                margin-bottom: 5px
            }

        .bs-wizard > .bs-wizard-step .bs-wizard-info {
            color: #999;
            font-size: 14px
        }

        .bs-wizard > .bs-wizard-step > .bs-wizard-dot {
            position: absolute;
            width: 25px;
            height: 25px;
            display: block;
            background: #ff6d2c;
            top: 45px;
            left: 50%;
            margin-top: -15px;
            margin-left: -15px;
            border-radius: 50%
        }

            .bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
                content: ' ';
                width: 10px;
                height: 10px;
                background: white;
                border-radius: 50px;
                position: absolute;
                top: 8px;
                left: 8px
            }

        .bs-wizard > .bs-wizard-step > .progress {
            position: relative;
            border-radius: 0px;
            height: 5px;
            box-shadow: none;
            margin: 20px 0
        }

            .bs-wizard > .bs-wizard-step > .progress > .progress-bar {
                width: 0px;
                box-shadow: none;
                background: #ff6d2c
            }

        .bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {
            width: 100%
        }

        .bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
            width: 50%
        }

        .bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
            width: 0%
        }

        .bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
            width: 100%
        }

        .bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
            background-color: #f5f5f5
        }

            .bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
                opacity: 0
            }

        .bs-wizard > .bs-wizard-step:first-child > .progress {
            left: 50%;
            width: 50%
        }

        .bs-wizard > .bs-wizard-step:last-child > .progress {
            width: 50%
        }

        .bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
            pointer-events: none
        }

ul.childcenters {
    margin-top: 20px;
    padding: 0
}

    ul.childcenters li {
        list-style: none;
        text-align: center;
        width: 80px;
        float: left;
        margin-right: 30px
    }

        ul.childcenters li span {
            float: left;
            clear: both;
            margin: 0 auto;
            width: 100%
        }

            ul.childcenters li span.cbdel input {
                min-width: 0 !important
            }

.action-bar {
    min-height: 40px !important;
    padding: 10px 20px;
    border-radius: unset;
    margin-top: 15px
}

div.navbar.action-bar {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
    justify-content: left;
}

.action-bar input[type=image] {
    height: 20px;
    opacity: 0.6;
    vertical-align: middle
}

    .action-bar input[type=image]:hover {
        opacity: 0.9
    }

    .action-bar input[type=image]:not(:first-child) {
        margin-left: 5px
    }

.action-bar a:not(:first-child) img {
    margin-left: 5px
}

.action-bar a img {
    height: 20px;
    opacity: 0.6;
    vertical-align: middle
}

    .action-bar a img:hover {
        opacity: 0.9
    }

ul.nav.nav-tabs.noborder {
    border-bottom: none !important
}

    ul.nav.nav-tabs.noborder li.active > a {
        border-bottom: !important
    }

ul.nav.nav-tabs li a {
    margin-right: 2px;
    background-color: var(--ct-body-bg);
    border-color: var(--ct-border-color);
    border-bottom: none;
}

ul.nav.nav-tabs li.active a {
    text-decoration: underline #ff6d2c 3px;
}

ul.nav.nav-tabs li:not(.active) a:hover {
    background-color: #ff6d2c;
    color: var(--ct-body-color);
}

ul.nav.nav-tabs li.active a:hover {
    color: var(--ct-body-color);
}

ul.nav.nav-tabs .btdel {
    top: 1px;
    right: 2px;
    z-index: 10;
    opacity: 0.2;
    height: 12px;
    padding-left: 6px;
}

    ul.nav.nav-tabs .btdel:hover {
        opacity: 0.8
    }

div[id*=pnlSubTabBar] .nav.nav-tabs.noborder {
    margin-left: 0
}

    div[id*=pnlSubTabBar] .nav.nav-tabs.noborder li a {
        border-color: #ddd;
        border-bottom: none;
        background-color: #f5f5f5
    }

    div[id*=pnlSubTabBar] .nav.nav-tabs.noborder li.active a {
        background-color: #ff6d2c;
        color: #f5f5f5
    }

div.alert.alertContainer {
    text-align: center;
    position: relative
}

    div.alert.alertContainer img {
        opacity: 0.6;
        height: 40px
    }

    div.alert.alertContainer span {
        margin-left: 10px
    }

.navbar-collapse {
    align-items: unset;
    flex-basis: unset;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    padding-left: 15px
}

    .navbar-brand img {
        max-height: 50px
    }

div#radiobuttons label {
    line-height: 34px;
    vertical-align: middle
}

    div#radiobuttons label > input {
        display: none
    }

        div#radiobuttons label > input + i {
            padding: 10px;
            cursor: pointer;
            border: 1px solid transparent
        }

        div#radiobuttons label > input:checked + i {
            border: 1px solid #808080
        }

ul.tg-list, li.tg-list-item {
    list-style: none;
    margin: 0;
    padding: 0
}

    ul.tg-list h2, li.tg-list-item h2 {
        color: #777
    }

    ul.tg-list h4, li.tg-list-item h4 {
        color: #292c30;
        font-size: 14px
    }

.tg-list {
    text-align: center;
    align-items: center
}

.tg-list-item {
    margin: 0 2em
}

.tgl {
    display: none
}

    .tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
        box-sizing: border-box
    }

        .tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {
            background: none
        }

        .tgl + .tgl-btn {
            margin: auto;
            outline: 0;
            display: block;
            width: 4em;
            height: 2em;
            position: relative;
            cursor: pointer;
            user-select: none
        }

            .tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
                position: relative;
                display: block;
                content: "";
                width: 50%;
                height: 100%
            }

            .tgl + .tgl-btn:after {
                left: 0
            }

            .tgl + .tgl-btn:before {
                display: none
            }

            .tgl + .tgl-btn.tgl-button-left {
                margin: 0
            }

        .tgl:checked + .tgl-btn:after {
            left: 50%
        }

.tgl-light + .tgl-btn {
    background: var(--ct-toggle-button-bg);
    border-radius: 2em;
    padding: 2px;
    transition: all .4s ease
}

    .tgl-light + .tgl-btn:after {
        border-radius: 50%;
        background: #fff;
        transition: all .2s ease
    }

.tgl-light:checked + .tgl-btn {
    background: #9FD6AE
}

.tgl-ios + .tgl-btn {
    background: #fbfbfb;
    border-radius: 2em;
    padding: 2px;
    transition: all .4s ease;
    border: 1px solid #e8eae9
}

    .tgl-ios + .tgl-btn:after {
        border-radius: 2em;
        background: #fbfbfb;
        transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),padding 0.3s ease,margin 0.3s ease;
        box-shadow: 0 0 0 1px rgba(0,0,0,0.1),0 4px 0 rgba(0,0,0,0.08)
    }

    .tgl-ios + .tgl-btn:hover:after {
        will-change: padding
    }

    .tgl-ios + .tgl-btn:active {
        box-shadow: inset 0 0 0 2em #e8eae9
    }

        .tgl-ios + .tgl-btn:active:after {
            padding-right: .8em
        }

.tgl-ios:checked + .tgl-btn {
    background: #86d993
}

    .tgl-ios:checked + .tgl-btn:active {
        box-shadow: none
    }

        .tgl-ios:checked + .tgl-btn:active:after {
            margin-left: -.8em
        }

.tgl-skewed + .tgl-btn {
    overflow: hidden;
    border-radius: 4px;
    backface-visibility: hidden;
    transition: all .2s ease;
    font-family: sans-serif;
    background: #FF3A19
}

    .tgl-skewed + .tgl-btn:after, .tgl-skewed + .tgl-btn:before {
        display: inline-block;
        transition: all .2s ease;
        width: 100%;
        text-align: center;
        position: absolute;
        line-height: 2em;
        font-weight: bold;
        color: #fff;
        text-shadow: 0 1px 0 rgba(0,0,0,0.4)
    }

    .tgl-skewed + .tgl-btn:after {
        left: 100%;
        content: attr(data-tg-on)
    }

    .tgl-skewed + .tgl-btn:before {
        left: 0;
        content: attr(data-tg-off)
    }

    .tgl-skewed + .tgl-btn:active {
        background: #FF3A19
    }

        .tgl-skewed + .tgl-btn:active:before {
            left: -10%
        }

.tgl-skewed:checked + .tgl-btn {
    background: #86d993
}

    .tgl-skewed:checked + .tgl-btn:before {
        left: -100%
    }

    .tgl-skewed:checked + .tgl-btn:after {
        left: 0
    }

    .tgl-skewed:checked + .tgl-btn:active:after {
        left: 10%
    }

.tgl-flat + .tgl-btn {
    padding: 2px;
    transition: all .2s ease;
    background: #fff;
    border: 4px solid #f2f2f2;
    border-radius: 2em
}

    .tgl-flat + .tgl-btn:after {
        transition: all .2s ease;
        background: #f2f2f2;
        content: "";
        border-radius: 1em
    }

.tgl-flat:checked + .tgl-btn {
    border: 4px solid #7FC6A6
}

    .tgl-flat:checked + .tgl-btn:after {
        left: 50%;
        background: #7FC6A6
    }

.tgl-flip + .tgl-btn {
    padding: 2px;
    transition: all .2s ease;
    font-family: sans-serif;
    perspective: 100px
}

    .tgl-flip + .tgl-btn:after, .tgl-flip + .tgl-btn:before {
        display: inline-block;
        transition: all .4s ease;
        width: 100%;
        text-align: center;
        position: absolute;
        line-height: 2em;
        font-weight: bold;
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        backface-visibility: hidden;
        border-radius: 4px
    }

    .tgl-flip + .tgl-btn:after {
        content: attr(data-tg-on);
        background: #02C66F;
        transform: rotateY(-180deg)
    }

    .tgl-flip + .tgl-btn:before {
        background: #FF3A19;
        content: attr(data-tg-off)
    }

    .tgl-flip + .tgl-btn:active:before {
        transform: rotateY(-20deg)
    }

.tgl-flip:checked + .tgl-btn:before {
    transform: rotateY(180deg)
}

.tgl-flip:checked + .tgl-btn:after {
    transform: rotateY(0);
    left: 0;
    background: #7FC6A6
}

.tgl-flip:checked + .tgl-btn:active:after {
    transform: rotateY(20deg)
}

table.ajax__htmleditor_editor_container:focus {
    border-color: #FFBB00
}

table.ajax__htmleditor_editor_container {
    border-radius: 4px;
    border: 1px solid #ccc
}

    table.ajax__htmleditor_editor_container td:focus {
        border-color: #FFBB00
    }

    table.ajax__htmleditor_editor_container tbody tr td.ajax__htmleditor_editor_toptoolbar {
        padding: 5px;
        background-color: initial !important
    }

        table.ajax__htmleditor_editor_container tbody tr td.ajax__htmleditor_editor_toptoolbar div img.ajax__htmleditor_toolbar_button {
            margin: 5px
        }

        table.ajax__htmleditor_editor_container tbody tr td.ajax__htmleditor_editor_toptoolbar div div.ajax__htmleditor_toolbar_button {
            font-size: initial
        }

            table.ajax__htmleditor_editor_container tbody tr td.ajax__htmleditor_editor_toptoolbar div div.ajax__htmleditor_toolbar_button nobr {
                margin-right: 5px;
                vertical-align: middle
            }

                table.ajax__htmleditor_editor_container tbody tr td.ajax__htmleditor_editor_toptoolbar div div.ajax__htmleditor_toolbar_button nobr span.ajax__htmleditor_toolbar_selectlable {
                    line-height: 20px;
                    display: none
                }

                table.ajax__htmleditor_editor_container tbody tr td.ajax__htmleditor_editor_toptoolbar div div.ajax__htmleditor_toolbar_button nobr select.ajax_htmleditor_toolbar_selectbutton option {
                    text-align: center
                }

    table.ajax__htmleditor_editor_container tbody tr td.ajax__htmleditor_editor_editpanel {
        border-top-color: #ff6d2c
    }

div.scoops-wizard-wrapper {
    text-align: center;
    margin: 0;
    padding: 0
}

    div.scoops-wizard-wrapper ul.scoops-wizard {
        list-style-type: none;
        margin: auto;
        padding: 0
    }

        div.scoops-wizard-wrapper ul.scoops-wizard a {
            color: var(--ct-body-color);
            text-decoration: none
        }

        div.scoops-wizard-wrapper ul.scoops-wizard li.scoops-wizard-item {
            cursor: pointer;
            display: inline-block;
            padding: 20px 20px
        }

            div.scoops-wizard-wrapper ul.scoops-wizard li.scoops-wizard-item div.scoops-wizard-dot {
                float: left;
                text-align: center;
                line-height: 40px;
                display: inline-block;
                -webkit-background-clip: padding-box;
                -moz-background-clip: padding;
                background-clip: padding-box;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
                border-radius: 50%;
                width: 40px;
                height: 40px;
                border: 1px solid var(--ct-card-border-color);
            }

            div.scoops-wizard-wrapper ul.scoops-wizard li.scoops-wizard-item div.scoops-wizard-title {
                padding: 0px 0px 0px 10px;
                display: inline-block;
                line-height: 40px;
                text-align: center
            }

            div.scoops-wizard-wrapper ul.scoops-wizard li.scoops-wizard-item.active div.scoops-wizard-dot {
                background: #ff6d2c;
                color: #D1D1D1
            }

            div.scoops-wizard-wrapper ul.scoops-wizard li.scoops-wizard-item.active div.scoops-wizard-title {
                color: #ff6d2c
            }

div.nav.navbar.action-bar div.regular-items {
    margin-left: 5px;
    padding: 5px 5px;
    display: inline-block
}

div.nav.navbar.action-bar input[type=image] {
    line-height: 44px;
    vertical-align: middle
}

div.nav.navbar.action-bar div > label {
    cursor: pointer;
    padding: 0;
    margin: 0
}

div.nav.navbar.action-bar div.form-wizard-next {
    cursor: pointer;
    font-weight: 600;
    /*border-radius: 15px;*/
    padding: 5px 10px;
    background: #ff6d2c;
    color: #FFF;
    float: right;
    display: inline-block;
    min-width: 100px;
}

    div.nav.navbar.action-bar div.form-wizard-next input[type=image] {
        opacity: 1;
        padding-left: 3px;
        float: right;
        margin-top: 2px;
    }

div.nav.navbar.action-bar div.form-wizard-previous {
    cursor: pointer;
    font-weight: 600;
    /*border-radius: 15px;*/
    padding: 5px 10px;
    background: #ff6d2c;
    color: #FFF;
    float: left;
    display: inline-block;
    min-width: 100px;
}

    div.nav.navbar.action-bar div.form-wizard-previous input[type=image] {
        opacity: 1;
        padding-right: 3px;
        margin-top: 2px;
    }

div#collapsePanelHeader {
    cursor: pointer !important
}

.video-js {
    font-size: 10px;
    color: #fff
}

.vjs-default-skin .vjs-big-play-button {
    font-size: 3em;
    line-height: 3.2em;
    height: 3.2em;
    width: 3.8em;
    border: 0.06666em solid #fff;
    border-radius: 0;
    background-image: url("http://www.genius.be/public/scoops/logo.png");
    left: 50%;
    top: 50%;
    margin-left: -1.9em;
    margin-top: -1.6em
}

.video-js .vjs-control-bar, .video-js .vjs-big-play-button, .video-js .vjs-menu-button .vjs-menu-content {
    background-color: #EF3B00;
    background-color: rgba(239,59,0,0.7)
}

.video-js .vjs-slider {
    background-color: #ffb298;
    background-color: rgba(255,178,152,0.5)
}

.video-js .vjs-volume-level, .video-js .vjs-play-progress, .video-js .vjs-slider-bar {
    background: #fff
}

.video-js .vjs-load-progress {
    background: ligthen(#ffb298, 25%);
    background: rgba(255,178,152,0.5)
}

    .video-js .vjs-load-progress div {
        background: ligthen(#ffb298, 50%);
        background: rgba(255,178,152,0.75)
    }

div.fa-group {
    height: 25px;
    line-height: 25px;
    vertical-align: middle
}

    div.fa-group div {
        height: 25px;
        line-height: 25px;
        vertical-align: top;
        display: inline-block
    }

    div.fa-group i.fa {
        color: #292c30;
        padding: 2px;
        margin: 0 5px 5px 5px
    }

    div.fa-group i.fa-selected {
        color: #ff6d2c
    }

.divider-vertical {
    height: 20px;
    border-left: 1px solid gray;
    opacity: 0.5;
    margin: 0 5px
}

.table td {
    vertical-align: middle !important
}

table[data-type="overviewTable"] > tbody > tr {
    cursor: pointer
}

.body > button.confirm.btn.btn-primary {
    background-color: #ff6d2c !important;
    border-color: #ff6d2c !important
}

button.confirm.btn.btn-primary:focus {
    outline: none;
    background-color: #ff6d2c !important;
    border-color: #ff6d2c !important
}

button.confirm.btn.btn-primary:active {
    background-color: #ff6d2c !important;
    border-color: #ff6d2c !important
}

button.confirm.btn.btn-primary:hover {
    border-color: #ff6d2c !important;
    background-color: #ff6d2c !important
}

.signin {
    margin-top: 0.75em;
    padding: 50px;
    background: url("/App_Images/header.png");
    background-position: 50%;
    background-size: cover
}

    .signin .container {
        margin-top: 0 !important
    }

    .signin .signin-description {
        color: #FFF
    }

    .signin p {
        text-align: center;
        padding: 5px;
        font-size: 20px
    }

    .signin h1 {
        color: #FFF !important;
        padding: 0 20px;
        margin: 0;
        max-width: 100%;
        height: 50px;
        background: url("/App_Images/scoops play.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50%;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden
    }

@media (max-width: 767px) {
    .signin {
        margin-top: 0;
        padding: 20px
    }
}

#scoopsTopBar {
    /*background: url("/App_Images/header.png");
    background-position: 50%;
    background-size: cover;
    border-bottom: 3px solid #9099a2 !important;
    padding: 3px*/
}

ul.sidebar li {
    border-bottom: 1px solid #e7e7e7;
}

.navbar-default.sidebar {
    left: 0;
    margin-top: 56px !important
}

.sidebar .nav-item .collapse .collapse-inner {
    background-color: #FFF;
}

.navbar-brand img {
    padding: 6px;
    height: 50px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        display: inline-block;
    }

        .navbar-brand img {
            max-width: 100%;
            visibility: hidden;
        }

    .navbar-toggle {
        display: inline-block
    }

    .nav.navbar-top-links.navbar-right {
        text-align: center
    }

    .blocks li {
        width: auto !important;
        display: block;
        margin: 0 !important;
        padding: 0 !important
    }
}

div.tree li[data-selected="True"] > a {
    color: #ff6d2c;
    border: 2px solid #ff6d2c;
}

div.tree li[data-selected="True"] > ul::before {
    border-color: #ff6d2c !important
}

div.tree li[data-selected="True"] > ul::after {
    border-color: #ff6d2c !important
}

div.tree li[data-selected="True"] > ul > li::before {
    border-color: #ff6d2c !important
}

div.tree li[data-selected="True"] > ul > li::after {
    border-color: #ff6d2c !important
}

input[type=checkbox] {
    -moz-transform: inherit;
    -ms-transform: inherit;
    -o-transform: inherit;
    -webkit-transform: inherit;
    transform: scale(1.25)
}

.treeview {
    white-space: nowrap;
    overflow: auto
}

.treeview-group {
    margin: 0;
    padding: 0;
    background: 0 0;
    list-style-type: none;
    position: relative
}

.treeview-item-icon {
    min-width: 15px;
    min-height: 15px
}

.treeview-item {
    display: block;
    border-width: 0;
    margin: 0;
    padding: 0 0 5px 10px
}

    .treeview-item div {
        display: block;
        border-width: 0;
        margin: 0;
        padding: 5px 0 5px 0;
    }

        .treeview-item div:hover {
            background-color: #E7E7E7;
        }

#revoke {
    background: #ff6d2c;
    margin-left: 25px;
}

.error {
    color: #ff6d2c;
    font-weight: bold;
    padding: 0;
}

.btn-default {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--ct-body-color);
    background-color: var(--ct-body-bg);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
    border: 1px solid var(--ct-card-border-color)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0 !important;
}

.breadcrumb {
    background-color: var(--ct-body-bg);
}

.input-icon-wrapper {
    display: none; /* Default to hidden */
    color: var(--ct-body-color);
}

    .input-icon-wrapper:has(input) {
        position: relative;
        display: inline-block;
    }

    .input-icon-wrapper input {
        padding-left: 30px;
        border: none !important;
        background-color: transparent !important;
    }

    .input-icon-wrapper i {
        position: absolute;
        left: 10px; /* Position the icon inside the input */
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none; /* Prevent the icon from intercepting clicks */
    }

    .input-icon-wrapper > input.selected + i {
        color: green;
    }


.custom-file-upload .ajax__fileupload_selectFileButton {
    font-family: Arial, sans-serif;
    background-color: #ff6d2c;
}

    .custom-file-upload .ajax__fileupload_selectFileButton:hover {
        background-color: #e85d1d;
    }

.custom-file-upload .ajax__fileupload_uploadbutton,
.custom-file-upload .ajax_fileupload_cancelbutton {
    font-family: Arial, sans-serif;
    background-color: #ff6d2c;
}

.custom-file-upload .ajax__fileupload_fileItemInfo {
    color: var(--ct-body-color) !important;
}

    .custom-file-upload .ajax__fileupload_fileItemInfo .uploadstatus {
        color: var(--ct-body-color) !important;
    }

    .custom-file-upload .ajax__fileupload_fileItemInfo .pendingState,
    .custom-file-upload .ajax__fileupload_fileItemInfo .uploadedState {
        background-color: transparent;
    }

    .custom-file-upload .ajax__fileupload_fileItemInfo .removeButton {
        font-family: Arial, sans-serif;
        background-color: #ff6d2c;
    }

.custom-file-upload .ajax__fileupload_progressBar {
    background-color: #ff6d2c;
    color: white;
}

.icon-link {
    color: var(--ct-body-color);
    width: 30px;
    display: flex;
    justify-content: flex-end;
}

    .icon-link:hover {
        color: var(--ct-body-color);
        text-decoration: none;
    }

.jconfirm .jconfirm-box {
    background-color: var(--ct-body-bg);
    color: var(--ct-body-color);
}

    .jconfirm .jconfirm-box .jconfirm-buttons .btn.btn-default {
        color: var(--ct-body-color) !important;
        background-color: var(--ct-secondary-bg);
    }

        .jconfirm .jconfirm-box .jconfirm-buttons .btn.btn-default:hover {
            background-color: var(--ct-body-bg-disabled) !important;
        }

.display-none {
    display: none;
}

.ui-datepicker {
    background-color: var(--ct-body-bg);
    color: var(--ct-body-color);
}

    .ui-datepicker .ui-datepicker-header {
        background-color: var(--ct-body-bg);
        color: var(--ct-body-color);
    }

    .ui-datepicker .ui-datepicker-title {
        background-color: var(--ct-body-bg);
        color: var(--ct-body-color);
    }

    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        background-color: var(--ct-body-bg);
        color: var(--ct-body-color);
    }

        .ui-datepicker .ui-datepicker-prev:hover,
        .ui-datepicker .ui-datepicker-next:hover {
            background-color: var(--ct-body-bg);
            color: var(--ct-body-color);
        }

        .ui-datepicker .ui-datepicker-prev span,
        .ui-datepicker .ui-datepicker-next span {
            background-color: var(--ct-body-bg);
            color: var(--ct-body-color);
        }

            .ui-datepicker .ui-datepicker-prev span:hover,
            .ui-datepicker .ui-datepicker-next span:hover {
                background-color: var(--ct-body-bg);
                color: var(--ct-body-color);
            }

    .ui-datepicker .ui-datepicker-calendar {
        background-color: var(--ct-body-bg);
        color: var(--ct-body-color);
    }

        .ui-datepicker .ui-datepicker-calendar thead {
            background-color: var(--ct-body-bg);
            color: var(--ct-body-color);
        }

        .ui-datepicker .ui-datepicker-calendar tbody {
            background-color: var(--ct-body-bg);
            color: var(--ct-body-color);
        }

            .ui-datepicker .ui-datepicker-calendar tbody a {
                background-color: var(--ct-body-bg);
                color: var(--ct-body-color);
            }

                .ui-datepicker .ui-datepicker-calendar tbody a:hover {
                    background-color: var(--ct-body-bg);
                    color: var(--ct-body-color);
                }

            .ui-datepicker .ui-datepicker-calendar tbody .ui-state-active {
                background-color: var(--ct-secondary-bg);
                color: var(--ct-body-color);
            }

                .ui-datepicker .ui-datepicker-calendar tbody .ui-state-active:hover {
                    background-color: var(--ct-secondary-bg);
                    color: var(--ct-body-color);
                }

            .ui-datepicker .ui-datepicker-calendar tbody .ui-state-highlight {
                background-color: var(--ct-secondary-bg);
                color: var(--ct-body-color);
            }

                .ui-datepicker .ui-datepicker-calendar tbody .ui-state-highlight:hover {
                    background-color: var(--ct-secondary-bg);
                    color: var(--ct-body-color);
                }

            .ui-datepicker .ui-datepicker-calendar tbody .ui-state-hover {
                background-color: var(--ct-body-bg);
                background-color: var(--ct-secondary-bg);
            }

.template.list-group li {
    background-color: var(--ct-body-bg);
}

    .template.list-group li a:hover {
        background-color: #ff6d2c;
    }

    .template.list-group li a.active {
        background-color: #ff6d2c !important;
    }

.template input.noUi-target {
    background-color: var(--ct-body-bg);
    color: var(--ct-body-color);
    box-shadow: none;
    border: 1px solid var(--ct-primary-border-color);
    border-radius: 5px !important;
}

.template.component-input {
    margin: 0;
}

.breadcrumb-item a:hover {
    color: var(--ct-body-color);
}

.paginglabel {
    display: flex;
    align-items: center;
    margin-bottom: 0rem;
    margin-left: 1rem;
}
