:root {
    --text-color : #57575a;
    --text-color-dark : #222;
    --text-hashed : #7c858d;
    --text-dark: #222;
    --brand-bg: #330065;
    --gray-bg: #f4f7fc;
    --brand-color : #330065;
    --accent-color : #da1c5c;
    --blue: #3b7ddd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --semi-white-bg: #f8f9fb;
    --app-background-color: #f6f6f4;
    /*--app-background-color: transparent;*/
    --light: #e9ecef;
    --gray: #7c858d;
    --gray-dark: #343a40;
    --gray-light: #f2f2fc;
    --gray-lighter: #f9f9f9;
    --primary: #687ae8;
    --secondary: #95aac9;
    --success: #0c9;
    --info: #19b5fe;
    --warning: #f7bc06;
    --danger: #f2545b;
    --danger-flat: #e26a6a;
    --tertiary: #94a1ef;
    --dqrc-gradient-1: #830023;
    --dqrc-gradient-2: #330066;
    --dqrc-gradient-3: #da1c5c;
    --dqrc-gradient-4: #f9ed32;
    --dqrc-gradient90: linear-gradient(90deg,
    /*var(--dqrc-gradient-1), */
    var(--dqrc-gradient-2), var(--dqrc-gradient-3), var(--dqrc-gradient-4));
    --dqrc-gradient45: linear-gradient(45deg,
    /*var(--dqrc-gradient-1), */
    var(--dqrc-gradient-2), var(--dqrc-gradient-3), var(--dqrc-gradient-4));
    --dqrc-gradient135: linear-gradient(135deg,
    var(--dqrc-gradient-1),
    var(--dqrc-gradient-2), var(--dqrc-gradient-3), var(--dqrc-gradient-4));
    --dqrc-gradient270: linear-gradient(270deg,
    var(--dqrc-gradient-1),
    var(--dqrc-gradient-2), var(--dqrc-gradient-3), var(--dqrc-gradient-4));
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1440px;
    --border-color: #f5f5f5;
    --border-radius : 20px;
    --border-radius-small : 12px;
    --left-side-bar-width : 320px;
    --sidebar-width--mini : 60px;
    --column-gap : 1px;
    --header-height : 250px;
    --account-notification-height : 100px;
    --side-overlay-width : 320px;
    --sidebar-logo-full-height : 200px;
    --navbar-height: 120px;
    --navbar-height-mobile: 90px;
}
html {
    background-color: var(--app-background-color);
}
body {
    font-family: "Lato", sans-serif;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
    text-align: left;
    font-size: 18px;
}
.badge {
    font-family: "Lato", sans-serif;
}
td {
    vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color-dark);
}
.font-s16 {
    font-size: 16px !important;
}
.font-s14 {
    font-size: 14px !important;
}
.font-s24 {
    font-size: 24px !important;
}
.font-1-1 {font-size: 1.1em}
.font-0-9 {font-size: 0.9em}

body > .wrapper {
    /*background-image: var(--dqrc-gradient270);*/
    /*background-color: #999;*/
}
a:not(.btn), a:not(.btn):focus  {
    text-decoration: none;
    color: var(--brand-color);
}
a:not(.btn):hover{
    text-decoration: none;
    color: var(--accent-color);
}
.regular-font {
    font-family: "Lato", sans-serif;
}
.custom-font {
    font-family: "Playfair Display", sans-serif;
}
.quick-animated {
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition:all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.no-overflow {
    overflow: hidden;
}
.block.block-rounded {
    border-radius: var(--border-radius);
    padding: 1rem .75rem;
}
.block.block-rounded > .block-header {

}
.block-title {
    font-size: 1.5rem;
    text-transform: none;
    font-weight: 900;
    font-family: "Playfair Display" ,sans-serif;
}

#sidebar {
    z-index: 1;
}
.animated {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);

    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;

    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance:textfield;
}
.square-48 {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Utilities
============================================*/
img {
    max-width: 100%;
}
.hidden { display: none; }
.thick { font-weight: 900; }
.bold { font-weight: 700; }
.medium { font-weight: 600; }
.thin { font-weight: 100; }
.uppercase {text-transform: uppercase}
.icon-margin-4 { margin-right: 4px}
.icon-margin-8 { margin-right: 8px}
.icon-margin-12 { margin-right: 12px}
.icon-margin-18 { margin-right: 18px}
.icon-margin-24 { margin-right: 24px}
.icon-margin-top-8 { margin-top: 8px}
.icon-margin-top-12 { margin-top: 12px}
.icon-margin-top-18 { margin-top: 18px}
.icon-margin-top-24 { margin-top: 24px}
.cls { clear: both }
.relative { position: relative }
.spacer-invis { display: block; clear: both; height: 1px; margin: 18px auto }
.hashed { color: #999 !important}
.flex-center {display: flex; align-items: center}
.flex-center-center {display: flex !important; align-items: center !important; justify-content: center !important;}
.flexRow { display: flex; flex-direction: row;}
.flex1 { flex : 1; display: flex}
.flex2 { flex : 2; display: flex}
.flex3 { flex : 3; display: flex}
.flex4 { flex : 4; display: flex}
.pointer { cursor : pointer !important }
.op0 {opacity: 0}
.op1 {opacity: 1;}
.has-bg {
    background-size: cover;
    background-position: center center;
}
.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 90%;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 5px;
}
.btn {
    border-radius: 6px;
    border : none;
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.375rem;
}
.btn-group-sm > .btn, .btn.btn-sm {
    --bs-btn-padding-y: 0.3rem;
    --bs-btn-padding-x: 0.65rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.25rem;
}
.btn-link {
    /*background-color: #2976a605;*/
    /*color: #656565;*/
}
.btn-link:hover {
    background-color: var(--gray-lighter);
    color: #464646;
}
.btn-dark {
    /*background-color: var(--brand-color);*/
    background-color: #5cb85c;
    color: #fff;
}
.btn-dark:hover {
    /*background-color: var(--brand-color);*/
    background-color: #37a967;
}
.btn-accent {
    background-color: var(--accent-color);
    color: #fff;
}
.btn-accent:hover, .btn-accent:active {
    background-color: var(--dqrc-gradient-1) !important;
    color: #fff !important;
}
.btn-accent:active {
    opacity: 0.7 !important;
}

.brand {
    color: var(--brand-color);
}
.accent {
    color: var(--accent-color);
}
.bg-gray-light {
    background-color: var(--gray-lighter) !important;
}
.bg-gray {
    background-color: var(--gray-dark) !important;
}
.bg-accent {
    background-color: var(--accent-color) !important;
}
.btn-dark:hover {
    color: #fff;
}
.btn-danger {
    background-color: #f44336;
}
.btn-white {
    background-color: var(--white);
    color: var(--text-color)
}
.btn-white:hover {
    background-color: var(--gray-lighter);
    color: var(--text-color-dark)
}
.btn-wide {
    padding-left: 40px;
    padding-right: 40px;
}
@media (max-width: 768px) {
    .btn-wide {
        padding-left: 18px;
        padding-right: 18px;
    }
}

.op0 {
    opacity: 0;
}
.op1 {
    opacity: 1;
}
.spacer-tiny {
    display: block;
    height: 1px;
    width: 50%;
    margin: 8px 0;
    clear: both;
}
.txt-spacer {
    display: block;
    height: 1px;
    width: 50%;
    margin: 2px 0;
    clear: both;
}

.spacer {
    display: block;
    height: 1px;
    width: 100%;
    margin: 12px 0;
    clear: both;
    border-top: 1px solid var(--border-color);
}
button.close{
    position: absolute;
    right: 24px;
    top: 18px;
    z-index: 150;
}
.block.block-equal-height {
    min-height: calc(100% - 30px);
}
.block.block-equal-height.block-opt-hidden {
    min-height: 0;
}
.form-control {
    border-radius: 6px;
}
.form-control-lg {
    font-size: 1rem;
}
.form-control:focus {
    border-color: #bbb;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05),0 0 8px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05),0 0 8px rgba(0,0,0,.075);
}
label {
    font-size: 0.95em;
    margin-bottom: 0.5rem;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 20px 8px 12px;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:hover {
    text-decoration: none;
    background-color: #f9f9f9;
    color: inherit;
}
.btn {
    font-weight: inherit;
}

@media (min-width: 1460px) {
    .modal-xl {
        width: 1400px !important;
    }
}

@media (min-width: 1160px) and (max-width: 1450px) {
    .modal-xl {
        width: 1100px !important;
    }
}

.cursor-pointer-icon:hover {
    cursor: pointer;
}
.dropzone {
    border: 1px solid var(--border-color) !important;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 20px 20px;
}
.dropzone .dz-message {
    font-style: normal;
}



/*
styles override
 */

.bg-brand {
    background-color: var(--brand-color) !important;
}
.bg-brand-1 {
    background-color: var(--dqrc-gradient-1);
}
.bg-brand-4 {
    background-color: var(--dqrc-gradient-4);
}
* {
    outline: none;
}
.push-40-t {
    margin-top: 40px !important;
}
.select-indicator {
    position: absolute;
    top: 14px;
    right: 8px;
    pointer-events: none;
}
.datepicker {
    padding: 18px;
}
.datepicker td, .datepicker th{
    text-align: center;
    cursor: pointer;
}
th.prev {
    text-align: left;
}
th.next {
    text-align: right;
}
td.day {
    cursor: pointer;
}
span.month, span.year {
    padding: 2px;
    cursor: pointer;
}
.old {
    color: #aaa !important;
}
.remove {
    cursor: pointer;
}
.full-height {
    height: 100vh;
}
.btn-wide {
    padding-left: 40px;
    padding-right: 40px;
}
/**
Sidebar light
 */
.toggle-sidebar-btn {
    padding-top: 4px;
}
@media (max-width: 992px) {
    .toggle-sidebar-btn {
        padding-top: 0;
    }
}
#sidebar-scroll {
    min-height: calc(100vh - var(--sidebar-logo-full-height) - var(--column-gap) - var(--column-gap))
}
#sidebar.bg-white .nav-main a {
    line-height: 1rem;
    color: #575757;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-small);
    font-size: 1em;
    white-space: nowrap;
}
#sidebar.bg-white.toggled .sidebar-mini-hide {
    transition: opacity 0.2s ease;
    opacity: 0;
}
#sidebar.toggled .profile-completion {
    display: none;
}
#sidebar .user {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-content.side-content-full {
    padding-bottom: 30px;
}
@media (max-height: 1100px) {
    #sidebar .user {
        height: 60px;
    }
}
#sidebar.bg-white.toggled .nav-main a {
    padding: 1rem 1.2rem;
    text-align: center;
}
#sidebar.bg-white .nav-main li {
    padding-left:20px ;
    padding-right:20px ;
}
#sidebar.bg-white.toggled .nav-main li {
    padding-left:3px ;
    padding-right:3px ;
}

#sidebar.bg-white ul.nav-main li.active a {
    /*background-color: var(--brand-color);*/
    /*color: white;*/
}
#sidebar.bg-white ul.nav-main li.active a i{
    /*color: white;*/
}
#sidebar.bg-white .nav-main li.active a, #sidebar.bg-white .nav-main li a:hover  {

}
#sidebar.bg-white .nav-main-link:hover, #sidebar.bg-white .nav-main a:hover, #sidebar.bg-white .nav-main a:focus {
    color: #222;
    background-color: #f9f9f9;
}
#sidebar.bg-white .nav-main a > i{
    color: #575757;
}
#sidebar.bg-white .nav-main a:hover > i, #sidebar.bg-white .nav-main a:focus > i{
    color: #222;
}
#sidebar.bg-white .nav-main-heading {
    color: #979797;
    font-weight: 300;
}
#sidebar.bg-white .side-header {
    /*background-color: #f7f7f7;*/
    box-shadow: 0 0 1px #f0f0f0;
}
#sidebar.bg-white .nav-main a.nav-submenu::before {
    color: #979797;
}
#sidebar.bg-white .nav-main ul {
    background-color: rgba(0,0,0,.02);
}

/**
Datatables
 */
.dataTables_paginate  {
    text-align: right;
}
.dataTables_filter {
    text-align: right;
}
.dataTables_filter input {
    margin-left: 12px;
}
.css-checkbox.css-checkbox-sm {
    margin: 0;
}
.datatable tr.selected {
    background-color: rgba(135 ,244 , 251, 0.2) !important;
}

.text-gray-lighter .si {
    color: #f9f9f9 !important;
}
.text-gray-lighter:hover .si {
    color: #fefefe !important;
}
aside#side-overlay {
    --side-overlay-width:  420px;
    width: var(--side-overlay-width);
    z-index: 3;
    height: calc(100vh - var(--column-gap) * 2);
    position: fixed;
    top: var(--column-gap);
    right: var(--column-gap) !important;
    /*transform: translateX(calc(var(--side-overlay-width) + var(--column-gap)));*/
    opacity: 1 !important;
    /*border-radius: var(--border-radius);*/
    box-shadow: 0 0 2rem 0 rgba(0,0,0,.05) !important;
    /*box-shadow: none !important;*/
    /*background-color: var(--gray-light);*/
}
@media (max-width: 1198px) {
    aside#side-overlay {
        --side-overlay-width: 320px;
    }
}
@media (max-width: 992px) {
    .sidebar-l:not(.side-overlay-o) #side-overlay {
        -webkit-transform: translateX(calc(100% + var(--column-gap) + var(--column-gap))) translateY(0) translateZ(0);
        -ms-transform: translateX(calc(100% + var(--column-gap) + var(--column-gap))) translateY(0);
        transform: translateX(calc(100% + var(--column-gap) + var(--column-gap))) translateY(0) translateZ(0);
    }
}

@media (max-width: 768px) {
    aside#side-overlay {
        --side-overlay-width: max(320px, calc(100% - var(--column-gap) - var(--column-gap)));
    }
}
#side-overlay.opened {
    transform: translateX(0) !important;
}
@media screen and (max-width: 421px){
    #side-overlay {
        width: 100%;
        transform: translateX(-100%);
    }
}

.text-90 {
    font-size: 90%;
}
.avatar-container .overlay-item{
    opacity: 0;
}
.avatar-container:hover {
    cursor: pointer;
}

.avatar-container:hover .overlay-item{
    opacity: 1;
}

/*
extra
 */
#page-container .icon{
    opacity: 0;
}
#page-container.sidebar-mini .icon{
    opacity: 1;
}

.nav-pills > li > a {
    font-weight: 400;
    font-size: 0.9em;
}
.text-color-indicator {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-left: 6px;
    transform: translateY(2px);
}

.main {
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    min-width: 0;
    transition: margin-left .3s ease-in-out,left .3s ease-in-out,margin-right .3s ease-in-out,right .3s ease-in-out;
}
.wrapper {
    align-items: stretch;
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}
svg {
    touch-action: none;
    overflow: hidden;
}

.feather {
    width: 16px;
    height: 16px;
}
.feather-lg {
    width: 24px;
    height: 24px;
}
.feather-sm {
    width: 12px;
    height: 12px;
}
.header {
    padding: 18px 24px 15px 0;
    color: white;
    background-image: linear-gradient(-135deg, var(--dqrc-gradient-3) 0%, var(--dqrc-gradient-2) 100%);
    background-color: var(--brand-color);
}
.right-nav-icons {
    padding-top: 0;
}
.right-nav-icons li{
    margin-right: 2px !important;
}

.right-nav-icons li:last-child{
    margin-right: 0 !important;
}
.right-nav-icons li a {
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    margin-top: -10px;
    color: #f0f0f0;
    padding-top: 5px;
}
.right-nav-icons li a:hover {
    background-color: #33006533;
    color: #fff;
}
.nav-header.pull-left input.input-sm{
    background-color: rgba(255,255,255,0.075);
    border: none;
    color: white;
    font-size: 14px;
    height: 34px;
}
@media (max-width: 768px) {
    .right-nav-icons {
        padding-top: 3px;
    }
}
#sidebar .brand-logo {
    padding: 30px 10px 0 10px;
    /*height: var(--sidebar-logo-full-height);*/
}
#sidebar .brand-logo img{
    /*max-height: 36px;*/
}

#sidebar .brand-logo img.full-logo {
    display: inline;
}
#sidebar .brand-logo img.logo-icon {
    display: none;
}
#sidebar.toggled .brand-logo img.full-logo {
    display: none;
}
#sidebar.toggled .brand-logo img.logo-icon {
    display: inline;
}

.font-w900 {
    font-weight: 900;
}
.font-w500 {
    font-weight: 500;
}
.font-w300 {
    font-weight: 300;
}
.img-avatar92 {
    width: 92px;
    height: 92px;
    object-fit: cover;
    object-position: center;
    min-width: 92px;
    min-height: 92px;
}
.img-avatar64 {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center;
    min-width: 64px;
    min-height: 64px;
}
.img-avatar32 {
    width: 32px;
    height: 32px;
    object-fit: cover;
    object-position: center;
    min-width: 32px;
    min-height: 32px;
}
.img-avatar48 {
    width: 48px;
    height: 48px;
    object-fit: cover;
    object-position: center;
    min-width: 48px;
    min-height: 48px;
}
.side-header.side-content {
    padding-bottom: 16px;
    border-bottom: 1px solid #f7f7f7;
    box-shadow: none;
}
#page-container.sidebar-l.sidebar-o {
    padding-left: calc(var(--left-side-bar-width) + var(--column-gap));
}
#page-container.sidebar-l.sidebar-o.toggled {
    padding-left: calc(var(--column-gap) + var(--sidebar-width--mini));
}
.sidebar {
    min-width: var(--left-side-bar-width);
    max-width: var(--left-side-bar-width);
    background: white;
    border-right: 0;
    box-shadow: 0 0 2rem 0 rgba(0,0,0,.05);
    z-index: 1;
    position: fixed !important;
    margin-left: 0;
    transform: translateX(0) !important;
    -webkit-transition: all 0.3s ease-in-out !important;
    -moz-transition:all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
    /*border-radius: 0 var(--border-radius) var(--border-radius) 0;*/
    border-radius: 0;
}
.sidebar.toggled {
    /*transform: translateX(-250px) !important;*/
    width: var(--sidebar-width--mini);
    min-width: var(--sidebar-width--mini);
    max-width: var(--sidebar-width--mini);
}
.sidebar.toggled .side-header {
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
}
.extra-logo {
    max-width: 320px;
    transform: translateY(-10px);
    opacity: 0;
    margin-top: -20px;
}
.extra-logo.toggled {
    transform: translateY(6px);
    opacity: 1;
}
@media (max-width: 992px) {

    .extra-logo {
        max-width: 240px;
        transform: translateY(-10PX);
        opacity: 1;
        margin-top: 3px;
    }
    .extra-logo.toggled {
        transform: translateY(-10px);
        opacity: 0;

    }

}

#main-container {
    /*background-color: #f4f7fc;*/
    background-color: var(--app-background-color);
    overflow: visible;
    position: relative;
    z-index: 1;
}
.header-navbar-fixed #main-container {
    padding-top: 0;
}
.main {
    min-width: 320px;
}

/* lets work the mobile version */
@media (max-width: 991px) {
    #page-container {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    #page-container.sidebar-l.sidebar-o {
        padding-left: 0;
    }
    #page-container.toggled .the-page-header, #page-container.toggled .page-block, #page-container.toggled .header {
        transform: translateX(250px);
    }
    #sidebar {
        opacity: 1;
    }
    .sidebar {
        transform: translateX(calc((var(--left-side-bar-width) + var(--column-gap)) * -1)) !important;
        opacity: 1;
    }
    .sidebar.toggled {
        transform: translateX(0) !important;
        width: var(--left-side-bar-width) !important;
        max-width: var(--left-side-bar-width) !important;
    }
    #sidebar.bg-white.toggled .sidebar-mini-hide {
        opacity: 1;
    }
    #sidebar.toggled .brand-logo img.logo-icon {
        display: none;
    }
    #sidebar.toggled .brand-logo img.full-logo {
        display: inline;
    }
    #sidebar.toggled.bg-white .nav-main li {
        padding-left:20px ;
        padding-right:20px ;
    }

}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
    /*font-family: "Playfair Display", sans-serif;*/
}
.the-page-header {
    color: var(--text-color);
    padding: 4px 40px 100px 40px;
}
@media (min-height: 1680px) {
    .the-page-header {
        padding: 24px 40px 100px 40px;
    }
}
.the-page-header .page-title{
    font-size: 2em;
    font-weight: 900;
    color: var(--white);
}

.the-page-header .page-description{
    font-weight: 300;
    color: var(--semi-white-bg);
}
.page-block {
    padding: 10px;
}
.the-page-content {
    margin-top: -80px;
    min-height: 60vh;
    padding: 10px 14px;
    overflow: visible;
    position: relative;
    z-index: 1;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid rgba(0,0,0,.125);
    border-radius: .2em;
    padding: 24px;
}
.hamburger-icon-main {
    margin-right: 8px;
}
@media (max-width: 768px) {
    .header {
        padding: 16px 10px 0 0;
    }
    .nav-header.pull-right > li {
        margin-right: 6px;
    }
    .hamburger-icon-main {
        margin-right: 0;
    }
    .right-nav-icons li{
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .the-page-header {
        padding: 20px 15px 100px 15px;
    }
    .the-page-content {
        padding: 0;
    }
}
.nav-main a > svg , .nav-main a > i {
    display: inline-block;
    min-width: 14px;
    margin-right: 15px;
}
.block-header-default {
    background-color: #f6f7f9;
}
#overlay-shader {
    background-color: rgba(0,0,0,0.4);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}
#overlay-shader.opened {
    opacity: 1;
    pointer-events: auto;
}
.day.active {
    color: white;
}
.form-material .form-control[disabled], .form-material .form-control[readonly], .form-material fieldset[disabled] .form-control {
    color: #aaa;
}
/*
Fixes
 */
.badge {
    padding: 3px 7px 4px 7px;
}
.toast {
    position: fixed;
    top: 70px;
    right: -320px;
    z-index: 11;
    background-color: white;
    min-width: 200px;
    max-width: 320px;
    border-radius: var(--border-radius-small);
    opacity: 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.06);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition:all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    border: 1px solid var(--border-color);
}
.toast:not(.show) {
    display: block;
    opacity: 0;
}
.toast.showing, .toast.show {
    right: 16px;
    opacity: 1;
}
.toast .close {
    background: none;
    box-shadow: none;
    border: none;
}
.toast .toast-header {
    padding: 10px;
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
}
.toast .toast-body {
    padding: 10px 20px 10px 16px;
}
.toast button.close{
    right: 10px;
    top: 4px;
}
.site-wide-notification {
    display: flex;
    width: calc(100%);
    margin: 0;
    /*border-radius: var(--border-radius);*/
    background-color: white;
    box-shadow: 0 2px 20px rgba(221,224,224,.2);
    padding: 20px;
    justify-content: center;
    align-items: flex-end;
    min-height: var(--account-notification-height);
}
.site-wide-notification.warning {
    background-color: #fac880;
    color: var(--text-color-dark);
}
.site-wide-notification.danger {
    background-color: var(--danger);
    color: white;
}
.site-wide-notification.danger h4, .site-wide-notification.danger h3 {
    color: white;
}
@media (max-width: 1198px) {
    .site-wide-notification {
        flex-direction: column;
    }
}

.v-middle {
    vertical-align: middle;
}
/*
Payment functions
 */
.card-icon {
    width: 42px;
    height: 26px;
    background-size: cover;
    display: inline-block;
}
.dt-date-sorter {
    font-size: 1px;
    visibility: hidden;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

/**
Tutorial styles
 */

.tutorial-progress {
    background-color: #eee;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.tutorial-progress-bar {
    height: 3px;
    background-color: var(--accent-color);
    width: 1%;
}


.has-new-urgent-notifications {
    position: absolute;
    display: block;
    background-color: white;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: -2px;
    left: 12px;
    border: 2px solid var(--accent-color);
}

.sidebar-l #sidebar {
    top: var(--column-gap);
    left: var(--column-gap);
    bottom: var(--column-gap);
    height: calc(100vh - var(--column-gap) * 2);
}

#sidebar.bg-white .nav-main a:hover, #sidebar.bg-white .nav-main a:focus  {
    color: #222;
    background-color: #f9f9f9;
}
#sidebar.bg-white .nav-main li.active a > i {
    color: white;
}
#sidebar.bg-white .nav-main li.active a {
    color: white;
    background-color: var(--accent-color);
}
.nav-main a .action-needed {
    width: 20px;
    height: 20px;
    line-height: 19px;
    font-size: 10px;
    background-color: var(--brand-color);
    text-align: center;
    color: white;
    border-radius: 50%;
    align-self: flex-end;
    font-weight: 700;
    position: absolute;
    right: 20px;
    top: 9px;
}
@media (min-width: 992px) {
    #sidebar.toggled .nav-main a .action-needed {
        right: -1px;
        top: 0;
    }
}

/**
The sort hidden value for dates
 */
.sort-assist {
    font-size: 1px; display: inline-block; overflow: hidden; width: 1px
}
.overlay-indicator {
    font-weight: 700;
}
/**
Fix nav tabs
 */
.block > .nav-tabs > li > a {
    margin-right: 0;
    padding: 12px 24px;
    color: #646464;
    font-weight: 600;
    border: 1px solid transparent;
    border-radius: 0;
}
.block > .nav-tabs > li > a:hover {
    color: var(--accent-color);
}
.block > .nav-tabs.nav-tabs-alt > li > a:hover, .block > .nav-tabs.nav-tabs-alt > li > a.active {
    -webkit-box-shadow: 0 2px var(--brand-color);
    box-shadow: 0 2px var(--brand-color);
}
.block > .nav-tabs.nav-tabs-alt > li.active > a,
.block > .nav-tabs.nav-tabs-alt > li.active > a:hover,
.block > .nav-tabs.nav-tabs-alt > li.active > a:focus {
    -webkit-box-shadow: 0 2px var(--brand-color);
    box-shadow: 0 2px var(--brand-color);
}
/**
Start Admin
 */
.admin-cc-type {
    max-width: 32px;
}

.admin-fixed-height {
    overflow-y: auto;
}

.admin-locations {
    height: 338px;
}
@media (max-width: 992px) {
    .admin-locations {
        height: auto;
    }
}
.admin-block-content {
    padding-top: 0 !important;
}

/*
Popover styles
 */
.popover {
    border-color: transparent;
    border-radius: 15px;
    padding: 20px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.popover-header {
    padding: 10px 10px 1px;
    background-color: #fff;
    border-bottom: 1px solid var(--border-radius);
    font-weight: 900;
}
.popover-content {
    padding: 10px;
}

/**
Block actions
 */
.block-options > li > a, .block-options > li > button {
    /*display: block;*/
    padding: 5px 8px;
    color: #999999;
    opacity: 0.6;
    transition: all 0.15s ease-in-out;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.block-options > li > a:hover, .block-options > li > button:hover {
    background-color: var(--gray-lighter);
}

/**
Date picker
 */
.table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
    padding: 8px 10px;
}
/**
Modals
 */
.modal-content {
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 0.35rem 0;
}

.tooltip .tooltip-inner  {
    background-color: #111;
    border-radius: 5px;
}

/**
Chat
 */
.convo {
    padding: 20px 24px;
    border: 1px solid var(--border-color);
    position: relative;
    margin-bottom: 10px;
}
.convo.received {
    border-radius: 14px 14px 14px 0;
}
.convo:hover{
    cursor: pointer;
    background-color: #f9f9f9;
}
.convo.odd{

}
.convo .new:after {
    display: block;
    content: '';
    position: absolute;
    border: 2px solid white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--red);
    top: 0;
    right: 38px;
}
.last-message-date {
    margin: -6px 0 10px 0;
}
.chat-message-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.listing-chat-message.deleted-message {
    opacity: 0.7;
}
.chatting-to {
    margin-right: 24px;
    position: relative;
}
.chat-message {

}
.message-count {
    float: right;
}
.convo-info {
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    justify-content: flex-end;
    padding: 0 24px;
}
.listing-chat-bubble {
    display: flex;
    align-items: flex-end;
}

.listing-chat-bubble.sent {
    justify-content: flex-end;
}
.listing-chat-message {
    padding: 10px 16px;
    font-size: 0.9em;
    border-radius: 14px 14px 14px 0;
    background-color: var(--gray-bg);
    max-width: 80%;
    float: left;
    display: inline-block;
    margin-left: 12px;
}
.listing-chat-message.sent {
    border-radius: 14px 14px 0 14px;
    background-color: var(--brand-bg);
    float: right;
    color: white;
    margin-right: 12px;
}
.listing-chat-message.deletable {
    max-width: 74%;
}
.chat-message-date {
    font-size: 12px;
    margin-bottom: 2px;
    margin-left: 48px;
    margin-right: 0;
}
.chat-message-date.text-right {
    margin-left: 0;
    margin-right: 58px;
}
.reply-to-convo {
    background-color: rgba(255,255,255,0.9);
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 16px 20px 20px 30px;
    display: flex;
    align-items: center;
}
.reply-to-convo .form-control{
    padding: 8px 12px;
    height: auto;
}
.reply-to-convo .btn-link {
    color: inherit;
}

.ribbon-box {
    border-radius: 5px;
}

.progress-circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: conic-gradient(
        #4caf50 0% 75%,   /* The filled color (75% progress) */
        #ddd 75% 100%     /* The remaining (unfilled) part */
    );
}
.circular-progress {
    position: relative;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}
.circular-progress-text {
    font-size: 20px;
    color: #333;
}

/*
Steps container
 */
.form-container {
    transform: translateY(0);
}
.form-container.op0 {
    transform: translateY(20px);
}
#content-preview p, .tox p, #dqrc-content p{
    margin-bottom: 0;
}
/*
dataTables
 */
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    text-align: right;
    justify-content: flex-end;
    font-size: 90%;
}
div.dataTables_wrapper div.dataTables_info {
    font-size: 90%;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    color: var(--brand-color);
    background-color: #f9f9f9;
    -webkit-box-shadow: 0 2px var(--brand-color);
    box-shadow: 0 2px var(--brand-color);
}

div.table-responsive > div.dataTables_wrapper > div.row {
    padding-top: 10px;
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 10px;
}

.dropdown-menu > li > a {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    padding: 12px 15px;
    border-radius: 5px;
}
.dropdown-menu > li > a:hover {
    color: var(--text-color-dark);
}

.side-scroll #sidebar {
    overflow-y: auto !important;
}
