body {
    font-family: 'Roboto+Condensed', 'Catamaran' !important;
    font-size: 1.4rem !important;
}

.sidebar-menu .header {
    text-transform: uppercase;
    font-size: 1.2rem;
}

.menu-editor-label {
    display: block;
    width: 100%;
    padding: 0.2em 0 0 .2em;
    line-height: 2em;
    border-color: rgba(100, 100, 100, 0.4);
    background-color: rgba(100, 100, 100, 0.1);
    font-weight: bold;
    margin-bottom: .4em;
}

body.dragging, body.dragging * {
    cursor: move !important;
}

.dragged {
    position: absolute;
    opacity: 0.5;
    z-index: 2000;
}

.sortablelist li.placeholder {
    position: relative;
    margin: 0;
    padding: 0.4em;
    border: 1px;
    border-color: cornflowerblue;
    border-style: dotted;
    z-index: 2000;
    background-color: rgba(250, 169, 74, 0.1);

}

.sortablelist.source {
    padding-left: 6px;
}

.sortablelist li {
    /*list-style: none;*/
}

.sortablelist.source li {
    /*list-style: none;*/
    display: block;
    border: 1px solid #e2e2e2;
    padding: 6px;
    margin: 0 0 3px;
}

.sortablelist.source li {
    /*list-style: none;*/
    display: block;
    border: 1px solid #e2e2e2;
    padding: 6px;
    margin: 0 0 3px;
}

.sortablelist.target li .menuitem {
    display: block;
    border: 1px solid #e2e2e2;
    padding: 6px;
    margin: 0 0 3px;
    background-color: rgba(250, 169, 74, 0.3);
}

.sortablelist .btn {
    padding: 0 .4em !important;
    margin: 0 0.1em;
}

.sortablelist .btn i {
    font-size: .8em;
}

.sortablelist-main {
    padding-left: 0;
    scroll-padding-inline-start: 0 !important;
}

.sortablelist-main li {
    list-style: none;
}

.sortablelist.target li.highlight .menuitem {
    display: block;
    border: 1px solid #e2e2e2 !important;
    padding: 6px !important;
    margin: 0 0 3px !important;
    background-color: rgba(250, 169, 74, 0.3) !important;
    font-weight: normal !important;
}

.sortablelist.level-1 > li {
    padding-left: 2em;
}

.sortablelist.level-2 > li {
    padding-left: 4em;
}

.sortablelist.level-3 > li {
    padding-left: 6em;
}

.sortablelist.level-4 > li {
    padding-left: 8em;
}

.sortablelist.level-5 > li {
    padding-left: 10em;
}

ul.sortablelist-target {
    padding-left: 0 !important;
}

ul.sortablelist {
    list-style: none;
}

ul#dropzone {
    list-style: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.icons {
    font-family: 'FontAwesome', 'Roboto+Condensed', 'Catamaran';
}

option.text-red {
    color: #dd4b39 !important;
}

option.text-yellow {
    color: #f39c12 !important;
}

option.text-aqua {
    color: #00c0ef !important;
}

option.text-blue {
    color: #0073b7 !important;
}

option.text-black {
    color: #111111 !important;
}

option.text-light-blue {
    color: #3c8dbc !important;
}

option.text-green {
    color: #00a65a !important;
}

option.text-gray {
    color: #d2d6de !important;
}

option.text-navy {
    color: #001f3f !important;
}

option.text-teal {
    color: #39cccc !important;
}

option.text-olive {
    color: #3d9970 !important;
}

option.text-lime {
    color: #01ff70 !important;
}

option.text-orange {
    color: #ff851b !important;
}

option.text-fuchsia {
    color: #f012be !important;
}

option.text-purple {
    color: #605ca8 !important;
}

option.text-maroon {
    color: #d81b60 !important;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 25px;
    left: 20px;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 28px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #0073b7;
}

input:focus + .slider {
    box-shadow: 0 0 1px #0073b7;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}