/*------------------------------------*\
    1. GENERAL STYLES
\*------------------------------------*/
html, body {
    height: 100%;
}

body {
    color: #999;
    background-color: #ebebea;
    /* font-family: "Open Sans", sans-serif; */
    /* font-family: 'Signika', sans-serif; */
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    word-wrap: break-word;
    font-synthesis: style;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.page-light {
    background-color: #fff;
}

p:last-child { /* RESET MARGIN OF LAST P TAG */
    margin-bottom: 0;
}

ul:last-child {
    margin-bottom: 0;
}

table:last-child {
    margin-bottom: 0;
}

img,
.nav > li > a > img { /* RESPONSIVE IMAGES */
    max-width: 100%;
    height: auto;
}

::-moz-selection {
    color: #fff;
    background-color: #ff2500;
}

::selection {
    color: #fff;
    background-color: #ff2500;
}

.wrapper {
    height: 100%;
}

[data-trigger="sparkline"] {
    font-size: 0;
}

/* 1.1. LINKS */
a, .btn-link {
    -webkit-transition-property: color, border-color, background-color, box-shadow;
    transition-property: color, border-color, background-color, box-shadow;
    -webkit-transition-duration: .35s;
            transition-duration: .35s;
    -webkit-transition-timing-function: ease, ease, ease-in-out, ease-in-out;
            transition-timing-function: ease, ease, ease-in-out, ease-in-out;
}

a, .btn-link,
a:link, .btn-link:link,
a:visited, .btn-link:visited,
a:hover, .btn-link:hover,
a:focus, .btn-link:focus,
a:active, .btn-link:active { /* RESET TEXT DECORATION */
    text-decoration: none;
}

.no-outlines a, .no-outlines .btn-link,
.no-outlines a:link, .no-outlines .btn-link:link,
.no-outlines a:visited, .no-outlines .btn-link:visited,
.no-outlines a:hover, .no-outlines .btn-link:hover,
.no-outlines a:focus, .no-outlines .btn-link:focus,
.no-outlines a:active, .no-outlines .btn-link:active { /* REMOVE OUTLINE */
    outline: 0;
}

a {
    color: #ff2500;
}

a:hover,
a:focus {
    color: #ff2500;
}

.btn-link {
    display: inline-block;
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
}

.btn-link:hover,
.btn-link:focus,
.btn-link.active {
    color: #ff2500;
}

button.btn-link {
    border-width: 0;
}

/* 1.2. HEADINGS */
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    margin-bottom: 0;
}

h1, .h1 { font-size: 36px; }
h2, .h2 { font-size: 30px; }
h3, .h3 { font-size: 24px; }
h4, .h4 { font-size: 18px; }
h5, .h5 { font-size: 16px; }
h6, .h6 { font-size: 14px; }

h1, .h1 { line-height: 46px; }
h2, .h2 { line-height: 40px; }
h3, .h3 { line-height: 34px; }
h4, .h4 { line-height: 28px; }
h5, .h5 { line-height: 26px; }
h6, .h6 { line-height: 24px; }

/* 1.3. FORM ELEMENTS */
.form-group {
    margin-bottom: 13px;
    margin-bottom: 0.8125rem;
}

label {
    display: block;
    margin-bottom: 0;
}
label + label {
    margin-top: 10px;
}
.btn-group > label + label {
    margin-top: 0;
}
.form-inline label + label {
    margin-top: 0;
}

.label-text {
    display: inline-block;
    margin-bottom: 8px;
    color: #696969;
    font-weight: 700;
}

.form-control {
    height: 40px;
    padding: 8px 20px;
    padding: 0.5rem 1.25rem;
    border-color: #ebebea;
    font-size: inherit;
    box-shadow: none;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
}
.edu-checkboxes:checked{
    background-color: #009378 !important;
}
.no-outlines .form-control {
    outline: 0;
}
.form-control:focus {
    border-color: #4d4d4d;
    box-shadow: none;
}
.form-control.error {
    border-color: #ff2500;
}
.form-control-lg {
    height: 50px;
    padding-top: 11px;
    padding-top: 0.6875rem;
    padding-bottom: 11px;
    padding-bottom: 0.6875rem;
    font-size: 16px;
    line-height: 26px;
}
.form-control-sm {
    height: 34px;
    padding-top: 4px;
    padding-top: 0.25rem;
    padding-bottom: 4px;
    padding-bottom: 0.25rem;
    font-size: 13px;
    line-height: 24px;
}
.form-control-rounded {
    border-radius: 30px;
}

.form-control[type="number"] {
    padding-right: 8px;
    padding-right: 0.5rem;
}

textarea.form-control {
    height: auto;
    min-height: 120px;
}

select {
    cursor: pointer; /* SET POINTER */
}
.no-outlines select {
    outline: 0; /* RESET OUTLINE */
}
select.form-control {
    padding: 8px 15px 9px;
    padding: 0.5rem 0.9375rem 0.5625rem;
}
select.form-control:not([size]):not([multiple]) {
    height: 40px;
}
select.form-control[multiple] {
    min-height: 120px;
    padding: 5px 0;
    padding: 0.3125rem 0;
    overflow: auto;
}
select.form-control option {
    padding: 4px 20px;
    padding: 0.25rem 1.25rem;
}

.form-check,
.form-radio {
    margin-bottom: 0;
    padding-left: 0;
}
.form-check + .form-check,
.form-radio + .form-radio {
    margin-top: 6px;
}
.form-inline .form-check + .form-check,
.form-inline .form-radio + .form-radio {
    margin-top: 0;
}
.form-check-input,
.form-radio-input {
    display: none;
}
.form-check-label,
.form-radio-label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    padding-left: 1.875rem;
    cursor: pointer;
    z-index: 0;
}
.form-check-label:before,
.form-radio-label:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.form-check-label:after,
.form-radio-label:after {
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    color: #fff;
    background-color: #4d4d4d;
    border-radius: 2px;
    font-family: "Font Awesome\ 5 Free";
    font-size: 11px;
    line-height: 21px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    -webkit-transition: opacity .25s linear, -webkit-transform .25s linear;
    transition: opacity .25s linear, -webkit-transform .25s linear;
    transition: opacity .25s linear, transform .25s linear;
    transition: opacity .25s linear, transform .25s linear, -webkit-transform .25s linear;
}
.form-check-input:checked + .form-check-label:after,
.form-radio-input:checked + .form-radio-label:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1);
}
.form-radio-label:before,
.form-radio-label:after {
    border-radius: 50%;
}

.custom-checkbox {
    padding-left: 30px;
    padding-left: 1.875rem;
}
.custom-checkbox > .custom-control-indicator {
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 2px;
}
.custom-checkbox > .custom-control-indicator:before {
    content: "\f00c";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    color: #fff;
    background-color: #009378;
    border-radius: 2px;
    font-family: "Font Awesome\ 5 Free";
    font-size: 11px;
    line-height: 21px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    -webkit-transition: opacity .25s linear, -webkit-transform .25s linear;
    transition: opacity .25s linear, -webkit-transform .25s linear;
    transition: opacity .25s linear, transform .25s linear;
    transition: opacity .25s linear, transform .25s linear, -webkit-transform .25s linear;
}
.custom-checkbox > input:checked + .custom-control-indicator:before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1);
}
.custom-checkbox > .custom-control-description {
    cursor: pointer;
}

.custom-file {
    height: 40px;
}
.custom-file-input {
    height: 100%;
    cursor: pointer;
}
.custom-file-label {
    height: 100%;
    padding: 7px 20px;
    padding: 0.4375rem 1.25rem;
    line-height: 24px;
}
.custom-file-label:after {
    height: 100%;
    padding: 7px 20px;
    padding: 0.4375rem 1.25rem;
}

.input-group + .input-group {
    margin-top: 15px;
}
.input-group-text {
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    color: #fff;
    background-color: #2bb3c0;
    border-color: #2bb3c0;
}
.input-group-text .fa {
    font-size: 14px;
    line-height: 24px;
}

/* 1.4. ICONS */
a.star-icon {
    color: #999;
}
a.star-icon:hover,
a.star-icon.is-stared {
    color: #009378;
    background-color: transparent;
}
a.star-icon:before {
    content: "\f005";
    font-family: "Font Awesome\ 5 Free";
    font-size: 12px;
    font-weight: 400;
}
a.star-icon.is-stared:before {
    font-weight: 700;
}

/*------------------------------------*\
    2. UTILITY CLASSES
\*------------------------------------*/
/* 2.1. WIDTH */
.w-8px { width: 8px !important; }
.w-10px { width: 10px !important; }
.w-12px { width: 12px !important; }
.w-15px { width: 15px !important; }

/* 2.2. HEIGHT */
.h-8px { height: 8px !important; }
.h-10px { height: 10px !important; }
.h-12px { height: 12px !important; }
.h-15px { height: 15px !important; }

/* 2.3. BACKGROUND COLORS */
.bg-blue { background-color: #2bb3c0; }
.bg-darker { background-color: #252525; }
.bg-green { background-color: #009378; }
.bg-orange { background-color: #ff2500; }
.bg-red { background-color: #ff2500; }
.bg-whitesmoke { background-color: #ebebea; }

/* 2.6. TEXT COLORS */
.text-blue { color: #2bb3c0; }
.text-green { color: #009378; }
.text-lightergray { color: #999; }
.text-orange { color: #ff2500; }
.text-red { color: #ff2500; }

/* 2.7. BORDER COLORS */
.border-blue { border-color: #2bb3c0 !important; }
.border-green { border-color: #009378 !important; }
.border-orange { border-color: #ff2500 !important; }
.border-red { border-color: #ff2500 !important; }

/* 2.4. BACKGROUND IMAGE */
.bg--img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 2.5. BACKGROUND OVERLAY */
[data-overlay] {
    position: relative;
    z-index: 0;
}

[data-overlay]:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    z-index: -1;
}

[data-overlay~="0"]:before { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
[data-overlay~="0.1"]:before { opacity: 0.1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)"; }
[data-overlay~="0.2"]:before { opacity: 0.2; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; }
[data-overlay~="0.3"]:before { opacity: 0.3; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; }
[data-overlay~="0.4"]:before { opacity: 0.4; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; }
[data-overlay~="0.5"]:before { opacity: 0.5; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; }
[data-overlay~="0.6"]:before { opacity: 0.6; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; }
[data-overlay~="0.7"]:before { opacity: 0.7; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; }
[data-overlay~="0.8"]:before { opacity: 0.8; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; }
[data-overlay~="0.9"]:before { opacity: 0.9; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; }
[data-overlay~="1"]:before { opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; }

[data-overlay~="lighter"]:before { background-color: #eee; }
[data-overlay~="blue"]:before { background-color: #2bb3c0; }
[data-overlay~="orange"]:before { background-color: #ff2500; }
[data-overlay~="green"]:before { background-color: #009378; }
[data-overlay~="red"]:before { background-color: #ff2500; }

.panel[data-overlay] {
    overflow: hidden;
}

/* 2.8. FONTS */
.fw--600 { font-weight: 600; }

/* 2.9. GUTTERS */
.gutter-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.gutter-20 > [class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
}

/*------------------------------------*\
    3. VENDOR OVERRIDES
\*------------------------------------*/
/* 3.1. SELECT2 */
.select2-dropdown {
    min-width: 150px;
    padding: 10px 0;
    border-width: 0;
    border-radius: 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
}

.select2-search--dropdown {
    padding: 5px 15px 15px;
}

.select2-search--dropdown .select2-search__field {
    padding: 2px 10px;
    font-size: 13px;
}

.no-outlines .select2-search--dropdown .select2-search__field {
    outline: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #eee;
}

.select2-results__option {
    padding: 5px 15px;
    color: #696969;
    font-size: 13px;
    line-height: 23px;
    -webkit-transition: color .35s, background-color .35s cubic-bezier(0.99, 0, 0.5, 0.99);
    transition: color .35s, background-color .35s cubic-bezier(0.99, 0, 0.5, 0.99);
    white-space: nowrap;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #f5f5f5;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #696969;
    background-color: #f5f5f5;
}

/* 3.2. PERFECT SCROLLBAR */
.ps__rail-y {
    width: 10px;
    background-color: transparent;
    opacity: 0.25;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
}

.ps__rail-y:hover,
.ps__rail-y:focus {
    background-color: transparent;
}

.ps__rail-y > .ps__thumb-y {
    background-color: #ccc;
    cursor: pointer;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y {
    width: 6px;
    background-color: #ccc;
}

/* 3.3. MORRIS CHART */
.morris-hover.morris-default-style {
    padding: 7px 20px 11px;
    background-color: rgba(255, 255, 255, 0.95);
    border-width: 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    -webkit-transition: top .35s linear, left .35s linear;
    transition: top .35s linear, left .35s linear;
}

.morris-hover.morris-default-style .morris-hover-row-label {
    font-size: 14px;
    font-weight: 400;
}

.morris-hover.morris-default-style .morris-hover-point + div {
    margin-top: -4px;
}

/* 3.4. JVECTOR MAP */
.jvectormap-zoomin,
.jvectormap-zoomout {
    top: 0;
    left: 0;
    width: auto;
    min-width: 26px;
    height: auto;
    padding: 0;
    color: #999;
    background-color: #fff;
    border: 1px solid #999;
    border-radius: 2px 2px 0 0;
    font-size: 22px;
    line-height: 28px;
    -webkit-transition: color .25s, background-color .25s ease-in-out;
    transition: color .25s, background-color .25s ease-in-out;
}

.jvectormap-zoomout {
    top: 29px;
    border-radius: 0 0 2px 2px;
}

.jvectormap-zoomin:hover,
.jvectormap-zoomout:hover {
    color: #ff2500;
}

/* 3.5. HORIZONTAL TIMELINE */
.cd-horizontal-timeline {
    margin: 0;
    padding-top: 21px;
    border-top: 1px solid #ebebea;
}

.cd-horizontal-timeline .timeline {
    width: 100%;
}

.cd-horizontal-timeline .events > ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cd-horizontal-timeline .events a {
    padding-bottom: 19px;
    color: #999;
    font-size: inherit;
    white-space: nowrap;
}

.cd-horizontal-timeline .events a.selected {
    color: #393939;
}

.cd-horizontal-timeline .events a.selected:after,
.no-touch .cd-horizontal-timeline .events a:hover:after {
    background-color: #2bb3c0;
    border-color: #2bb3c0;
}

.cd-horizontal-timeline .events a.older-event:not(.selected):after {
    background-color: #fff;
    border-color: #2bb3c0;
}

.cd-horizontal-timeline .filling-line {
    background-color: #2bb3c0;
}

.cd-timeline-navigation {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cd-timeline-navigation a {
    color: #2bb3c0;
    border-width: 1px;
    border-color: #2bb3c0;
    font-size: 20px;
    line-height: 27px;
    text-indent: 0;
    text-align: center;
    vertical-align: middle;
}

.cd-timeline-navigation a.prev {
    -webkit-transform: translateY(-50%) rotate(0);
            transform: translateY(-50%) rotate(0);
}

.cd-timeline-navigation a.inactive {
    color: #ccc;
    border-color: #ccc;
}

.cd-timeline-navigation a .fa {
    vertical-align: middle;
}

.cd-timeline-navigation a:after {
    display: none;
}

.cd-horizontal-timeline .events-content {
    margin: 12px 0 3px;
}

.cd-horizontal-timeline .events-content > ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cd-horizontal-timeline .events-content > ol > li {
    padding-left: 0;
    padding-right: 0;
}

.cd-horizontal-timeline .events-content .title .h4 {
    color: #393939;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.cd-horizontal-timeline .events-content .subtitle {
    margin-top: 6px;
}

.cd-horizontal-timeline .events-content .subtitle p {
    font-size: 14px;
    line-height: 24px;
    font-style: italic;
}

.cd-horizontal-timeline .events-content .desc {
    margin-top: 13px;
}

.cd-horizontal-timeline .events-content .desc p {
    color: #696969;
    font-size: 14px;
    line-height: 24px;
}

.vertical-timeline > ul {
    position: relative;
    z-index: 0;
}

.vertical-timeline > ul:before {
    content: " ";
    display: none;
    position: absolute;
    top: 0;
    left: 134px;
    width: 6px;
    height: 100%;
    background-color: #ebebea;
    border-radius: 25px;
}

.vertical-timeline > ul > li {
    position: relative;
    z-index: 0;
}

.vertical-timeline > ul > li:before,
.vertical-timeline > ul > li:after {
    content: " ";
    display: table;
}

.vertical-timeline > ul > li:after {
    clear: both;
}

.vertical-timeline > ul > li + li {
    margin-top: 25px;
}

.vertical-timeline .title,
.vertical-timeline .action {
    display: inline-block;
    position: relative;
    width: 80px;
    padding: 7px 0;
    color: #ff2500;
    background-color: #fff;
    border: 1px solid;
    border-radius: 25px;
    text-align: center;
    z-index: 0;
}

.vertical-timeline .action {
    padding: 0;
    border-width: 0;
}

.vertical-timeline .time {
    display: block;
    position: absolute;
    top: 12px;
    left: 20px;
    color: #999;
    white-space: nowrap;
}

.vertical-timeline .dot {
    float: left;
    display: none;
    position: relative;
    width: 30px;
    height: 30px;
    margin-top: 24px;
    margin-right: 35px;
    background-color: #ebebea;
    border: 8px solid #fff;
    border-radius: 50%;
    z-index: 0;
}

.vertical-timeline .dot:before {
    content: " ";
    position: absolute;
    top: 3px;
    left: 22px;
    width: 25px;
    height: 8px;
    background-color: #ebebea;
    border-radius: 0 25px 25px 0;
}

.vertical-timeline .content {
    padding: 36px 20px 13px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.vertical-timeline .subtitle {
    margin: 0 0 6px;
    color: #393939;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

@media (min-width: 992px) {
    .vertical-timeline > ul:before,
    .vertical-timeline .dot {
        display: block;
    }

    .vertical-timeline .time {
        float: left;
        position: relative;
        top: auto;
        left: auto;
        min-width: 100px;
        margin-top: 26px;
        margin-right: 22px;
        text-align: right;
    }

    .vertical-timeline .content {
        padding-top: 10px;
    }

    .vertical-timeline .title {
        margin-left: 96px;
    }

    .vertical-timeline .action {
        margin-left: 65px;
    }
}

/* 3.6. DROPZONE */
.dropzone {
    position: relative;
    min-height: 226px;
    background-color: #f8f8f8;
    border-style: dashed;
    border-width: 1px;
    border-color: #ccc;
    border-radius: 4px;
    z-index: 0;
}

.dropzone .dz-message {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0;
}

.dropzone .dz-preview {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.dropzone .dz-preview .dz-image {
    border-radius: 4px;
}

.dropzone .dz-remove:before {
    content: "\f00d";
    font-family: "Font Awesome\ 5 Free";
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    font-size: 22px;
    line-height: 40px;
    font-weight: 700;
    -webkit-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
    z-index: 1001;
}

.dropzone .dz-remove:hover:before {
    background-color: #fff;
}

/* 3.7. ION RANGE SLIDER */
.irs {
    margin-bottom: 10px;
}

.irs-line {
    height: 15px;
    background-color: #f1f1f1;
    border-radius: 25px;
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.05);
}

.irs-line > span {
    background: none;
}

.irs-max,
.irs-min {
    background-color: transparent;
    border: 1px solid #e9e9e9;
}

.irs-single,
.irs-from,
.irs-to {
    top: -18px;
    padding-left: 10px;
    padding-right: 10px;
    background: -webkit-linear-gradient(#ff9c6d, #ff2500);
    background: linear-gradient(#ff9c6d, #ff2500);
    font-size: 14px;
    line-height: 22px;
}

.irs-single:after {
    bottom: -12px;
    margin-left: -6px;
    border-width: 6px;
    border-top-color: #ff2500;
}

.irs-bar {
    height: 15px;
    background: #009378;
}

.irs.info .irs-bar {
    background-color: #2bb3c0;
}

.irs.warning .irs-bar {
    background-color: #ff2500;
}

.irs.danger .irs-bar {
    background-color: #ff2500;
}

.irs-bar-edge {
    width: 15px;
    height: 15px;
    background: #009378;
    border-radius: 25px 0 0 25px;
}

.irs.info .irs-bar-edge {
    background-color: #2bb3c0;
}

.irs.warning .irs-bar-edge {
    background-color: #ff2500;
}

.irs.danger .irs-bar-edge {
    background-color: #ff2500;
}

.irs-slider {
    top: 18px;
    width: 30px;
    height: 30px;
    background: -webkit-linear-gradient(#fff, #f1f1f1);
    background: linear-gradient(#fff, #f1f1f1);
    border-radius: 50%;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/*------------------------------------*\
    4. WIDGETS
\*------------------------------------*/
/* 4.1. WIDGET TITLE */
.widget--title {
    padding: 3px 20px 13px;
    color: #ff2500;
    font-weight: 600;
    text-transform: uppercase;
}

/* 4.2. SUMMARY WIDGET */
.summary--item {
    padding: 13px 20px;
    color: #696969;
    border-style: solid;
    border-width: 1px 0;
    border-color: rgba(255, 255, 255, 0.03);
}

.summary--item + .summary--item {
    border-top-width: 0;
}

.summary--chart {
    float: right;
    width: 107px;
    margin: 7px 0 0;
}

.summary--title {
    margin-bottom: 0;
    text-transform: uppercase;
}

.summary--stats {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

/*------------------------------------*\
    5. COMPONENTS
\*------------------------------------*/
/* 5.1. BUTTONS */
.no-outlines button:focus {
    outline: 0; /* Reset Outline */
}

.btn {
    padding: 8px 20px;
    border-width: 0;
    border-radius: 25px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition-property: color, border-color, background-color;
    transition-property: color, border-color, background-color;
    -webkit-transition-duration: .35s;
            transition-duration: .35s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    cursor: pointer;
}

.btn.active,
.btn:active,
.btn.focus,
.btn:focus,
.btn:not([disabled]):not(.disabled).active,
.btn:not([disabled]):not(.disabled):active,
.show > .btn.dropdown-toggle {
    box-shadow: none !important; /* RESET BUTTON BOX SHADOW */
}

.no-outlines .btn:focus,
.no-outlines .btn.focus,
.no-outlines .btn.active.focus,
.no-outlines .btn.active:focus,
.no-outlines .btn:active.focus,
.no-outlines .btn:active:focus,
.no-outlines .btn.focus {
    outline: 0; /* RESET BUTTON OUTLINE */
}

.btn.disabled,
.btn:disabled,
.btn[disabled] {
    cursor: default !important;
}

.btn-sm {
    padding: 4px 15px;
    font-size: 12px;
    line-height: 22px;
}

.btn-lg {
    padding: 11px 25px;
    font-size: 18px;
    line-height: 28px;
}

.btn-rounded {
    border-radius: 4px;
}
.btn-group.btn-group-vertical > .btn-rounded:first-child {
    border-top-right-radius: 4px;
}
.btn-group.btn-group-vertical > .btn-rounded:last-child {
    border-bottom-left-radius: 4px;
}

.btn-primary:focus,
.btn-info:focus,
.btn-success:focus,
.btn-danger:focus,
.btn-warning:focus {
    color: #fff;
}

.btn-default,
.btn-default.disabled,
.btn-default:disabled,
.btn-default.disabled:hover,
.btn-default.disabled:focus,
.btn-default.disabled.focus,
.btn-default[disabled]:hover,
.btn-default[disabled]:focus,
.btn-default[disabled].focus,
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default:active:hover,
.btn-default:active:focus,
.btn-default:active.focus,
.btn-default.active,
.btn-default.active:hover,
.btn-default.active:focus,
.btn-default.active.focus,
.btn-default:not(:disabled):not(.disabled):active,
.open > .dropdown-toggle.btn-default,
.open > .dropdown-toggle.btn-default:hover,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default.focus,
.show > .dropdown-toggle.btn-default,
.nav > li > a.btn-default:hover,
.nav > li > a.btn-default:focus,
.nav > li.active > a.btn-default {
    color: #393939;
    background-color: #ebebea;
}

.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled].focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.btn-primary:not(:disabled):not(.disabled):active,
.open > .dropdown-toggle.btn-primary,
.open > .dropdown-toggle.btn-primary:hover,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary.focus,
.show > .dropdown-toggle.btn-primary,
.nav > li > a.btn-primary:hover,
.nav > li > a.btn-primary:focus,
.nav > li.active > a.btn-primary {
    background-color: #745faa;
}

.btn-success,
.btn-success.disabled,
.btn-success:disabled,
.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled.focus,
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled].focus,
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success:active:hover,
.btn-success:active:focus,
.btn-success:active.focus,
.btn-success.active,
.btn-success.active:hover,
.btn-success.active:focus,
.btn-success.active.focus,
.btn-success:not(:disabled):not(.disabled):active,
.open > .dropdown-toggle.btn-success,
.open > .dropdown-toggle.btn-success:hover,
.open > .dropdown-toggle.btn-success:focus,
.open > .dropdown-toggle.btn-success.focus,
.show > .dropdown-toggle.btn-success,
.nav > li > a.btn-success:hover,
.nav > li > a.btn-success:focus,
.nav > li.active > a.btn-success {
    background-color: #009378;
}

.btn-info,
.btn-info.disabled,
.btn-info:disabled,
.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled.focus,
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled].focus,
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info:active:hover,
.btn-info:active:focus,
.btn-info:active.focus,
.btn-info.active,
.btn-info.active:hover,
.btn-info.active:focus,
.btn-info.active.focus,
.btn-info:not(:disabled):not(.disabled):active,
.open > .dropdown-toggle.btn-info,
.open > .dropdown-toggle.btn-info:hover,
.open > .dropdown-toggle.btn-info:focus,
.open > .dropdown-toggle.btn-info.focus,
.show > .dropdown-toggle.btn-info,
.nav > li > a.btn-info:hover,
.nav > li > a.btn-info:focus,
.nav > li.active > a.btn-info {
    background-color: #2bb3c0;
}

.btn-warning,
.btn-warning.disabled,
.btn-warning:disabled,
.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled]:hover,
.btn-warning[disabled]:focus,
.btn-warning[disabled].focus,
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning:active,
.btn-warning:active:hover,
.btn-warning:active:focus,
.btn-warning:active.focus,
.btn-warning.active,
.btn-warning.active:hover,
.btn-warning.active:focus,
.btn-warning.active.focus,
.btn-warning:not(:disabled):not(.disabled):active,
.open > .dropdown-toggle.btn-warning,
.open > .dropdown-toggle.btn-warning:hover,
.open > .dropdown-toggle.btn-warning:focus,
.open > .dropdown-toggle.btn-warning.focus,
.show > .dropdown-toggle.btn-warning,
.nav > li > a.btn-warning:hover,
.nav > li > a.btn-warning:focus,
.nav > li.active > a.btn-warning {
    color: #fff;
    background-color: #ff2500;
}

.btn-danger,
.btn-danger.disabled,
.btn-danger:disabled,
.btn-danger.disabled:hover,
.btn-danger.disabled:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled]:hover,
.btn-danger[disabled]:focus,
.btn-danger[disabled].focus,
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger:active,
.btn-danger:active:hover,
.btn-danger:active:focus,
.btn-danger:active.focus,
.btn-danger.active,
.btn-danger.active:hover,
.btn-danger.active:focus,
.btn-danger.active.focus,
.btn-danger:not(:disabled):not(.disabled):active,
.open > .dropdown-toggle.btn-danger,
.open > .dropdown-toggle.btn-danger:hover,
.open > .dropdown-toggle.btn-danger:focus,
.open > .dropdown-toggle.btn-danger.focus,
.show > .dropdown-toggle.btn-danger,
.nav > li > a.btn-danger:hover,
.nav > li > a.btn-danger:focus,
.nav > li.active > a.btn-danger {
    background-color: #ff2500;
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-info,
.btn-outline-danger,
.btn-outline-success,
.btn-outline-warning {
    padding-top: 7px;
    padding-bottom: 7px;
    border-width: 1px;
}

.btn-sm.btn-outline-primary,
.btn-sm.btn-outline-secondary,
.btn-sm.btn-outline-info,
.btn-sm.btn-outline-danger,
.btn-sm.btn-outline-success,
.btn-sm.btn-outline-warning {
    padding-top: 3px;
    padding-bottom: 3px;
    border-width: 1px;
}

.btn-outline-primary {
    color: #745faa;
    border-color: #745faa;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not([disabled]):not(.disabled).active,
.btn-outline-primary:not([disabled]):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #745faa;
    border-color: #745faa;
}

.btn-outline-secondary {
    color: #393939;
    border-color: #ebebea;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:not([disabled]):not(.disabled).active,
.btn-outline-secondary:not([disabled]):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle {
    color: #393939;
    background-color: #ebebea;
    border-color: #ebebea;
}

.btn-outline-info {
    color: #2bb3c0;
    border-color: #2bb3c0;
}
.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:not([disabled]):not(.disabled).active,
.btn-outline-info:not([disabled]):not(.disabled):active,
.show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #2bb3c0;
    border-color: #2bb3c0;
}

.btn-outline-danger {
    color: #ff2500;
    border-color: #ff2500;
}
.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:not([disabled]):not(.disabled).active,
.btn-outline-danger:not([disabled]):not(.disabled):active,
.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #ff2500;
    border-color: #ff2500;
}

.btn-outline-success {
    color: #009378;
    border-color: #009378;
}
.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:not([disabled]):not(.disabled).active,
.btn-outline-success:not([disabled]):not(.disabled):active,
.show>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #009378;
    border-color: #009378;
}

.btn-outline-warning {
    color: #ff2500;
    border-color: #ff2500;
}
.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:not([disabled]):not(.disabled).active,
.btn-outline-warning:not([disabled]):not(.disabled):active,
.show>.btn-outline-warning.dropdown-toggle {
    color: #fff;
    background-color: #ff2500;
    border-color: #ff2500;
}

.btn-list > .btn,
.btn-group-list > .btn-group {
    margin-right: 6px;
}

.dropdown-toggle-split {
    overflow: hidden;
}
.dropdown-toggle-split:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    z-index: -1;
}
.dropdown-toggle-split:hover:before,
.show > .dropdown-toggle-split:before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.btn + .dropdown-toggle-split,
 .dropdown-toggle-split + .btn {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

@media (max-width: 575px) {
    .btn-group.d-sm-flex > .btn:first-child {
        border-radius: 4px 4px 0 0;
    }

    .btn-group.d-sm-flex > .btn {
        display: block;
    }

    .btn-group.d-sm-flex > .btn + .btn {
        margin-left: 0;
    }

    .btn-group.d-sm-flex > .btn:last-child {
        border-radius: 0 0 4px 4px;
    }
}

/* 5.2. CALENDAR */
/* .fc .fc-button {
    float: none;
    height: auto;
    margin-left: 5px;
    margin-bottom: 5px;
    padding: 4px 20px;
    background-color: #f8f8f8;
    background-image: none;
    border: 1px solid #f8f8f8;
    border-radius: 2px;
    box-shadow: none;
    text-transform: capitalize;
    -webkit-transition: color .25s, border-color .25s;
    transition: color .25s, border-color .25s;
}

.fc .fc-basicDay-button {
    margin-left: 20px;
}

.fc .fc-state-active {
    border-color: #ff2500;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
}

.fc-toolbar .fc-right {
    float: none;
    text-align: right;
}

.fc-toolbar .fc-center {
    display: block;
    width: 100%;
    margin-top: 15px;
    color: #fff;
    background-color: #161618;
    border-radius: 2px 2px 0 0;
    clear: both;
}

.fc-toolbar .fc-center:after {
    content: " ";
    display: block;
    clear: both;
}

.fc-toolbar h2 {
    padding: 12px 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
}

.fc .fc-toolbar h2 {
    float: none;
    margin-left: 0;
}

.fc-center .fc-button {
    float: left;
    margin-bottom: 0;
    padding: 12px 20px;
    color: #fff;
    background-color: transparent;
    border-width: 0;
    font-size: 16px;
    line-height: 26px;
}

.fc-center .fc-next-button {
    float: right;
}

.fc-widget-header th {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #f8f8f8;
    border-color: #eee;
    font-weight: 600;
}

td.fc-widget-header {
    border-top-width: 0;
    border-color: #eee;
}

td.fc-widget-content {
    border-color: #eee;
}

.fc-basic-view .fc-day-number {
    padding: 3px 7px;
}

.fc-event {
    color: #fff !important;
    background-color: #f4f4f4;
    border-color: #e6e6e6;
    border-radius: 2px;
    font-size: 14px;
    line-height: 24px;
    cursor: pointer;
}

.fc-day-grid-event {
    margin-left: 0;
    margin-right: 0;
    padding: 7px 10px;
}

.fc-list-event-time{
    color: #2d2d2d;
}

tr:first-child > td > .fc-day-grid-event {
    margin-top: 0;
}

.fc-event > .fc-content {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.fc a{
    color: #2d2d2d !important;
} */

/* 5.3. CALENDAR EVENTS */
.calendar--events .h4 {
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 34px;
}

.calendar--events .fc-event {
    padding: 5px 10px 7px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
}

.calendar--events .fc-event + .fc-event {
    margin-top: 5px;
}

.calendar--events .form-check {
    margin-top: 28px;
    color: #222;
}

.calendar--events hr {
    margin-top: 28px;
    margin-bottom: 19px;
}

.calendar--event__colors {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin: -4px;
    padding: 0;
    list-style: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.calendar--event__colors li {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 9px;
    border-radius: 50%;
    -webkit-transition-property: width, height, margin, border-radius;
    transition-property: width, height, margin, border-radius;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    cursor: pointer;
    z-index: 0;
}

.calendar--event__colors li:before {
    content: " ";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    -webkit-transition: margin .25s linear, border-color .25s linear;
    transition: margin .25s linear, border-color .25s linear;
    z-index: -1;
}

.calendar--event__colors li.active {
    width: 40px;
    height: 40px;
    margin: 4px;
    border-radius: 2px;
}

.calendar--event__colors li.active:before {
    margin: 4px;
    border-color: transparent;
}

/* 5.4. CLOSE */
.close {
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
    cursor: pointer;
}

/* 5.5. COUNTDOWN */
.countdown {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-transform: uppercase;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
}

.countdown > li {
    position: relative;
    min-width: 125px;
    margin-right: 1px;
    margin-bottom: 1px;
    padding: 20px 30px 13px;
    z-index: 0;
}

.countdown > li:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2bb3c0;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    z-index: -1;
}

.countdown > li > strong {
    font-size: 30px;
    font-weight: 700;
}

.countdown > li > span {
    display: block;
    margin-top: 1px;
    font-weight: 300;
}

/* 5.6. DROPDOWNS */
.dropdown-toggle:after,
.dropup > .dropdown-toggle:after {
    margin-left: 8px;
}

.dropdown-menu {
    border-width: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    color: #696969;
    font-size: 14px;
    line-height: 24px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #696969;
    background-color: #f8f9fa;
}

.dropdown-divider {
    display: block;
}

/* 5.7. JUMBOTRON */
.jumbotron {
    background-color: #f8f8f8;
    border: 1px solid #eee;
}

.tab-pane > .jumbotron {
    margin: 10px 0;
}

/* 5.8. NAV LINKS */
.nav li a:hover,
.nav li a:focus,
.nav li.open > a,
.nav li.open > a:hover,
.nav li.open > a:focus,
.nav li.open > .dropdown-item:hover,
.nav li.open > .dropdown-item:focus {
    background-color: transparent; /* RESET NAV HOVER AND FOCUS BACKGROUND COLOR */
}

.nav li a {
    color: inherit;
}

.nav li a:focus,
.nav li.active > a:focus,
.nav li.open > a:focus {
    color: inherit;
}

.nav li a:hover,
.nav li.active > a,
.nav li.active > a:hover,
.nav li.active > a:focus,
.nav li.open > a,
.nav li.open > a:hover,
.nav li.open > a:focus {
    color: #ff2500;
}

/* 5.9. NAV TABS */
.nav-tabs {
    padding-left: 0;
    padding-right: 0;
    border-width: 0;
}
.nav-tabs li a {
    color: #ff2500;
}
.nav-tabs li a:hover {
    background-color: #f8f8f8;
}
.nav-tabs .nav-item {
    margin-left: 0;
    margin-right: 2px;
}
.nav-tabs .nav-link {
    padding: 12px 30px;
}
.nav-tabs .nav-link:hover {
    border-color: #f8f8f8;
}
.nav-tabs .nav-link:focus {
    color: #ff2500;
    border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #222222;
    background-color: transparent;
    border-color: #ebebea #ebebea #fff;
}

.nav-tabs-left > li {
    width: 100%;
}
.nav-tabs-left .nav-item {
    width: 100%;
    margin-right: 0;
}
.nav-tabs-left .nav-link {
    padding-left: 20px;
    padding-right: 20px;
    border-width: 1px 0 1px 1px;
    border-color: transparent;
    border-radius: 4px 0 0 4px;
}
.nav-tabs-left .nav-item.show .nav-link,
.nav-tabs-left .nav-link.active {
    border-color: #ebebea;
}

.nav-tabs-line .nav-item {
    margin-right: 0;
}
.nav-tabs-line .nav-link {
    border-width: 0 0 4px;
    border-color: transparent;
}
.nav-tabs-line .nav-link:hover {
    background-color: transparent;
    border-color: #b2f6fd;
}
.nav-tabs-line .nav-item.show .nav-link,
.nav-tabs-line .nav-link.active {
    border-color: #2bb3c0;
}

.nav-tabs-line-top .nav-link {
    border-width: 4px 1px 1px;
    border-color: transparent;
    border-radius: 0;
}
.nav-tabs-line-top .nav-link:hover {
    background-color: transparent;
    border-color: #b2f6fd #ebebea #fff;
}
.nav-tabs-line-top .nav-item.show .nav-link,
.nav-tabs-line-top .nav-link.active {
    border-color: #2bb3c0 #ebebea #fff;
}

.nav-tabs-line-left .nav-item {
    margin-right: 0;
}
.nav-tabs-line-left .nav-link {
    padding-left: 20px;
    padding-right: 20px;
    border-width: 1px 0 1px 4px;
    border-color: transparent;
    border-radius: 0;
}
.nav-tabs-line-left .nav-link:hover {
    background-color: transparent;
    border-color: #ebebea #fff #ebebea #b2f6fd;
}
.nav-tabs-line-left .nav-item.show .nav-link,
.nav-tabs-line-left .nav-link.active {
    border-color: #ebebea #fff #ebebea #2bb3c0;
}

/* 5.10. TABLES */
.table-bordered thead th {
    border-bottom-width: 1px;
}

.table-cells-middle th,
.table-cells-middle td {
    vertical-align: middle;
}

.table.style--1 td {
    padding: 5px 0 10px;
    border-width: 0;
    vertical-align: middle;
}

.table.style--1 td + td {
    padding-left: 10px;
    padding-right: 10px;
}

.table.style--1 td:last-child {
    padding-right: 0;
}

.table.style--1 tr:first-child td {
    padding-top: 0;
}

.table.style--1 .media--img {
    border: 1px solid #eee;
}

.table.style--1 .remove {
    font-size: 18px;
    line-height: 28px;
}

.table.style--2 {
    margin-bottom: 5px;
}

.table.style--2 th {
    padding: 0 20px 9px;
    color: #696969;
    border-bottom-color: #e8e8e8;
    border-width: 0 0 1px;
    vertical-align: middle;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
}

.table.style--2 td {
    padding: 10px 10px 0;
    border-width: 0;
    vertical-align: middle;
    text-align: center;
}

.table.style--2 thead + tbody tr:first-child td {
    padding-top: 15px;
}

.table-simple {
    color: #696969;
}

.table-simple th,
.table-simple td {
    border-width: 0;
}

/* 5.11. TABS */
.tab-content {
    padding: 21px 30px 23px;
    border: 1px solid #ebebea;
    border-radius: 4px;
    word-break: break-word;
}

.nav-tabs + .tab-content {
    border-radius: 0 0 4px 4px;
}

.tab-title {
    color: #999;
    margin-bottom: 23px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    font-weight: 700;
}

/* 5.12. TAGS */
.tag {
    display: inline-block;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-right: 5px;
    padding: 1px 10px;
    color: #393939;
    background-color: #eee;
    border-radius: 4px;
    font-size: 12px;
    line-height: 22px;
}

.tag:before {
    content: "\f02b";
    margin-right: 5px;
    font-family: "Font Awesome\ 5 Free";
    font-weight: 700;
}

.tag-frontend:before { color: #ff2500; }
.tag-backend:before { color: #009378; }
.tag-hardware:before { color: #ff2500; }
.tag-software:before { color: #2bb3c0; }

/* 5.13. BREADCRUMBS */
.breadcrumb {
    margin-top: 4px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
}

.breadcrumb > .breadcrumb-item {
    color: #999;
}

.breadcrumb > .breadcrumb-item.active {
    color: #6d6d6d;
}

.breadcrumb > .breadcrumb-item + .breadcrumb-item:before {
    content: "\f105";
    color: #999;
    font-family: "Font Awesome\ 5 Free";
    font-weight: 700;
}

.breadcrumb > .breadcrumb-item > a:not(:hover) {
    color: inherit;
}

/* 5.14. BADGES */
.badge {
    min-width: 20px;
    padding: 1px 6px 0;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    text-align: center;
}

/* 5.15. LABELS */
.label {
    display: inline-block;
    padding: 1px 15px;
    border-radius: 25px;
    color: #fff;
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    white-space: nowrap;
    cursor: default;
}

.label-default {background-color: #151515;}
.label-primary { background-color: #2bb3c0; }
.label-success { background-color: #009378; }
.label-info { background-color: #5bc0de; }
.label-warning { background-color: #ff2500; }
.label-danger { background-color: #ff2500; }

.label-blue { background-color: #2bb3c0; }
.label-orange { background-color: #ff2500; }
.label-green { background-color: #009378; }
.label-red { background-color: #ff2500; }
.label-black { background-color: #353535; }
.label-gray { background-color: #ccc; }

/* 5.16. CARD */
.card {
    border-color: #ebebea;
}

.card + .card {
    margin-top: 5px;
}

.card-header {
    padding: 0;
    border-width: 0;
}

.card-header .btn-link {
    display: block;
    position: relative;
    width: 100%;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 26px;
    text-transform: none;
    text-align: left;
    white-space: normal;
    z-index: 0;
}

.card-header .collapse-icon {
    padding-right: 40px;
}

.card-header .collapse-icon:before {
    content: "-";
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 22px;
    line-height: 22px;
    margin-top: -11px;
}

.card-header .collapse-icon.collapsed:before {
    content: "+";
}

.card-body {
    border-top: 1px solid #ebebea;
}

/* 5.17. MAPS */
.vector--map {
    height: 156px;
    -webkit-transition: background-color .35s ease-in-out;
    transition: background-color .35s ease-in-out;
}

.vector--map:hover {
    background-color: #fbfbfb;
}

.map--stats {
    color: #696969;
}

.vector--map + .map--stats {
    margin-top: 12px;
}

.map--stats .table {
    border: 1px solid #e8e8e8;
}

.map--stats .table td {
    padding: 5px 20px 7px;
    border-color: #e8e8e8;
}

.map--stats .table td + td {
    text-align: right;
}

.map--stats .table .btn-link {
    display: block;
    text-align: center;
}

/* 5.18. MEDIA */
.media:before,
.media:after {
    content: " ";
    display: table;
}

.media:after {
    clear: both;
}

.media--img {
    float: left;
    max-width: 80px;
}

.media--img img {
    border-radius: 2px;
}

.media--name {
    color: #393939;
    font-weight: 600;
}

.media--desc {
    margin-top: -1px;
    font-size: 12px;
    line-height: 22px;
}

/* 5.19. MODAL */
.modal-header {
    padding: 13px 20px;
    padding: 0.8125rem 1.25rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
        align-items: center;
}

.modal-title {
    color: #393939;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-body {
    padding: 30px 20px;
    padding: 1.875rem 1.25rem;
}

.modal-body > p:not(:last-child) {
    margin-bottom: 1.25rem;
}

/* 5.20. NAVIGATION */
.navigation {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation > li + li {
    margin-top: 1px;
}

.navigation > li > a {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 8px 15px;
    color: inherit;
    border-radius: 4px;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    word-break: break-word;
}

.navigation > li > a:hover,
.navigation > li.active > a {
    color: #393939;
    background-color: #f8f8f8;
}

.navigation > li > a.has-unread {
    color: #393939;
    font-weight: 700;
}

.navigation > li > a > i {
    padding-top: 6px;
    padding-right: 14px;
    font-size: 12px;
}

.navigation > li > a > .badge {
    margin-top: 1px;
    margin-left: auto;
    font-size: 12px;
    box-shadow: none;
}

.navigation > .title {
    color: #393939;
    font-weight: 600;
}

.navigation > .title:first-child {
    margin-top: -7px;
}

.navigation > li + .title {
    margin-top: 23px;
}

.navigation > .title + li {
    margin-top: 8px;
}

.navigation-highlighted > li.active > a {
    color: #fff;
    background-color: #2bb3c0;
}

.navigation-highlighted > li > a > i {
    font-size: 13px;
}

/* 5.21. PANEL */
.panel {
    margin-bottom: 30px;
    color: #696969;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
}

.panel-heading {
    color: #393939;
    padding: 10px 20px;
    border-width: 0;
    border-radius: 0;
}

.panel-heading:before,
.panel-heading:after {
    content: " ";
    display: table;
}

.panel-heading:after {
    clear: both;
}

.panel-title {
    float: left;
    margin-top: 3px;
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.panel-title select {
    border-width: 0;
    background-color: transparent;
    text-transform: uppercase;
}

.panel-title select option {
    text-transform: capitalize;
}

.panel-title .select2 {
    display: block;
    min-width: 200px;
}

.panel-title .select2-selection {
    height: auto;
    padding: 0;
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    overflow: hidden;
    white-space: nowrap;
}

.no-outlines .panel-title .select2-selection {
    outline: 0;
}

.panel-title .select2-selection .select2-selection__rendered {
    float: left;
    margin-right: 8px;
    padding: 0;
    line-height: inherit;
}

.panel-title .select2-selection .select2-selection__arrow {
    float: left;
    display: block;
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
}

.panel-title .select2-selection .select2-selection__arrow:before {
    content: "\f107";
    font-family: "Font Awesome\ 5 Free";
    font-weight: 700;
}

.panel-title .select2-container--open .select2-selection__arrow:before {
    content: "\f106";
}

.panel-title .select2-selection .select2-selection__arrow b {
    display: none;
}

.panel-heading .dropdown {
    float: right;
}

.panel-heading .dropdown .dropdown-toggle {
    margin: -10px -20px;
    padding: 10px 20px;
    color: #999;
    border-width: 0;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
}

.panel-heading .dropdown .dropdown-toggle:after {
    display: none;
}

.panel-heading .dropdown-menu {
    top: 30px !important;
    left: auto !important;
    right: -20px;
    margin: 0;
    padding: 10px 0;
    border-width: 0;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
    -webkit-transform: none !important;
            transform: none !important;
    z-index: 1001;
}

.panel-heading .dropdown-menu a {
    padding: 5px 15px;
    color: #4d4d44;
    font-size: 15px;
    line-height: 23px;
}

.panel-heading .dropdown-menu a:hover {
    color: #ff2500;
}

.panel-heading .dropdown-menu i {
    min-width: 15px;
    margin-right: 6px;
    font-size: 11px;
    text-align: center;
}

.panel-subtitle {
    margin: 20px 0;
}

.panel-subtitle:first-child {
    margin-top: 0;
}

.panel-subtitle .h5 {
    color: #999;
    font-weight: 600;
}

.panel-subtitle .h5 small {
    color: #777;
}

.panel-body {
    padding: 20px;
}

.panel-content {
    position: relative;
    padding: 31px 20px 33px;
    border-top: 1px solid #eee;
    border-radius: 0 0 4px 4px;
}

.panel-about table {
    width: 100%;
    word-break: break-word;
}

.panel-about table tr + tr th,
.panel-about table tr + tr td {
    padding-top: 8px;
}

.panel-about table th {
    min-width: 120px;
    color: #2bb3c0;
    font-weight: 400;
    vertical-align: top;
}

.panel-about table th > i {
    min-width: 14px;
    margin-right: 8px;
    text-align: center;
}

.panel-social {
    position: relative;
    padding: 0 20px 33px;
    border-radius: 0 0 4px 4px;
    z-index: 0;
}

.panel-heading + .panel-social {
    padding-top: 21px;
    border-top: 1px solid #eee;
}

.panel-social > .nav {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
}

.panel-social > .nav > li:not(:last-child) {
    margin-right: 20px;
}

.panel-social > .nav > li > a {
    color: #ccc;
}

.panel-social > .nav > li > a:hover {
    color: #393939;
}

.panel-activity__status > .form-control {
    min-height: 80px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.panel-activity__status > .form-control:not(:focus) {
    border-color: #ccc;
}

.panel-activity__status > .actions {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 10px 20px;
    background-color: #ebebea;
    border-style: solid;
    border-width: 0 1px 1px;
    border-color: #ccc;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.panel-activity__status > .actions > .btn-group {
    -ms-flex: 1;
        -webkit-box-flex: 1;
            flex: 1;
    font-size: 16px;
}

.panel-activity__status > .actions > .btn-group > .btn-link {
    padding-left: 0;
    padding-right: 0;
    color: #9c9c9c;
}

.panel-activity__status > .actions > .btn-group > .btn-link:hover {
    color: #393939;
}

.panel-activity__status > .actions > .btn-group > .btn-link:not(:last-child) {
    margin-right: 25px;
}

.panel-activity__list {
    position: relative;
    margin: 60px 0 0;
    padding: 0;
    list-style: none;
    z-index: 0;
}
.panel-activity__list:before {
    content: " ";
    display: none;
    position: absolute;
    top: 20px;
    left: 35px;
    bottom: 0;
    border-left: 2px solid #ebebea;
}
.panel-activity__list > li {
    position: relative;
    z-index: 0;
}
.panel-activity__list > li + li {
    margin-top: 51px;
}

.activity__list__icon {
    display: none;
    position: absolute;
    top: 2px;
    left: 0;
    min-width: 30px;
    color: #fff;
    background-color: #2bb3c0;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
}
.activity__list__header {
    position: relative;
    min-height: 35px;
    padding-top: 4px;
    padding-left: 45px;
    color: #999;
    z-index: 0;
}
.activity__list__header img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 35px;
    border-radius: 50%;
}
.activity__list__header p {
    display: inline-block;
    vertical-align: middle;
}
.activity__list__header a {
    color: #222;
    font-weight: 600;
}
.activity__list__body {
    padding-top: 13px;
    padding-left: 43px;
}
.activity__list__footer {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-top: 23px;
    margin-left: 43px;
    padding: 13px 8px 0;
    color: #999;
    border-top: 1px dotted #ccc;
}
.activity__list__footer a {
    color: inherit;
}
.activity__list__footer a:hover {
    color: #222;
}
.activity__list__footer a + a {
    margin-left: 15px;
}
.activity__list__footer i {
    margin-right: 8px;
}
.activity__list__footer span {
    margin-left: auto;
}

@media (min-width: 768px) {
    .panel-activity__list {
        padding-left: 20px;
    }

    .panel-activity__list:before {
        display: block;
    }

    .panel-activity__list > li {
        padding-left: 50px;
    }

    .activity__list__icon {
        display: block;
    }
}

/* 5.22. PAGINATION */
.page-link {
    min-width: 35px;
    min-height: 100%;
    color: #ff2500;
    border-color: #ebebea;
    text-align: center;
}
.page-link:hover,
.page-link:focus {
    color: #ff2500;
    z-index: 0;
}
.page-link:focus {
    box-shadow: none;
}
.page-item.active .page-link {
    background-color: #ff2500;
    border-color: #ff2500;
}

.pagination-lg .page-link {
    min-width: 40px;
    padding: 8px 4px;
    padding: .5rem .25rem;
    font-size: 16px;
    line-height: 22px;
}
.pagination-sm .page-link {
    min-width: 30px;
    line-height: 20px;
}

.pagination-circular .page-item {
    margin: 0 2px;
}
.pagination-circular .page-link {
    min-height: 0;
}
.pagination-circular .page-link,
.pagination-circular .page-item:first-child .page-link,
.pagination-circular .page-item:last-child .page-link {
    border-radius: 50%;
}

.page-link.border-0:hover,
.page-link.border-0:focus {
    background-color: transparent;
}

/* 5.23. PROGRESS BARS */
.progress {
    height: 5px;
    background-color: #ebebea;
    border-radius: .5rem;
    font-size: 10px;
    line-height: 15px;
}
.progress + .progress {
    margin-top: 15px;
}

.vertical-progress,
.vertical-progress-bottom {
    display: inline-block;
    position: relative;
    width: 5px;
    height: 200px;
    z-index: 0;
}
.vertical-progress + .vertical-progress,
.vertical-progress-bottom + .vertical-progress-bottom {
    margin-top: 0;
    margin-left: 11px;
}
.vertical-progress > .progress-bar,
.vertical-progress-bottom > .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.vertical-progress-bottom > .progress-bar {
    top: auto;
    bottom: 0;
}

/* 5.24. TOOLBAR */
.toolbar {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    min-height: 61px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    /* border-bottom: 1px solid #eee; */
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
}

.toolbar__title {
    margin-bottom: 0;
    color: #353535;
    font-weight: 600;
}

.toolbar__title > i {
    margin-right: 5px;
}

.toolbar__desc {
    margin-right: 20px;
    margin-bottom: 0;
}

.toolbar__desc > span {
    color: #222;
}

.toolbar__nav {
    color: #999;
    font-size: 13px;
    line-height: 23px;
}

.toolbar__nav > li:not(:last-child) {
    margin-right: 30px;
}

.toolbar__nav > li > a:hover {
    color: #393939;
}

.toolbar__nav > li > a > i {
    margin-right: 7px;
}

.toolbar__nav > li > a > span {
    display: none;
}

.toolbar__pager .btn {
    min-width: 25px;
    padding: 0;
    line-height: 23px;
    text-align: center;
}

@media (min-width: 480px) {
    .toolbar__nav > li > a > span {
        display: inline-block;
    }
}

/*------------------------------------*\
    6. MODULES
\*------------------------------------*/
/* 6.1. ACCOUNT */
.m-account-w {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    min-height: 100vh;
    -ms-flex-align: center;
       -webkit-box-align: center;
            align-items: center;
      -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 60px 15px;
}

.m-account {
    width: 100%;
    max-width: 920px;
}

.m-account-lock {
    max-width: 420px;
}

.m-account--content-w {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    min-height: 100%;
    padding: 60px 30px;
    /* color: #fff;
    background-color: #acacac; */
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: end;
    -webkit-box-align: end;
            align-items: center;
    text-align: center;
}

.m-account--content {
    /* max-width: 280px; */
}

.m-account--content > .h2 {
    margin-bottom: 7px;
    font-weight: 300;
}

.m-account--content > p {
    margin-bottom: 15px;
}

.m-account--content > .btn {
    color: #fff;
    /* background-color: rgba(255, 255, 255, 0.5); */
}

.m-account--content > .btn:hover {
    background-color: rgba(30, 30, 30, 0.7);
}

.m-account--user {
    margin-bottom: 40px;
    text-align: center;
}

.m-account--user > img {
    max-width: 80px;
    margin-bottom: 17px;
    border-radius: 50%;
}

.m-account--user > .h3 > i {
    min-width: 30px;
    color: #fff;
    background-color: #ff2500;
    border-radius: 50%;
    font-size: 14px;
    line-height: 30px;
    vertical-align: middle;
}

.m-account--form-w {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    min-height: 100%;
    padding: 60px 25px;
    color: #ccc;
    background-color: #111111;
    -ms-flex-align: center;
       -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
      -ms-flex-pack: center;
}

.m-account--form {
    width: 100%;
    max-width: 300px;
}

.m-account--form .logo {
    margin-bottom: 39px;
    text-align: center;
}

.m-account--title {
    margin-bottom: 33px;
    color: #2bb3c0;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.m-account--subtitle {
    margin-top: -20px;
    margin-bottom: 33px;
    text-align: center;
}

.m-account--form .form-group {
    margin-bottom: 15px;
}

.m-account--form .input-group-prepend {
    margin-right: 0;
    padding: 0 20px;
    color: #b3b5b5;
    background-color: #494f50;
    border-right: 1px solid #757575;
    border-radius: .25rem 0 0 .25rem;
    -ms-flex-align: center;
    -webkit-box-align: center;
                -ms-grid-row-align: center;
            align-items: center;
}

.m-account--form .form-control {
    color: #fff;
    background-color: #494f50;
    border-color: #494f50;
}

.m-account--form .form-control::-webkit-input-placeholder { color: #999; }
.m-account--form .form-control::-moz-placeholder { color: #999; }
.m-account--form .form-control:-ms-input-placeholder { color: #999; }
.m-account--form .form-control:-moz-placeholder { color: #999; }

.m-account--actions {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-top: 30px;
    -ms-flex-align: center;
       -webkit-box-align: center;
            align-items: center;
}

.m-account--actions > .btn {
    margin-left: auto;
}

.m-account--alt {
    margin-top: 43px;
}

.m-account--alt > p {
    position: relative;
    margin-bottom: 23px;
    color: #999;
    text-align: center;
    z-index: 0;
}

.m-account--alt > p:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px dotted #777;
    z-index: -1;
}

.m-account--alt > p > span {
    display: inline-block;
    padding: 0 15px;
    background-color: #111111;
}

.m-account--alt > .btn-list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.m-account--alt > .btn-list > .btn {
    -ms-flex: 1;
        -webkit-box-flex: 1;
            flex: 1;
}

.m-account--footer {
    margin-top: 51px;
    color: #999;
    text-align: center;
}

@media (min-width: 768px) {
    .m-account--content-w {
            -ms-flex-pack: start;
          -webkit-box-pack: start;
                  justify-content: flex-start;
          text-align: inherit;
    }
}

/* 6.2. COMING SOON */
.m-comingsoon-w {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    min-height: 100vh;
    -ms-flex-align: center;
       -webkit-box-align: center;
            align-items: center;
      -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 60px 15px;
}

.m-comingsoon {
    width: 100%;
    max-width: 820px;
    color: #fff;
    text-align: center;
}

.m-comingsoon .logo {
    margin-bottom: 30px;
}

.m-comingsoon--header {
    position: relative;
    padding: 60px 30px 53px;
    z-index: 0;
}

.m-comingsoon--header:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2bb3c0;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    z-index: -1;
}

.m-comingsoon--header .h2 {
    margin-bottom: 17px;
    color: #e5e5e5;
    font-size: 28px;
    line-height: 38px;
    font-weight: 300;
}

.m-comingsoon--header .h1 {
    margin-bottom: 21px;
}

.m-comingsoon--body {
    position: relative;
    padding: 60px 30px;
    z-index: 0;
}

.m-comingsoon--body:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #393939;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    z-index: -1;
}

.m-comingsoon--subscribe {
    position: relative;
    max-width: 580px;
    margin: 60px auto 0;
    z-index: 0;
}

.m-comingsoon--subscribe .form-control {
    color: #fff;
    background-color: transparent;
    font-size: 16px;
}

.m-comingsoon--subscribe .form-control::-webkit-input-placeholder { color: #999; }
.m-comingsoon--subscribe .form-control::-moz-placeholder { color: #999; }
.m-comingsoon--subscribe .form-control:-ms-input-placeholder { color: #999; }
.m-comingsoon--subscribe .form-control:-moz-placeholder { color: #999; }

.m-comingsoon--subscribe .form-control:not(:focus) {
    border-color: #757575;
}

.m-comingsoon--subscribe .btn-link {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 15px;
}

.m-comingsoon--social {
    margin-top: 58px;
}

.m-comingsoon--social .nav {
    font-size: 16px;
    line-height: 26px;
      -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
}

.m-comingsoon--social .nav > li:not(:last-child) {
    margin-right: 30px;
}

/* 6.3. ENTRY CONTENT */
.entry-content:after {
    content: " ";
    display: block;
    clear: both;
}

.entry-content blockquote p:before {
    content: "\f10d";
    color: #999;
    margin-right: 12px;
    font-family: "Font Awesome\ 5 Free";
    font-size: 24px;
    font-weight: 900;
}

.entry-content blockquote:last-child {
    margin-bottom: 0;
}

.entry-content .gallery {
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.entry-content .gallery:after {
    content: " ";
    display: block;
    clear: both;
}

.entry-content .gallery > li {
    padding-right: 20px;
    -ms-flex-preferred-size: 0;
                 flex-basis: 0;
    -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
}

/* 6.4. ERROR */
.m-error {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    min-height: 100vh;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 60px 15px;
    text-align: center;
}

.m-error--title > .h1 {
    color: #ccc;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
}

.m-error--desc {
    margin-top: 24px;
}

.m-error--desc > .h2 {
    color: #393939;
}

.m-error--desc > p {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 26px;
}

.m-error--logo img {
    max-width: 120px;
}

.m-error--search {
    margin-top: 38px;
}

.m-error--search .input-group {
    position: relative;
    margin-bottom: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.m-error--search .form-control {
    padding-right: 55px;
    border-color: #fff;
}

.m-error--search .input-group .form-control {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.m-error--search button.btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #999;
    background-color: #fff;
    z-index: 3;
}

.m-error--search button.btn:hover {
    color: #393939;
}

.m-error--social {
    margin-top: 33px;
    padding: 32px 15px 0;
    color: #b1b1b1;
    border-top: 1px solid #ccc;
    font-size: 22px;
    line-height: 32px;
}

.m-error--social .nav {
    -webkit-box-pack: center;
            justify-content: center;
      -ms-flex-pack: center;
}

.m-error--social .nav > li:not(:last-child) {
    margin-right: 40px;
}

.m-error--social .nav > li > a:hover {
    color: #696969;
}

@media (min-width: 480px) {
    .m-error--social {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* 6.5. FORM WIZARD */
.form--wizard .steps ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form--wizard .steps li {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
    z-index: 0;
}

.form--wizard .steps li:before {
    content: " ";
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-style: solid;
    border-width: 15px 20px 0 20px;
    border-color: #2bb4c0 transparent transparent transparent;
    -webkit-transition: bottom .25s ease-in-out;
    transition: bottom .25s ease-in-out;
    z-index: -1;
}

.form--wizard .steps li.current:before {
    bottom: -15px;
}

.form--wizard .steps a {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    position: relative;
    width: 100%;
    min-height: 70px;
    height: 100%;
    padding: 1px 20px 5px 80px;
    color: #fff;
    background-color: #959595;
    border-radius: 4px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    cursor: default;
    z-index: 0;
}

.form--wizard .steps li.done a {
    background-color: #222;
    cursor: pointer;
}

.form--wizard .steps li.current a {
    background-color: #2bb4c0;
}

.form--wizard .steps .current-info {
    display: none;
}

.form--wizard .steps .number {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: -3px;
    margin-left: 15px;
    font-size: 98px;
    line-height: 74px;
    font-weight: 900;
    vertical-align: middle;
}

.form--wizard .content {
    margin-top: 20px;
    padding: 21px 30px 23px;
    border: 1px solid #ebebea;
    border-radius: 4px;
}

.form--wizard .content .title {
    margin-bottom: 23px;
    padding-bottom: 8px;
    color: #999;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.form--wizard .content .title,
.form--wizard .content .body {
    display: none;
}

.form--wizard .content .title.current,
.form--wizard .content .body.current {
    display: block;
}

.form--wizard .actions ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin: 0;
    padding: 10px 0 0;
    list-style: none;
    text-align: right;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.form--wizard .actions li {
    display: list-item;
    margin-top: 10px;
}

.form--wizard .actions li + li {
    margin-left: 10px;
}

.form--wizard .actions a {
    display: block;
    padding: 8px 24px;
    color: #fff;
    background-color: #009378;
    border-radius: 4px;
    text-transform: uppercase;
}

.form--wizard .actions li.disabled,
.form--wizard .actions li:last-child {
    display: none !important;
}

@media (min-width: 768px) {
    .form--wizard .steps li {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .form--wizard .steps li:not(:last-child) {
        margin-right: 10px;
    }

    .form--wizard .steps li:before {
        display: block;
    }
}

/* 6.6. INVOICE */
.invoice {
    padding: 30px 40px;
    text-align: center;
}

.invoice p {
    margin-bottom: 0;
}

.invoice--header {
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebea;
}

.invoice--logo {
    padding-top: 10px;
    padding-bottom: 10px;
}

.invoice--address {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 13px;
    line-height: 23px;
}

.invoice--header .invoice--address {
    padding-top: 33px;
    padding-bottom: 33px;
}

.invoice--address > .h3 {
    margin-bottom: 15px;
    padding-top: 8px;
}

.invoice--address > .h3 > span {
    color: #999;
    font-weight: 300;
}

.invoice--address > .h5 {
    margin-bottom: 4px;
    color: #393939;
    font-weight: 700;
    text-transform: uppercase;
}

.invoice--billing {
    padding-top: 40px;
}

.invoice--info {
    padding-top: 30px;
    padding-bottom: 33px;
    color: #999;
    font-weight: 300;
}

.invoice--info > .h5 {
    color: #393939;
    font-weight: 600;
}

.invoice--info > .h5 > span {
    color: #999;
    font-weight: 300;
}

.invoice--info > p {
    margin-top: 4px;
}

.invoice--info > p > strong {
    color: #555;
    font-weight: 400;
}

.invoice--order {
    display: block;
    width: 100%;
    margin-top: 20px;
    border: 1px solid #ebebea;
    text-align: left;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.invoice--order .table {
    background-color: #fff;
}

.invoice--order .table > thead {
    background-color: #f8f8f8;
}

.invoice--order .table > thead > tr > th {
    padding: 9px 30px;
    color: #393939;
    border-top-width: 0;
    border-bottom-width: 0;
    text-transform: uppercase;
    vertical-align: top;
}

.invoice--order .table > tbody > tr:nth-child(even) {
    background-color: #f9f9f9;
}

.invoice--order .table > tbody > tr > td {
    padding: 9px 30px;
    border-color: #ebebea;
}

.invoice--order .table > tbody > tr > td > strong {
    color: #393939;
}

.invoice--order .table > tbody > tr > td[colspan] {
    text-align: right;
}

.invoice--footer {
    padding-top: 50px;
}

.invoice--payment {
    padding-top: 3px;
    padding-bottom: 3px;
}

.invoice--payment > p > strong {
    color: #393939;
    font-weight: 600;
}

.invoice--actions {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-left: auto;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
}

.invoice--actions > .btn {
    margin-top: 5px;
    margin-bottom: 5px;
}

.invoice--actions > .btn:not(:last-child) {
    margin-right: 10px;
}

@media (min-width: 577px) {
    .invoice {
        text-align: left;
    }

    .invoice--header {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-align: center;
           -webkit-box-align: center;
                align-items: center;
    }

    .invoice--header .invoice--address {
        padding-top: 3px;
        padding-bottom: 3px;
        margin-left: auto;
        text-align: right;
    }

    .invoice--billing {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-align: end;
           -webkit-box-align: end;
                align-items: flex-end;
    }

    .invoice--info {
        padding-top: 0;
        padding-bottom: 3px;
        margin-left: auto;
        text-align: right;
    }

    .invoice--footer {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-align: center;
           -webkit-box-align: center;
                align-items: center;
    }

    .invoice--actions {
        margin-top: 0;
        margin-left: auto;
    }
}

/* 6.7. PRICING ITEM */
.pricing--item {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 20px 40px;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.pricing--text {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 6px 25px 8px;
    border-radius: 0 0 4px 4px;
}

.pricing--header {
    padding-top: 31px;
    padding-bottom: 24px;
    border-radius: 4px 4px 0 0;
}

.pricing--text + .pricing--header {
    padding-top: 69px;
}

.pricing--title {
    margin-bottom: 31px;
    padding-bottom: 37px;
    border-bottom: 1px solid #ccc;
    font-size: 20px;
    line-height: 30px;
}

.pricing--title--box {
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 17px;
    padding-bottom: 17px;
    border-bottom-width: 0;
}

.pricing--item.active .pricing--title--box + .pricing--features + .pricing--action {
    margin-bottom: 30px;
}

.pricing--title strong {
    font-size: 72px;
    line-height: 82px;
}

.pricing--title sup {
    font-size: 30px;
    line-height: 75px;
    vertical-align: top;
}

.pricing--item.px-0 .pricing--features li {
    padding: 0 15px;
}

.pricing--features li + li {
    margin-top: 14px;
}

.pricing--action {
    margin-top: 33px;
}

.pricing--item.active {
    border-bottom: 8px solid #009378;
}

/* 6.8. TODO APP */
.app_wrapper {
    padding: 20px 15px;
}

.app_sidebar {
    margin: 0 20px 20px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
    border-style: solid;
    border-width: 0 0 1px;
    border-color: #eee;
}

.app_searchBar {
    position: relative;
    z-index: 0;
}

.app_searchBar input {
    width: 100%;
}

.app_searchBar .btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
}

.app_searchBar .btn:hover {
    color: #ff2500;
}

.app_content {
    padding-left: 20px;
    padding-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .app_sidebar.col-md-6 {
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
        border-right-width: 1px;
        border-bottom-width: 0;
    }
}

@media (min-width: 992px) {
    .app_wrapper {
        padding-left: 15px;
        padding-right: 20px;
    }

    .app_sidebar {
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
        border-right-width: 1px;
        border-bottom-width: 0;
    }
}

.todoApp_contentBody .todo--label {
    margin-right: 20px;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.todoApp_contentBody > ul > li {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f8f8;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.todoDetails .modal-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
        align-items: center;
}

.todoDetails .modal-header p {
    margin: 0 auto;
}

.todoDetails .addMember .btn {
    display: inline-block;
    padding: 3px 10px;
    color: #2bb3c0;
    font-size: 24px;
}

.todoDetails .date span {
    display: inline-block;
    padding: 2px 10px;
}

.todoDetails .title {
    margin-bottom: 10px;
    padding: 16px 30px;
    color: #393939;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.todoDetails .desc {
    padding: 21px 30px 23px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.todoDetails .desc p:not(:last-child) {
    margin-bottom: 1.25rem;
}

.todoDetails .attachments {
    margin-top: 31px;
}

.todoDetails .attachments li {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.todoDetails .attachments p {
    margin-bottom: 0;
}

.todoDetails .attachments a {
    display: inline-block;
    color: #2bb3c0;
}

.todoDetails .attachments p:last-child a {
    min-width: 82px;
    margin-left: 25px;
    font-weight: 300;
}

.todoDetails .conversations--title {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 13px;
    color: #393939;
    border-bottom: 1px solid #ebebea;
}

.todoDetails .conversations {
    margin: 0;
    padding: 0;
    list-style: none;
}

.todoDetails .conversations li {
    padding: 8px 20px 8px;
    background-color: #f8f8f8;
    border-left: 1px solid #009378;
}

.todoDetails .conversations li + li {
    margin-top: 15px;
}

.todoDetails .conversations li.reply {
    margin-left: 30px;
}

.todoDetails .conversations li:after {
    content: " ";
    display: block;
    clear: both;
}

.todoDetails .conversations .avatar {
    float: left;
    width: 50px;
    margin-top: 2px;
    margin-right: 20px;
}

.todoDetails .conversations .info {
    overflow: hidden;
}

.todoDetails .conversations .header span + span {
    font-size: 12px;
}

.todoDetails .conversations .content {
    margin-top: 3px;
}

.todoDetails .conversations .action {
    margin-top: 4px;
    font-weight: 600;
}

.todoDetails .conversation--form {
    margin-top: 15px;
    padding: 30px;
    background-color: #eee;
    border-radius: 4px;
}

.todoDetails .conversation--form .form-control:not(:focus) {
    border-color: #ccc;
}

@media screen and (max-width: 767px) {
    .todoApp_contentBody .tag {
        margin-top: 0;
        font-size: 0;
    }
    .todoApp_contentBody .tag:before {
        margin-right: 0;
        font-size: 12px;
        vertical-align: middle;
    }
}

@media screen and (max-width: 480px) {
    .todoApp_contentBody .tag {
        display: none;
    }

    .todo--date,
    .todo--info,
    .todo--star {
        display: none;
    }
}

/* 6.9. SEARCH BOX */
.search--box {
    background-color: #f8f8f8;
    border-radius: 4px;
}

.search--box form {
    padding: 50px 20px;
}

.search--box .input-group {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.search--box .form-control {
    height: 50px;
    padding-top: 13px;
    padding-bottom: 14px;
}

.search--box .options {
    margin-top: -6px;
    padding: 0 20px;
    list-style: none;
}

.search--box .options li {
    display: inline-block;
}

.search--box .options a {
    display: inline-block;
    padding: 0 20px 8px;
    color: inherit;
    border-style: solid;
    border-color: transparent;
    border-width: 0 0 3px;
}

.search--box .options li:hover > a,
.search--box .options .active > a {
    color: #ff2500;
    border-color: #ff2500;
}

@media (min-width: 768px) {
    .search--box form,
    .search--box .options {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* 6.10. SEARCH RESULTS */
.search--results {
    margin-top: 50px;
}

.search--results .stats {
    padding-bottom: 13px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.search--results .stats strong {
    font-weight: 600;
}

.search--results .results li {
    padding: 4px 0 20px;
    border-bottom: 1px solid #eee;
}

.search--results .results li + li {
    padding-top: 20px;
}

.search--results .results li > a {
    display: block;
    padding: 14px 0 18px;
    color: inherit;
    border-radius: 4px;
}

.search--results .results li > a:hover {
    background-color: #f8f8f8;
}

.search--results .title {
    color: #393939;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.search--results .desc {
    margin-top: 5px;
    margin-bottom: 6px;
}

.search--results .link {
    color: #FF2500;
}

@media (min-width: 768px) {
    .search--results .stats {
        padding-left: 60px;
        padding-left: 60px;
    }

    .search--results .results li {
        padding-left: 40px;
        padding-right: 40px;
    }

    .search--results .results li > a {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* 6.11. RECORDS HEADER */
.records--header {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 17px 30px 23px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.records--header .title {
    position: relative;
    margin-top: 0px;
    padding-left: 35px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    z-index: 1px;
}

.records--header .title:before {
    position: absolute;
    top: 0;
    left: 0;
    color: #393939;
    font-family: "Font Awesome\ 5 Free";
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.records--header .title .h3 {
    color: #393939;
    font-weight: 700;
}

.records--header .title .h3 a {
    margin-left: 6px;
}

.records--header .title p {
    margin-top: 0px;
    font-size: 16px;
    line-height: 26px;
}

.records--header .actions {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    width: 100%;
    /* margin-top: 12px; */
    padding-left: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.records--header .search {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 3px;
    /* margin-right: 30px; */
    margin-bottom: 3px;
}

.records--header .form-control {
    width: 100%;
    max-width: 220px;
    margin-top: 13px;
    margin-right: 30px;
    margin-bottom: 3px;
    padding-left: 0;
    padding-right: 0;
    border-width: 0 0 1px;
    border-color: #393939;
    border-radius: 0;
}

.special-title{
    margin-top: 10px;
}

.records--header .search .btn {
    margin-top: 5px;
    margin-left: 5px;
    white-space: nowrap;
}

.records--header .addProduct {
    margin-top: 13px;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 992px) {
    .records--header .actions {
        width: auto;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .records--header .search {
        width: 100%;
    }
}

/* 6.12. RECORDS LIST */
.records--list {
    padding-bottom: 30px;
    color: #696969;
}

.records--list .topbar {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-bottom: 13px;
    padding: 32px 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.records--list .toolbar {
    min-height: 0;
    margin-bottom: 0;
    padding-bottom: 6px;
    color: #393939;
    font-weight: 700;
    text-transform: uppercase;
}

.records--list .topbar .right {
    color: #393939;
    width: 100%;
    margin-top: 23px;
    margin-left: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.records--list .dataTables_length {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #393939;
}

.records--list .dataTables_length select:not(:focus) {
    border: 1px solid #eee;
}

.records--list .dataTables_info {
    padding-top: 0;
}

.records--list .dataTable {
    padding: 0px;
    overflow: auto;
}

.records--list .dataTable.no-footer {
    border-bottom-width: 0;
}

.records--list .dataTable th {
    padding-bottom: 13px;
    color: #393939;
    border-bottom-color: #eee;
}

.no-outlines .records--list .dataTable th:focus {
    outline: 0;
}

.records--list .dataTable th,
.records--list .dataTable td {
    padding-left: 20px;
    padding-right: 20px;
}

.records--list .dataTable tbody tr td {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebea;
}

.records--list .dataTable tbody tr:nth-child(odd) {
    background-color: #f8f8f8;
}

.records--list .dataTable img {
    max-width: 80px;
    border: 1px solid #ebebea;
}

.dataTables_paginate {
    margin-top: 8px;
    padding-left: 15px;
    padding-right: 15px;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button {
    min-width: 34px;
    padding: 4px 0;
    background: transparent;
    border-color: #ebebea;
    border-radius: 50%;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate span .paginate_button:active,
.dataTables_wrapper .dataTables_paginate span .paginate_button.current,
.dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover {
    color: #fff !important;
    background: #ff2500;
    border-color: #ff2500;
    box-shadow: none;
}


.dataTables_wrapper .dataTables_paginate > .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate > .paginate_button:active {
    color: #ff2500 !important;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

@media (min-width: 768px) {
    .records--list .topbar .right {
        width: auto;
        margin-top: 0;
    }
}

/* 6.13. RECORDS BODY */
.records--body {
    padding: 16px 30px 30px;
}

.records--body .title {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin: 7px 0 25px;
    padding-bottom: 13px;
    border-bottom: 1px solid #ccc;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.records--body .title .h6 {
    color: #393939;
    font-weight: 700;
    text-transform: uppercase;
}

.records--body .title .btn {
    margin-left: auto;
}

.records--body .subtitle {
    margin-top: 19px;
    margin-bottom: 14px;
    padding: 5px 20px 7px;
    color: #393939;
    background-color: #f8f8f8;
    border-radius: 2px;
}

.records--body .table-simple th,
.records--body .table-simple td {
    padding: 7px 0;
}

@media (min-width: 576px) {
    .records--body .table-simple th,
    .records--body .table-simple td {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* 6.14. MAIL ATTACHMENTS */
.mail-attachements {
    margin-top: 40px;
    padding-top: 31px;
    border-top: 1px solid #ebebea;
}

.mail-attachements .table {
    color: #999;
}

.mail-attachements .table a {
    color: #2bb3c0;
}

.mail-attachements .table th,
.mail-attachements .table td {
    padding: 0;
    border-width: 0;
}

.mail-attachements .table th {
    padding-bottom: 7px;
    font-weight: 400;
}

.mail-attachements .table td {
    padding-top: 2px;
}

.mail-attachements .table td .fa {
    font-size: 12px;
}

@media (max-width: 480px) {
    .mail-attachements .table tr {
        display: block;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .mail-attachements .table th, .mail-attachements .table td {
        display: block;
    }
}

/* 6.15. MAIL COMPOSE */
.mail-compose__title {
    padding-top: 3px;
    min-height: 51px;
}

/* 6.16. MAIL SENDER INFO */
.main-sender-info {
    margin-bottom: 40px;
    color: #555;
    -ms-flex-align: center;
    -webkit-box-align: center;
                -ms-grid-row-align: center;
            align-items: center;
}

.main-sender-info__name {
    font-weight: 600;
}

.main-sender-info__name > img {
    display: block;
    width: 45px;
    margin-right: 7px;
    margin-bottom: 7px;
    border-radius: 50%;
}

.main-sender-info__name > a,
.main-sender-info__name > span {
    color: #2bb3c0;
}

.main-sender-info__detail {
    margin-left: auto;
}

.main-sender-info__detail > .star-icon {
    margin-right: 13px;
}

@media (min-width: 480px) {
    .main-sender-info {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
    }

    .main-sender-info__name > img {
        display: inline-block;
    }
}

/* 6.17. MAIL SUBJECT LINE */
.mail-subject-line > .h3 {
    margin-top: -9px;
    color: #393939;
    font-weight: 300;
}

/* 6.18. MAIL VIEW */
.mail-view {
    margin-top: 36px;
    line-height: 2.2;
}

.mail-view:after {
    content: " ";
    display: block;
    clear: both;
}

.mail-view p:not(:last-child) {
    margin-bottom: 1.25rem;
}

/* 6.19. NOTE LABEL */
.note--label .dropdown-toggle {
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 2px;
    -webkit-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
    cursor: pointer;
}

.note--label .dropdown-toggle:after {
    display: none;
}

.note--label ul {
    padding: 10px 15px;
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
}

.note--label ul.dropdown-menu {
    margin-top: 10px;
    margin-left: -20px;
}

.note--label ul:after {
    content: " ";
    display: block;
    clear: both;
}

.note--label li {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 5px;
    border-radius: 2px;
    cursor: pointer;
}

/* 6.20. NOTE LIST */
.note--list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.note--list > li {
    position: relative;
    z-index: 0;
}

.note--list > li + li {
    margin-top: 10px;
}

.note--list > li > .view-item {
    display: block;
    padding: 9px 20px 11px 15px;
    color: inherit;
    border-style: solid;
    border-width: 1px 1px 1px 2px;
    border-top-color: #f8f8f8 !important;
    border-right-color: #f8f8f8 !important;
    border-bottom-color: #f8f8f8 !important;
}

.note--list > li:hover > .view-item,
.note--list > li.active > .view-item {
    background-color: #f8f8f8;
}

.note--list > li > .view-item > .title {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.note--list > li > .view-item > .desc {
    display: block;
    margin-top: -1px;
    color: #999;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.note--list > li > .view-item > .date {
    display: block;
    margin-top: 2px;
    color: #acacac;
    font-size: 12px;
    line-height: 22px;
}

.note--list > li > .remove-item {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 13px;
    font-size: 12px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: color .25s, opacity .25s, visibility .25s;
    transition: color .25s, opacity .25s, visibility .25s;
}

.note--list > li:hover > .remove-item {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.note--list > li > .remove-item:not(:hover) {
    color: #393939;
}

/* 6.21. NOTE CONTENT */
.note--content {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding-left: 40px;
    background-color: #fdf7f4;
    border-style: solid;
    border-width: 0 1px 1px;
    border-color: #eee;
    background-image: -webkit-linear-gradient(top, #eee, #eee 1px, transparent 1px, transparent);
    background-image: linear-gradient(to bottom, #eee, #eee 1px, transparent 1px, transparent);
    background-size: 100% 50px;
    line-height: 50px;
}

.note--content textarea {
    min-height: 500px;
    padding: 0 30px;
    background-color: transparent;
    border-width: 0 0 0 1px;
    border-radius: 0;
    line-height: inherit;
}

.note--content textarea:focus {
    background-color: transparent;
    border-color: #eee;
}

@media (min-width: 480px) {
    .note--content {
        padding-left: 100px;
    }
}

/* 6.22. PROFILE COVER */
.profile-cover {
    position: relative;
    z-index: 0;
}

.profile-cover__action {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 120px 30px 10px 153px;
    border-radius: 5px 5px 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
            justify-content: flex-end;
    overflow: hidden;
}

.profile-cover__action > .btn {
    margin-left: 10px;
    margin-bottom: 10px;
}

.profile-cover__action > .btn > span {
    display: none;
}

.profile-cover__img {
    position: absolute;
    top: 120px;
    left: 30px;
    text-align: center;
    z-index: 1;
}

.profile-cover__img > img {
    max-width: 120px;
    border: 5px solid #fff;
    border-radius: 50%;
}

.profile-cover__img > .h3 {
    color: #393939;
    font-size: 20px;
    line-height: 30px;
}

.profile-cover__img > img + .h3 {
    margin-top: 6px;
}

.profile-cover__info .nav {
    margin-right: 28px;
    padding: 15px 0 10px 170px;
    color: #999;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.profile-cover__info .nav li {
    margin-top: 13px;
    margin-bottom: 13px;
}

.profile-cover__info .nav li:not(:first-child) {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #eee;
}

.profile-cover__info .nav strong {
    display: block;
    margin-bottom: 10px;
    color: #ff2500;
    font-size: 34px;
}

@media (min-width: 481px) {
    .profile-cover__action > .btn {
        min-width: 125px;
    }

    .profile-cover__action > .btn > span {
        display: inline-block;
    }
}

@media (max-width: 600px) {
    .profile-cover__info .nav {
        display: block;
        margin: 90px auto 0;
        padding-left: 30px;
        padding-right: 30px;
    }

    .profile-cover__info .nav li:not(:first-child) {
        margin-top: 8px;
        margin-left: 0;
        padding-top: 18px;
        padding-left: 0;
        border-top: 1px solid #eee;
        border-left-width: 0;
    }
}

/* 6.23. CHAT */
.chat {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.chat--items {
    position: relative;
    height: 300px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: scroll;
    z-index: 0;
    bottom: bottom;
}

.chat--item + .chat--item {
    margin-top: 30px;
}

.chat--item:after {
    content: " ";
    display: block;
    clear: both;
}

.chat--avatar {
    float: left;
    position: relative;
    margin-right: 15px;
    z-index: 0;
}

.chat--avatar:before {
    content: " ";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 0;
    height: 0;
    margin-top: -6px;
    border-style: solid;
    border-width: 6px;
    border-color: transparent #ebebea transparent transparent;
}

.chat--content {
    padding: 14px 20px 16px;
    color: #696969;
    background-color: #ebebea;
    border-radius: 4px;
    overflow: hidden;
}

.chat--info:after {
    content: " ";
    display: block;
    clear: both;
}

.chat--user {
    float: left;
    margin-right: 36px;
    color: #353535;
    font-weight: 600;
}

.chat--user a {
    color: inherit;
}

.chat--time {
    float: left;
    display: block;
    color: #999;
}

.chat--text {
    margin-top: 9px;
}

.chat--text:after {
    content: " ";
    display: block;
    clear: both;
}

.chat--left .chat--content {
    color: #fff;
    background-color: #313939;
}

.chat--left .chat--avatar:before {
    border-right-color: #313939;
}

.chat--left .chat--user {
    color: #fff;
}

.chat--right .chat--avatar {
    float: right;
    margin-left: 15px;
    margin-right: 0;
}

.chat--right .chat--avatar:before {
    left: -15px;
    right: auto;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}

.chat--right .chat--user {
    float: right;
    margin-left: 36px;
    margin-right: 0;
}

.chat--right .chat--time {
    float: right;
}

.bg-darker .chat--right .chat--content {
    color: #fff;
    background-color: #313939;
}

.bg-darker .chat--right .chat--avatar:before {
    border-right-color: #313939;
}

.bg-darker .chat--right .chat--user {
    color: #fff;
}

.chat--form {
    margin-top: 30px;
    background: white;
    position: sticky;
    bottom: 0px;
    padding: 10px 0;
}

/* 6.24. CONTACT VIEW */
.contact--view {
    color: #999;
}

.contact--view:after {
    content: " ";
    display: block;
    clear: both;
}

.contact--view__avatar {
    max-width: 100px;
    margin-right: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.contact--view__info {
    overflow: hidden;
}

.contact--view__name {
    margin-top: 25px;
    margin-bottom: 12px;
    color: #393939;
    font-size: 30px;
    line-height: 40px;
}

.contact--view__role {
    margin-bottom: 4px;
}

.contact--view__work {
    margin-bottom: 0;
}

.contact--view__extra {
    width: 100%;
}

.contact--view__extra td {
    padding-top: 15px;
    padding-right: 15px;
    vertical-align: top;
}

.contact--view__extra td + td {
    color: #696969;
}

.contact--view__social {
    margin-top: 12px;
}

.contact--view__social li {
    margin-top: 10px;
    margin-right: 10px;
}

.contact--view__social a {
    display: block;
    min-width: 35px;
    line-height: 33px;
    border: 1px solid #ececec;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
}

.contact--view__social li a:hover {
    color: #009378;
    border-color: rgba(0, 147, 120, 0.3);
}

@media (min-width: 480px) {
    .user--list > li > a > .info > .title {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
    }
}

@media (min-width: 768px) {
    .contact--view__avatar {
        float: left;
    }
}

/* 6.25. USER LIST */
.user--list-w {
    position: relative;
    max-height: 778px;
    margin: 0 -20px;
    z-index: 0;
}

.user--list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.user--list > li {
    position: relative;
    z-index: 0;
}

.user--list > li + li {
    margin-top: 1px;
}

.user--list > li > a {
    display: block;
    position: relative;
    padding: 17px 20px 13px 75px;
    color: inherit;
    z-index: 0;
}

.user--list > li:hover > a,
.user--list > li.active > a {
    background-color: #f8f8f8;
}

.user--list > li > a > .avatar {
    position: absolute;
    top: 18px;
    left: 20px;
    max-width: 45px;
}

.user--list > li > a > .avatar > .avatar-text {
    display: block;
    width: 45px;
    padding-bottom: 3px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    line-height: 42px;
    font-weight: 700;
    text-align: center;
}

.user--list > li > a > .avatar > img {
    border-radius: 50%;
}

.user--list > li > a > .info .label {
    display: inline-block;
    margin-left: auto;
    font-size: 12px;
    line-height: 18px;
    border-radius: 3px;
    cursor: inherit;
}

.user--list > li > a > .info > .title {
    margin-bottom: 0;
    color: #999;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
        align-items: center;
}

.user--list > li > a > .info > .title > .title-text {
    display: block;
    margin-top: -2px;
    padding-right: 15px;
    color: #393939;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.user--list > li > a > .info > .title > .time {
    display: block;
    margin-left: auto;
    white-space: nowrap;
}

.user--list > li > a.has-attachment > .info > .title > .time:before {
    content: "\f0c6";
    margin-right: 10px;
    color: #999;
    font-family: "Font Awesome\ 5 Free";
    font-weight: 700;
}

.user--list > li > a > .info > p {
    margin-bottom: 0;
}

.user--list > li > a > .info > .subtitle {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.user--list > li > a > .info > .desc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
        align-items: center;
    color: #999;
}

.user--list > li > a > .info > .desc > .desc-text {
    display: block;
    padding-right: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.user--list > li > a.star-icon {
    position: absolute;
    right: 0;
    bottom: 13px;
    padding: 0 20px 0 15px;
    z-index: 1;
}

.user--list > li > a.star-icon + a > .info > .desc {
    padding-right: 28px;
}

.user--list > li > a.is-unread > .info > .title > .title-text {
    font-weight: 700;
}

.user--list > li > a.is-unread > .info > .title > .time {
    color: #2bb3c0;
    font-weight: 600;
}

.user--list > li > a.is-unread > .info > .subtitle {
    font-weight: 600;
}

@media (min-width: 480px) {
    .user--list > li > a.star-icon + a > .info > .desc {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
    }
}

/*------------------------------------*\
    7. PANELS
\*------------------------------------*/
/* 7.1. MINI STATS PANEL */
.miniStats--panel {
    border-radius: 5px;
}

.miniStats--panel p {
    margin-bottom: 0;
}

.miniStats--header {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 25px 20px;
    border-radius: 5px 5px 0 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
}

.miniStats--chart {
    display: inline-block;
}

.miniStats--label {
    display: inline-block;
    margin-left: auto;
    padding: 0 10px;
    border-radius: 25px;
    font-size: 12px;
    line-height: 25px;
}

.miniStats--body {
    position: relative;
    padding: 31px 20px 30px;
    z-index: 0;
}

.miniStats--icon {
    position: absolute;
    top: 50%;
    right: 10%;
    margin-top: -40px;
    font-size: 80px;
    line-height: 80px;
    opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    z-index: -1;
}

.miniStats--caption {
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 1px;
}

.miniStats--title {
    color: #393939;
    font-weight: 700;
    text-transform: uppercase;
}

.miniStats--num {
    margin-top: 8px;
    font-size: 36px;
    line-height: 46px;
    font-weight: 300;
}

/* 7.2. TODO PANEL */
.todo--panel .list-group {
    position: relative;
    max-height: 314px;
    margin-bottom: 0;
    padding-top: 23px;
    padding-bottom: 25px;
    overflow: auto;
    z-index: 0;
}

.todo--panel .list-group:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    border-top: 1px solid #eee;
}

.todo--panel .list-group-item {
    margin-top: 27px;
    padding: 0;
    border-width: 0;
}

li.list-group-item:first-child {
    margin-top: 0;
}

.todo--label {
    padding-left: 20px;
    padding-right: 30px;
    color: #696969;
    font-weight: 400;
}

.todo--input {
    display: none;
}

.todo--text {
    display: block;
    position: relative;
    padding-left: 39px;
    -webkit-transition: color .25s;
    transition: color .25s;
    cursor: pointer;
    z-index: 0;
}

.todo--text:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.todo--text:after {
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    color: #fff;
    background-color: #009378;
    border-radius: 2px;
    font-family: "Font Awesome\ 5 Free";
    font-size: 11px;
    line-height: 21px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    -webkit-transition: opacity .25s linear, -webkit-transform .25s linear;
    transition: opacity .25s linear, -webkit-transform .25s linear;
    transition: opacity .25s linear, transform .25s linear;
    transition: opacity .25s linear, transform .25s linear, -webkit-transform .25s linear;
}

.todo--input:checked + .todo--text {
    color: #999;
    text-decoration: line-through;
}

.todo--input:checked + .todo--text:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1);
}

.todo--remove {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -15px;
    color: #999;
    font-size: 18px;
    line-height: 28px;
}

.todo--panel .input-group {
    border-top: 1px solid #eee;
}

.todo--panel .form-control {
    height: auto;
    padding: 13px 20px 14px;
    border-width: 0;
}

.todo--panel .btn-link {
    padding: 12px 16px;
    color: #ccc;
    font-size: 28px;
    border-width: 0;
}

.todo--panel .ps__rail-x,
.todo--panel .ps__rail-y {
    z-index: 1;
}

.todo--extras .fa {
    margin-left: 15px;
    font-size: 16px;
    line-height: 22px;
}

.todo--date {
    margin-left: 15px;
    white-space: nowrap;
}

.todo--actions {
    margin-left: 10px;
    padding-left: 10px;
}

.todo--actions > .fa {
    cursor: pointer;
}

.todo--filter {
    padding-left: 20px;
    font-size: 20px;
    line-height: 30px;
}

/* 7.3. WEATHER PANEL */
.weather--panel {
    padding: 24px 20px 36px;
    border-radius: 5px;
    text-align: center;
}

.weather--title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.weather--title .fa {
    margin-right: 5px;
    font-size: 30px;
    line-height: 40px;
}

.weather--info {
    margin-top: 14px;
    font-size: 46px;
    line-height: 56px;
}

.weather--info .wi {
    margin-right: 10px;
}

/* 7.4. PROFILE PANEL */
.profile--panel {
    text-align: center;
}

.profile--panel .img-wrapper {
    padding: 75px 0 0;
    background-size: 100% 150px;
    background-position: top center;
    border-radius: 5px 5px 0 0;
}

.profile--panel .img {
    position: relative;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    z-index: 0;
}

.profile--panel .img:before {
    content: " ";
    position: absolute;
    right: 11px;
    bottom: 11px;
    width: 15px;
    height: 15px;
    background-color: #2bb3c0;
    border: 3px solid #fff;
    border-radius: 50%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .35s;
    transition: opacity .35s;
}

.profile--panel .img.online:before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.profile--panel .name {
    margin-top: 17px;
}

.profile--panel .name .h3 {
    color: #393939;
    font-weight: 400;
}

.profile--panel .role {
    margin-top: 2px;
    font-size: 16px;
    line-height: 26px;
}

.profile--panel .action {
    padding-top: 13px;
    padding-bottom: 30px;
}

.profile--panel .action .btn {
    padding: 7px 30px;
    font-size: 16px;
    line-height: 26px;
}

.profile--panel .bio {
    padding: 1px 20px 23px;
}

.profile--panel .info {
    padding: 10px 20px 30px;
    font-size: 20px;
    line-height: 30px;
}

.profile--panel .info li {
    -ms-flex-preferred-size: 0;
                 flex-basis: 0;
    -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
    padding: 5px 15px;
}

.profile--panel .info li:not(:last-child) {
    border-style: solid;
    border-width: 0 1px 0 0;
    border-color: #ebebea;
}

.profile--panel .info strong {
    color: #ff2500;
    font-weight: 600;
}

.profile--panel .info span {
    display: block;
    color: #696969;
    font-weight: 300;
}

@media (max-width: 450px) {
    .profile--panel .info li {
        width: 100%;
        flex-basis: auto;
    }

    .profile--panel .info li:not(:last-child) {
        border-width: 0 0 1px;
    }
}

/* 7.5. FEEDS PANEL */
.feeds-panel {
    margin: 20px 20px 0;
    padding-top: 17px;
    padding-bottom: 23px;
    border-top: 1px solid #ebebea;
}

.feeds-panel li {
    position: relative;
    width: 100%;
    min-height: 20px;
    padding-left: 40px;
    z-index: 0;
}

.feeds-panel li:before,
.feeds-panel li:after {
    content: " ";
    display: table;
}

.feeds-panel li:after {
    clear: both;
}

.feeds-panel li + li {
    margin-top: 12px;
}

.feeds-panel .fa {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 30px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
}

.feeds-panel .text {
    color: #696969;
    line-height: 26px;
}

.feeds-panel .time {
    float: right;
    margin-left: 5px;
    color: #ccc;
    font-style: italic;
}

.feeds-panel li a {
    color: #ff2500;
}

/* 7.6. COMMENTS PANEL */
.comments-panel > ul {
    margin: 0;
    padding: 20px 20px 30px;
    list-style: none;
}

.comments-panel > ul > li {
    position: relative;
    padding: 12px 20px 20px 0;
    z-index: 0;
}

.comments-panel > ul > li:before,
.comments-panel > ul > li:after {
    content: " ";
    display: table;
}

.comments-panel > ul > li:after {
    clear: both;
}

.comments-panel > ul > li + li {
    margin-top: -1px;
}

.comments-panel .img {
    float: left;
    margin-right: 15px;
    max-width: 40px;
    border: 2px solid #ebebea;
    border-radius: 50%;
}

.comments-panel .img:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 20px;
    right: 0;
    bottom: 0;
    border: 1px solid #ebebea;
    z-index: -1;
}

.comments-panel .info {
    overflow: hidden;
}

.comments-panel .h6 {
    margin-bottom: 4px;
    color: #393939;
    font-weight: 600;
}

.comments-panel .action {
    margin-top: 13px;
}

.comments-panel .action:before,
.comments-panel .action:after {
    content: " ";
    display: table;
}

.comments-panel .action:after {
    clear: both;
}

.comments-panel .status {
    float: left;
}

.comments-panel .btn {
    float: right;
    padding-top: 1px;
    padding-bottom: 1px;
}

.comments-panel .nav {
    display: block;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-top: -12px;
    padding: 0 20px 17px;
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
}

.comments-panel .nav .prev {
    float: left;
}

.comments-panel .nav .next {
    float: right;
}

.comments-panel .nav .next .fa {
    margin-left: 3px;
}

/*------------------------------------*\
    8. CHARTS
\*------------------------------------*/
/* 8.1. CHART TITLE */
.chart--title {
    margin-top: 17px;
    margin-bottom: 18px;
}

.chart--title .h2 {
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

/* 8.2. CHART STATS */
.chart--stats {
    padding: 10px 0;
    border-top: 1px solid #d9d9d9;
}

.chart--stats .nav > li {
    margin: 10px 25px;
    padding: 0px 0 2px 29px;
    text-align: left;
}

.chart--stats .nav > li:before {
    top: 5px;
    bottom: 5px;
    width: 15px;
    border-radius: 2px;
}

.chart--stats .amount {
    margin-bottom: 3px;
    color: #393939;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.chart--stats .label {
    margin-right: 8px;
    padding: 0;
    color: #999;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.chart--stats .label + span {
    white-space: nowrap;
}

.chart--stats .fa {
    margin-right: 6px;
}

.chart--stats.style--2 .nav > li {
    padding-left: 0;
}

.chart--stats.style--2 p[data-overlay] {
    padding-left: 20px;
}

.chart--stats.style--2 p[data-overlay]:before {
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 50%;
}

.chart--stats.style--3 {
    padding: 1px 0 10px;
    border-top-width: 0;
}

.chart--stats.style--3 .nav > li {
    margin-left: 0;
    margin-right: 15px;
}

.chart--stats.style--3 p {
    margin-bottom: 0;
}

.chart--stats.style--3 p[data-trigger="sparkline"] {
    margin-bottom: 7px;
}

.chart--stats.style--4 {
    color: #696969;
    margin-top: 7px;
    padding: 0 20px 23px;
    border-top-width: 0;
    text-align: left;
}

.chart--stats.style--4 .nav {
    display: block;
}

.chart--stats.style--4 .nav > li {
    display: block;
    position: relative;
    margin: 0;
    padding: 0 0 0 23px;
    overflow: hidden;
}

.chart--stats.style--4 .nav > li:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    bottom: auto;
    width: 9px;
    height: 9px;
    margin-top: -5px;
    border: 1px solid #ff2500;
    border-radius: 50%;
}

.chart--stats.style--4 .nav > li + li {
    margin-top: 9px;
}

.chart--stats.style--4 .nav > li > .stat {
    float: right;
    margin-left: 10px;
    color: #2bb3c0;
    clear: both;
}

@media screen and (max-width: 1199px) {
    .chart--stats .nav > li {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

/* 8.4. LINE CHART */
.line--chart {
    margin-top: -4px;
    padding: 0 0 5px 6px;
    height: 324px;
}

.line--chart.style--2 {
    height: 200px;
}

.line--chart.style--3 {
    height: 204px;
}

.line--chart.style--4 {
    position: relative;
    height: auto;
    margin: 17px 20px 0;
    padding: 0 0 17px;
    z-index: 0;
}

.line--chart.style--4:before {
    content: " ";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 20px;
    border: 1px solid #ebebea;
    z-index: -1;
}

/* 8.5. AREA CHART */
.area--chart {
    margin-top: -4px;
    padding: 0 0 5px 6px;
}

.area--chart.style--1 {
    height: 240px;
}

.area--chart.style--2 {
    height: 340px;
}

/* 8.6. SPARKLINE CHART */
.jqstooltip{
    box-sizing: content-box;
}

/* 8.7. CHART ACTION */
.chart--action {
    padding: 3px 20px 18px;
}

/*------------------------------------*\
    9. NAVBAR
\*------------------------------------*/
.navbar {
    margin-bottom: 0;
    padding: 0;
    background-color: #fff;
    border-width: 0;
    border-radius: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-transition: padding .25s cubic-bezier(0.99, 0, 0.5, 0.99);
    transition: padding .25s cubic-bezier(0.99, 0, 0.5, 0.99);
    z-index: 999;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

@media (min-width: 1200px) {
    .navbar {
        padding-left: 270px;
    }

    .sidebar-mini .navbar {
        padding-left: 0;
    }
}

/* 9.1. NAVBAR HEADER */
.navbar--header {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    position: absolute;
    top: 0;
    left: -270px;
    bottom: 0;
    width: 270px;
    background-color: #161618;
    -webkit-transition: left .25s cubic-bezier(0.99, 0, 0.5, 0.99);
    transition: left .25s cubic-bezier(0.99, 0, 0.5, 0.99);
    z-index: 1;
}

.navbar--header .logo {
    -ms-flex: 1;
        -webkit-box-flex: 1;
            flex: 1;
    padding: 20px;
    line-height: 50px;
}

.navbar--btn {
    padding: 20px 0 20px 30px;
    color: #393939;
    font-size: 18px;
    line-height: 50px;
}

.navbar--header .navbar--btn {
    padding-left: 20px;
    padding-right: 20px;
    color: #ccc;
}

.sidebar-light .navbar--header {
    background-color: #fff;
}

.sidebar-mini .navbar--header {
    left: 0;
}

@media (min-width: 1200px) {
    .navbar--header {
        left: 0;
    }

    .navbar--header .navbar--btn {
        display: none;
    }

    .sidebar-mini .navbar--header {
        left: -270px;
    }
}

/* 9.2. NAVBAR SEARCH */
.navbar--search {
    display: none;
    position: relative;
    max-width: 245px;
    margin: 24px 30px;
    z-index: 0;
}

.navbar--search .form-control {
    height: auto;
    padding: 10px 65px 10px 25px;
    background-color: #f3f4f4;
    border-width: 0;
    border-radius: 25px;
    box-shadow: none;
}

.navbar--search button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 25px;
    border-width: 0;
    color: #393939;
    cursor: pointer;
    z-index: 0;
}

/* 9.3. NAVBAR NAV */
.navbar--nav .nav-item {
    position: relative;
    z-index: 0;
}

.navbar--nav .nav-link {
    padding: 20px 15px;
    font-size: 18px;
    line-height: 50px;
}

.navbar--nav .nav-link .badge {
    position: absolute;
    top: 23px;
    left: 5px;
}

.navbar--nav .dropdown > a {
    color: #393939;
    font-size: 14px;
    line-height: 48px;
    font-weight: 600;
}

.navbar--nav .dropdown > a:hover,
.navbar--nav .dropdown > a:focus {
    color: #393939;
}

.navbar--nav .dropdown > .dropdown-menu {
    left: 10px;
    min-width: 128px;
    min-width: 8rem;
    margin-top: 0;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
}

.navbar--nav .dropdown > .dropdown-menu > li > a {
    display: block;
    padding: 2px 20px 3px;
    white-space: nowrap;
}

.navbar--nav .nav--user:before {
    content: " ";
    position: absolute;
    top: 57px;
    left: 52px;
    width: 10px;
    height: 10px;
    background-color: #2bb3c0;
    border: 2px solid #f6f6f6;
    border-radius: 50%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .35s;
    transition: opacity .35s;
}

.navbar--nav .nav--user.online:before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.navbar--nav .nav--user img {
    width: 50px;
}

.navbar--nav .nav--user img + span {
    display: none;
    margin-left: 11px;
}

.navbar--nav .nav--user .dropdown-menu {
    left: auto;
    right: 15px;
    min-width: 192px;
    min-width: 12rem;
    font-weight: 400;
}

.navbar--nav .nav--user .dropdown-menu i {
    margin-right: 8px;
    font-size: 12px;
}

.navbar--nav .nav-language {
    display: none;
}

.navbar--nav .nav-language img {
    margin-right: 4px;
}

.navbar--nav .nav-language span,
.navbar--nav .nav-language i {
    vertical-align: middle;
}

@media (min-width: 768px) {
    .navbar--nav .nav-language {
        display: block;
    }

    .navbar--nav .nav--user img + span {
        display: inline-block;
    }
}

@media (min-width: 768px) {
    .navbar--search {
        display: block;
    }
}

@media (min-width: 992px) {
    .navbar--nav .nav-link {
        padding-left: 30px;
        padding-right: 30px;
    }

    .navbar--nav .nav-link .badge {
        left: 20px;
    }

    .navbar--nav .nav--user:before {
        left: 67px;
    }
}

/*------------------------------------*\
    10. SIDEBAR
\*------------------------------------*/
.sidebar {
    position: fixed;
    top: 90px;
    left: -270px;
    bottom: 0;
    width: 270px;
    margin-left: 0;
    background-color: #161618;
    box-shadow: 3px 0 5px rgba(0, 0, 0, 0.05);
    -webkit-transition: margin .35s cubic-bezier(0.99, 0, 0.5, 0.99), left .25s cubic-bezier(0.99, 0, 0.5, 0.99);
    transition: margin .35s cubic-bezier(0.99, 0, 0.5, 0.99), left .25s cubic-bezier(0.99, 0, 0.5, 0.99);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 99;
}

.sidebar-light .sidebar {
    background-color: #fff;
}

.sidebar-mini .sidebar {
    left: 0;
}

@media (min-width: 1200px) {
    .sidebar {
        left: 0;
    }

    .sidebar-mini .sidebar {
        left: -270px;
    }
}

/* 10.1. SIDEBAR PROFILE */
.sidebar--profile {
    padding-top: 50px;
    padding-bottom: 39px;
    background-color: #151515;
    text-align: center;
}

.sidebar-light .sidebar--profile {
    background-color: #f1f1f1;
}

.sidebar-light .sidebar--profile a:hover {
    color: #333;
}

.profile--img {
    max-width: 80px;
    margin: 0 auto 11px;
}

.profile--name {
    margin-top: 12px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.profile--name a:hover,
.profile--name a:focus {
    color: #fff;
}

.profile--nav {
    display: inline-block;
    margin-top: 11px;
}

.profile--nav .nav-link {
    padding: 0 15px;
}

.profile--nav .nav-link:hover {
    color: #fff;
}

/* 10.2. SIDEBAR NAV */
.sidebar--nav {
    position: relative;
    padding: 45px 0 21px;
    z-index: 0;
}

.sidebar--nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar--nav ul ul {
    padding-bottom: 15px;
    border-top: 1px solid #353535;
}

.sidebar--nav li {
    position: relative;
    z-index: 0;
}

.sidebar--nav > ul > li + li {
    margin-top: 35px;
}

.sidebar--nav > ul > li + .is-dropdown {
    margin-top: 15px;
}

.sidebar--nav ul ul li {
    border-bottom: 1px solid #353535;
}

.sidebar--nav a {
    display: block;
    position: relative;
    padding: 13px 20px 13px 20px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 0;
}

.sidebar--nav ul ul a {
    padding: 6px 20px 7px 20px;
    color: #999;
    font-weight: normal;
    text-transform: none;
}

.sidebar--nav ul ul a:hover,
.sidebar--nav ul ul .open > a,
.sidebar--nav ul ul .active > a,
.sidebar--nav ul ul .active > a:before,
.sidebar--nav ul ul .active > a:after {
    color: #fff;
    background-color: #232929;
}

.sidebar--nav .is-dropdown > a:before,
.sidebar--nav .is-dropdown > a:after {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -12px;
    color: #999;
    font-family: "Font Awesome\ 5 Free";
    font-weight: 700;
    -webkit-transition: color .25s;
    transition: color .25s;
}

.sidebar--nav .is-dropdown > a:before {
    content: "\f146";
}

.sidebar--nav .is-dropdown > a:after {
    content: "\f0fe";
}

.sidebar--nav .is-dropdown.open > a:before,
.sidebar--nav .is-dropdown > a:after {
    display: none;
}

.sidebar--nav .is-dropdown > a:before,
.sidebar--nav .is-dropdown.open > a:after {
    display: block;
}

.sidebar--nav > ul > .is-dropdown > a:before {
    font-weight: 400;
}

.sidebar--nav ul ul ul {
    display: none;
}

.sidebar--nav ul ul .open > ul {
    display: block;
}

.sidebar--nav ul ul ul a:hover,
.sidebar--nav ul ul ul .open > a,
.sidebar--nav ul ul ul .active > a,
.sidebar--nav ul ul ul .active > a:before,
.sidebar--nav ul ul ul .active > a:before {
    background-color: transparent;
}

.sidebar--nav ul ul ul {
    padding-top: 5px;
    padding-bottom: 6px;
}

.sidebar--nav ul ul ul a {
    padding-left: 50px;
}

.sidebar--nav ul ul ul li {
    border-bottom-width: 0;
}

.sidebar--nav ul ul .is-dropdown > a:before {
    content: "\f105";
}

.sidebar--nav ul ul .is-dropdown > a:after {
    content: "\f107";
}

.sidebar--nav .is-dropdown > a:hover:before,
.sidebar--nav .is-dropdown > a:hover:after,
.sidebar--nav .is-dropdown > .open > a:before,
.sidebar--nav .is-dropdown > .open > a:after,
.sidebar--nav .is-dropdown > .active > a:before,
.sidebar--nav .is-dropdown > .active > a:after {
    color: #fff;
}

.sidebar--nav i {
    min-width: 16px;
    margin-right: 10px;
}

.sidebar-light .sidebar--nav ul ul,
.sidebar-light .sidebar--nav ul ul li {
    border-color: #efefef;
}

.sidebar-light .sidebar--nav ul ul a:hover,
.sidebar-light .sidebar--nav ul ul .open > a,
.sidebar-light .sidebar--nav ul ul .active > a,
.sidebar-light .sidebar--nav ul ul .active > a:before,
.sidebar-light .sidebar--nav ul ul .active > a:after {
    color: #333;
    background-color: transparent;
}

.sidebar-light .sidebar--nav ul ul ul {
    background-color: #f9f9f9;
}

.sidebar-light .sidebar--nav .is-dropdown > a:hover:before,
.sidebar-light .sidebar--nav .is-dropdown > a:hover:after,
.sidebar-light .sidebar--nav .is-dropdown > .open > a:before,
.sidebar-light .sidebar--nav .is-dropdown > .open > a:after,
.sidebar-light .sidebar--nav .is-dropdown > .active > a:before,
.sidebar-light .sidebar--nav .is-dropdown > .active > a:after {
    color: #333;
}

/* 10.3. SIDEBAR WIDGETS */
.sidebar--widgets {
    margin-top: 40px;
    margin-bottom: 50px;
}

.sidebar--nav + .sidebar--widgets {
    margin-top: 20px;
}

/*------------------------------------*\
    11. MAIN CONTAINER
\*------------------------------------*/
.main--container {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    position: relative;
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    padding-top: 90px;
    -webkit-transition: padding-left .25s cubic-bezier(0.99, 0, 0.5, 0.99);
    transition: padding-left .25s cubic-bezier(0.99, 0, 0.5, 0.99);
}

@media (min-width: 1200px) {
    .main--container {
        padding-left: 270px;
    }

    .sidebar-mini .main--container {
        padding-left: 0;
    }
}

/* 11.1. PAGE HEADER */
.page--header {
    padding: 18px 15px;
    background-color: #fff;
}

body.page-light .page--header {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.page--title {
    color: #ff2500;
    font-weight: 600;
    text-transform: uppercase;
}

.page--header .summary--widget {
    display: none;
    float: right;
    margin-left: -10px;
    margin-right: -10px;
}

.page--header .summary--chart {
    width: 71px;
}

.page--header .summary--item {
    float: left;
    padding-top: 0;
    padding-bottom: 0;
    min-width: 220px;
}

.page--header .summary--title {
    font-size: 13px;
    line-height: 23px;
}

.page--header .summary--stats {
    margin-top: -3px;
    margin-bottom: -2px;
    font-size: 22px;
    line-height: 32px;
}

@media (min-width: 992px) {
    .page--header .summary--widget {
        display: block;
    }
}

/* 11.2. MAIN CONTENT */
.main--content {
    -ms-flex: 1;
        -webkit-box-flex: 1;
            flex: 1;
    padding: 30px 30px 0;
}

/* 11.3. MAIN FOOTER */
.main--footer {
    padding: 33px 30px;
    text-align: center;
}

.main--footer-transparent {
    padding-top: 23px;
    padding-bottom: 23px;
}

.main--footer-light {
    background-color: #fff;
}

.main--footer-dark {
    background-color: #232a2b;
}

body.page-light .main--footer-light {
    box-shadow: 0 0 5px rgba(0, 0, 0, .08);
}

.main--footer a {
    color: #ff2500;
}

@media (min-width: 1200px) {
    .main--footer {
        text-align: left;
    }
}

.text-avatar{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-ds{
    min-width: 10px;
    padding: 0;
    width: 10px;
    height: 10px;
    cursor: pointer;
}

.popover{
    max-width: 500px;
    font-family: inherit;
}

.popover-body{
    padding: 15px;
    font-size: 15px;
    line-height: 1.5;
    color: #4d4d4d;
}

.popover-header {
    padding: 15px;
  }

  .font-27{
    font-size: 21px;
  }

  .font-54{
    font-size: 54px;
  }

/*
* CSS TOGGLE SWITCH
*
* Ionuț Colceriu - ghinda.net
* https://github.com/ghinda/css-toggle-switch
*
*/
/* supported values are px, rem-calc, em-calc
 */
/* imports
 */
/* Functions
 */
/* Shared
 */
/* Hide by default
 */
.switch-toggle a,
.switch-light span span {
  display: none; }

/* We can't test for a specific feature,
 * so we only target browsers with support for media queries.
 */
@media only screen {
  /* Checkbox
 */
    .switch-light {
        position: relative;
        display: block;
        width: 120px;
        user-select: none;
        /* simulate default browser focus outlines on the switch,
        * when the inputs are focused.
        */
    }
    .switch-light::after {
      clear: both;
      content: '';
      display: table; }
    .switch-light *,
    .switch-light *:before,
    .switch-light *:after {
      box-sizing: border-box; }
    .switch-light a {
      display: block;
      transition: all 0.2s ease-out; }
    .switch-light label,
    .switch-light > span {
      /* breathing room for bootstrap/foundation classes.
     */
      line-height: 2em;
    }
    .switch-light input:focus ~ span a,
    .switch-light input:focus + label {
      outline-width: 2px;
      outline-style: solid;
      outline-color: Highlight;
      /* Chrome/Opera gets its native focus styles.
     */ }
    }
    @media only screen and (-webkit-min-device-pixel-ratio: 0) {
      .switch-light input:focus ~ span a,
      .switch-light input:focus + label {
        outline-color: -webkit-focus-ring-color;
        outline-style: auto;
      }
    }

@media only screen {
  /* don't hide the input from screen-readers and keyboard access
 */
  .switch-light input {
    position: absolute;
    opacity: 0;
    z-index: 3; }
  .switch-light input:checked ~ span a {
    right: 0%; }
  /* inherit from label
 */
  .switch-light strong {
    font-weight: inherit; }
  .switch-light > span {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 2em;
    /* overwrite 3rd party classes padding
   * eg. bootstrap .alert
   */
    padding: 0;
    text-align: left; }
  .switch-light span span {
    position: relative;
    z-index: 2;
    display: block;
    float: left;
    width: 50%;
    text-align: center;
    user-select: none; }
  .switch-light a {
    position: absolute;
    right: 50%;
    top: 0;
    z-index: 1;
    display: block;
    width: 50%;
    height: 100%;
    padding: 0; }
  /* bootstrap 4 tweaks
*/
  .switch-light.row {
    display: flex; }
  .switch-light .alert-light {
    color: #333; }
  /* Radio Switch
 */
  .switch-toggle {
    position: relative;
    display: block;
    /* simulate default browser focus outlines on the switch,
   * when the inputs are focused.
   */
    /* For callout panels in foundation
  */
    padding: 0 !important;
    /* 2 items
   */
    /* 3 items
   */
    /* 4 items
   */
    /* 5 items
   */
    /* 6 items
   */ }
    .switch-toggle::after {
      clear: both;
      content: '';
      display: table; }
    .switch-toggle *,
    .switch-toggle *:before,
    .switch-toggle *:after {
      box-sizing: border-box; }
    .switch-toggle a {
      display: block;
      transition: all 0.2s ease-out; }
    .switch-toggle label,
    .switch-toggle > span {
      /* breathing room for bootstrap/foundation classes.
     */
      line-height: 2em; }
    .switch-toggle input:focus ~ span a,
    .switch-toggle input:focus + label {
      outline-width: 2px;
      outline-style: solid;
      outline-color: Highlight;
      /* Chrome/Opera gets its native focus styles.
     */ } }
    @media only screen and (-webkit-min-device-pixel-ratio: 0) {
      .switch-toggle input:focus ~ span a,
      .switch-toggle input:focus + label {
        outline-color: -webkit-focus-ring-color;
        outline-style: auto; } }

@media only screen {
    .switch-toggle input {
      position: absolute;
      left: 0;
      opacity: 0; }
    .switch-toggle input + label {
      position: relative;
      z-index: 2;
      display: block;
      float: left;
      padding: 0 0.5em;
      margin: 0;
      text-align: center; }
    .switch-toggle a {
      position: absolute;
      top: 0;
      left: 0;
      padding: 0;
      z-index: 1;
      width: 10px;
      height: 100%; }
    .switch-toggle label:nth-child(2):nth-last-child(4),
    .switch-toggle label:nth-child(2):nth-last-child(4) ~ label,
    .switch-toggle label:nth-child(2):nth-last-child(4) ~ a {
      width: 50%; }
    .switch-toggle label:nth-child(2):nth-last-child(4) ~ input:checked:nth-child(3) + label ~ a {
      left: 50%; }
    .switch-toggle label:nth-child(2):nth-last-child(6),
    .switch-toggle label:nth-child(2):nth-last-child(6) ~ label,
    .switch-toggle label:nth-child(2):nth-last-child(6) ~ a {
      width: 33.33%; }
    .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(3) + label ~ a {
      left: 33.33%; }
    .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(5) + label ~ a {
      left: 66.66%; }
    .switch-toggle label:nth-child(2):nth-last-child(8),
    .switch-toggle label:nth-child(2):nth-last-child(8) ~ label,
    .switch-toggle label:nth-child(2):nth-last-child(8) ~ a {
      width: 25%; }
    .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(3) + label ~ a {
      left: 25%; }
    .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(5) + label ~ a {
      left: 50%; }
    .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(7) + label ~ a {
      left: 75%; }
    .switch-toggle label:nth-child(2):nth-last-child(10),
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ label,
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ a {
      width: 20%; }
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(3) + label ~ a {
      left: 20%; }
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(5) + label ~ a {
      left: 40%; }
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(7) + label ~ a {
      left: 60%; }
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(9) + label ~ a {
      left: 80%; }
    .switch-toggle label:nth-child(2):nth-last-child(12),
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ label,
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ a {
      width: 16.6%; }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(3) + label ~ a {
      left: 16.6%; }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(5) + label ~ a {
      left: 33.2%; }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(7) + label ~ a {
      left: 49.8%; }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(9) + label ~ a {
      left: 66.4%; }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(11) + label ~ a {
      left: 83%; }
  /* Candy Theme
 * Based on the "Sort Switches / Toggles (PSD)" by Ormal Clarck
 * http://www.premiumpixels.com/freebies/sort-switches-toggles-psd/
 */
  .switch-toggle.switch-candy,
  .switch-light.switch-candy > span {
    background-color: #3d3d3d;
    border-radius: 3px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.2); }
  .switch-light.switch-candy span span,
  .switch-light.switch-candy input:checked ~ span span:first-child,
  .switch-toggle.switch-candy label {
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 1px #191b1e; }
  .switch-light.switch-candy input ~ span span:first-child,
  .switch-light.switch-candy input:checked ~ span span:nth-child(2),
  .switch-candy input:checked + label {
    color: #333;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
  .switch-candy a {
    border: 1px solid #333;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
    background-color: #70c66b;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), transparent); }
  .switch-candy-blue a {
    background-color: #38a3d4; }
  .switch-candy-green a {
    background-color: #70c66b;
    }
  /* iOS Theme
*/
  .switch-ios.switch-light span span {
    color: #888b92; }
  .switch-ios.switch-light a {
    left: 0;
    top: 0;
    width: 2em;
    height: 2em;
    background-color: #fff;
    border-radius: 100%;
    border: 0.25em solid #D8D9DB;
    transition: all .2s ease-out; }
  .switch-ios.switch-light > span {
    display: block;
    width: 100%;
    height: 2em;
    background-color: #D8D9DB;
    border-radius: 1.75em;
    transition: all .4s ease-out; }
  .switch-ios.switch-light > span span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    line-height: 1.875em;
    vertical-align: middle;
    transition: all .2s ease-out; }
    .switch-ios.switch-light > span span:first-of-type {
      opacity: 1;
      padding-left: 1.875em; }
    .switch-ios.switch-light > span span:last-of-type {
      padding-right: 1.875em; }
  .switch-ios.switch-light input:checked ~ span a {
    left: 100%;
    border-color: #FF2500;
    margin-left: -2em; }
  .switch-ios.switch-light input:checked ~ span {
    border-color: #FF2500;
    box-shadow: inset 0 0 0 30px #FF2500; }
  .switch-ios.switch-light input:checked ~ span span:first-of-type {
    opacity: 0; }
  .switch-ios.switch-light input:checked ~ span span:last-of-type {
    opacity: 1;
    color: #fff; }
  .switch-ios.switch-toggle {
    background-color: #D8D9DB;
    border-radius: 30px;
    box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0; }
    .switch-ios.switch-toggle a {
      background-color: #FF2500;
      border: 0.125em solid #D8D9DB;
      border-radius: 1.75em;
      transition: all 0.12s ease-out; }
    .switch-ios.switch-toggle label {
      height: 2.4em;
      color: #888b92;
      line-height: 2.4em;
      vertical-align: middle; }
  .switch-ios input:checked + label {
    color: #3e4043; }
  /* Holo Theme
 */
  .switch-toggle.switch-holo,
  .switch-light.switch-holo > span {
    background-color: #464747;
    border-radius: 1px;
    box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
    color: #fff;
    text-transform: uppercase; }
  .switch-holo label {
    color: #fff; }
  .switch-holo > span span {
    opacity: 0;
    transition: all 0.1s; }
    .switch-holo > span span:first-of-type {
      opacity: 1; }
  .switch-holo > span span,
  .switch-holo label {
    font-size: 85%;
    line-height: 2.15625em; }
  .switch-holo a {
    background-color: #666;
    border-radius: 1px;
    box-shadow: inset rgba(255, 255, 255, 0.2) 0 1px 0, inset rgba(0, 0, 0, 0.3) 0 -1px 0; }
  /* Selected ON switch-light
*/
  .switch-holo.switch-light input:checked ~ span a {
    background-color: #0E88B1; }
  .switch-holo.switch-light input:checked ~ span span:first-of-type {
    opacity: 0; }
  .switch-holo.switch-light input:checked ~ span span:last-of-type {
    opacity: 1; }
  /* Material Theme
 */
  /* switch-light
 */
  .switch-light.switch-material a {
    top: -0.1875em;
    width: 1.75em;
    height: 1.75em;
    border-radius: 50%;
    background: #fafafa;
    box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.125em -0.125em rgba(0, 0, 0, 0.2), 0 0.125em 0.25em 0 rgba(0, 0, 0, 0.12);
    transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1); }
  .switch-material.switch-light {
    overflow: visible; }
    .switch-material.switch-light::after {
      clear: both;
      content: '';
      display: table; }
  .switch-material.switch-light > span {
    overflow: visible;
    position: relative;
    top: 0.1875em;
    width: 3.25em;
    height: 1.5em;
    min-height: auto;
    border-radius: 1em;
    background: rgba(0, 0, 0, 0.26); }
  .switch-material.switch-light span span {
    position: absolute;
    clip: rect(0 0 0 0); }
  .switch-material.switch-light input:checked ~ span a {
    right: 0;
    background: #3f51b5;
    box-shadow: 0 0.1875em 0.25em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.1875em -0.125em rgba(0, 0, 0, 0.2), 0 0.0625em 0.375em 0 rgba(0, 0, 0, 0.12); }
  .switch-material.switch-light input:checked ~ span {
    background: rgba(63, 81, 181, 0.5); }
  /* switch-toggle
 */
  .switch-toggle.switch-material {
    overflow: visible; }
    .switch-toggle.switch-material::after {
      clear: both;
      content: '';
      display: table; }
  .switch-toggle.switch-material a {
    top: 48%;
    width: 0.375em !important;
    height: 0.375em;
    margin-left: 0.25em;
    background: #3f51b5;
    border-radius: 100%;
    transform: translateY(-50%);
    transition: transform .4s ease-in; }
  .switch-toggle.switch-material label {
    color: rgba(0, 0, 0, 0.54);
    font-size: 1em; }
  .switch-toggle.switch-material label:before {
    content: '';
    position: absolute;
    top: 48%;
    left: 0;
    display: block;
    width: 0.875em;
    height: 0.875em;
    border-radius: 100%;
    border: 0.125em solid rgba(0, 0, 0, 0.54);
    transform: translateY(-50%); }
  .switch-toggle.switch-material input:checked + label:before {
    border-color: #3f51b5; }
  /* ripple
 */
  .switch-light.switch-material > span:before,
  .switch-light.switch-material > span:after,
  .switch-toggle.switch-material label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: block;
    width: 4em;
    height: 4em;
    border-radius: 100%;
    background: #3f51b5;
    opacity: .4;
    margin-left: -1.25em;
    margin-top: -1.25em;
    transform: scale(0);
    transition: opacity .4s ease-in; }
  .switch-light.switch-material > span:after {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: -1.25em; }
  .switch-toggle.switch-material label:after {
    width: 3.25em;
    height: 3.25em;
    margin-top: -0.75em; }
  @keyframes materialRipple {
    0% {
      transform: scale(0); }
    20% {
      transform: scale(1); }
    100% {
      opacity: 0;
      transform: scale(1); } }
  .switch-material.switch-light input:not(:checked) ~ span:after,
  .switch-material.switch-light input:checked ~ span:before,
  .switch-toggle.switch-material input:checked + label:after {
    animation: materialRipple .4s ease-in; }
  /* trick to prevent the default checked ripple animation from showing
 * when the page loads.
 * the ripples are hidden by default, and shown only when the input is focused.
 */
  .switch-light.switch-material.switch-light input ~ span:before,
  .switch-light.switch-material.switch-light input ~ span:after,
  .switch-material.switch-toggle input + label:after {
    visibility: hidden; }
  .switch-light.switch-material.switch-light input:focus:checked ~ span:before,
  .switch-light.switch-material.switch-light input:focus:not(:checked) ~ span:after,
  .switch-material.switch-toggle input:focus:checked + label:after {
    visibility: visible; } }

/* Bugfix for older Webkit, including mobile Webkit. Adapted from
 * http://css-tricks.com/webkit-sibling-bug/
 */
@media only screen and (-webkit-max-device-pixel-ratio: 2) and (max-device-width: 80em) {
  .switch-light,
  .switch-toggle {
    -webkit-animation: webkitSiblingBugfix infinite 1s; } }

@-webkit-keyframes webkitSiblingBugfix {
  from {
    -webkit-transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0); } }

/*# sourceMappingURL=toggle-switch.css.map */
#copy-key {
    cursor: pointer;
}

#copy-key:hover{
    zoom: 1.1;
}

.dp__today
{
    border: none !important;
}

.dp__active_date, .dp__action_select, .dp__pm_am_button{
    background: #4d4d4d !important;
}



/* :root{
    --v-input-control-height: 5px;
    --v-input-padding-top: 5px;
} */
