/* THEME */
html {
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: verdana, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

*:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

a {
    color: #6d6e72;
    text-decoration: none;
}

    a:visited {
        color: #6d6e72;
    }

    a:hover {
        color: #4d4e52;
    }

table {
    border: 1px none #ddd;
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    text-align: left;
    font-weight: normal;
}

td {
    border: 1px solid #ddd;
    border-collapse: collapse;
    text-align: left;
}

td, th {
    padding: 5px 5px 5px 5px;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    user-select: none;
    font-weight: normal;
}

body {
    margin-left: 60px;
}

    body.active-menu {
        transition: all 0.2s ease;
        z-index: 1;
    }

h1 {
    font-size: 16px;
    font-weight: bold;
}

ol, ul {
    list-style: none;
}

input[type=number] {
    text-align: right;
}

.clientlogo {
    padding-bottom: 30px;
    text-align: center;
}

.poweredby {
    padding-top: 30px;
    text-align: center;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

#nav-main {
    display: block;
    width: 50px;
    height: 50px;
    float: left;
}

.active-menu #nav-main {
    position: fixed;
    left: 0;
}

#nav-main label {
    display: block;
    /*    font-size: 20px;*/
}

    #nav-main label > svg {
        display: block;
        text-indent: 0px;
        padding: .75em;
    }

    #nav-main label:hover {
        cursor: pointer;
    }

#nav-main input {
    display: none;
}

    #nav-main input:checked + ul {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }

        #nav-main input:checked + ul > li {
            opacity: 1;
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
        }

#nav-main ul {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    width: 300px;
    padding: 0;
    list-style: none;
    /*-webkit-transform: translateX(-100%);*/
    transform: translateX(-100%);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: #6d6e71;
    text-indent: 0;
    -webkit-box-shadow: 0 0 30px transparent;
    box-shadow: 0 0 30px transparent;
    z-index: 10;
}

@media (min-width: 1024px) {
    #nav-main ul {
        width: 15em;
    }
}

#page-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    border-bottom: 1px solid #f26722;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    #page-header {
        margin-bottom: 0px;
    }
}

@media (max-width:767px) {
    #page-header {
        flex-direction: column;
    }
}

/* Page Title */
.page-title {
    width: 100%;
    height: 40px;
    line-height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #f26722;
}

@media (min-width: 1024px) {
    .page-title {
        top: 0;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: none;
        z-index: -1;
    }
}

@media (max-width:767px) {
    .page-title {
        order: 1;
        border-bottom: none;
    }
}

.page-title h3 {
    text-align: center;
    width: 100%;
    color: #393939;
}

/* Account Tool Bar */
.nav-account {
    position: absolute;
    right: 10px;
    height: 100%;
    padding: 0 4px 0 4px;
    border-radius: 5px;
    border-width: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width:767px) {
    .nav-account {
        position: relative;
        right: inherit;
        width: 100%;
        order: 0;
        border-bottom: 1px solid #f26722;
    }
}

.account-items {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width:767px) {
    .account-items {
        padding-right: 5px;
        justify-content: flex-end;
    }
}

.account-items li {
    display: inline-block;
    list-style: none;
}

    .account-items li a {
        border-radius: 5px;
        padding: 4px;
        text-decoration: none;
        text-align: center;
        display: block;
        color: #8345Ba;
        font-size: 20px;
    }

        .account-items li a svg {
            fill: #8345Ba;
            stroke: #8345Ba;
        }

        .account-items li a:hover {
            background-color: #eeeff2;
            text-decoration: none;
        }

        .account-items li a:active {
            background-color: #f0ffff;
            text-decoration: none;
        }

    .account-items li.selected a {
        background-color: #ffffff;
    }

/* Main Content Container */
#main {
    max-width: 1240px;
    margin: auto;
}

/* Hyperlink Div */
a div {
    display: inline-block;
    vertical-align: middle;
}

/* Page Body */
.pb {
    max-width: 1240px;
    margin: auto;
    padding: 10px;
    border: 1px solid #f26722;
    border-radius: 4px;
}

/* Control Group */
.cg {
    user-select: none;
}

button {
    background-color: #6d6e72;
    color: #fff;
    border: 1px solid #36373f;
    border-radius: 4px;
    padding: 7px 12px 7px 12px;
    margin-top: 1px;
    margin-left: 18px;
}

    button:hover {
        background-color: #4d4e52;
        cursor: pointer;
    }

/* Breadcrumb Box */
.bc {
    padding: 8px;
    margin: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 100%;
}

/* Fields Box */
.fb {
    padding: 8px;
    margin: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: calc(100vh - 190px);
}

/* Field Control */
.fc {
    display: inline-block;
    white-space: nowrap;
    margin-top: 3px;
    margin-bottom: 3px;
    min-width: 260px;
    max-width: 260px;
    vertical-align: middle;
}

/* Field Label */
.fl {
    display: block;
    font-size: 12px;
    height: 10px;
    margin-left: 22px;
    margin-bottom: 6px;
    color: #666
}

/* Field Icon */
.fi {
    display: inline-block;
    vertical-align: middle;
    margin: 4px 0 0 2px;
    height: 16px;
    width: 16px;
}

/* Field Editor */
.fe {
    display: inline-block;
    min-width: 220px;
    max-width: 220px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 4px 2px 0;
}

.cp-checkbox__wrapper {
    min-width: inherit;
    max-width: inherit;
    border: none;
    padding: 0;
}

    .cp-checkbox__wrapper input[type=checkbox] {
        width: auto;
        margin-left: 0;
    }

.fe:focus {
    border: 1px solid #f26722;
    outline: none;
}

.fe input, select, textarea {
    font-family: verdana, sans-serif;
    font-size: 13px;
    margin-left: 2px;
    padding: 4px 6px;
    border: none;
    width: calc(100% - 12px);
}

.fe textarea {
    height: auto;
    resize: none;
}

.fe select {
    width: calc(100%);
}

.fe input:focus, select:focus, textarea:focus {
    outline: none;
}

.fe input:disabled, select:disabled {
    background-color: rgb(236, 236, 236);
}

    .fe input:disabled:hover, select:disabled:hover {
        cursor: not-allowed;
    }

.fe img {
    display: inline-block;
    height: 20px;
    width: 20px;
    position: relative;
    top: 5px;
    padding-right: 5px;
}

.fe a:focus {
    outline: none;
}

.fe a:active {
    outline: none;
}

.fe .error input {
    background-color: rgba(238, 73, 73, .05);
}

/* Field Editor 1 Button */
.fb1 input {
    width: calc(100% - 38px);
}

/* Field Editor 2 Buttons */
.fb2 input {
    width: calc(100% - 60px);
}

/* Field Selected */
.fs {
    border: 1px solid #f26722;
}

/* Field Action */
.fa {
    display: inline-block;
    height: 20px;
    width: 20px;
    position: relative;
    top: 5px;
}

    .fa:focus {
        outline: none;
    }

/* Text Align */
.al {
    text-align: left;
}

.ac {
    text-align: center;
}

.ar {
    text-align: right;
}

/* Grid Title */
.gt {
}

/* Mobile Grid Div */
.mgd {
}
    /* Mobile Data Row */
    .mgd .dr {
    }

/* Grid Div */
.gd {
    overflow-x: auto;
}

/* Grid Control */
.gc {
    max-width: none;
    border-style: solid;
    width: 100%;
    margin: 3px 0 0 0;
    table-layout: auto;
}

    /* Selected Row */
    .gc .sr {
        background-color: #e2eafd;
    }

    /* Data Row Hover */
    .gc .dr:hover, .gc .ar:hover {
        /*background-color: #e2eafd;*/
        background-color: #f26722;
    }

    .gc tr {
        border-top: 1px solid #ddd;
    }

    /* Footer Row */
    .gc .fr {
        /*border-top: 1px solid #ddd;*/
    }

    .gc th {
        padding: 5px 3px 5px 3px;
        color: #666;
        background-color: #f4f4f6;
        font-weight: inherit;
        vertical-align: top;
        border-top: 1px solid #ddd;
        border-right: 1px solid #ddd;
        border-bottom: 2px solid #ddd;
    }

        .gc th:hover {
            background-color: #e5e7ea;
        }

    .gc td {
        padding: 8px;
        vertical-align: top;
    }

/* Day Of Week Selector */
.dows {
    margin-left: 18px;
    border-collapse: collapse;
    border-spacing: 0;
}

    .dows th {
        padding: 0;
        height: 20px;
        text-align: center;
    }

    .dows td {
        color: red;
        padding: 0;
        margin: 0;
        height: 20px;
        border: 1px solid gainsboro;
        border-collapse: collapse;
        border-spacing: 0;
    }

    .dows div {
        height: 20px;
        min-width: 31px;
    }

    .dows .s {
        background-color: #8BC745;
    }

/* Menu Bar */
.mb {
    border-radius: 5px;
    background-color: #e7eaed;
    border-width: 0;
    padding: 0 4px 0 4px;
    margin: 0 0 2px 0;
    user-select: none;
}

/* Menu Bar Item */
.mbi {
    padding: 0 0 0 0;
    position: relative;
    margin: 0 0 0 0;
    text-align: left;
}

    .mbi li {
        display: inline-block;
        list-style: none;
    }

        .mbi li a {
            padding: 2px 4px 2px 4px;
            text-decoration: none;
            line-height: 2em;
            color: #000000;
        }

            .mbi li a:hover {
                background-color: #eeeff2;
                text-decoration: none;
            }

            .mbi li a:active {
                background-color: #f0ffff;
                text-decoration: none;
            }

        .mbi li.selected a {
            background-color: #ffffff;
        }

/* Tool Bar */
.tb {
    height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Tool Bar Item */
.tbi {
    position: relative;
    height: 100%;
    display: table;
    margin: auto;
}

    .tbi li {
        display: table-cell;
        list-style: none;
        vertical-align: middle;
    }

        .tbi li a {
            border-radius: 5px;
            padding: 4px;
            text-decoration: none;
            font-size: 20px;
            display: inline-block;
            text-align: center;
            color: #222222;
        }

            .tbi li a:hover {
                background-color: #eeeff2;
                text-decoration: none;
            }

            .tbi li a:active {
                background-color: #f0ffff;
                text-decoration: none;
            }

        .tbi li.selected a {
            background-color: #ffffff;
        }

/* Tab Group */
.tg {
    border-width: 0;
    padding: 0 4px 0 4px;
    margin: 0;
    user-select: none;
}

/* Tab Group Tab List */
.tgtl {
    padding: 0 0 0 0;
    position: relative;
    margin: 0 0 0 0;
    text-align: left;
}

/* Tab Group Selected Tab */
.tgst {
    display: inline-block;
    list-style: none;
    padding: 2px 4px 2px 4px;
    text-decoration: none;
    line-height: 1.8em;
    color: #fff;
    background-color: #f26722;
}

/* Tab Group Other Tab */
.tgot {
    display: inline-block;
    list-style: none;
    padding: 2px 4px 2px 4px;
    text-decoration: none;
    line-height: 1.8em;
    color: #000000;
    transition: all 0.2s ease-out;
    text-decoration: none;
}

    .tgot:hover {
        text-decoration: none;
        cursor: pointer;
    }

    .tgot:active {
        text-decoration: none;
    }

    .tgot:after {
        content: "";
        background: #f26722;
        height: 4px;
        width: 100%;
        display: block;
        transform: translateY(100%);
        opacity: 0;
        transition: all 0.2s ease-in-out;
    }

.tgst:after {
    content: "";
    background: #f26722;
    border-radius: 4px;
    height: 4px;
    width: 100%;
    display: block;
    transform: translate(0);
    opacity: 1;
}

.tgot:hover:after {
    content: "";
    background: #f26722;
    border-radius: 4px;
    height: 4px;
    width: 100%;
    display: block;
    transform: translate(0);
    opacity: 1;
}

/* Tab Group Body */
.tgb {
    border: 2px solid #f26722;
    padding: 24px;
}

@-webkit-keyframes slide {
    100% {
        left: 0;
    }
}

.avatar {
    width: 140px;
    float: right;
}

    .avatar img {
        width: 140px;
        height: 140px;
        margin: 8px auto;
        display: block;
    }

/* Action Link */
.acl {
    border-radius: 5px;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

    .acl:hover {
        background-color: #eeeff2;
        text-decoration: none;
    }

    .acl:active {
        color: inherit;
        text-decoration: none;
    }

    .acl img {
        width: 20px;
        height: 20px;
    }

/* Toggle */
.switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 48px;
    text-indent: 60px;
    font-size: 18px;
    cursor: pointer;
}

    .switch input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        width: 0;
        height: 0;
        margin: 0;
    }

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border: 2px solid transparent;
}

    .slider:before {
        background-color: #fff;
        bottom: 2px;
        left: 2px;
        content: "";
        width: 18px;
        height: 18px;
        position: absolute;
        transition: .4s;
    }

input + .slider:before {
    transform: translateX(0);
    transition: all .3s cubic-bezier( 0.175, 0.885, 0.320, 1.275 );
}

input:focus + .slider,
input:active + .slider {
    border: 2px solid #f26722;
}

input:checked + .slider {
    background-color: #260bf3
}

    input:checked + .slider:before {
        transform: translateX(22px);
        transition: all .3s cubic-bezier( 0.175, 0.885, 0.320, 1.275 );
    }

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.dc {
    display: inline-flex;
    position: fixed;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0, .2);
    pointer-events: none;
    /*z-index: 0;*/
}

.db {
    display: block;
    border: solid;
    width: 400px;
    height: 200px;
    margin: auto;
    padding: 10px;
    /*position: absolute;
    align-content: center;
    width: calc(100% - 40px);
    //height: calc(60% - 40px);*/
    background: white;
    pointer-events: all;
}

nav img {
    width: 28px;
    height: 28px;
}

/*** Navigation styles ***/

.sidebar {
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    width: 50px;
    padding: 0;
    list-style: none;
    /*-webkit-transform: translateX(-100%);*/
    /* transform: translateX(-100%);*/
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-indent: 0;
    -webkit-box-shadow: 0 0 30px transparent;
    box-shadow: 0 0 30px transparent;
    z-index: 10;
    background-color: #6d6e72;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

    .sidebar.menu_show {
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

/*Scrollbar for when it's needed */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.logo {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

#big-logo {
    transition: all 0.2s ease;
}

#small-logo {
    display: block;
    transition: all 0.2s ease;
    width: 40px;
    height: auto;
    padding: 5px 0px;
}

.nav-images {
    width: 30px !important;
    float: left;
    padding: 5px 13px 0px 7px;
}

.nav__list {
    width: 250px;
}

.nav-new a, .nav-new label {
    display: block;
    padding: .85rem;
    color: #fff;
    background-color: #6d6e72;
    -webkit-transition: all .25s ease-in;
    transition: all .25s ease-in;
    text-decoration: none;
    white-space: nowrap;
}

    .nav-new a:focus, .nav-new a:hover, .nav-new label:focus, .nav-new label:hover {
        color: rgba(255, 255, 255, 0.5);
        background: #4d4e52;
        text-decoration: none;
    }

.nav-new label {
    cursor: pointer;
}

/**
 * Styling first level lists items
 */

.group-list a, .group-list label {
    padding-left: 3.25rem;
    background: #4d4e52;
    box-shadow: inset 0 -1px #373737;
}

    .group-list a:focus, .group-list a:hover, .group-list label:focus, .group-list label:hover {
        background: #353639;
    }

/**
 * Styling second level list items
 */

.sub-group-list a, .sub-group-list label {
    padding-left: 4rem;
    background: #353639;
    box-shadow: inset 0 -1px #474747;
}

    .sub-group-list a:focus, .sub-group-list a:hover, .sub-group-list label:focus, .sub-group-list label:hover {
        background: #232323;
    }

/**
 * Styling third level list items
 */

.sub-sub-group-list a, .sub-sub-group-list label {
    padding-left: 6rem;
    background: #454545;
    box-shadow: inset 0 -1px #575757;
}

    .sub-sub-group-list a:focus, .sub-sub-group-list a:hover, .sub-sub-group-list label:focus, .sub-sub-group-list label:hover {
        background: #333333;
    }

/**
 * Hide nested lists
 */

.group-list, .sub-group-list, .sub-sub-group-list {
    height: 100%;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
}

.nav__list input[type=checkbox]:checked + label + ul { /* reset the height when checkbox is checked */
    max-height: 1000px;
}

label > span {
    float: right;
    -webkit-transition: -webkit-transform .65s ease;
    transition: transform .65s ease;
}

.nav__list input[type=checkbox]:checked + label > span {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*Mobile hamburger*/
.menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
    z-index: 99999;
    margin-top: 4%;
}

    .menu-icon .navicon {
        background: #333;
        display: block;
        height: 4px;
        position: relative;
        transition: background .2s ease-out;
        width: 30px;
    }

        .menu-icon .navicon:before,
        .menu-icon .navicon:after {
            background: #333;
            content: '';
            display: block;
            height: 100%;
            position: absolute;
            transition: all .2s ease-out;
            width: 100%;
        }

        .menu-icon .navicon:before {
            top: 10px;
        }

        .menu-icon .navicon:after {
            top: -10px;
        }

/* menu btn */

.menu-btn {
    display: none;
}

    .menu-btn:checked ~ .menu {
        max-height: 240px;
    }

    .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }

        .menu-btn:checked ~ .menu-icon .navicon:before {
            transform: rotate(-45deg);
        }

        .menu-btn:checked ~ .menu-icon .navicon:after {
            transform: rotate(45deg);
        }

    .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
    .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
        top: 0;
    }


/*Mobile Code for navigation **/

/* 48em = 768px */

@media (min-width: 48em) {

    .menu-icon {
        display: none;
    }
}

@media (max-width:767px) {

    body {
        margin-left: 0;
    }

    #biglogo {
        display: none !important;
    }

    #small-logo {
        display: none !important;
    }

    .mobile-logo {
        background-image: url("https://assets.codepen.io/5281635/logo_white+font_NO+BG.svg");
        background-repeat: no-repeat;
        height: 100px;
    }

    .logo {
        width: 50%;
        margin: 0;
        padding: 0px 0 0 10px;
    }

    .sidebar {
        width: 100% !important;
        overflow-y: hidden;
        min-height: 50px;
        height: 100px;
        background-color: #6d6e72;
        width: 100%;
    }

        .sidebar.menu_show {
            height: 100%;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: none; /* IE and Edge */
            scrollbar-width: none; /* Firefox */
        }

        .sidebar > li > a {
            width: 100%;
            display: none;
        }

        .sidebar > li {
            width: 100%;
        }

    .nav-images {
        display: none;
    }

    .nav__list {
        width: 100%;
    }

    #body {
        margin-top: 100px;
    }
}

@media (max-width:500px) {
    .menu-icon {
        margin-top: 8%;
    }

    .mobile-logo {
        height: 75px !important;
        margin-bottom: 20px !important;
        margin-top: 10px !important;
    }
}

/* Modal Background */
.mod {
    display: block;
    position: fixed;
    z-index: 90000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black with opacity */
}

/* Modal Content Box */
.modc {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 40px;
    border: 2px solid #888;
    width: 40%;
    z-index: 99999;
    text-align: center;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: text;
}

@media (max-width:767px) {
    .modc {
        margin: 15% auto; /* 15% from the top and centered */
        padding: 20px;
        border: 2px solid #888;
        width: 85%;
    }
}

/* Hide numeric edit up/down arrows in Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide numeric edit up/down arrows in Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Tree View */
.tv {
    margin-left: 18px;
}

@media (max-width:767px) {
    .cp-actions-bar {
        position: fixed;
        top: 110px;
        z-index: 99;
        width: 100%;
        background: #ccc;
    }

        .cp-actions-bar > .tb > .tbi {
            display: flex;
            justify-content: space-between;
            padding: 0 1em;
        }

    #ActionBar {
        position: fixed;
        top: 110px;
        z-index: 99;
        width: 100%;
        background: #ccc;
    }

        #ActionBar > .tb > .tbi {
            display: flex;
            justify-content: space-between;
            padding: 0 1em;
        }
}

/* Home */
.cp-home {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px;
}

    .cp-home .fc {
        min-width: inherit;
        max-width: inherit;
        flex-basis: 32%;
        margin: 0 10px;
    }

    .cp-home button {
        width: 100%;
        margin-left: 0;
        padding: 12px 15px;
        font-size: 18px;
    }

@media (max-width:767px) {
    .cp-home {
        flex-direction: column;
        align-items: center;
    }

        .cp-home .fc {
            width: 100%;
            flex-basis: inherit;
        }
}

/* Arrow Navigation */
.cp-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .cp-arrows .cp-arrow {
        margin: 1rem 3rem;
        cursor: pointer;
    }

        .cp-arrows .cp-arrow img {
            width: 28px;
        }

        .cp-arrows .cp-arrow:hover img {
            opacity: .5;
        }

@media (max-width:767px) {
    .cp-arrows {
        position: absolute;
        top: 114px;
        left: 0;
        right: 0;
        z-index: 99;
        width: fit-content;
        margin: auto;
    }

        .cp-arrows .cp-arrow {
            display: inline-block;
            margin: 0 2rem;
        }

            .cp-arrows .cp-arrow img {
                width: 28px;
            }
}

.noborder, .noborder tr, .noborder th, .noborder td
{
	border: none;
}
