@charset "UTF-8";
/*@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');*/
@import url('googlefonts.css');

/* ######## BOOTSTRAP ######## */
:root {
    --primary01: rgba(143, 189, 86, 0.1);
    --primary02: rgba(143, 189, 86, 0.2);
    --primary03: rgba(143, 189, 86, 0.3);
    --primary06: rgba(143, 189, 86, 0.6);
    --primary09: rgba(143, 189, 86, 0.9);
    --primary-bg-color: #8fbd56;
    --primary-bg-hover: #82c035;
    --primary-bg-border: #8fbd56;
    --primary-bg-dark: #6a9339;
    --secondary-bg-color: #2c3e50;
    --secondary-bg-border: #2c3e50;
    --secondary-bg-hover: #364d63;
    --tertiary-bg-color: #cccccc;
    --tertiary-bg-border: #cccccc;
    --critical-bg-color: #ff884d;
    --critical-bg-border: #ff7733;
    --critical-bg-transp: rgba(255, 136, 77, 0.6);
    --critical-bg-dark: #d57748;
    --trial-bg: #7b99b7;
    --trial-bg-transp: rgb(81, 115, 148, 0.6);
    --trial-bg-dark: #517394;
    --warning-bg-color: #e2cd40;
    --warning-bg-dark: #dec521;
    --warning-bg-transp: rgb(226, 205, 64, 0.6);
    --dark-body: #2c2f3e;
    --dark-theme: rgba(0, 0, 0, 0.3);
    --dark-bg: rgba(0, 0, 0, 0.2);
    --dark-border: rgba(255, 255, 255, 0.15);
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
    width: device-width;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

.list-item {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

body {
    margin: 0;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.8375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: left;
    background-color: #f7f8f9;
}
    body.dark-mode {
        margin: 0;
        font-family: 'Trebuchet MS';
        font-size: 0.8375rem;
        font-weight: 400;
        line-height: 1.2;
        color: #e8f1fa;
        text-align: left;
        background-color: #242526;
    }

        body.dark-mode .main-container,
        body.dark-mode .app-header,
        body.dark-mode .app-sidebar,
        body.dark-mode .footer,
        body.dark-mode .side-menu,
        body.dark-mode .side-header,
        body.dark-mode .container {
            background-color: #2b2b2b !important; /* Dark background color for layout containers */
            color: #e0e0e0 !important;
        }

        body.dark-mode table {
            background-color: #333; /* Dark background for table */
            color: #e0e0e0; /* Light text color */
        }

            body.dark-mode table th {
                background-color: #1e1e24; /* Dark background for table */
                color: #e0e0e0; /* Light text color */
                border-color: #555; /* Darker border color */
            }

            body.dark-mode table td {
                border-color: #555; /* Darker border color */
                font-size: 0.75rem;
            }

            /* Optional: Add hover effects for table rows */
            body.dark-mode table tr:hover {
                background-color: #444;
            }

            body.dark-mode table tr:nth-child(odd) {
                color: #faf7c8; /* Light text color */
            }

            body.dark-mode table tr:nth-child(even) {
                color: #f5f5f5; /* Light text color */
            }

            body.dark-mode table tr.selected {
                color: #2b2b2b !important; /* Dark text color */
                font-weight: bold !important; /* Optional */
            }

        body.dark-mode .card {
            background-color: #2b2b2b; /* Dark background for cards */
            color: #e0e0e0; /* Light text color */
            border-color: #444; /* Darker border color */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Softer shadow */
        }

        body.dark-mode .card-header,
        body.dark-mode .card-footer {
            background-color: #333; /* Darker background for header and footer */
            color: #f0f0f0;
            border-bottom-color: #444; /* Border for header */
        }

        body.dark-mode .card-body {
            color: #e0e0e0; /* Light text color inside card body */
        }

        body.dark-mode .form-control {
            background-color: #2b2b2b; /* Dark background for dropdown */
            color: #f5f5f5 !important; /* Light text color to override .text-dark */
            border-color: #444; /* Darker border */
        }

            body.dark-mode .form-control.form-select {
                background-color: #2b2b2b; /* Dark background for dropdown */
                color: #f5f5f5 !important; /* Light text color to override .text-dark */
                border-color: #444; /* Darker border */
            }


                /* Option background and text colors for consistency */
                body.dark-mode .form-control.form-select option {
                    background-color: #2b2b2b;
                    color: #f5f5f5;
                }

        body.dark-mode .select2-container--default .select2-selection--single {
            background-color: #2b2b2b; /* Dark background */
            color: #f5f5f5; /* Light text */
            border-color: #444; /* Dark border */
        }

            body.dark-mode .select2-container--default .select2-selection--single .select2-selection__rendered {
                color: #f5f5f5; /* Light text for selected item */
            }

        body.dark-mode .select2-container--default .select2-results__option {
            background-color: #2b2b2b; /* Dark background for options */
            color: #f5f5f5; /* Light text color */
        }

        body.dark-mode .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background-color: #444; /* Highlight color for selected option */
            color: #fff;
        }

        body.dark-mode .air-datepicker {
            background-color: #2b2b2b; /* Dark background for datepicker */
            color: #f5f5f5; /* Light text color */
            border-color: #444; /* Dark border */
        }

            body.dark-mode .air-datepicker .air-datepicker-cell {
                background-color: #2b2b2b; /* Dark background for individual cells */
                color: #f5f5f5;
            }

                body.dark-mode .air-datepicker .air-datepicker-cell.-focus- {
                    background-color: #444; /* Background for focused cell */
                    color: #fff;
                }
.number-font {
    font-weight: 600;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

dfn {
    font-style: italic;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:hover {
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
    outline: 0;
}

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

svg:not(:root) {
    overflow: hidden;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #505662;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

input[type=radio],
input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}


fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

.lead {
    font-size: 1.171875rem;
    font-weight: 300;
    line-height: 1.4;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #eaedf1;
    opacity: 1;
    background-color: transparent;
}

small,
.small {
    font-size: 87.5%;
    font-weight: 400;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-unstyled li {
    border-bottom: 1px solid #eaedf1;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

code,
kbd,
pre,
samp {
    font-family: Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
    font-size: 85%;
    color: inherit;
    word-break: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 85%;
    color: #fff;
    background-color: #343a40;
    border-radius: 3px;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}

pre {
    display: block;
    font-size: 85%;
    color: #212529;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

@media (max-width: 576px) {
    .container {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

@supports (position: -webkit-sticky) or (position: sticky) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow1 {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

.users img {
    max-width: none !important;
}

@media print {
    * {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    abbr[title]::after {
        content: " ("attr(title) ")";
    }

    pre {
        white-space: pre-wrap !important;
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }

    blockquote {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    @page {
        size: a3;
    }

    body,
    .container {
        min-width: 992px !important;
    }

    .navbar {
        display: none;
    }

    .badge {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table td,
    .table th {
        background-color: #fff !important;
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #eaedf1 !important;
    }
}

html {
    font-size: 16px;
    height: 100%;
    direction: ltr;
}

body {
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-font-feature-settings: "liga"0;
    font-feature-settings: "liga"0;
    overflow-y: scroll;
    overflow-x: hidden !important;
    position: relative;
}

body *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    transition: 0.3s background;
}

body *::-webkit-scrollbar-thumb {
    background: #ced4da;
}

body *:hover::-webkit-scrollbar-thumb {
    background: #adb5bd;
}

@media print {
    body {
        background: none;
    }
}

a {
    -webkit-text-decoration-skip-ink: auto;
    text-decoration-skip-ink: auto;
}

li.selected {
    background: var(--primary06);
    font-weight: 500;
}

.scrollable-list {
    overflow-y: auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
    color: inherit;
}

strong,
b {
    font-weight: bolder;
}

code {
    background: #f2f3f9;
    border: 1px solid #eaedf1;
    border-radius: 3px;
    padding: 3px;
}

pre code {
    padding: 0;
    border-radius: 0;
    border: none;
    background: none;
}

hr {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

pre {
    color: #343a40;
    padding: 1rem;
    overflow: auto;
    font-size: 85%;
    line-height: 1.45;
    background-color: #f4f8fd;
    border-radius: 3px;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    text-shadow: 0 1px white;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

.section-nav {
    background-color: #f8f9fa;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    border: 1px solid #eaedf1;
    border-radius: 3px;
    list-style: none;
}

.section-nav:before {
    content: "Table of contents:";
    display: block;
    font-weight: 600;
}

@media print {
    .container {
        max-width: none;
    }
}

.row-cards>.col,
.row-cards>[class*=col-] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row-deck>.col,
.row-deck>[class*=col-] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.row-deck>.col .card,
.row-deck>[class*=col-] .card {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.col-text {
    max-width: 48rem;
}

.col-login {
    max-width: 24rem;
}

.panel-heading1 .panel-title1 a {
    display: block;
    color: #f9f9fb;
}

.panel-title1 {
    margin-bottom: 0;
}

.panel-heading1 {
    display: block;
    padding: 14px 20px;
    background-color: #f3f3f3;
}

.panel-heading1.collapsed {
    border: 1px solid #eaedf1;
}

.panel-heading1.active {
    border: 1px solid #eaedf1;
    border-bottom: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.panel-title1 a {
    display: block;
    color: #fff;
    padding: 15px;
    position: relative;
    font-weight: 400;
    font-size: 15px;
}

.panel-heading1.collapsed:before {
    content: "\e9af" !important;
    position: absolute;
    font-family: "feather" !important;
    right: 10px;
    top: 9px;
    font-size: 20px;
    transition: all 0.5s;
    transform: scale(1);
}

.panel-heading1.active:before {
    content: "\e994" !important;
    position: absolute;
    font-family: "feather" !important;
    right: 10px;
    top: 6px;
    font-size: 20px;
    transition: all 0.5s;
    transform: scale(1);
}

.accor.bg-primary h4 a {
    color: #fff;
}

.accor h4 a {
    padding: 14px 20px;
    display: block;
    font-size: 15px;
    background-color: #f3f3f3;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid #eaedf1;
}

.accor h4 a.active {
    border-bottom: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.panel-heading2 {
    display: block;
    padding: 12px;
    background: #ffffff;
    color: #495057;
}

.panel-heading2.collapsed:before {
    content: "\e92d";
    position: absolute;
    font-family: "feather" !important;
    right: 10px;
    top: 6px;
    font-size: 16px;
    line-height: 2.3;
    transition: all 0.5s;
    transform: scale(1);
}

.panel-group2 .panel-collapse.collapse.show:before {
    content: "\e930";
    position: absolute;
    font-family: "feather" !important;
    right: 10px;
    top: 6px;
    font-size: 16px;
    line-height: 2.3;
    transition: all 0.5s;
    transform: scale(1);
    color: var(--primary-bg-color);
}

.accor h4 a.collapsed {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.accor h4 a[aria-expanded=true] {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom: 0px;
}

.panel-group1 a[aria-expanded=true] {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.acc-header a[aria-expanded=true] {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

/*-----Alerts-----*/
.alert {
    position: relative;
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert:last-child,
.alert p {
    margin-bottom: 0;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 500;
}

.alert-link:hover,
.alert-link a:hover {
    text-decoration: underline;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-icon {
    padding-left: 3rem;
}

.alert-icon>i {
    color: inherit;
    font-size: 1rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.alert-avatar {
    padding-left: 3.75rem;
}

.alert-avatar .avatar {
    position: absolute;
    top: 0.5rem;
    left: 0.75rem;
}

.alert-default {
    background-color: #e4e7ecc5;
}

.alert-default .alert-link {
    color: #444546;
}

.alert-primary {
    color: var(--primary-bg-color);
    background-color: var(--primary02);
    border-color: var(--primary02);
}

.alert-primary hr {
    border-top-color: var(--primary-bg-color);
}

.alert-primary .alert-link {
    color: var(--primary-bg-color);
}

.alert-secondary {
    color: #e984b1;
    background-color: rgba(233, 132, 177, 0.15);
    border-color: rgba(233, 132, 177, 0.15);
}

.alert-secondary hr {
    border-top-color: #e984b1;
}

.alert-secondary .alert-link {
    color: #e984b1;
}

.alert-success {
    color: #13bfa6;
    background-color: rgba(19, 191, 166, 0.15);
    border-color: rgba(19, 191, 166, 0.15);
}

.alert-success hr {
    border-top-color: #13bfa6;
}

.alert-success .alert-link {
    color: #13bfa6;
}

.alert-info {
    color: #59adec;
    background-color: rgba(89, 173, 236, 0.15);
    border-color: rgba(89, 173, 236, 0.15);
}

.alert-info hr {
    border-top-color: #59adec;
}

.alert-info .alert-link {
    color: #59adec;
}

.alert-warning {
    color: #e7c354;
    background-color: rgba(231, 195, 84, 0.15);
    border-color: rgba(231, 195, 84, 0.15);
}

.alert-warning hr {
    border-top-color: #e7c354;
}

.alert-warning .alert-link {
    color: #e7c354;
}

.alert-danger {
    color: #d12c47;
    background-color: rgba(209, 44, 71, 0.15);
    border-color: rgba(209, 44, 71, 0.15);
    margin-left:20px;
}

.alert-danger hr {
    border-top-color: #d12c47;
}

.alert-danger .alert-link {
    color: #d12c47;
}

.alert-dark {
    color: #323251;
    background-color: rgba(68, 69, 70, 0.15);
    border-color: rgba(68, 69, 70, 0.15);
}

.alert-dark hr {
    border-top-color: #444546;
}

.alert-dark .alert-link {
    color: #444546;
}

.alert-light {
    color: #4d5875;
    background-color: rgba(228, 231, 236, 0.25);
    border-color: rgba(228, 231, 236, 0.25);
}

.alert-light hr {
    border-top-color: #e4e7ecc5;
}

.alert-light .alert-link {
    color: #868e96;
}

/*----- Avatars -----*/

.avatar {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    display: inline-block;
    position: relative;
    text-align: center;
    color: #fff;
    font-weight: 500;
    vertical-align: bottom;
    font-size: 0.875rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.avatar i {
    font-size: 125%;
    vertical-align: sub;
}

.avatar-status {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #fff;
    border-radius: 50%;
}

.avatar-sm {
    width: 1.6rem;
    height: 1.6rem;
    line-height: 1.6rem;
    font-size: 0.75rem;
}

.avatar-md {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 1rem;
}

.avatar-lg {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.25rem;
}

.avatar-xl {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    font-size: 1.75rem;
}

.avatar-xxl {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
}

.avatar-placeholder {
    background: #ced4da url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="134" height="134" viewBox="0 0 134 134"><path fill="#868e96" d="M65.92 66.34h2.16c14.802.42 30.928 6.062 29.283 20.35l-1.618 13.32c-.844 6.815-5.208 7.828-13.972 7.866H52.23c-8.764-.038-13.13-1.05-13.973-7.865l-1.62-13.32C34.994 72.4 51.12 66.76 65.92 66.34zM49.432 43.934c0-9.82 7.99-17.81 17.807-17.81 9.82 0 17.81 7.99 17.81 17.81 0 9.82-7.99 17.807-17.81 17.807-9.82 0-17.808-7.987-17.808-17.806z"/></svg>') no-repeat center/80%;
}

.avatar-list {
    margin: 0 0 -0.5rem;
    padding: 0;
    font-size: 0;
}

.avatar-list .avatar {
    margin-bottom: 0.5rem;
}

.avatar-list .avatar:not(:last-child) {
    margin-right: 0.5rem;
}

.avatar-list-stacked .avatar {
    margin-right: -0.8em !important;
    box-shadow: 0 0 0 2px #fff;
}

.avatar-blue {
    background-color: #c8d9f1;
    color: #467fcf;
}

.avatar-indigo {
    background-color: #d1d5f0;
    color: #6574cd;
}

.avatar-purple {
    background-color: #e4cff9;
    color: #867efc;
}

.avatar-pink {
    background-color: #fcd3e1;
    color: #ec82ef;
}

.avatar-red {
    background-color: #f0bcbc;
    color: #c21a1a;
}

.avatar-orange {
    background-color: #fee0c7;
    color: #fc7303;
}

.avatar-yellow {
    background-color: #fbedb7;
    color: #ecb403;
}

.avatar-green {
    background-color: #cfeab3;
    color: #4ecc48;
}

.avatar-teal {
    background-color: #bfefea;
    color: #2bcbba;
}

.avatar-cyan {
    background-color: #b9e3ea;
    color: #17a2b8;
}

.avatar-white {
    background-color: white;
    color: #fff;
}

.avatar-gray {
    background-color: #dbdde0;
    color: #868e96;
}

.avatar-gray-dark {
    background-color: #c2c4c6;
    color: #343a40;
}

.avatar-azure {
    background-color: #c7e6fb;
    color: #45aaf2;
}

.avatar-lime {
    background-color: #d7f2c2;
    color: #7bd235;
}

.avatar-group .avatar {
    position: relative;
    z-index: 2;
    background: transparent !important;
}

.avatar-group .avatar:hover {
    z-index: 3;
}

.avatar-group .avatar+.avatar {
    margin-left: -0.8rem;
}

.avatar-group .avatar-sm {
    font-size: 0.875rem;
    width: 32px;
    height: 32px;
}

.indicators .avatar {
    position: relative;
}

.indicators .avatar::after {
    content: "";
    position: absolute;
    background-color: var(--primary-bg-color);
    border: 2px solid #fff;
    border-radius: 50%;
}

.indicators .avatar.avatar-sm.rounded-circle {
    line-height: 1.7rem;
}

.indicators .avatar.avatar-sm.rounded-circle::after {
    height: 9px;
    width: 9px;
    bottom: 0px;
    right: -1px;
    line-height: 2.5em;
}

.indicators .avatar.avatar-normal.rounded-circle {
    line-height: 2rem;
}

.indicators .avatar.avatar-normal.rounded-circle::after {
    bottom: 2px;
    height: 10px;
    width: 10px;
    right: -3px;
}

.indicators .avatar.avatar-md.rounded-circle::after {
    height: 11px;
    width: 11px;
    bottom: 3px;
    right: -1px;
}

.indicators .avatar.avatar-lg.brround::after {
    height: 12px;
    width: 12px;
    bottom: 1px;
    right: -4px;
}

.indicators .avatar.avatar-lg.rounded-circle::after {
    height: 12px;
    width: 12px;
    bottom: 4px;
    right: -1px;
}

.indicators .avatar.avatar-lg::after {
    height: 12px;
    width: 12px;
    bottom: 0px;
    right: -5px;
}

.indicators .avatar.avatar-xl.rounded-circle {
    font-size: 26px;
}

.indicators .avatar.avatar-xl.rounded-circle::after {
    height: 13px;
    width: 13px;
    bottom: 5px;
    right: -1px;
}

.indicators .avatar.avatar-xxl.rounded-circle {
    font-size: 28px;
}

.indicators .avatar.avatar-xxl.rounded-circle::after {
    height: 15px;
    width: 15px;
    bottom: 6px;
    right: -1px;
}

.indicators .avatar.offline::after {
    background-color: #707070;
}

.avatar-container {
    position: relative;
}

.avatar-container .number-badge {
    position: absolute;
    top: -4%;
    padding: 10px;
    right: -6px;
    font-size: 10px !important;
    border: 2px solid #fff;
    border-radius: 50% !important;
    height: 10%;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-container .avatar-icon-badge {
    position: absolute;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 9%;
    left: 66%;
    cursor: pointer;
}

.avatar-container.avatar-sm .number-badge {
    right: -14px;
    top: -8px;
    padding: 9px;
}

.avatar-container.avatar-sm .avatar-icon-badge {
    bottom: -13%;
    padding: 2px !important;
}

.avatar-container.avatar-md .number-badge {
    top: -6px;
    right: -11px;
}

.avatar-container.avatar-md .avatar-icon-badge {
    bottom: -5%;
    padding: 3px !important;
}

.avatar-container.avatar-md .avatar-icon-badge i {
    font-size: 11px;
}

.avatar-container.avatar-lg .number-badge {
    top: -5px;
    right: -10px;
}

.avatar-container.avatar-lg .avatar-icon-badge {
    bottom: -4%;
    padding: 3px !important;
}

.avatar-container.avatar-lg .avatar-icon-badge i {
    font-size: 14px;
}

.avatar-container.avatar-xl .number-badge {
    top: -2px;
    right: 0;
}

.avatar-container.avatar-xl .avatar-icon-badge {
    bottom: 0;
    padding: 3px !important;
}

.avatar-container.avatar-xl .avatar-icon-badge i {
    font-size: 16px;
    padding: 2px;
}

/*-----Badges-----*/
.btn .badge {
    position: relative;
    top: -1px;
    right: -3px;
}

.badge {
    display: inline-block;
    padding: 0.95em 0.8em;
    font-size: 90% !important;
    line-height: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.badge.bg-light {
    color: #444546 !important;
    background-color: #e4e7ecc5 !important;
}

.badge.badge-xs {
    padding: 0.75em 0.3em;
    font-size: 75% !important;
}

.badge.badge-sm {
    padding: 0.9em 0.7em;
    font-size: 75% !important;
}

.rounded-pill {
    border-radius: 50px;
}

.badgetext {
    float: right;
}

.badge.bg-white {
    color: #000 !important;
}

.btn-outline-primary:hover .bg-primary {
    background-color: #fff !important;
    color: #000;
}

.btn-outline-success:hover .bg-success {
    background-color: #fff !important;
    color: #000;
}

.btn-outline-secondary:hover .bg-secondary {
    background-color: #fff !important;
    color: #000;
}

.btn-outline-info:hover .bg-info {
    background-color: #fff !important;
    color: #000;
}

.btn-outline-warning:hover .bg-warning {
    background-color: #fff !important;
    color: #000;
}

.btn-outline-danger:hover .bg-danger {
    background-color: #fff !important;
    color: #000;
}

.btn-outline-light:hover .bg-light {
    background-color: #fff !important;
    color: #000;
}

.btn-outline-dark:hover .bg-dark {
    background-color: #fff !important;
    color: #000;
}

.badge.bg-primary {
    color: #fff;
    background-color: var(--primary-bg-color);
}

.badge.bg-secondary {
    color: #fff;
    background-color: #e984b1;
}

.badge.bg-success {
    color: #fff;
    background-color: #13bfa6;
}

.badge.bg-info {
    color: #fff;
    background-color: #59adec;
}

.badge.bg-warning {
    color: #fff;
    background-color: #e7c354;
}

.badge.bg-danger {
    color: #fff;
    background-color: #d12c47;
}

.badge.bg-light {
    color: #444546 !important;
    background-color: #e4e7ecc5 !important;
}

.badge.bg-dark {
    color: #fff;
    background-color: #343a40;
}

blockquote {
    margin: 0 0 1rem;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.171875rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #868e96;
}

.blockquote-footer::before {
    content: "— ";
}

p,
ul,
ol {
    margin-bottom: 1em;
}

blockquote {
    margin-bottom: 1em;
    font-style: italic;
    color: #6e7687;
    padding-left: 2rem;
    border-left: 2px solid #eaedf1;
}

blockquote p {
    margin-bottom: 1rem;
}

blockquote cite {
    display: block;
    text-align: right;
}

blockquote cite:before {
    content: "— ";
}

.breadcrumb-header {
    display: flex;
    margin-top: 20px;
    margin-bottom: 16px;
    width: 100%;
}

.breadcrumb-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    font-size: 13px;
}

.breadcrumb-3 ol {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 7px;
}

.breadcrumb-3 li {
    display: contents;
    text-align: center;
}

.breadcrumb-4 ol {
    position: relative;
    display: block;
    width: 100%;
    text-align: right;
}

.breadcrumb-4 li {
    display: contents;
    text-align: right;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
}

@media (max-width: 633px) {
    .breadcrumb-header {
        display: block;
    }
}

@media (max-width: 380px) {
    .breadcrumb-right .btn-outline-primary {
        display: none;
    }
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 0rem;
    list-style: none;
    border-radius: 7px;
}

.breadcrumb-item a {
    color: var(--primary-bg-color);
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #e3e6e8b0;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: underline;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #707070;
}

.breadcrumb-style1,
.breadcrumb-style2,
.breadcrumb-style3 {
    border-radius: 7px;
}

.breadcrumb-style1 .breadcrumb-item a,
.breadcrumb-style2 .breadcrumb-item a,
.breadcrumb-style3 .breadcrumb-item a {
    color: #6c7b9a;
}

.breadcrumb-style1 .breadcrumb-item a:hover,
.breadcrumb-style1 .breadcrumb-item a:focus {
    color: var(--primary-bg-color);
}

.breadcrumb-style2 .breadcrumb-item a:hover,
.breadcrumb-style2 .breadcrumb-item a:focus {
    color: var(--primary-bg-color);
}

.breadcrumb-style3 .breadcrumb-item a:hover,
.breadcrumb-style3 .breadcrumb-item a:focus {
    color: var(--primary-bg-color);
}

.breadcrumb-style1 .breadcrumb-item.active,
.breadcrumb-style2 .breadcrumb-item.active,
.breadcrumb-style3 .breadcrumb-item.active {
    color: #707070;
}

.breadcrumb-style1 .breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-style2 .breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-style3 .breadcrumb-item+.breadcrumb-item::before {
    color: #cfd4e1;
}

.breadcrumb-style2 .breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-style3 .breadcrumb-item+.breadcrumb-item::before {
    width: 16px;
    text-align: center;
}

.breadcrumb-style2 .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
}

.breadcrumb-style3 .breadcrumb-item+.breadcrumb-item::before {
    content: "\f287";
}

.main-content-breadcrumb {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #949eb7;
    margin-bottom: 10px;
}

.main-content-breadcrumb span {
    position: relative;
}

.main-content-breadcrumb span+span::before {
    content: "\f3d1";
    font-family: "Ionicons";
    font-size: 12px;
    font-weight: 300;
    display: inline;
    margin: 0 5px;
    color: #d6d6e6;
    line-height: 0;
    position: relative;
    top: 1px;
}

.main-content-breadcrumb span:last-child {
    color: #4d5875;
}

.main-breadcrumbs {
    padding: 0;
    background-color: transparent;
    margin-bottom: 0;
}

.main-breadcrumbs .breadcrumb-item {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.main-breadcrumbs .breadcrumb-item a {
    color: #495057;
    transition: all 0.2s ease-in-out;
}

.main-breadcrumbs .breadcrumb-item a:hover {
    color: #949eb7;
}

.main-breadcrumbs .breadcrumb-item.active {
    color: var(--primary-bg-color);
}

.main-breadcrumbs .breadcrumb-item+.breadcrumb-item {
    padding-left: 8px;
}

.main-breadcrumbs .breadcrumb-item+.breadcrumb-item::before {
    color: #949eb7;
    padding-right: 8px;
    font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
    .main-breadcrumbs .breadcrumb-item a {
        transition: none;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    float: none;
    padding-right: 0.5rem;
    color: #d6dfe7;
    content: var(--bs-breadcrumb-divider, "\e933");
    font-family: "feather" !important;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

.btn-compose {
    background: none repeat scroll 0 0 #ff6c60;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    width: 100%;
}

.btn-compose:hover {
    background: none repeat scroll 0 0 #f5675c;
    color: #fff;
}

.btn-send {
    background: none repeat scroll 0 0 #00a8b3;
    color: #fff;
}

.btn-send:hover {
    background: none repeat scroll 0 0 #00a8b3;
    color: #fff;
    background: none repeat scroll 0 0 #009da7;
}

.fileinput-button {
    background: none repeat scroll 0 0 #eeeeee;
    border: 1px solid #e6e6e6;
    float: left;
    margin-right: 4px;
    overflow: hidden;
    position: relative;
}

.fileinput-button input {
    cursor: pointer;
    direction: ltr;
    font-size: 23px;
    margin: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-300px, 0px) scale(4);
}

.btn-outline-cyan {
    border: 1px solid #17a2b8 !important;
    color: #17a2b8 !important;
}

.btn-outline-cyan:hover {
    color: #fff !important;
    background-color: #17a2b8 !important;
}

.btn-outline-orange {
    border: 1px solid #fc7303 !important;
    color: #fc7303 !important;
}

.btn-outline-orange:hover {
    color: #fff !important;
    background-color: #fc7303 !important;
}

.btn-group .btn-close {
    padding: 6px;
    border-radius: 0px 4px 4px 0px;
    opacity: 1;
    font-weight: 300;
    background-image: none;
}

.btn-group .btn-close.btn-pill {
    border-radius: 0px 50px 50px 0px;
}

.btn-group .btn-close.btn-outline-secondary {
    border: 1px solid #e984b1 !important;
    color: #e984b1 !important;
}

.btn-group .btn-close.btn-outline-secondary:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-outline-primary {
    border: 1px solid var(--primary-bg-color) !important;
    color: var(--primary-bg-color) !important;
}

.btn-group .btn-close.btn-outline-primary:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-outline-info {
    border: 1px solid #59adec !important;
    color: #59adec !important;
}

.btn-group .btn-close.btn-outline-info:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-outline-warning {
    border: 1px solid #e7c354 !important;
    color: #e7c354 !important;
}

.btn-group .btn-close.btn-outline-warning:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-outline-danger {
    border: 1px solid var(--secondary-bg-border) !important;
    color: var(--secondary-bg-color) !important;
}

.btn-group .btn-close.btn-outline-danger:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-outline-success {
    border: 1px solid #13bfa6 !important;
    color: #13bfa6 !important;
}

.btn-group .btn-close.btn-outline-success:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-outline-cyan {
    border: 1px solid #17a2b8 !important;
    color: #17a2b8 !important;
}

.btn-group .btn-close.btn-outline-cyan:hover {
    color: #fff !important;
    background-color: #17a2b8 !important;
}

.btn-group .btn-close.btn-outline-orange {
    border: 1px solid #fc7303 !important;
    color: #fc7303 !important;
}

.btn-group .btn-close.btn-outline-orange:hover {
    color: #fff !important;
    background-color: #fc7303 !important;
}

.btn-group .btn-close.btn-primary-light {
    border: 1px solid rgba(var(--primary-bg-color), 0.3) !important;
}

.btn-group .btn-close.btn-primary-light:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-secondary-light {
    border: 1px solid rgba(233, 132, 177, 0.3) !important;
}

.btn-group .btn-close.btn-secondary-light:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-danger-light {
    border: 1px solid rgba(209, 44, 71, 0.3) !important;
}

.btn-group .btn-close.btn-danger-light:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-success-light {
    border: 1px solid rgba(19, 191, 166, 0.3) !important;
}

.btn-group .btn-close.btn-success-light:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-warning-light {
    border: 1px solid rgba(231, 195, 84, 0.3) !important;
}

.btn-group .btn-close.btn-warning-light:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-info-light {
    border: 1px solid rgba(89, 173, 236, 0.3) !important;
}

.btn-group .btn-close.btn-info-light:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-orange-light {
    border: 1px solid rgba(252, 115, 3, 0.3) !important;
}

.btn-group .btn-close.btn-orange-light:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-cyan-light {
    border: 1px solid rgba(23, 162, 184, 0.3) !important;
}

.btn-group .btn-close.btn-cyan-light:hover {
    color: #fff !important;
}

.btn-group .btn-close.btn-lg {
    padding: 11px;
    background-image: none;
    font-size: 31px;
}

.btn-group .btn-close.btn-sm {
    padding: 6px !important;
    font-size: 1rem !important;
    background-image: none;
}

.tag-attachments.btn-group .btn:last-child {
    min-width: 20px !important;
}

.attachment-pill.btn-pill {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.tag-attachments .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.185rem 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.84615385;
    border-radius: 4px;
    transition: all ease-in-out 0.2s;
}

.btn:hover {
    text-decoration: none;
}

.btn:focus {
    text-decoration: none;
    outline: none !important;
}

.btn.focus {
    outline: 0;
    box-shadow: none;
}

.btn.disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: no-drop;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
    background-image: none;
}

@media screen and (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

/*-----------DEFAULT BUTTONS--------------*/
.btn-default {
    color: #868e96;
    background: #f6f4fb;
    border-color: #f6f4fb;
}

.btn-default:hover {
    color: #444546;
    background-color: rgba(246, 244, 251, 0.85) !important;
    border-color: rgba(246, 244, 251, 0.85);
}

.btn-default:focus,
.btn-default.focus {
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.9);
    border-color: #f6f4fb;
}

.btn-default.disabled,
.btn-default:disabled {
    color: #868e96;
    background-color: rgba(246, 244, 251, 0.6);
    border-color: rgba(246, 244, 251, 0.6);
}

.btn-default:not(:disabled):not(.disabled):active,
.btn-default:not(:disabled):not(.disabled).active {
    color: #444546;
    background-color: rgba(246, 244, 251, 0.85);
    border-color: rgba(246, 244, 251, 0.85);
}

.btn-default:not(:disabled):not(.disabled):active:focus,
.btn-default:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.8) !important;
}

.show>.btn-default.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.8) !important;
}

.btn-default.disabled,
.btn-default:disabled {
    border: transparent;
}

.show>.btn-default.dropdown-toggle {
    color: #444546;
    background-color: #f6f4fb;
    border-color: #f6f4fb;
}

.btn-primary {
    color: #fff !important;
    background-color: var(--primary-bg-color) !important;
    border-color: var(--primary-bg-color) !important;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--primary09) !important;
    border-color: var(--primary09);
}

.btn-primary:focus,
.btn-primary:focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.9);
    border-color: var(--primary-bg-color);
}

.btn-primary:disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: rgba(var(--primary-bg-color), 0.6);
    border-color: rgba(var(--primary-bg-color), 0.6);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: var(--primary09);
    border-color: var(--primary09);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.56) !important;
}

.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.56) !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
    border: transparent;
}

.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-secondary {
    color: #fff !important;
    background-color: var(--secondary-bg-color) !important;
    border-color: var(--secondary-bg-border) !important;
}

.btn-secondary:hover {
    color: #fff !important;
    background-color: var(--secondary-bg-color) !important;
    border-color: var(--secondary-bg-border);
}

.btn-secondary:focus,
.btn-secondary:focus {
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.9);
    border-color: #e984b1;
}

.btn-secondary:disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: rgba(233, 132, 177, 0.85);
    border-color: rgba(233, 132, 177, 0.85);
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(233, 132, 177, 0.85);
    border-color: rgba(233, 132, 177, 0.85);
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.56) !important;
}

.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.56) !important;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    border: transparent;
}

.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #e984b1;
    border-color: #e984b1;
}

.btn-success {
    color: #fff !important;
    background-color: #13bfa6 !important;
    border-color: #13bfa6 !important;
}

.btn-success:hover {
    color: #fff;
    background-color: rgba(19, 191, 166, 0.85) !important;
    border-color: rgba(19, 191, 166, 0.85);
}

.btn-success:focus,
.btn-success:focus {
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.9);
    border-color: #13bfa6;
}

.btn-success:disabled,
.btn-success:disabled {
    color: #fff;
    background-color: rgba(19, 191, 166, 0.85);
    border-color: rgba(19, 191, 166, 0.85);
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(19, 191, 166, 0.85);
    border-color: rgba(19, 191, 166, 0.85);
}

.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.56) !important;
}

.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.56);
}

.btn-info {
    color: #fff !important;
    background-color: #59adec !important;
    border-color: #59adec !important;
}

.btn-info:hover {
    color: #fff;
    background-color: rgba(89, 173, 236, 0.85) !important;
    border-color: rgba(89, 173, 236, 0.85);
}

.btn-info:focus,
.btn-info:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.9);
    border-color: #59adec;
}

.btn-info:disabled,
.btn-info:disabled {
    color: #fff !important;
    background-color: rgba(89, 173, 236, 0.85);
    border-color: rgba(89, 173, 236, 0.85);
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(89, 173, 236, 0.85);
    border-color: rgba(89, 173, 236, 0.85);
}

.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #59adec;
    border-color: #59adec;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.56) !important;
}

.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.56);
}

.btn-warning {
    color: #fff !important;
    background-color: #e7c354 !important;
    border-color: #e7c354 !important;
}

.btn-warning:hover {
    color: #fff;
    background-color: rgba(231, 195, 84, 0.8) !important;
    border-color: rgba(231, 195, 84, 0.8);
}

.btn-warning:focus,
.btn-warning:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.9);
    border-color: #e7c354;
}

.btn-warning:disabled,
.btn-warning:disabled {
    color: #fff;
    background-color: rgba(231, 195, 84, 0.8);
    border-color: rgba(231, 195, 84, 0.8);
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(231, 195, 84, 0.8);
    border-color: rgba(231, 195, 84, 0.8);
}

.show>.btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #e7c354;
    border-color: #e7c354;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.56) !important;
}

.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.56);
}

.btn-danger {
    color: #fff !important;
    background-color: var(--secondary-bg-color) !important;
    border-color: var(--secondary-bg-border) !important;
}

.btn-danger:hover {
    color: #fff;
    background-color: rgba(209, 44, 71, 0.76) !important;
    border-color: rgba(209, 44, 71, 0.76);
}

.btn-danger:focus,
.btn-danger:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.9);
    border-color: #d12c47;
}

.btn-danger:disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: rgba(209, 44, 71, 0.76);
    border-color: rgba(209, 44, 71, 0.76);
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(209, 44, 71, 0.76);
    border-color: rgba(209, 44, 71, 0.76);
}

.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #d12c47;
    border-color: #d12c47;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.56) !important;
}

.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.56);
}

.btn-dark {
    color: #fff !important;
    background-color: #343a40 !important;
    border-color: #343a40 !important;
}

.btn-dark:hover {
    color: #fff;
    background-color: rgba(52, 58, 64, 0.85) !important;
    border-color: rgba(52, 58, 64, 0.85);
}

.btn-dark:focus,
.btn-dark:focus {
    box-shadow: 0 0 0 2px rgba(52, 58, 64, 0.9);
    border-color: #343a40;
}

.btn-dark:disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: rgba(52, 58, 64, 0.6);
    border-color: rgba(52, 58, 64, 0.6);
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(52, 58, 64, 0.85);
    border-color: rgba(52, 58, 64, 0.85);
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(52, 58, 64, 0.56) !important;
}

.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(52, 58, 64, 0.56) !important;
}

.btn-dark.disabled,
.btn-dark:disabled {
    border: transparent;
}

.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-light {
    color: #868e96 !important;
    background-color: #e4e7ecc5 !important;
    border-color: #e4e7ecc5 !important;
}

.btn-light:hover {
    color: #868e96;
    background-color: rgba(228, 231, 236, 0.85) !important;
    border-color: rgba(228, 231, 236, 0.85);
}

.btn-light:focus,
.btn-light:focus {
    color: #868e96;
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.9);
    border-color: #e4e7ecc5;
}

.btn-light:disabled,
.btn-light:disabled {
    color: #868e96;
    background-color: rgba(228, 231, 236, 0.6);
    border-color: rgba(228, 231, 236, 0.6);
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active {
    color: #868e96;
    background-color: rgba(228, 231, 236, 0.85);
    border-color: rgba(228, 231, 236, 0.85);
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.56) !important;
}

.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.56) !important;
}

.btn-light.disabled,
.btn-light:disabled {
    border: transparent;
}

.show>.btn-light.dropdown-toggle {
    color: #868e96;
    background-color: #e4e7ecc5;
    border-color: #e4e7ecc5;
}

/*---------- LIGHT BUTTONS--------------*/
.btn-default-light {
    color: #868e96;
    background: #f6f4fb;
    border-color: #f6f4fb;
}

.btn-default-light:hover {
    color: #868e96;
    background-color: #f6f4fb !important;
    border-color: #f6f4fb;
}

.btn-default-light:not(:disabled):not(:disabled):active:focus,
.btn-default-light:not(:disabled):not(:disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.56) !important;
}

.btn-primary-light {
    color: var(--primary-bg-color) !important;
    background-color: var(--primary03) !important;
    border-color: var(--primary03) !important;
}

.btn-primary-light:hover {
    color: #fff !important;
    background-color: var(--primary-bg-color) !important;
    border-color: var(--primary-bg-color) !important;
}

.btn-primary-light:not(:disabled):not(:disabled):active:focus,
.btn-primary-light:not(:disabled):not(:disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.56) !important;
}

.btn-secondary-light {
    color: #e984b1 !important;
    background: rgba(233, 132, 177, 0.3) !important;
    border-color: rgba(233, 132, 177, 0.3);
}

.btn-secondary-light:hover {
    color: #fff !important;
    background-color: #e984b1 !important;
    border-color: #e984b1;
}

.btn-secondary-light:not(:disabled):not(:disabled):active:focus,
.btn-secondary-light:not(:disabled):not(:disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.56) !important;
}

.btn-orange-light {
    color: #fc7303 !important;
    background: rgba(252, 115, 3, 0.3) !important;
    border-color: rgba(252, 115, 3, 0.3);
}

.btn-orange-light:hover {
    color: #fff !important;
    background-color: #fc7303 !important;
    border-color: #fc7303;
}

.btn-orange-light:not(:disabled):not(:disabled):active:focus,
.btn-orange-light:not(:disabled):not(:disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(252, 115, 3, 0.56) !important;
}

.btn-cyan-light {
    color: #17a2b8 !important;
    background: rgba(23, 162, 184, 0.3) !important;
    border-color: rgba(23, 162, 184, 0.3);
}

.btn-cyan-light:hover {
    color: #fff !important;
    background-color: #17a2b8 !important;
    border-color: #17a2b8;
}

.btn-cyan-light:not(:disabled):not(:disabled):active:focus,
.btn-cyan-light:not(:disabled):not(:disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.56) !important;
}

.btn-success-light {
    color: #13bfa6 !important;
    background: rgba(19, 191, 166, 0.3) !important;
    border-color: rgba(19, 191, 166, 0.3);
}

.btn-success-light:hover {
    color: #fff !important;
    background-color: #13bfa6 !important;
    border-color: #13bfa6;
}

.btn-success-light:not(:disabled):not(:disabled):active:focus,
.btn-success-light:not(:disabled):not(:disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.56) !important;
}

.btn-info-light {
    color: #59adec !important;
    background: rgba(89, 173, 236, 0.3) !important;
    border-color: rgba(89, 173, 236, 0.3);
}

.btn-info-light:hover {
    color: #fff !important;
    background-color: #59adec !important;
    border-color: #59adec;
}

.btn-info-light:not(:disabled):not(:disabled):active:focus,
.btn-info-light:not(:disabled):not(:disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.56) !important;
}

.btn-warning-light {
    color: #e7c354 !important;
    background: rgba(231, 195, 84, 0.3) !important;
    border-color: rgba(231, 195, 84, 0.3);
}

.btn-warning-light:hover {
    color: #fff !important;
    background-color: #e7c354 !important;
    border-color: #e7c354;
}

.btn-warning-light:not(:disabled):not(:disabled):active:focus,
.btn-warning-light:not(:disabled):not(:disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.56) !important;
}

.btn-danger-light {
    color: #d12c47 !important;
    background: rgba(209, 44, 71, 0.3) !important;
    border-color: rgba(209, 44, 71, 0.3);
}

.btn-danger-light:hover {
    color: #fff !important;
    background-color: #d12c47 !important;
    border-color: #d12c47;
}

.btn-danger-light:not(:disabled):not(:disabled):active:focus,
.btn-danger-light:not(:disabled):not(:disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.56) !important;
}

.btn-dark-light {
    color: #343a40 !important;
    background: rgba(52, 58, 64, 0.3) !important;
    border-color: rgba(52, 58, 64, 0.3);
}

.btn-dark-light:hover {
    color: #fff !important;
    background-color: #343a40 !important;
    border-color: #343a40;
}

.btn-dark-light:not(:disabled):not(:disabled):active:focus,
.btn-dark-light:not(:disabled):not(:disabled).active:focus {
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(52, 58, 64, 0.56) !important;
}

.btn-light-light {
    color: #868e96 !important;
    background: rgba(228, 231, 236, 0.3) !important;
    border-color: rgba(228, 231, 236, 0.3);
}

.btn-light-light:hover {
    color: #343a40;
    background-color: #e4e7ecc5 !important;
    border-color: #e4e7ecc5;
}

.btn-light-light:not(:disabled):not(:disabled):active:focus,
.btn-light-light:not(:disabled):not(:disabled).active:focus {
    color: #343a40 !important;
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.56) !important;
}

/*--------COLOR VARITIONS--------*/
.btn-blue {
    color: #fff;
    background-color: #467fcf !important;
    border-color: #467fcf !important;
}

.btn-blue:hover {
    color: #fff;
    background-color: rgba(70, 127, 207, 0.85) !important;
    border-color: rgba(70, 127, 207, 0.85);
}

.btn-blue:focus,
.btn-blue:focus {
    box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.9);
    border-color: #467fcf;
}

.btn-blue:disabled,
.btn-blue:disabled {
    color: #fff;
    background-color: rgba(70, 127, 207, 0.6);
    border-color: rgba(70, 127, 207, 0.6);
}

.btn-blue:not(:disabled):not(.disabled):active,
.btn-blue:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(70, 127, 207, 0.85);
    border-color: rgba(70, 127, 207, 0.85);
}

.btn-blue:not(:disabled):not(.disabled):active:focus,
.btn-blue:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.56) !important;
}

.show>.btn-blue.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.56) !important;
}

.btn-blue.disabled,
.btn-blue:disabled {
    border: transparent;
}

.show>.btn-blue.dropdown-toggle {
    color: #fff;
    background-color: #467fcf;
    border-color: #467fcf;
}

.btn-azure {
    color: #fff;
    background-color: #45aaf2 !important;
    border-color: #45aaf2 !important;
}

.btn-azure:hover {
    color: #fff;
    background-color: rgba(69, 170, 242, 0.85) !important;
    border-color: rgba(69, 170, 242, 0.85);
}

.btn-azure:focus,
.btn-azure:focus {
    box-shadow: 0 0 0 2px rgba(69, 170, 242, 0.9);
    border-color: #45aaf2;
}

.btn-azure:disabled,
.btn-azure:disabled {
    color: #fff;
    background-color: rgba(69, 170, 242, 0.6);
    border-color: rgba(69, 170, 242, 0.6);
}

.btn-azure:not(:disabled):not(.disabled):active,
.btn-azure:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(69, 170, 242, 0.85);
    border-color: rgba(69, 170, 242, 0.85);
}

.btn-azure:not(:disabled):not(.disabled):active:focus,
.btn-azure:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(69, 170, 242, 0.56) !important;
}

.show>.btn-azure.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(69, 170, 242, 0.56) !important;
}

.btn-azure.disabled,
.btn-azure:disabled {
    border: transparent;
}

.show>.btn-azure.dropdown-toggle {
    color: #fff;
    background-color: #45aaf2;
    border-color: #45aaf2;
}

.btn-indigo {
    color: #fff;
    background-color: #6574cd !important;
    border-color: #6574cd !important;
}

.btn-indigo:hover {
    color: #fff;
    background-color: rgba(101, 116, 205, 0.85) !important;
    border-color: rgba(101, 116, 205, 0.85);
}

.btn-indigo:focus,
.btn-indigo:focus {
    box-shadow: 0 0 0 2px rgba(101, 116, 205, 0.9);
    border-color: #6574cd;
}

.btn-indigo:disabled,
.btn-indigo:disabled {
    color: #fff;
    background-color: rgba(101, 116, 205, 0.6);
    border-color: rgba(101, 116, 205, 0.6);
}

.btn-indigo:not(:disabled):not(.disabled):active,
.btn-indigo:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(101, 116, 205, 0.85);
    border-color: rgba(101, 116, 205, 0.85);
}

.btn-indigo:not(:disabled):not(.disabled):active:focus,
.btn-indigo:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(101, 116, 205, 0.56) !important;
}

.show>.btn-indigo.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(101, 116, 205, 0.56) !important;
}

.btn-indigo.disabled,
.btn-indigo:disabled {
    border: transparent;
}

.show>.btn-indigo.dropdown-toggle {
    color: #fff;
    background-color: #6574cd;
    border-color: #6574cd;
}

.btn-purple {
    color: #fff !important;
    background-color: #661fd6 !important;
    border-color: #661fd6 !important;
}

.btn-purple:hover {
    color: #fff;
    background-color: rgba(102, 31, 214, 0.85) !important;
    border-color: rgba(102, 31, 214, 0.85);
}

.btn-purple:focus,
.btn-purple:focus {
    box-shadow: 0 0 0 2px rgba(102, 31, 214, 0.9);
    border-color: #661fd6;
}

.btn-purple:disabled,
.btn-purple:disabled {
    color: #fff;
    background-color: rgba(102, 31, 214, 0.6);
    border-color: rgba(102, 31, 214, 0.6);
}

.btn-purple:not(:disabled):not(.disabled):active,
.btn-purple:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(102, 31, 214, 0.85);
    border-color: rgba(102, 31, 214, 0.85);
}

.btn-purple:not(:disabled):not(.disabled):active:focus,
.btn-purple:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(102, 31, 214, 0.56) !important;
}

.show>.btn-purple.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(102, 31, 214, 0.56) !important;
}

.btn-purple.disabled,
.btn-purple:disabled {
    border: transparent;
}

.show>.btn-purple.dropdown-toggle {
    color: #fff;
    background-color: #661fd6;
    border-color: #661fd6;
}

.btn-pink {
    color: #fff !important;
    background-color: #f58598 !important;
    border-color: #f58598 !important;
}

.btn-pink:hover {
    color: #fff;
    background-color: rgba(245, 133, 152, 0.85) !important;
    border-color: rgba(245, 133, 152, 0.85);
}

.btn-pink:focus,
.btn-pink:focus {
    box-shadow: 0 0 0 2px rgba(245, 133, 152, 0.9);
    border-color: #f58598;
}

.btn-pink:disabled,
.btn-pink:disabled {
    color: #fff;
    background-color: rgba(245, 133, 152, 0.6);
    border-color: rgba(245, 133, 152, 0.6);
}

.btn-pink:not(:disabled):not(.disabled):active,
.btn-pink:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(245, 133, 152, 0.85);
    border-color: rgba(245, 133, 152, 0.85);
}

.btn-pink:not(:disabled):not(.disabled):active:focus,
.btn-pink:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(245, 133, 152, 0.56) !important;
}

.show>.btn-pink.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(245, 133, 152, 0.56) !important;
}

.btn-pink.disabled,
.btn-pink:disabled {
    border: transparent;
}

.show>.btn-pink.dropdown-toggle {
    color: #fff;
    background-color: #f58598;
    border-color: #f58598;
}

.btn-red {
    color: #fff;
    background-color: #e32f2f !important;
    border-color: #e32f2f !important;
}

.btn-red:hover {
    color: #fff;
    background-color: rgba(227, 47, 47, 0.85) !important;
    border-color: rgba(227, 47, 47, 0.85);
}

.btn-red:focus,
.btn-red:focus {
    box-shadow: 0 0 0 2px rgba(227, 47, 47, 0.9);
    border-color: #e32f2f;
}

.btn-red:disabled,
.btn-red:disabled {
    color: #fff;
    background-color: rgba(227, 47, 47, 0.6);
    border-color: rgba(227, 47, 47, 0.6);
}

.btn-red:not(:disabled):not(.disabled):active,
.btn-red:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(227, 47, 47, 0.85);
    border-color: rgba(227, 47, 47, 0.85);
}

.btn-red:not(:disabled):not(.disabled):active:focus,
.btn-red:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(227, 47, 47, 0.56) !important;
}

.show>.btn-red.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(227, 47, 47, 0.56) !important;
}

.btn-red.disabled,
.btn-red:disabled {
    border: transparent;
}

.show>.btn-red.dropdown-toggle {
    color: #fff;
    background-color: #e32f2f;
    border-color: #e32f2f;
}

.btn-orange {
    color: #fff !important;
    background-color: #fc7303 !important;
    border-color: #fc7303 !important;
}

.btn-orange:hover {
    color: #fff;
    background-color: rgba(252, 115, 3, 0.85) !important;
    border-color: rgba(252, 115, 3, 0.85);
}

.btn-orange:focus,
.btn-orange:focus {
    box-shadow: 0 0 0 2px rgba(252, 115, 3, 0.9);
    border-color: #fc7303;
}

.btn-orange:disabled,
.btn-orange:disabled {
    color: #fff;
    background-color: rgba(252, 115, 3, 0.6);
    border-color: rgba(252, 115, 3, 0.6);
}

.btn-orange:not(:disabled):not(.disabled):active,
.btn-orange:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(252, 115, 3, 0.85);
    border-color: rgba(252, 115, 3, 0.85);
}

.btn-orange:not(:disabled):not(.disabled):active:focus,
.btn-orange:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(252, 115, 3, 0.56) !important;
}

.show>.btn-orange.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(252, 115, 3, 0.56) !important;
}

.btn-orange.disabled,
.btn-orange:disabled {
    border: transparent;
}

.show>.btn-orange.dropdown-toggle {
    color: #fff;
    background-color: #fc7303;
    border-color: #fc7303;
}

.btn-yellow {
    color: #fff;
    background-color: #FBB034 !important;
    border-color: #FBB034 !important;
}

.btn-yellow:hover {
    color: #fff;
    background-color: rgba(251, 176, 52, 0.85) !important;
    border-color: rgba(251, 176, 52, 0.85);
}

.btn-yellow:focus,
.btn-yellow:focus {
    box-shadow: 0 0 0 2px rgba(251, 176, 52, 0.9);
    border-color: #FBB034;
}

.btn-yellow:disabled,
.btn-yellow:disabled {
    color: #fff;
    background-color: rgba(251, 176, 52, 0.6);
    border-color: rgba(251, 176, 52, 0.6);
}

.btn-yellow:not(:disabled):not(.disabled):active,
.btn-yellow:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(251, 176, 52, 0.85);
    border-color: rgba(251, 176, 52, 0.85);
}

.btn-yellow:not(:disabled):not(.disabled):active:focus,
.btn-yellow:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(251, 176, 52, 0.56) !important;
}

.show>.btn-yellow.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(251, 176, 52, 0.56) !important;
}

.btn-yellow.disabled,
.btn-yellow:disabled {
    border: transparent;
}

.show>.btn-yellow.dropdown-toggle {
    color: #fff;
    background-color: #FBB034;
    border-color: #FBB034;
}

.btn-lime {
    color: #fff;
    background-color: #7bd235 !important;
    border-color: #7bd235 !important;
}

.btn-lime:hover {
    color: #fff;
    background-color: rgba(123, 210, 53, 0.85) !important;
    border-color: rgba(123, 210, 53, 0.85);
}

.btn-lime:focus,
.btn-lime:focus {
    box-shadow: 0 0 0 2px rgba(123, 210, 53, 0.9);
    border-color: #7bd235;
}

.btn-lime:disabled,
.btn-lime:disabled {
    color: #fff;
    background-color: rgba(123, 210, 53, 0.6);
    border-color: rgba(123, 210, 53, 0.6);
}

.btn-lime:not(:disabled):not(.disabled):active,
.btn-lime:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(123, 210, 53, 0.85);
    border-color: rgba(123, 210, 53, 0.85);
}

.btn-lime:not(:disabled):not(.disabled):active:focus,
.btn-lime:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(123, 210, 53, 0.56) !important;
}

.show>.btn-lime.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(123, 210, 53, 0.56) !important;
}

.btn-lime.disabled,
.btn-lime:disabled {
    border: transparent;
}

.show>.btn-lime.dropdown-toggle {
    color: #fff;
    background-color: #7bd235;
    border-color: #7bd235;
}

.btn-green {
    color: #fff;
    background-color: #4ecc48 !important;
    border-color: #4ecc48 !important;
}

.btn-green:hover {
    color: #fff;
    background-color: rgba(78, 204, 72, 0.85) !important;
    border-color: rgba(78, 204, 72, 0.85);
}

.btn-green:focus,
.btn-green:focus {
    box-shadow: 0 0 0 2px rgba(78, 204, 72, 0.9);
    border-color: #4ecc48;
}

.btn-green:disabled,
.btn-green:disabled {
    color: #fff;
    background-color: rgba(78, 204, 72, 0.6);
    border-color: rgba(78, 204, 72, 0.6);
}

.btn-green:not(:disabled):not(.disabled):active,
.btn-green:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(78, 204, 72, 0.85);
    border-color: rgba(78, 204, 72, 0.85);
}

.btn-green:not(:disabled):not(.disabled):active:focus,
.btn-green:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(78, 204, 72, 0.56) !important;
}

.show>.btn-green.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(78, 204, 72, 0.56) !important;
}

.btn-green.disabled,
.btn-green:disabled {
    border: transparent;
}

.show>.btn-green.dropdown-toggle {
    color: #fff;
    background-color: #4ecc48;
    border-color: #4ecc48;
}

.btn-teal {
    color: #fff;
    background-color: #2bcbba !important;
    border-color: #2bcbba !important;
}

.btn-teal:hover {
    color: #fff;
    background-color: rgba(43, 203, 186, 0.85) !important;
    border-color: rgba(43, 203, 186, 0.85);
}

.btn-teal:focus,
.btn-teal:focus {
    box-shadow: 0 0 0 2px rgba(43, 203, 186, 0.9);
    border-color: #2bcbba;
}

.btn-teal:disabled,
.btn-teal:disabled {
    color: #fff;
    background-color: rgba(43, 203, 186, 0.6);
    border-color: rgba(43, 203, 186, 0.6);
}

.btn-teal:not(:disabled):not(.disabled):active,
.btn-teal:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(43, 203, 186, 0.85);
    border-color: rgba(43, 203, 186, 0.85);
}

.btn-teal:not(:disabled):not(.disabled):active:focus,
.btn-teal:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(43, 203, 186, 0.56) !important;
}

.show>.btn-teal.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(43, 203, 186, 0.56) !important;
}

.btn-teal.disabled,
.btn-teal:disabled {
    border: transparent;
}

.show>.btn-teal.dropdown-toggle {
    color: #fff;
    background-color: #2bcbba;
    border-color: #2bcbba;
}

.btn-cyan {
    color: #fff !important;
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

.btn-cyan:hover {
    color: #fff;
    background-color: rgba(23, 162, 184, 0.85) !important;
    border-color: rgba(23, 162, 184, 0.85);
}

.btn-cyan:focus,
.btn-cyan:focus {
    box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.9);
    border-color: #17a2b8;
}

.btn-cyan:disabled,
.btn-cyan:disabled {
    color: #fff;
    background-color: rgba(23, 162, 184, 0.6);
    border-color: rgba(23, 162, 184, 0.6);
}

.btn-cyan:not(:disabled):not(.disabled):active,
.btn-cyan:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(23, 162, 184, 0.85);
    border-color: rgba(23, 162, 184, 0.85);
}

.btn-cyan:not(:disabled):not(.disabled):active:focus,
.btn-cyan:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.56) !important;
}

.show>.btn-cyan.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.56) !important;
}

.btn-cyan.disabled,
.btn-cyan:disabled {
    border: transparent;
}

.show>.btn-cyan.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-gray {
    color: #fff;
    background-color: #868e96 !important;
    border-color: #868e96 !important;
}

.btn-gray:hover {
    color: #fff;
    background-color: rgba(134, 142, 150, 0.85) !important;
    border-color: rgba(134, 142, 150, 0.85);
}

.btn-gray:focus,
.btn-gray:focus {
    box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.9);
    border-color: #868e96;
}

.btn-gray:disabled,
.btn-gray:disabled {
    color: #fff;
    background-color: rgba(134, 142, 150, 0.6);
    border-color: rgba(134, 142, 150, 0.6);
}

.btn-gray:not(:disabled):not(.disabled):active,
.btn-gray:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(134, 142, 150, 0.85);
    border-color: rgba(134, 142, 150, 0.85);
}

.btn-gray:not(:disabled):not(.disabled):active:focus,
.btn-gray:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.56) !important;
}

.show>.btn-gray.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.56) !important;
}

.btn-gray.disabled,
.btn-gray:disabled {
    border: transparent;
}

.show>.btn-gray.dropdown-toggle {
    color: #fff;
    background-color: #868e96;
    border-color: #868e96;
}

.btn-white {
    color: #495057;
    background-color: #fff;
    border: 1px solid #e9ebfa;
}

.btn-white:hover {
    color: #495057;
    background-color: #ececec;
    border-color: #e6e5e5;
}

.btn-white:focus,
.btn-white.focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn-white.disabled,
.btn-white:disabled {
    color: #495057;
    background-color: #fff;
    border-color: #fff;
}

.btn-white:not(:disabled):not(.disabled):active,
.btn-white:not(:disabled):not(.disabled).active {
    color: #495057;
    background-color: #e6e5e5;
    border-color: #dfdfdf;
}

.show>.btn-white.dropdown-toggle {
    color: #495057;
    background-color: #e6e5e5;
    border-color: #dfdfdf;
}

.btn-white:not(:disabled):not(.disabled):active:focus,
.btn-white:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.show>.btn-white.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn-gray-dark {
    color: #fff;
    background-color: #444546 !important;
    border-color: #444546 !important;
}

.btn-gray-dark:hover {
    color: #fff;
    background-color: rgba(68, 69, 70, 0.85) !important;
    border-color: rgba(68, 69, 70, 0.85);
}

.btn-gray-dark:focus,
.btn-gray-dark:focus {
    box-shadow: 0 0 0 2px rgba(68, 69, 70, 0.9);
    border-color: #444546;
}

.btn-gray-dark:disabled,
.btn-gray-dark:disabled {
    color: #fff;
    background-color: rgba(68, 69, 70, 0.6);
    border-color: rgba(68, 69, 70, 0.6);
}

.btn-gray-dark:not(:disabled):not(.disabled):active,
.btn-gray-dark:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: rgba(68, 69, 70, 0.85);
    border-color: rgba(68, 69, 70, 0.85);
}

.btn-gray-dark:not(:disabled):not(.disabled):active:focus,
.btn-gray-dark:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(68, 69, 70, 0.56) !important;
}

.show>.btn-gray-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(68, 69, 70, 0.56) !important;
}

.btn-gray-dark.disabled,
.btn-gray-dark:disabled {
    border: transparent;
}

.show>.btn-gray-dark.dropdown-toggle {
    color: #fff;
    background-color: #444546;
    border-color: #444546;
}

/*----GRADIENT BUTTONS----*/
.btn-primary-gradient {
    color: #fff;
    background: linear-gradient(to right, var(--primary-bg-color) 0%, #03ab57 100%) !important;
    border-color: var(--primary-bg-color) !important;
}

.btn-primary-gradient:hover {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-primary-gradient:focus,
.btn-primary-gradient.focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.9);
    border-color: var(--primary-bg-color);
}

.btn-primary-gradient.disabled,
.btn-primary-gradient:disabled {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-primary-gradient:not(:disabled):not(.disabled):active,
.btn-primary-gradient:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.show>.btn-primary-gradient.dropdown-toggle {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-primary-gradient:not(:disabled):not(.disabled):active:focus,
.btn-primary-gradient:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.56) !important;
}

.show>.btn-primary-gradient.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.56) !important;
}

.btn-secondary-gradient {
    color: #fff;
    background: linear-gradient(to right bottom, #e984b1 0%, #ffa18a 100%) !important;
    border-color: #e984b1 !important;
}

.btn-secondary-gradient:hover {
    color: #fff;
    background-color: #e984b1;
    border-color: #e984b1;
}

.btn-secondary-gradient:focus,
.btn-secondary-gradient.focus {
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.9);
    border-color: #e984b1;
}

.btn-secondary-gradient.disabled,
.btn-secondary-gradient:disabled {
    color: #fff;
    background-color: #e984b1;
    border-color: #e984b1;
}

.btn-secondary-gradient:not(:disabled):not(.disabled):active,
.btn-secondary-gradient:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #e984b1;
    border-color: #e984b1;
}

.show>.btn-secondary-gradient.dropdown-toggle {
    color: #fff;
    background-color: #e984b1;
    border-color: #e984b1;
}

.btn-secondary-gradient:not(:disabled):not(.disabled):active:focus,
.btn-secondary-gradient:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.56) !important;
}

.show>.btn-secondary-gradient.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.56) !important;
}

.btn-success-gradient {
    color: #fff;
    background: linear-gradient(to right bottom, #13bfa6 0%, #008E98 100%) !important;
    border-color: #13bfa6 !important;
}

.btn-success-gradient:hover {
    color: #fff;
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.btn-success-gradient:focus,
.btn-success-gradient.focus {
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.9);
    border-color: #13bfa6;
}

.btn-success-gradient.disabled,
.btn-success-gradient:disabled {
    color: #fff;
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.btn-success-gradient:not(:disabled):not(.disabled):active,
.btn-success-gradient:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.show>.btn-success-gradient.dropdown-toggle {
    color: #fff;
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.btn-success-gradient:not(:disabled):not(.disabled):active:focus,
.btn-success-gradient:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.56) !important;
}

.show>.btn-success-gradient.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.56) !important;
}

.btn-info-gradient {
    color: #fff;
    background: linear-gradient(to right bottom, #59adec 0%, #2a85ca 100%) !important;
    border-color: #59adec !important;
}

.btn-info-gradient:hover {
    color: #fff;
    background-color: #59adec;
    border-color: #59adec;
}

.btn-info-gradient:focus,
.btn-info-gradient.focus {
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.9);
    border-color: #59adec;
}

.btn-info-gradient.disabled,
.btn-info-gradient:disabled {
    color: #fff;
    background-color: #59adec;
    border-color: #59adec;
}

.btn-info-gradient:not(:disabled):not(.disabled):active,
.btn-info-gradient:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #59adec;
    border-color: #59adec;
}

.show>.btn-info-gradient.dropdown-toggle {
    color: #fff;
    background-color: #59adec;
    border-color: #59adec;
}

.btn-info-gradient:not(:disabled):not(.disabled):active:focus,
.btn-info-gradient:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.56) !important;
}

.show>.btn-info-gradient.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.56) !important;
}

.btn-warning-gradient {
    color: #fff;
    background: linear-gradient(to right bottom, #e7c354 0%, #c9a22f 100%) !important;
    border-color: #e7c354 !important;
}

.btn-warning-gradient:hover {
    color: #fff;
    background-color: #e7c354;
    border-color: #e7c354;
}

.btn-warning-gradient:focus,
.btn-warning-gradient.focus {
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.9);
    border-color: #e7c354;
}

.btn-warning-gradient.disabled,
.btn-warning-gradient:disabled {
    color: #fff;
    background-color: #e7c354;
    border-color: #e7c354;
}

.btn-warning-gradient:not(:disabled):not(.disabled):active,
.btn-warning-gradient:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #e7c354;
    border-color: #e7c354;
}

.show>.btn-warning-gradient.dropdown-toggle {
    color: #fff;
    background-color: #e7c354;
    border-color: #e7c354;
}

.btn-warning-gradient:not(:disabled):not(.disabled):active:focus,
.btn-warning-gradient:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.56) !important;
}

.show>.btn-warning-gradient.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.56) !important;
}

.btn-danger-gradient {
    color: #fff;
    background: linear-gradient(to right bottom, #d12c47 0%, #c100a9 100%) !important;
    border-color: #d12c47 !important;
}

.btn-danger-gradient:hover {
    color: #fff;
    background-color: #d12c47;
    border-color: #d12c47;
}

.btn-danger-gradient:focus,
.btn-danger-gradient.focus {
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.9);
    border-color: #d12c47;
}

.btn-danger-gradient.disabled,
.btn-danger-gradient:disabled {
    color: #fff;
    background-color: #d12c47;
    border-color: #d12c47;
}

.btn-danger-gradient:not(:disabled):not(.disabled):active,
.btn-danger-gradient:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #d12c47;
    border-color: #d12c47;
}

.show>.btn-danger-gradient.dropdown-toggle {
    color: #fff;
    background-color: #d12c47;
    border-color: #d12c47;
}

.btn-danger-gradient:not(:disabled):not(.disabled):active:focus,
.btn-danger-gradient:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.56) !important;
}

.show>.btn-danger-gradient.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.56) !important;
}

/*---------OUTLINE BUTTONS----------*/
.btn-outline-default {
    color: #292828;
    background: transparent;
    background-image: none;
    border-color: #f0f0f4;
}

.btn-outline-default:hover {
    color: #292828;
    background: #f6f4fb;
    border-color: #f0f0f4;
    box-shadow: 0 5px 15px rgba(246, 249, 252, 0.5) !important;
}

.btn-outline-default:focus,
.btn-outline-default.focus {
    box-shadow: 0 0 0 2px rgba(246, 249, 252, 0.1);
}

.btn-outline-default.disabled,
.btn-outline-default:disabled {
    color: #292828;
    background-color: transparent;
}

.btn-outline-default:not(:disabled):not(.disabled):active,
.btn-outline-default:not(:disabled):not(.disabled).active {
    color: #292828;
    background-color: #f6f4fb;
    border-color: #f0f0f4;
}

.btn-outline-default:not(:disabled):not(.disabled):active:focus,
.btn-outline-default:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(73, 72, 72, 0.356) !important;
}

.show>.btn-outline-default.dropdown-toggle {
    color: #292828;
    background-color: #f6f4fb;
    border-color: #f0f0f4;
}

.btn-outline-primary {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color);
    background: transparent !important;
    background-image: none;
    border-color: var(--primary-bg-color);
    transition: all ease 0.3s;
}

.btn-outline-primary i {
    transition: all ease 0.3s;
}

.btn-outline-primary svg,
.btn-outline-primary i {
    fill: var(--primary-bg-color) !important;
    color: var(--primary-bg-color) !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    fill: #fff;
    background: var(--primary-bg-color) !important;
    border-color: var(--primary-bg-color);
}

.btn-outline-primary:hover svg,
.btn-outline-primary:hover i {
    fill: #fff !important;
    color: #fff !important;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.9);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: var(--primary-bg-color);
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active {
    color: #fff !important;
    background-color: var(--primary-bg-color) !important;
    border-color: var(--primary-bg-color);
}

.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.56) !important;
}

.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-bg-color), 0.56);
}

.btn-outline-secondary {
    color: #e984b1 !important;
    fill: #e984b1;
    background: transparent;
    background-image: none;
    border-color: #e984b1;
    transition: all ease 0.3s;
}

.btn-outline-secondary i {
    transition: all ease 0.3s;
}

.btn-outline-secondary svg,
.btn-outline-secondary i {
    fill: #e984b1 !important;
    color: #e984b1 !important;
}

.btn-outline-secondary:hover {
    color: #fff !important;
    fill: #fff;
    background: #e984b1;
    border-color: #e984b1;
}

.btn-outline-secondary:hover svg,
.btn-outline-secondary:hover i {
    fill: #fff !important;
    color: #fff !important;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.9);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #e984b1;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active {
    color: #fff !important;
    background-color: #e984b1;
    border-color: #e984b1;
}

.show>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #e984b1;
    border-color: #e984b1;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.56) !important;
}

.show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(233, 132, 177, 0.56);
}

.btn-outline-success {
    color: #13bfa6 !important;
    fill: #13bfa6;
    background: transparent;
    background-image: none;
    border-color: #13bfa6;
    transition: all ease 0.3s;
}

.btn-outline-success i {
    transition: all ease 0.3s;
}

.btn-outline-success svg,
.btn-outline-success i {
    fill: #13bfa6 !important;
    color: #13bfa6 !important;
}

.btn-outline-success:hover {
    color: #fff !important;
    fill: #fff;
    background: #13bfa6;
    border-color: #13bfa6;
}

.btn-outline-success:hover svg,
.btn-outline-success:hover i {
    fill: #fff !important;
    color: #fff !important;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.9);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #13bfa6;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active {
    color: #fff !important;
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.show>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.56) !important;
}

.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(19, 191, 166, 0.56);
}

.btn-outline-info {
    color: #59adec !important;
    fill: #59adec !important;
    background: transparent;
    background-image: none;
    border-color: #59adec;
    transition: all ease 0.3s;
}

.btn-outline-info i {
    transition: all ease 0.3s;
}

.btn-outline-info svg,
.btn-outline-info i {
    fill: #59adec !important;
    color: #59adec !important;
}

.btn-outline-info:hover {
    color: #fff !important;
    fill: #fff !important;
    background: #59adec;
    border-color: #59adec;
}

.btn-outline-info:hover svg,
.btn-outline-info:hover i {
    fill: #fff !important;
    color: #fff !important;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.9);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #59adec;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active {
    color: #fff !important;
    background-color: #59adec;
    border-color: #59adec;
}

.show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #59adec;
    border-color: #59adec;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.56) !important;
}

.show>.btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(89, 173, 236, 0.56);
}

.btn-outline-warning {
    color: #e7c354;
    fill: #e7c354;
    background: transparent;
    background-image: none;
    border-color: #e7c354;
    transition: all ease 0.3s;
}

.btn-outline-warning i {
    transition: all ease 0.3s;
}

.btn-outline-warning svg,
.btn-outline-warning i {
    fill: #e7c354 !important;
    color: #e7c354 !important;
}

.btn-outline-warning:hover {
    color: #fff;
    fill: #fff;
    background: #e7c354;
    border-color: #e7c354;
}

.btn-outline-warning:hover svg,
.btn-outline-warning:hover i {
    fill: #fff !important;
    color: #fff !important;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.9);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #e7c354;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active {
    color: #fff !important;
    background-color: #e7c354;
    border-color: #e7c354;
}

.show>.btn-outline-warning.dropdown-toggle {
    color: #fff !important;
    background-color: #e7c354;
    border-color: #e7c354;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.56) !important;
}

.show>.btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(231, 195, 84, 0.56);
}

.btn-outline-danger {
    color: var(--secondary-bg-border) !important;
    fill: var(--secondary-bg-color) !important;
    background: transparent;
    background-image: none;
    border-color: var(--secondary-bg-border);
    transition: all ease 0.3s;
}

.btn-outline-danger i {
    transition: all ease 0.3s;
}

.btn-outline-danger svg,
.btn-outline-danger i {
    fill: var(--secondary-bg-color) !important;
    color: var(--secondary-bg-color) !important;
}

.btn-outline-danger:hover {
    color: #fff !important;
    fill: #fff !important;
    background: var(--secondary-bg-color) !important;
    border-color: var(--secondary-bg-border);
}

.btn-outline-danger:hover svg,
.btn-outline-danger:hover i {
    fill: #fff !important;
    color: #fff !important;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.9);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #d12c47;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active {
    color: #fff !important;
    background-color: #d12c47;
    border-color: #d12c47;
}

.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #d12c47;
    border-color: #d12c47;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.56) !important;
}

.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(209, 44, 71, 0.56);
}

.btn-outline-light {
    color: #868e96;
    fill: #868e96;
    background: transparent;
    background-image: none;
    border-color: #e4e7ecc5;
    transition: all ease 0.3s;
}

.btn-outline-light i {
    transition: all ease 0.3s;
}

.btn-outline-light svg,
.btn-outline-light i {
    fill: #e4e7ecc5 !important;
    color: #e4e7ecc5 !important;
}

.btn-outline-light:hover {
    color: #868e96;
    fill: #868e96;
    background: #e4e7ecc5;
    border-color: #e4e7ecc5;
}

.btn-outline-light:hover svg,
.btn-outline-light:hover i {
    fill: #868e96 !important;
    color: #868e96 !important;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.9);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #e4e7ecc5;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active {
    background-color: #e4e7ecc5;
    border-color: #e4e7ecc5;
    color: #868e96 !important;
}

.show>.btn-outline-light.dropdown-toggle {
    color: #fff;
    background-color: #e4e7ecc5;
    border-color: #e4e7ecc5;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.56) !important;
}

.show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(228, 231, 236, 0.56);
}

.btn-outline-dark {
    color: #868e96;
    fill: #868e96;
    background: transparent;
    background-image: none;
    border-color: #444546;
    transition: all ease 0.3s;
}

.btn-outline-dark i {
    transition: all ease 0.3s;
}

.btn-outline-dark svg,
.btn-outline-dark i {
    fill: #444546 !important;
    color: #444546 !important;
}

.btn-outline-dark:hover {
    color: #fff;
    fill: #fff;
    background: #444546;
    border-color: #444546;
}

.btn-outline-dark:hover svg,
.btn-outline-dark:hover i {
    fill: #868e96 !important;
    color: #868e96 !important;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
    box-shadow: 0 0 0 2px rgba(68, 69, 70, 0.9);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #444546;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active {
    color: #fff !important;
    background-color: #444546;
    border-color: #444546;
}

.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #444546;
    border-color: #444546;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(68, 69, 70, 0.56) !important;
}

.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(68, 69, 70, 0.56);
}

.btn-animation .btn-loaders,
.btn-animation .btn-spinners {
    color: #fff !important;
    pointer-events: none;
    position: relative;
}

.btn-animation .btn-loaders::after,
.btn-animation .btn-spinners::after {
    content: "";
    border-radius: 50%;
    display: block;
    position: absolute;
    right: 10px !important;
    position: absolute !important;
}

.btn-animation .btn-loaders::after {
    height: 1.4em;
    width: 1.4em;
    top: calc(50% - 0.7em);
    border: 2px solid #fff;
    border-right-color: transparent !important;
    border-top-color: transparent !important;
    -webkit-transform-origin: center;
    transform-origin: center;
    animation: loader 500ms infinite linear;
}

.btn-animation .btn-spinners::after {
    height: 0.7rem;
    width: 0.7rem;
    background-color: #fff;
    top: 32%;
    animation: spinner 1s infinite linear;
}

.btn-loading {
    color: transparent !important;
    pointer-events: none;
    position: relative;
}

.btn-loading:after {
    content: "";
    -webkit-animation: loader 500ms infinite linear;
    animation: loader 500ms infinite linear;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent !important;
    border-top-color: transparent !important;
    display: block;
    height: 1.4em;
    width: 1.4em;
    position: absolute;
    left: calc(50% - 0.7em);
    top: calc(50% - 0.7em);
    -webkit-transform-origin: center;
    transform-origin: center;
    position: absolute !important;
}

.btn-loading.btn-sm:after {
    height: 1em;
    width: 1em;
    left: calc(50% - 0.5em);
    top: calc(50% - 0.5em);
}

.btn-group-sm>.btn-loading.btn:after {
    height: 1em;
    width: 1em;
    left: calc(50% - 0.5em);
    top: calc(50% - 0.5em);
}

.btn-spinning {
    color: transparent !important;
    pointer-events: none;
    position: relative;
}

.btn-spinning:after {
    content: "";
    border-radius: 50%;
    display: block;
    position: absolute;
    right: 10px !important;
    position: absolute !important;
    height: 0.7rem;
    width: 0.7rem;
    background-color: #fff;
    left: calc(50% - 0.5em);
    top: calc(50% - 0.5em);
    animation: spinner 1s infinite linear;
}

.btn-spinning.btn-sm:after {
    height: 1em;
    width: 1em;
    left: calc(50% - 0.5em);
    top: calc(50% - 0.5em);
}

.btn-group-sm>.btn-spinning.btn:after {
    height: 1em;
    width: 1em;
    left: calc(50% - 0.5em);
    top: calc(50% - 0.5em);
}

.btn-spinning.btn-secondary:after {
    border-color: #868e96;
}

.btn-purple-gradient {
    background: linear-gradient(to bottom right, #661fd6 0%, #647DEE 100%) !important;
    color: #fff !important;
}

.btn-link {
    font-weight: 400;
    background-color: transparent;
}

.btn-link:hover {
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent;
}

.btn-link:focus,
.btn-link.focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
    color: #868e96;
    pointer-events: none;
}

.btn-lg,
.btn-group-lg>.btn {
    padding: 0.7rem 2rem;
    font-size: 1.325rem;
    line-height: 1.625;
}

.btn-sm,
.btn-group-sm>.btn {
    padding: 0.45rem 0.5rem !important;
    font-size: 0.711rem !important;
    min-width: 1.625rem !important;
    line-height: 1;
    border-radius: 0.21rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block+.btn-block {
    margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
    width: 100%;
}

/**Btn-group**/
.btn-group,
.btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group>.btn,
.btn-group-vertical>.btn {
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.btn-group>.btn:hover,
.btn-group-vertical>.btn:hover {
    z-index: 1;
}

.btn-group>.btn:focus,
.btn-group>.btn:active,
.btn-group>.btn.active {
    z-index: 1;
}

.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn.active {
    z-index: 1;
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group {
    margin-left: -1px;
}

.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
    margin-left: -1px;
}

.btn-group-vertical .btn+.btn,
.btn-group-vertical .btn+.btn-group {
    margin-left: -1px;
}

.btn-group-vertical .btn-group+.btn,
.btn-group-vertical .btn-group+.btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-toolbar .input-group {
    width: auto;
}

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

.dropdown-toggle-split::after {
    margin-left: 0;
}

.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
    margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
    margin-right: 0;
}

.btn-sm+.dropdown-toggle-split,
.btn-group-sm>.btn+.dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-lg+.dropdown-toggle-split,
.btn-group-lg>.btn+.dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group-vertical {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
    width: 100%;
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical>.btn-group:not(:last-child)>.btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn:not(:first-child),
.btn-group-vertical>.btn-group:not(:first-child)>.btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
    margin-bottom: 0;
}

.btn-group-toggle>.btn input[type=radio],
.btn-group-toggle>.btn input[type=checkbox] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.btn-group-toggle>.btn-group>.btn input[type=radio],
.btn-group-toggle>.btn-group>.btn input[type=checkbox] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

/*----- Btn styles------*/
.btn {
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.03em;
    font-size: 0.8125rem;
    min-width: 2.375rem;
}

.btn-icon {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
}

.btn-pill {
    border-radius: 10rem;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.btn-radius {
    border-radius: 3px;
}


.btn-rss {
    color: #fff;
    background-color: #ffa500;
    border-color: #ffa500;
}

.btn-rss:hover {
    color: #fff;
    background-color: #d98c00;
    border-color: #cc8400;
}

.btn-rss:focus,
.btn-rss.focus {
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.5);
}

.btn-rss.disabled,
.btn-rss:disabled {
    color: #fff;
    background-color: #ffa500;
    border-color: #ffa500;
}

.btn-rss:not(:disabled):not(.disabled):active,
.btn-rss:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #cc8400;
    border-color: #bf7c00;
}

.show>.btn-rss.dropdown-toggle {
    color: #fff;
    background-color: #cc8400;
    border-color: #bf7c00;
}

.btn-rss:not(:disabled):not(.disabled):active:focus,
.btn-rss:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.5);
}

.show>.btn-rss.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.5);
}


.btn-option {
    background: transparent;
    color: #9aa0ac;
}

.btn-option:hover {
    color: #6e7687;
}

.btn-option:focus {
    box-shadow: none;
    color: #6e7687;
}

.btn-sm,
.btn-group-sm>.btn {
    font-size: 0.65rem;
    min-width: 2.5rem;
}

.btn-lg,
.btn-group-lg>.btn {
    font-size: 1rem;
    min-width: 2.75rem;
    font-weight: 400;
}

.btn-list {
    margin-bottom: -0.5rem;
    font-size: 0;
}

.btn-list>.btn,
.btn-list>.dropdown {
    margin-bottom: 0.5rem;
}

.btn-list>.btn:not(:last-child),
.btn-list>.dropdown:not(:last-child) {
    margin-right: 0.5rem;
}

.btn-circle {
    text-align: center;
    padding: 6px 0;
    border-radius: 50%;
    text-align: center;
}

.btn-circle i {
    font-size: 0.9rem;
}

.btn-social.btn-lg {
    padding-left: 61px;
}

.btn-social.btn-lg> :first-child {
    line-height: 45px;
    width: 45px;
    font-size: 1.8em;
}

.btn-social.btn-sm {
    padding-left: 38px;
}

.btn-social.btn-sm> :first-child {
    line-height: 28px;
    width: 28px;
    font-size: 1.4em;
}

.btn-social.btn-xs {
    padding-left: 30px;
}

.btn-social.btn-xs> :first-child {
    line-height: 20px;
    width: 20px;
    font-size: 1.2em;
}

.btn-social-icon {
    position: relative;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 34px;
    width: 34px;
    padding: 0;
}

.btn-social-icon> :first-child {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    line-height: 34px;
    font-size: 1.1em;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-social-icon.btn-lg {
    padding-left: 61px;
}

.btn-social-icon.btn-lg> :first-child {
    line-height: 45px;
    width: 45px;
    font-size: 1.8em;
}

.btn-social-icon.btn-sm {
    padding-left: 38px;
}

.btn-social-icon.btn-sm> :first-child {
    line-height: 28px;
    width: 28px;
    font-size: 1.4em;
}

.btn-social-icon.btn-xs {
    padding-left: 30px;
}

.btn-social-icon.btn-xs> :first-child {
    line-height: 20px;
    width: 20px;
    font-size: 1.2em;
}

.btn-social-icon> :first-child {
    border: none;
    text-align: center;
    width: 100%;
    color: #fff;
}

.btn-social-icon.btn-lg {
    height: 45px;
    width: 45px;
    padding-left: 0;
    padding-right: 0;
}

.btn-social-icon.btn-sm {
    height: 30px;
    width: 30px;
    padding-left: 0;
    padding-right: 0;
}

.btn-social-icon.btn-xs {
    height: 22px;
    width: 22px;
    padding-left: 0;
    padding-right: 0;
}

.btn.focus,
.btn:focus {
    box-shadow: none !important;
}

.btn-dropdown-icon {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-dropdown-icon:hover {
    color: #fff;
    background-color: var(--primary09);
    border-color: var(--primary09);
}

.btn-dropdown-icon:focus,
.btn-dropdown-icon.focus {
    box-shadow: 0 0 0 2px var(--primary06);
}

.btn-dropdown-icon.disabled,
.btn-dropdown-icon:disabled {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-dropdown-icon:not(:disabled):not(.disabled):active,
.btn-dropdown-icon:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: var(--primary09);
    border-color: var(--primary09);
}

.btn-dropdown-icon1 {
    color: var(--primary-bg-color);
    background: transparent;
    background-image: none;
    border-color: var(--primary-bg-color);
}

.btn-dropdown-icon1:hover {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-dropdown-icon1:focus,
.btn-dropdown-icon1.focus {
    box-shadow: 0 0 0 2px var(--primary06);
}

.btn-dropdown-icon1.disabled,
.btn-dropdown-icon1:disabled {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-dropdown-icon1:not(:disabled):not(.disabled):active,
.btn-dropdown-icon1:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-svg {
    min-width: 2.75rem;
}

.btn-animation .loading {
    margin-right: 20px;
}

.btn-square {
    padding: 0.55rem 0.5rem;
    line-height: 1;
    border-radius: 3px;
}

a.btn-teritary svg {
    fill: #fff !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--primary09);
    border-color: var(--primary09);
    box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
    color: #fff !important;
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #fff !important;
}

/*----BUTTON WIDTH----*/
.btn.btn-w-xs {
    min-width: 90px;
}

.btn.btn-w-sm {
    min-width: 110px;
}

.btn.btn-w-md {
    min-width: 130px;
}

.btn.btn-w-lg {
    min-width: 150px;
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    background-color: var(--primary-bg-color) !important;
    border-color: var(--primary-bg-color) !important;
    color: #fff !important;
}

.btn-check:active+.btn-outline-secondary,
.btn-check:checked+.btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
    color: #fff !important;
    background-color: #e984b1;
    border-color: #e984b1;
}

.btn-check:active+.btn-outline-success,
.btn-check:checked+.btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
    color: #fff !important;
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.btn-check:active+.btn-outline-info,
.btn-check:checked+.btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
    color: #fff !important;
    background-color: #59adec;
    border-color: #59adec;
}

.btn-check:active+.btn-outline-warning,
.btn-check:checked+.btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
    color: #fff !important;
    background-color: #e7c354;
    border-color: #e7c354;
}

.btn-check:active+.btn-outline-danger,
.btn-check:checked+.btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
    color: #fff !important;
    background-color: #d12c47;
    border-color: #d12c47;
}

.btn-check:active+.btn-outline-dark,
.btn-check:checked+.btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
    background-color: #343a40;
    border-color: #343a40;
}

.btn-check:active+.btn-outline-light,
.btn-check:checked+.btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active {
    background-color: #e4e7ecc5;
    border-color: #e4e7ecc5;
}

.btn-group>.btn:first-child {
    margin-left: 0;
}

.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group>.btn-group:not(:last-child)>.btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-icon .fe,
.btn-list .fe {
    line-height: 1.7 !important;
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: none !important;
}

@media (max-width: 576px) {

    .radiobtns [class*=btn-outline-],
    .checkboxbtns [class*=btn-outline-] {
        padding: 0.1rem 0.2rem !important;
        font-size: 11px !important;
    }
}

@media (max-width: 360px) {
    .btn-lg {
        font-size: 0.8rem;
    }
}

/*------ Card -------*/
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    border: inherit !important;
    background-clip: border-box;
    border-radius: 5px;
    box-shadow: 0 4px 16px 0 rgba(143, 143, 143, 0.45);
}

.card>hr {
    margin-right: 0;
    margin-left: 0;
}

.card>.list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.card-body {
    -ms-flex: 1 1 auto;
    margin: 0;
    position: relative;
    padding: 0.5rem 1rem 0.5rem 1rem
}

.card-subtitle {
    margin-top: -0.75rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link+.card-link {
    margin-left: 1.5rem;
}

.card-header:first-child {
    border-radius: 2px 2px 0 0;
}

.card-header+.list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 0.8rem 1.6rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid #eaedf1;
    color: #6e7687;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    background-color: rgba(0, 0, 0, 0.4);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-img {
    width: 100%;
    border-radius: 2px;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-deck {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -0.75rem;
        margin-left: -0.75rem;
    }

    .card-deck .card {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 0.75rem;
        margin-bottom: 0;
        margin-left: 0.75rem;
    }
}

.card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group>.card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-group {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .card-group>.card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group>.card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group>.card:first-child .card-img-top,
    .card-group>.card:first-child .card-header {
        border-top-right-radius: 0;
    }

    .card-group>.card:first-child .card-img-bottom,
    .card-group>.card:first-child .card-footer {
        border-bottom-right-radius: 0;
    }

    .card-group>.card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group>.card:last-child .card-img-top,
    .card-group>.card:last-child .card-header {
        border-top-left-radius: 0;
    }

    .card-group>.card:last-child .card-img-bottom,
    .card-group>.card:last-child .card-footer {
        border-bottom-left-radius: 0;
    }

    .card-group>.card:only-child {
        border-radius: 3px;
    }

    .card-group>.card:only-child .card-img-top,
    .card-group>.card:only-child .card-header {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

    .card-group>.card:only-child .card-img-bottom,
    .card-group>.card:only-child .card-footer {
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }

    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
        border-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: 0.7rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.card-blog-overlay {
    background: url("../images/media/thumbnails/thumb2.jpg");
    background-size: cover;
    position: relative;
}

.card-blog-overlay:before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

.card-blog-overlay1:before,
.card-blog-overlay2:before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

.card-blog-overlay1 {
    background: url("../images/media/thumbnails/thumb3.jpg");
    background-size: cover;
}

.card-blog-overlay2 {
    background: url("../images/media/22.jpg");
    background-size: cover;
}

/*------ Default Card Values -------*/
.card {
    position: relative;
    margin-bottom: 0.3rem;
    width: 100%;
}

.card .card {
    border: 1px solid #eaedf1;
}

@media print {
    .card {
        box-shadow: none;
        border: none;
    }
}

.card-body+.card-body {
    border-top: 1px solid #eaedf1;
}

.card-body> :last-child {
    margin-bottom: 0;
}


.card-body-scrollable {
    overflow: auto;
}

.card-footer,
.card-bottom {
    padding: 0.8rem 1.6rem;
    background: none;
}

.card-header {
    background: none;
    padding: 0.5rem 1.5rem !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: none;
}

.card-header .card-title {
    margin-bottom: 0;
}

.card-header.border-0+.card-body {
    padding-top: 0;
}

@media print {
    .card-header {
        display: none;
    }
}

.card-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.reg {
    text-align: center;
    font-size: 50px;
    color: #2e1170;
    float: right;
}

.card-title a {
    color: inherit;
}

.card-title:only-child {
    margin-bottom: 0;
}

.card-title small {
    color: #9aa0ac;
    font-size: 0.875rem;
    display: block;
    margin: -0.75rem 0 1rem;
    line-height: 1.1;
    font-weight: 400;
}

.card-subtitle {
    color: #9aa0ac;
    font-size: 0.875rem;
    display: block;
    margin: -0.75rem 0 1rem;
    line-height: 1.1;
    font-weight: 400;
}

.card-table {
    margin-bottom: 0;
}

.card-table tr:first-child td,
.card-table tr:first-child th {
    border-top: 0;
}

.card-table tr td:first-child,
.card-table tr th:first-child {
    padding-left: 1.5rem !important;
}

.card-table tr td:last-child,
.card-table tr th:last-child {
    padding-right: 1.5rem;
}

.card-body+.card-table {
    border-top: 1px solid #eaedf1;
}

.card-profile .card-header {
    height: 5rem;
    background-size: cover;
    border: 0;
}

.card-link+.card-link {
    margin-left: 1rem;
}

.card-body+.card-list-group {
    border-top: 1px solid #eaedf1;
}

.card-list-group .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.card-list-group .list-group-item:last-child {
    border-bottom: 0;
}

.card-list-group .list-group-item:first-child {
    border-top: 0;
}

.card-header-tabs {
    margin: -1.25rem 0;
    border-bottom: 0;
    line-height: 2rem;
    margin-right: -0.75rem;
    margin-bottom: -1.5rem;
    margin-left: -0.75rem;
}

.card-header-tabs .nav-item {
    margin-bottom: 1px;
}

.card-header-pills {
    margin: -0.75rem 0;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.card-aside {
    -ms-flex-direction: row;
    flex-direction: row;
}

.card-aside-column {
    min-width: 5rem;
    width: 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    background: no-repeat center/cover;
}

.card-value {
    font-size: 1rem;
    line-height: 3.4rem;
    height: 3.4rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
}

.card-value i {
    vertical-align: middle;
    font-size: 30px;
}

.card-chart-bg {
    height: 4rem;
    margin-top: -1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card-options {
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-order: 100;
    order: 100;
    margin-right: -0.5rem;
    color: #9aa0ac;
    -ms-flex-item-align: center;
    align-self: center;
}

.card-options a:not(.btn) {
    margin-left: 0.5rem;
    color: #76839a;
    display: inline-block;
    min-width: 1rem;
}

.card-options a:not(.btn):hover {
    text-decoration: none;
    color: #6e7687;
}

.card-options a:not(.btn) i {
    font-size: 1rem;
    vertical-align: middle;
}

.card-options .dropdown-toggle:after {
    display: none;
}

.stretch-card {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: stretch;
    justify-content: stretch;
}

.stretch-card>.card {
    width: 100%;
    min-width: 100%;
}

.card-img-absolute {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    margin-left: -28px;
}

.card-image {
    position: absolute;
    top: 0;
    height: 100%;
    margin-left: -126px;
}

/*Card options*/
.card-collapsed> :not(.card-header):not(.card-status) {
    display: none;
}

.card-collapsed .card-options-collapse i:before {
    content: "\e92d";
}

.card-fullscreen .card-options-fullscreen i:before {
    content: "\e992";
}

.card-fullscreen .card-options-remove {
    display: none;
}

/*Card maps*/
.card-map {
    height: 15rem;
    background: #e9ecef;
}

.card-map-placeholder {
    background: no-repeat center;
}

/**Card tabs*/
.card-tabs {
    display: -ms-flexbox;
    display: flex;
}

.card-tabs-bottom .card-tabs-item {
    border: 0;
}

.card-tabs-bottom .card-tabs-item.active {
    border-top-color: #fff;
}

.card-tabs-item {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: block;
    padding: 1.4rem 1.5rem;
    color: inherit;
    overflow: hidden;
}

a.card-tabs-item {
    background: #fafbfc;
}

a.card-tabs-item:hover {
    text-decoration: none;
    color: inherit;
}

a.card-tabs-item:focus {
    z-index: 1;
}

a.card-tabs-item.active {
    background: #fff;
    border-bottom-color: #fff;
}

/**Card status*/
.card-status {
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0px;
    height: 3px;
    border-radius: 7px 7px 0 0;
}

.card-status-left {
    right: auto;
    bottom: 0;
    height: auto;
    width: 3px;
    border-radius: 3px 0 0 3px;
}

/**Card icon*/
.card-icon {
    width: 3rem;
    font-size: 2.5rem;
    line-height: 3rem;
    text-align: center;
}

/**Card fullscreen*/
.card-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0;
}

/**Card alert*/
.card-alert {
    border-radius: 0;
    margin: -1px -1px 0;
}

.card-category {
    font-size: 17px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0.5rem;
    background: #f1f1f9;
    padding: 0.35rem;
    border-radius: 5px;
}

.item-card .cardbody {
    position: relative;
    padding: 30px 15px;
    border-radius: 0 0 0.2rem 0.2rem;
}

.item-card .cardtitle span {
    display: block;
    font-size: 0.75rem;
}

.item-card .cardtitle a {
    color: #707070;
    font-weight: 500;
    text-decoration: none;
}

.item-card .cardprice {
    position: absolute;
    top: 30px;
    right: 15px;
}

.item-card .cardprice span {
    display: block;
    color: #707070;
}

.item-card .cardprice span.type--strikethrough {
    opacity: 0.7;
    text-decoration: line-through;
}

.card-padding {
    padding: 14px 2px 2px 11px;
}

.card-items {
    padding: 10px;
}

.card .box .img img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
}

.card .box h2 {
    font-size: 20px;
    color: #262626;
    margin: 20px auto;
}

.card .box h2 span {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
}

.card .box p {
    color: #262626;
}

.card-counter {
    padding: 20px 10px;
    background-color: #fff;
    height: 100px;
    border-radius: 7px;
    transition: 0.3s linear all;
    margin-bottom: 1.5rem;
}

.card-counter:hover {
    transition: 0.3s linear all;
}

.card-counter.primary {
    color: #fff;
}

.card-counter.secondary {
    background: linear-gradient(to bottom right, #fbc434 0%, #f66b4e 100%);
    color: #fff;
}

.card-counter.success {
    background: linear-gradient(to bottom right, #62fb62, #21a544);
    color: #fff;
}

.card-counter.info {
    background: linear-gradient(to bottom right, #00f2fe 0%, #1e63c3 100%);
    color: #fff;
}

.card-counter i {
    font-size: 4rem;
    opacity: 0.3;
}

.card-counter .count-numbers {
    position: absolute;
    right: 35px;
    top: 10px;
    font-size: 32px;
    display: block;
}

.card-counter .count-name {
    position: absolute;
    right: 35px;
    top: 65px;
    text-transform: capitalize;
    opacity: 0.5;
    display: block;
    font-size: 18px;
}

.card-label {
    border: 0;
}

.card-label.list-group-item {
    border-bottom: 0;
}

.card-img-holder i {
    font-size: 45px;
}

.card-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.card-aside-img {
    position: relative;
}

.card-aside-img img {
    width: 80px;
    height: 80px;
    vertical-align: middle;
}

.card-aside-img.wrap-border img {
    border: 1px solid rgba(167, 180, 201, 0.3);
    padding: 3px;
}

.card-aside-img a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-item-desc {
    padding: 15px;
}

.card-item-desc h6 {
    margin-top: 5px;
}


/*------Drop Downs-------*/
.dropup,
.dropright,
.dropdown,
.dropleft {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 0.9375rem;
    color: #495057;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #eaedf1;
}

.dropdown-menu-end {
    right: 0;
    left: auto;
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-menu[data-popper-placement^=top],
.dropdown-menu[data-popper-placement^=right],
.dropdown-menu[data-popper-placement^=bottom],
.dropdown-menu[data-popper-placement^=left] {
    right: auto;
    bottom: auto;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.drop-heading {
    padding: 1rem 1rem;
    color: #8f9daf;
}

.dropdown-item {
    display: block;
    width: 100%;
    clear: both;
    font-weight: 400;
    color: #74788e;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover svg {
    fill: var(--primary-bg-color);
}

.dropdown-item svg {
    margin-right: 5px;
    transition: all ease 0.3s;
}

.dropdown-item .brround svg {
    margin-right: 0px;
}

.drop-icon-wrap {
    text-align: center;
}

.drop-icon-wrap li {
    display: inline-block;
}

.drop-icon-wrap .drop-icon-item {
    display: inline-block;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
    color: #878787;
    text-transform: capitalize;
    min-width: 75px;
}

.drop-icon-item i {
    font-size: 20px;
    padding-bottom: 5px;
}

.drop-icon-wrap .drop-icon-item:hover {
    text-decoration: none;
    background-color: #f1f1f9;
}

.dropdown-item:hover .notification-label {
    color: var(--primary-bg-color);
}

.dropdown-item.user {
    font-size: 18px;
    padding: 5px;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
    text-decoration: none;
    background-color: unset;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #fff;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
    margin: 0;
    border: 1px solid #eaf2f6;
    box-shadow: 0 3px 9px 0 rgba(169, 184, 200, 0.3);
    border-radius: 5px !important;
}

.header-search-icon .dropdown-menu {
    box-shadow: 0 10px 15px rgba(229, 228, 230, 0.5);
    margin-top: 13px !important;
    border: 1px solid #eaedf1 !important;
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #868e96;
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: 0.25rem 1.5rem;
    color: #212529;
}

/*-----List Of Dropdwons-----*/
btn.dropdown-toggle~.dropdown-menu {
    background-color: #f4f4f4;
    background-color: white;
    border: 0 solid #4285f4;
    box-shadow: 0px 0px 3px rgba(25, 25, 25, 0.3);
    top: 0px;
    margin: 0px;
    padding: 0px;
}

ul.dropdown-menu li.dropdown ul.dropdown-menu {
    background-color: #f4f4f4;
    background-color: white;
    border: 0 solid #4285f4;
    box-shadow: 0px 0px 3px rgba(25, 25, 25, 0.3);
    top: 0px;
    margin: 0px;
    padding: 0px;
    position: absolute;
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 98;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.dropdown-menu>li>a {
    display: block;
    padding: 8px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.428571429;
    color: #495057d9;
    white-space: nowrap;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    text-decoration: none;
    color: #76839a;
    background-color: #f1f1f9;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #eaedf1;
}

.dropdown-menu .dropdown-plus-title {
    width: 100%;
    color: #495057;
    padding: 6px 12px;
    font-weight: 500;
    border: 0 solid #eaedf1;
    border-bottom-width: 1px;
    cursor: pointer;
}

ul.dropdown-menu li.dropdown ul.dropdown-menu .dropdown-plus-title {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
}

.btn.dropdown-toggle.btn-primary~.dropdown-menu .dropdown-plus-title {
    border-color: var(--primary-bg-color) !important;
}

.btn.dropdown-toggle.btn-success~.dropdown-menu .dropdown-plus-title {
    border-color: #13bfa6 !important;
}

.btn.dropdown-toggle.btn-info~.dropdown-menu .dropdown-plus-title {
    border-color: #59adec !important;
}

.btn.dropdown-toggle.btn-warning~.dropdown-menu .dropdown-plus-title {
    border-color: #e7c354 !important;
}

.btn.dropdown-toggle.btn-danger~.dropdown-menu .dropdown-plus-title {
    border-color: #d12c47 !important;
}

.btn.dropdown-toggle.btn-dark~.dropdown-menu .dropdown-plus-title {
    border-color: #444546 !important;
}

.btn.dropdown-toggle.btn-light~.dropdown-menu .dropdown-plus-title {
    border-color: #e4e7ecc5 !important;
}

.dropdown-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #eaedf1;
}

.dropdown-demo .dropdown-menu {
    position: static;
    float: none;
}

.dropdown-menu-header label {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #76839a;
}

.dropdown-media-list .media {
    padding: 12px 15px;
}

.dropdown-media-list .media:hover,
.dropdown-media-list .media:focus {
    background-color: #f8f9fa;
}

.media {
    display: flex;
    align-items: flex-start;
}

.dropdown-media-list img {
    border-radius: 100%;
}

.dropdown-media-list .media-body {
    margin-left: 15px;
}

.dropdown-media-list .media-body>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-media-list .media-body>div p {
    margin-bottom: 0;
    font-weight: 500;
    color: #76839a;
    font-size: 14px;
}

.dropdown-media-list .media-body>div span {
    font-size: 12px;
    color: #CFCFCF;
}

.dropdown-media-list .media-body>p {
    font-size: 14px;
    color: #bfbfbf;
    margin-bottom: 0;
}

.dropdown-list-footer {
    padding: 10px 15px;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #eaedf1;
}

.dropdown-media-list {
    padding: 0;
}

@media (min-width: 768px) {
    ul.dropdown-menu li.dropdown ul.dropdown-menu .dropdown-plus-title {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

@media (min-width: 768px) {
    ul.dropdown-menu li.dropdown ul.dropdown-menu {
        width: auto !important;
    }
}

@media (min-width: 768px) {
    .dropdown-menu-arrow:before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 28px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

.dropdown {
    display: block;
}

.header .dropdown .nav-link.icon:hover {
    background: none !important;
}

.dropdown-menu {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    min-width: 12rem;
}

.dropdown-menu-arrow.dropdown-menu-end:before,
.dropdown-menu-arrow.dropdown-menu-end:after {
    left: auto;
    right: 12px;
}

.dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.dropdown-toggle:after {
    vertical-align: 0.155em;
}

.dropdown-toggle:empty:after {
    margin-left: 0;
}

.dropdown-icon {
    color: #8f9daf;
    margin-right: 0.5rem;
    margin-left: -0.5rem;
    width: 1em;
    display: inline-block;
    text-align: center;
    vertical-align: -1px;
}

.dropdown-menu.dropdown-menu-end.show {
    left: inherit !important;
}

/*------- Forms -------*/
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(73, 80, 87, 0.75);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #b8c5d7;
    border-radius: 7px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:focus {
    color: rgba(73, 80, 87, 0.8);
    background-color: #fff;
    outline: 0;
    box-shadow: none;
    border-color: #eaedf1;
}

.form-control::-webkit-input-placeholder,
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-ms-input-placeholder {
    color: #76839a;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: rgba(228, 231, 236, 0.35);
    opacity: 1;
}

.form-control.file-input {
    line-height: 1.9;
}

@media screen and (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
    border: 1px solid #eaedf1;
    border-radius: 5px;
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%;
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.6;
}

.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.125rem;
    line-height: 1.44444444;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.14285714;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: #495057;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

.form-control-plaintext.form-control-sm {
    padding-right: 0;
    padding-left: 0;
}


.form-group {
    margin-bottom: 1rem;
    display: block;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row>.col,
.form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-input:disabled~.form-check-label {
    color: #505662;
}

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0;
}

.was-validated .form-control:valid,
.form-control.is-valid,
.was-validated .form-select:valid,
.form-select.is-valid {
    border-color: #13bfa6;
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus,
.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
    border-color: #13bfa6;
    box-shadow: 0 0 0 2px rgba(94, 186, 0, 0.25);
}

.was-validated .form-control:valid~.valid-feedback,
.was-validated .form-control:valid~.valid-tooltip {
    display: block;
}

.form-control.is-valid~.valid-feedback,
.form-control.is-valid~.valid-tooltip {
    display: block;
}

.was-validated .form-select:valid~.valid-feedback,
.was-validated .form-select:valid~.valid-tooltip {
    display: block;
}

.form-select.is-valid~.valid-feedback,
.form-select.is-valid~.valid-tooltip {
    display: block;
}

.was-validated .form-check-input:valid~.form-check-label,
.form-check-input.is-valid~.form-check-label {
    color: #13bfa6;
}

.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip {
    display: block;
}

.form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid~.custom-control-label,
.custom-control-input.is-valid~.custom-control-label {
    color: #13bfa6;
}

.was-validated .custom-control-input:valid~.custom-control-label::before,
.custom-control-input.is-valid~.custom-control-label::before {
    background-color: #13bfa6;
    border-color: #35b9a6;
}

.was-validated .custom-control-input:valid~.valid-feedback,
.was-validated .custom-control-input:valid~.valid-tooltip {
    display: block;
}

.custom-control-input.is-valid~.valid-feedback,
.custom-control-input.is-valid~.valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid:checked~.custom-control-label::before,
.custom-control-input.is-valid:checked~.custom-control-label::before {
    background-color: #13bfa6;
    border-color: #35b9a6;
}

.was-validated .custom-control-input:valid:focus~.custom-control-label::before,
.custom-control-input.is-valid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #f1f1f9, 0 0 0 2px rgba(94, 186, 0, 0.25);
}

.was-validated .form-file-input:valid~.form-file-label,
.form-file-input.is-valid~.form-file-label {
    border-color: #13bfa6;
}

.was-validated .form-file-input:valid~.form-file-label::before,
.form-file-input.is-valid~.form-file-label::before {
    border-color: inherit;
}

.was-validated .form-file-input:valid~.valid-feedback,
.was-validated .form-file-input:valid~.valid-tooltip {
    display: block;
}

.form-file-input.is-valid~.valid-feedback,
.form-file-input.is-valid~.valid-tooltip {
    display: block;
}

.was-validated .form-file-input:valid:focus~.form-file-label,
.form-file-input.is-valid:focus~.form-file-label {
    box-shadow: 0 0 0 2px rgba(94, 186, 0, 0.25);
}

.was-validated .form-control:invalid,
.form-control.is-invalid,
.was-validated .form-select:invalid,
.form-select.is-invalid {
    border-color: var(--primary-bg-border) !important;
}

.form-select.is-invalid:focus {
    box-shadow: 0 0 0 2px var(--primary-bg-hover);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus,
.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
    border-color: var(--primary-bg-border);
    box-shadow: 0 0 0 2px rgba(205, 32, 31, 0.25);
}

.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-control:invalid~.invalid-tooltip {
    display: block;
}

.was-validated .form-select:invalid~.invalid-feedback,
.was-validated .form-select:invalid~.invalid-tooltip {
    display: block;
}

.was-validated .form-check-input:invalid~.form-check-label,
.form-check-input.is-invalid~.form-check-label {
    color: var(--primary-bg-color);
}

.was-validated .custom-control-input:invalid~.custom-control-label,
.custom-control-input.is-invalid~.custom-control-label {
    color: var(--primary-bg-color);
}

.was-validated .custom-control-input:invalid~.custom-control-label::before,
.custom-control-input.is-invalid~.custom-control-label::before {
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-border);
}

.was-validated .custom-control-input:invalid~.invalid-feedback,
.was-validated .custom-control-input:invalid~.invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,
.custom-control-input.is-invalid:checked~.custom-control-label::before {
    background-color: #e23e3d;
}

.was-validated .custom-control-input:invalid:focus~.custom-control-label::before,
.custom-control-input.is-invalid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #f1f1f9, 0 0 0 2px rgba(205, 32, 31, 0.25);
}

.was-validated .form-file-input:invalid~.form-file-label,
.form-file-input.is-invalid~.form-file-label {
    border-color: var(--primary-bg-border);
}

.was-validated .form-file-input:invalid~.form-file-label::before,
.form-file-input.is-invalid~.form-file-label::before {
    border-color: inherit;
}

.was-validated .form-file-input:invalid~.invalid-feedback,
.was-validated .form-file-input:invalid~.invalid-tooltip {
    display: block;
}

.was-validated .form-file-input:invalid:focus~.form-file-label,
.form-file-input.is-invalid:focus~.form-file-label {
    box-shadow: 0 0 0 2px rgba(205, 32, 31, 0.25);
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
}

.header .form-inline {
    margin-right: 7px;
}

.form-inline .form-check {
    width: 100%;
}

@media (min-width: 576px) {
    .form-inline label {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .form-inline .form-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
    }

    .form-inline .form-control-plaintext {
        display: inline-block;
    }

    .form-inline .input-group,
    .form-inline .form-select {
        width: auto;
    }

    .form-inline .form-check {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }

    .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0;
    }

    .form-inline .custom-control {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}

.form-label {
    margin-bottom: 2px;
}

.form-label-small {
    font-weight: 400;
    font-size: 87.5%;
}

.form-label.required::after {
    content: " *" !important;
    color: red !important;
}

.form-footer {
    margin-top: 2rem;
}

.form-signin .form-control {
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-radius: 0;
}

.form-signin .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid #eaedf1 !important;
}

.form-control.header-search {
    background: #f1f1f9;
    border: 1px solid rgba(225, 225, 225, 0.1);
    color: #fff;
    padding: 0.375rem 0.75rem;
    width: 100%;
    margin-top: 4px;
}

.form-control.header-search::placeholder {
    color: #fff;
    opacity: 0.7;
}

.form-control.header-search:hover,
.form-control.header-search:focus {
    border: 1px solid rgba(225, 225, 225, 0.1);
    box-shadow: none;
}

.form-fieldset {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 1rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.form-required {
    color: var(--primary-bg-color);
}

.form-required:before {
    content: " ";
}

.state-valid {
    padding-right: 2rem;
    background: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235eba00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'><polyline points='20 6 9 17 4 12'></polyline></svg>") no-repeat center right 0.5rem/1rem;
}

.state-invalid {
    padding-right: 2rem;
    background: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23cd201f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'><line x1='18' y1='6' x2='6' y2='18'></line><line x1='6' y1='6' x2='18' y2='18'></line></svg>") no-repeat center right 0.5rem/1rem;
}

.wizard-card .moving-tab {
    margin-top: 5px;
}

.wizard-card.form-group .form-control {
    background-image: linear-gradient(#c4c4c4, #c4c4c4, linear-gradient(#e1e1e2, #e1e1e2));
}

form.convFormDynamic button.submit:hover {
    color: #fff;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 87.5%;
    color: #13bfa6;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
    background-color: #5eba00;
    border-radius: 0.2rem;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 87.5%;
    color: var(--primary-bg-color);
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
    background-color: #cd201f;
    border-radius: 0.2rem;
}

ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

ul.labels-info li {
    margin: 0;
}

ul.labels-info li h4 {
    color: #5c5c5e;
    font-size: 13px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    text-transform: uppercase;
}

ul.labels-info li a {
    border-radius: 0;
    color: #6a6a6a;
}

ul.labels-info li a:hover,
ul.labels-info li a:focus {
    background: none repeat scroll 0 0 #d5d7de;
    color: #6a6a6a;
}

ul.labels-info li a i {
    padding-right: 10px;
}

.fileupload-buttonbar .btn,
.fileupload-buttonbar .toggle {
    margin-bottom: 5px;
}

.files .progress {
    width: 200px;
}

.fileupload-processing .fileupload-loading {
    display: block;
}

* html .fileinput-button {
    line-height: 24px;
    margin: 1px -3px 0 0;
}

*+html .fileinput-button {
    margin: 1px 0 0;
    padding: 2px 15px;
}

@media (max-width: 767px) {
    .files .btn span {
        display: none;
    }

    .files .preview * {
        width: 40px;
    }

    .files .name * {
        display: inline-block;
        width: 80px;
        word-wrap: break-word;
    }

    .files .progress {
        width: 20px;
    }

    .files .delete {
        width: 60px;
    }

    .border-right-1 {
        border-right: 0 !important;
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/*--------radio---------*/
.rdiobox {
    font-weight: normal;
    position: relative;
    display: block;
    line-height: 18px;
}

.rdiobox span {
    padding-left: 4px;
}

.rdiobox span:before,
.rdiobox span:after {
    line-height: 18px;
    position: absolute;
}

.rdiobox span:before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #eaedf1;
    border-radius: 50%;
    top: 2px;
    left: 0;
}

.rdiobox span:after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    top: 7px;
    left: 5px;
    display: none;
}

.rdiobox span:empty {
    padding-left: 0;
    width: 16px;
    display: block;
}

.rdiobox input[type=radio] {
    opacity: 0;
    margin: 0;
}

.rdiobox input[type=radio]:checked+span:before {
    border-color: transparent;
    background-color: var(--primary-bg-color);
}

.rdiobox input[type=radio]:checked+span:after {
    display: block;
}

.rdiobox input[type=radio].radio-primary:checked+span:before {
    background-color: var(--primary-bg-color);
}

.rdiobox input[type=radio].radio-secondary:checked+span:before {
    background-color: #e984b1;
}

.rdiobox input[type=radio].radio-success:checked+span:before {
    background-color: #13bfa6;
}

.rdiobox input[type=radio].radio-info:checked+span:before {
    background-color: #59adec;
}

.rdiobox input[type=radio].radio-warning:checked+span:before {
    background-color: #e7c354;
}

.rdiobox input[type=radio].radio-danger:checked+span:before {
    background-color: #d12c47;
}

.rdiobox input[type=radio].radio-dark:checked+span:before {
    background-color: #343a40;
}

.rdiobox input[type=radio].radio-light:checked+span:before {
    background-color: #e4e7ecc5;
}

.rdiobox input[type=radio][disabled]+span {
    opacity: 0.75;
}

.rdiobox input[type=radio][disabled]+span:before,
.rdiobox input[type=radio][disabled]+span:after {
    opacity: 0.75;
}

.main-toggle-group .toggle {
    width: 60px;
    height: 25px;
    background-color: #d6d6e6;
    margin-left: 10px;
    margin-bottom: 5px;
    padding: 2px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.main-toggle-group .toggle.toggle-sm {
    height: 17px;
    width: 50px;
}

.main-toggle-group .toggle.toggle-sm span {
    width: 10px;
    height: 10px;
}

.main-toggle-group .toggle.toggle-sm span::after {
    right: -30px;
    top: -1px;
}

.main-toggle-group .toggle.toggle-lg {
    height: 34px;
    width: 72px;
}

.main-toggle-group .toggle.toggle-lg span {
    width: 28px;
}

.main-toggle-group .toggle.toggle-lg span::after {
    top: 8px;
    right: -31px;
}

.main-toggle-group .toggle span {
    position: absolute;
    top: 3px;
    bottom: 4px;
    left: 3px;
    display: block;
    width: 20px;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: all 0.2s ease;
}

.main-toggle-group .toggle span::before,
.main-toggle-group .toggle span::after {
    position: absolute;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    top: 3px;
    line-height: 1.38;
    transition: all 0.2s ease;
}

.main-toggle-group .toggle span::before {
    content: "on";
    left: -25px;
}

.main-toggle-group .toggle span::after {
    content: "off";
    right: -29px;
}

.main-toggle-group .toggle.on {
    background-color: var(--primary-bg-color);
}

.main-toggle-group .toggle.on.toggle-sm span {
    left: 37px;
}

.main-toggle-group .toggle.on.toggle-sm span::before {
    top: -1px;
    left: -25px;
}

.main-toggle-group .toggle.on.toggle-lg span {
    left: 41px;
}

.main-toggle-group .toggle.on.toggle-lg span::before {
    top: 8px;
    left: -28px;
}

.main-toggle-group .toggle.on span {
    left: 37px;
}

.main-toggle-group .toggle.on.toggle-primary {
    background-color: var(--primary-bg-color);
}

.main-toggle-group .toggle.on.toggle-secondary {
    background-color: #e984b1;
}

.main-toggle-group .toggle.on.toggle-info {
    background-color: #59adec;
}

.main-toggle-group .toggle.on.toggle-success {
    background-color: #13bfa6;
}

.main-toggle-group .toggle.on.toggle-warning {
    background-color: #e7c354;
}

.main-toggle-group .toggle.on.toggle-danger {
    background-color: #d12c47;
}

.main-toggle-group .toggle.on.toggle-light {
    background-color: #868e96;
}

.main-toggle-group.style1 .toggle {
    border: 1px solid #eaedf1;
    background-color: #fff;
    border-radius: 15px;
    cursor: pointer;
    transition: all ease 0.3s;
    width: 46px;
}

.main-toggle-group.style1 .toggle.toggle-sm {
    width: 35px;
}

.main-toggle-group.style1 .toggle.toggle-sm span {
    top: unset;
    height: 10px;
    width: 10px;
}

.main-toggle-group.style1 .toggle.toggle-lg {
    width: 70px;
}

.main-toggle-group.style1 .toggle.toggle-lg span {
    height: 25px;
    width: 25px;
}

.main-toggle-group.style1 .toggle span {
    border-radius: 50%;
    height: 17px;
    width: 17px;
    background-color: rgba(134, 142, 150, 0.5);
}

.main-toggle-group.style1 .toggle span::before,
.main-toggle-group.style1 .toggle span::after {
    content: none;
}

.main-toggle-group.style1 .toggle.on {
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.main-toggle-group.style1 .toggle.on.toggle-sm span {
    left: 21px;
}

.main-toggle-group.style1 .toggle.on.toggle-lg span {
    left: 41px;
}

.main-toggle-group.style1 .toggle.on span {
    background-color: #fff;
    left: 25px;
}

.main-toggle-group.style1 .toggle.on.toggle-primary {
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.main-toggle-group.style1 .toggle.on.toggle-secondary {
    background-color: #e984b1;
    border-color: #e984b1;
}

.main-toggle-group.style1 .toggle.on.toggle-success {
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.main-toggle-group.style1 .toggle.on.toggle-info {
    background-color: #59adec;
    border-color: #59adec;
}

.main-toggle-group.style1 .toggle.on.toggle-warning {
    background-color: #e7c354;
    border-color: #e7c354;
}

.main-toggle-group.style1 .toggle.on.toggle-danger {
    background-color: #d12c47;
    border-color: #d12c47;
}

.main-toggle-group.style1 .toggle.on.toggle-light {
    background-color: #868e96;
    border-color: #868e96;
}

.main-toggle-group.style1 .toggle.on.toggle-dark {
    background-color: #343a40;
    border-color: #343a40;
}

.material-switch {
    margin: 10px;
}

.material-switch.toggle-sm>label::before {
    height: 10px;
    width: 27px;
    border-radius: 10px;
}

.material-switch.toggle-sm>label::after {
    height: 17px;
    width: 17px;
    border-radius: 50%;
}

.material-switch.toggle-sm input[type=checkbox]:checked+label::after {
    left: 13px;
}

.material-switch.toggle-lg>label::before {
    height: 27px;
    width: 55px;
    border-radius: 20px;
}

.material-switch.toggle-lg>label::after {
    height: 35px;
    width: 35px;
    margin-top: -8px;
    border-radius: 50%;
}

.material-switch.toggle-lg input[type=checkbox]:checked+label::after {
    left: 77%;
}

@media (prefers-reduced-motion: reduce) {
    .toggle span {
        transition: none;
    }
}

.form-range-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(228, 231, 236, 0.41);
    height: 0.5rem;
    width: 100%;
    vertical-align: middle;
    border-radius: 10px;
}

.form-range-control.form-control:focus {
    border-color: rgba(228, 231, 236, 0.41) !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(228, 231, 236, 0.41);
    height: 0.5rem;
    width: 100%;
    vertical-align: middle;
    border-radius: 10px;
}

.form-range-control::-webkit-slider-thumb {
    cursor: pointer;
}

.form-range-control.range-primary::-webkit-slider-thumb,
.form-range-control.range-secondary::-webkit-slider-thumb,
.form-range-control.range-success::-webkit-slider-thumb,
.form-range-control.range-info::-webkit-slider-thumb,
.form-range-control.range-warning::-webkit-slider-thumb,
.form-range-control.range-danger::-webkit-slider-thumb,
.form-range-control.range-dark::-webkit-slider-thumb,
.form-range-control.range.light::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 10px;
    width: 10px;
    padding: 0.52rem;
    margin-top: -4px;
    border-radius: 50%;
}

.form-range-control.range-primary::-webkit-slider-runnable-track,
.form-range-control.range-secondary::-webkit-slider-runnable-track,
.form-range-control.range-success::-webkit-slider-runnable-track,
.form-range-control.range-info::-webkit-slider-runnable-track,
.form-range-control.range-warning::-webkit-slider-runnable-track,
.form-range-control.range-danger::-webkit-slider-runnable-track,
.form-range-control.range-dark::-webkit-slider-runnable-track,
.form-range-control.range.light::-webkit-slider-runnable-track {
    border-radius: 10px;
    height: 0.5rem;
}

.form-range-control.range-primary::-webkit-slider-thumb {
    background-color: var(--primary-bg-color);
}

.form-range-control.range-primary::-webkit-slider-runnable-track {
    background-color: rgba(var(--primary-bg-color), 0.15);
}

.form-range-control.range-secondary::-webkit-slider-thumb {
    background-color: #e984b1;
}

.form-range-control.range-secondary::-webkit-slider-runnable-track {
    background-color: rgba(233, 132, 177, 0.15);
}

.form-range-control.range-info::-webkit-slider-thumb {
    background-color: #59adec;
}

.form-range-control.range-info::-webkit-slider-runnable-track {
    background-color: rgba(89, 173, 236, 0.15);
}

.form-range-control.range-success::-webkit-slider-thumb {
    background-color: #13bfa6;
}

.form-range-control.range-success::-webkit-slider-runnable-track {
    background-color: rgba(19, 191, 166, 0.15);
}

.form-range-control.range-warning::-webkit-slider-thumb {
    background-color: #e7c354;
}

.form-range-control.range-warning::-webkit-slider-runnable-track {
    background-color: rgba(231, 195, 84, 0.15);
}

.form-range-control.range-dark::-webkit-slider-thumb {
    background-color: #343a40;
}

.form-range-control.range-dark::-webkit-slider-runnable-track {
    background-color: rgba(52, 58, 64, 0.15);
}

.form-range-control.range-danger::-webkit-slider-thumb {
    background-color: #d12c47;
}

.form-range-control.range-danger::-webkit-slider-runnable-track {
    background-color: rgba(209, 44, 71, 0.15);
}

.range-group {
    display: flex;
    align-items: center;
    flex: 1;
}

.color-pickr-btn {
    margin-bottom: 5px;
}

.color-pickr-btn button {
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border: 1px solid #eaedf1;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 5px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.default-pickr {
    margin-bottom: 5px !important;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border: 1px solid #eaedf1;
    border-radius: 5px;
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.main-form-group {
    border: 1px solid #eaedf1;
    border-radius: 5px;
    position: relative;
    transition: all ease 0.3s;
}

.main-form-group:focus-within {
    border-color: var(--primary-bg-color) !important;
}

.main-form-group .form-control {
    border-width: 0px;
    padding: 1rem 0.75rem !important;
    height: 3.75rem;
}

.main-form-group .form-control.text-area {
    height: unset;
}

.main-form-group .form-control::-webkit-input-placeholder {
    color: transparent !important;
}

.main-form-group .form-control::-webkit-textarea-placeholder {
    color: transparent !important;
}

.main-form-group .form-control:focus,
.main-form-group .form-control:not(:placeholder-shown) {
    padding-top: 1.65rem !important;
    padding-bottom: 0.5rem !important;
}

.main-form-group .form-control:focus~.form-label,
.main-form-group .form-control:not(:placeholder-shown)~.form-label {
    transform: translateY(-5px) translateX(-5px) scale(0.8);
    opacity: 0.55;
}

.main-form-group .form-label {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 0.78rem;
    display: inline-block;
    margin: 0px !important;
    transition: transform ease 0.3s;
    pointer-events: none;
}

.main-dropdown-form-demo .dropdown-menu.show {
    padding: 35px 20px;
    z-index: 2 !important;
}

.main-parent {
    position: relative;
}

.main-parent .main-child {
    position: absolute;
    top: 0px;
    right: 5px;
    height: 100%;
}

.was-validated .form-control:valid,
.form-control.is-valid,
input.form-control.parsley-success,
textarea.form-control.parsley-success {
    border-color: #13bfa6 !important;
}

.was-validated .form-control:valid+.invalid-feedback,
.form-control.is-valid,
+.invalid-feedback input.form-control.parsley-success,
+.invalid-feedback textarea.form-control.parsley-success+.invalid-feedback {
    display: none !important;
}

.note-btn-group .btn {
    border: 1px solid #eaedf1 !important;
    border-radius: 3px;
    padding: 0.28rem 0.51rem !important;
}

.note-btn-group .note-dropdown-menu.dropdown-menu>li>a {
    padding: 3px 6px !important;
}

.wizard>.content>.title {
    font-weight: normal !important;
}

.editable-clear-x {
    margin-top: -10px !important;
}

.editable-input {
    display: flex !important;
    align-items: center !important;
}

.editable-input .editable-checklist div span {
    margin-bottom: 0.65rem;
}

.editable-input .editable-checklist div:last-child span {
    margin-bottom: 0px !important;
}

.editable-input .select2-selection__clear {
    margin-right: 3px;
    vertical-align: middle;
    margin-top: 2px;
}

.editable-input .editable-address {
    display: block;
    margin-right: 10px;
}

.editable-input .editable-address span {
    display: inline-block;
    margin-right: 3px;
}

.control-group.form-group>div {
    display: flex;
    align-items: center;
}

.input-group .form-control.is-invalid,
.input-group .form-select.is-invalid,
.was-validated .input-group .form-control:invalid,
.was-validated .input-group .form-select:invalid {
    z-index: 1 !important;
}

.ckbox span,
.rdiobox span {
    margin-left: 5px;
}

.ckbox input[type=checkbox][disabled]+span {
    opacity: 0.75 !important;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.gutters-0 {
    margin-right: 0;
    margin-left: 0;
}

.gutters-0>.col,
.gutters-0>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.gutters-0 .card {
    margin-bottom: 0;
}

.gutters-xs {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
}

.gutters-xs>.col,
.gutters-xs>[class*=col-] {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}

.gutters-xs .card {
    margin-bottom: 0.5rem;
}

.gutters-sm {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.gutters-sm>.col,
.gutters-sm>[class*=col-] {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.gutters-sm .card {
    margin-bottom: 1rem;
}

.gutters-lg {
    margin-right: -1rem;
    margin-left: -1rem;
}

.gutters-lg>.col,
.gutters-lg>[class*=col-] {
    padding-right: 1rem;
    padding-left: 1rem;
}

.gutters-lg .card {
    margin-bottom: 2rem;
}

.gutters-xl {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}

.gutters-xl>.col,
.gutters-xl>[class*=col-] {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.gutters-xl .card {
    margin-bottom: 3rem;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.gutters-0 {
    margin-right: 0;
    margin-left: 0;
}

.gutters-0>.col,
.gutters-0>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.gutters-0 .card {
    margin-bottom: 0;
}

.gutters-xs {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
}

.gutters-xs>.col,
.gutters-xs>[class*=col-] {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}

.gutters-xs .card {
    margin-bottom: 0.5rem;
}

.gutters-sm {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.gutters-sm>.col,
.gutters-sm>[class*=col-] {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.gutters-sm .card {
    margin-bottom: 1rem;
}

.gutters-lg {
    margin-right: -1rem;
    margin-left: -1rem;
}

.gutters-lg>.col,
.gutters-lg>[class*=col-] {
    padding-right: 1rem;
    padding-left: 1rem;
}

.gutters-lg .card {
    margin-bottom: 2rem;
}

.gutters-xl {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}

.gutters-xl>.col,
.gutters-xl>[class*=col-] {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.gutters-xl .card {
    margin-bottom: 3rem;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.gutters-0 {
    margin-right: 0;
    margin-left: 0;
}

.gutters-0>.col,
.gutters-0>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.gutters-0 .card {
    margin-bottom: 0;
}

.gutters-xs {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
}

.gutters-xs>.col,
.gutters-xs>[class*=col-] {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}

.gutters-xs .card {
    margin-bottom: 0.5rem;
}

.gutters-sm {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.gutters-sm>.col,
.gutters-sm>[class*=col-] {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.gutters-sm .card {
    margin-bottom: 1rem;
}

.gutters-lg {
    margin-right: -1rem;
    margin-left: -1rem;
}

.gutters-lg>.col,
.gutters-lg>[class*=col-] {
    padding-right: 1rem;
    padding-left: 1rem;
}

.gutters-lg .card {
    margin-bottom: 2rem;
}

.gutters-xl {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}

.gutters-xl>.col,
.gutters-xl>[class*=col-] {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.gutters-xl .card {
    margin-bottom: 3rem;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group>.form-control,
.input-group>.form-select,
.input-group>.form-file {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group>.form-control:focus,
.input-group>.form-select:focus,
.input-group>.form-file:focus {
    z-index: 3;
}

.input-group>.form-control+.form-control,
.input-group>.form-control+.form-select,
.input-group>.form-control+.form-file {
    margin-left: -1px;
}

.input-group>.form-select+.form-control,
.input-group>.form-select+.form-select,
.input-group>.form-select+.form-file {
    margin-left: -1px;
}

.input-group>.form-file+.form-control,
.input-group>.form-file+.form-select,
.input-group>.form-file+.form-file {
    margin-left: -1px;
}

.input-group>.form-control:not(:last-child),
.input-group>.form-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.form-control:not(:first-child),
.input-group>.form-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group>.form-file {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.input-group>.form-file:not(:last-child) .form-file-label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.form-file:not(:last-child) .form-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.form-file:not(:first-child) .form-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group>.form-file:not(:first-child) .form-file-label::after {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-btn {
    font-size: 0.9375rem;
    border: 0;
}

.input-group-btn>.btn {
    height: 100%;
    border-color: #24c4b4;
}

.input-group-text {
    border-right: 0;
}

.input-group-text {
    border-left: 0;
}

.input-icon .form-group.is-empty {
    margin-bottom: 0;
}

.input-icon .form-group.is-empty .form-control {
    margin-bottom: 0;
}

.input-group-addon {
    padding: 10px 0px 6px 12px;
    width: 38px;
    height: 38px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1 !important;
    color: #555;
    text-align: center;
    border-right: 0;
    border-radius: 4px 0 0 4px;
}

.input-indec .input-group-btn>.btn {
    height: 100%;
    border-color: #eaedf1;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group>.form-control,
.input-group>.form-select,
.input-group>.form-file {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group>.form-control:focus,
.input-group>.form-select:focus,
.input-group>.form-file:focus {
    z-index: 3;
}

.input-group>.form-control+.form-control,
.input-group>.form-control+.form-select,
.input-group>.form-control+.form-file {
    margin-left: -1px;
}

.input-group>.form-select+.form-control,
.input-group>.form-select+.form-select,
.input-group>.form-select+.form-file {
    margin-left: -1px;
}

.input-group>.form-file+.form-control,
.input-group>.form-file+.form-select,
.input-group>.form-file+.form-file {
    margin-left: -1px;
}

.input-group>.form-control:not(:last-child),
.input-group>.form-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.form-control:not(:first-child),
.input-group>.form-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group>.form-file {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.input-group>.form-file:not(:last-child) .form-file-label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.form-file:not(:last-child) .form-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.form-file:not(:first-child) .form-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group>.form-file:not(:first-child) .form-file-label::after {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.275rem 0.75rem;
    margin-bottom: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #86909a;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #eaedf1;
}

.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
    margin-top: 0;
}

.input-group-text .form-control {
    border-left: 0px !important;
}

.input-icon .form-group.is-empty {
    margin-bottom: 0;
}

.input-icon .form-group.is-empty .form-control {
    margin-bottom: 0;
}

.input-group-addon {
    padding: 10px 0px 6px 12px;
    width: 38px;
    height: 38px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1 !important;
    color: #555;
    text-align: center;
    border-right: 0;
    border-radius: 4px 0 0 4px;
}

.input-indec .input-group-btn>.btn {
    height: 100%;
    border-color: #eaedf1;
}

.modal-header h4.modal-title {
    font-weight: 300;
}

.modal-body label {
    font-weight: 400;
}

/*------ Modal -------*/
.modal-open {
    overflow: scroll;
    padding: 0 !important;
    display: block;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    padding-right: 0 !important;
    margin: 0 !important;
}



.modal-open,
.modal-backdrop.fade.show {
    padding-right: 0 !important;
}

.modal-open {
    overflow: auto !important;
    padding: 0px !important;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0px !important;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}


.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer> :not(:first-child) {
    margin-left: 0.25rem;
}

.modal-footer> :not(:last-child) {
    margin-right: 0.25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.model-wrapper-demo {
    padding: 50px 0;
    background: #f1f1f9;
}

.pos-static {
    position: static;
}

.modal.animated .modal-dialog {
    transform: translate(0, 0);
}

.modal.effect-scale .modal-dialog {
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s;
}

.modal.effect-scale.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

.modal.effect-slide-in-right .modal-dialog {
    transform: translateX(20%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.modal.effect-slide-in-right.show .modal-dialog {
    transform: translateX(0);
    opacity: 1;
}

.modal.effect-slide-in-bottom .modal-dialog {
    transform: translateY(20%);
    opacity: 0;
    transition: all 0.3s;
}

.modal.effect-slide-in-bottom.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

.modal.effect-newspaper .modal-dialog {
    transform: scale(0) rotate(720deg);
    opacity: 0;
}

.modal.effect-newspaper.show~.modal-backdrop,
.modal.effect-newspaper .modal-dialog {
    transition: all 0.5s;
}

.modal.effect-newspaper.show .modal-dialog {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.modal.effect-fall {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}

.modal.effect-fall .modal-dialog {
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: translateZ(600px) rotateX(20deg);
    opacity: 0;
}

.modal.effect-fall.show .modal-dialog {
    transition: all 0.3s ease-in;
    transform: translateZ(0px) rotateX(0deg);
    opacity: 1;
}

.modal.effect-flip-horizontal {
    perspective: 1300px;
}

.modal.effect-flip-horizontal .modal-dialog {
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: rotateY(-70deg);
    transition: all 0.3s;
    opacity: 0;
}

.modal.effect-flip-horizontal.show .modal-dialog {
    transform: rotateY(0deg);
    opacity: 1;
}

.modal.effect-flip-vertical {
    perspective: 1300px;
}

.modal.effect-flip-vertical .modal-dialog {
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: rotateX(-70deg);
    transition: all 0.3s;
    opacity: 0;
}

.modal.effect-flip-vertical.show .modal-dialog {
    transform: rotateX(0deg);
    opacity: 1;
}

.modal.effect-super-scaled .modal-dialog {
    transform: scale(2);
    opacity: 0;
    transition: all 0.3s;
}

.modal.effect-super-scaled.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

.modal.effect-sign {
    perspective: 1300px;
}

.modal.effect-sign .modal-dialog {
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: rotateX(-60deg);
    transform-origin: 50% 0;
    opacity: 0;
    transition: all 0.3s;
}

.modal.effect-sign.show .modal-dialog {
    transform: rotateX(0deg);
    opacity: 1;
}

.modal.effect-rotate-bottom {
    perspective: 1300px;
}


.modal-body {
    overflow-y: inherit !important;
}

.modal-open .select2-dropdown,
.modal-open .select2-container--open .select2-dropdown--below {
    z-index: 9999 !important;
}

.nav-sidebar .list-unstyled li:last-child {
    border-bottom: 0px;
}

.nav-item.show .dropdown-menu.dropdown-menu-arrow.show {
    top: -1px !important;
}

/*------ Navigation -------*/
.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav.nav-pills.nav-pills-circle .nav-link:hover,
.nav.nav-pills.nav-pills-circle .nav-link:focus {
    color: var(--primary-bg-color) !important;
}

.nav.nav-pills.nav-pills-circle .nav-link.active {
    color: #fff !important;
}

.nav-link {
    display: block;
    padding: 0.2rem 0.9rem;
}

.nav-tabs {
    border-bottom: 1px solid #eaedf1;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
    position: relative;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link.active {
    border: 0;
}

.nav-tabs .nav-item.show .nav-link {
    border: 0;
}

.nav-tabs .dropdown-menu {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
}

.nav-fill .nav-item {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.nav.nav-pills.nav-stacked.labels-info p {
    color: #9d9f9e;
    font-size: 11px;
    margin-bottom: 0;
    padding: 0 22px;
}

.nav-item1 {
    padding: 10px;
    min-width: 2rem;
    transition: 0.3s color;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.nav1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px;
    margin-bottom: 0;
    list-style: none;
    background: transparent;
    border: 1px solid #eaedf1;
    border-radius: 5px;
}

.nav1.nav-column .nav-item1 {
    padding: 0px;
    margin-top: 5px;
}

.nav1.nav-column .nav-link {
    border-right: none !important;
    width: 100%;
    padding: 6px;
    border-radius: 5px;
}

.nav1.nav-column .nav-link svg {
    margin-right: 5px;
    transition: all ease 0.3s;
}

.nav1.nav-column .nav-link:hover,
.nav1.nav-column .nav-link:focus,
.nav1.nav-column .nav-link:active {
    color: var(--primary-bg-color) !important;
}

.nav1.nav-column .nav-link:hover svg,
.nav1.nav-column .nav-link:focus svg,
.nav1.nav-column .nav-link:active svg {
    fill: var(--primary-bg-color) !important;
}

.nav1.nav-column .nav-link.active {
    color: #fff !important;
    background-color: var(--primary-bg-color);
}

.nav1.nav-column .nav-link.active svg {
    fill: #fff !important;
}

.nav1.colored .nav-link {
    color: #e4e7ecc5;
}

.nav1.colored .nav-link.disabled {
    color: rgba(255, 255, 255, 0.4);
}

.nav1.colored .nav-link.disabled:hover,
.nav1.colored .nav-link.disabled:focus {
    cursor: not-allowed !important;
}

.nav1.colored .nav-link:hover,
.nav1.colored .nav-link:focus,
.nav1.colored .nav-link.active {
    color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary-bg-color) !important;
}

.nav-item1:hover:not(.disabled),
.nav-item1.active {
    color: #fff;
}

.nav-item1 .nav-link.disabled {
    opacity: 6;
    cursor: default-color;
    pointer-events: none;
}

.nav-item1 .nav-link.disable {
    opacity: 3;
}

.nav-tabs {
    border-bottom: 1px solid #eaedf1;
}

.nav-tabs .nav-item1 {
    margin-bottom: -1px;
    position: relative;
}

.nav-tabs .nav-item1.nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.nav-tabs .nav-item1 .nav-link {
    border: 0;
    color: inherit;
    margin-bottom: -1px;
    color: #76839a;
    transition: 0.3s border-color;
    font-weight: 400;
}

.nav-tabs .nav-item1 .nav-link:hover:not(.disabled),
.nav-tabs .nav-item1 .nav-link.active {
    color: #fff !important;
}

.nav-tabs .nav-item1 .nav-link.disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.nav-tabs .nav-item1 i {
    margin-right: 0.25rem;
    line-height: 1;
    font-size: 0rem;
    width: 0.875rem;
    vertical-align: baseline;
    display: inline-block;
    margin-right: 10px;
}

.nav-tabs .nav-item1:hover .nav-submenu {
    display: block;
}

.nav-tabs .nav-submenu .nav-item1 {
    display: block;
    padding: 0.5rem 1rem;
    color: #9aa0ac;
    margin: 0 !important;
    cursor: pointer;
    transition: 0.3s background;
}

.nav-tabs .nav-submenu .nav-item1.active {
    color: #467fcf;
}

.nav-tabs .nav-submenu .nav-item1:hover {
    color: #6e7687;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.024);
}

.nav-unread {
    position: absolute;
    top: 0.4rem;
    background: #ecd938;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.nav-unread.badge {
    position: absolute;
    top: 4px;
    left: 26px;
    display: block !important;
    padding: 3px 5px !important;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    font-size: 11px;
}

.nav-link {
    min-width: 2rem;
    transition: 0.3s color;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #495057;
    transition: all ease 0.3s;
}

.nav-link.icon {
    margin: 5px;
    padding: 12px;
    text-align: center;
    height: 2.5rem;
    font-size: 1.2rem;
    position: relative;
}

.nav-link.icon i {
    font-size: 20px;
}

.nav-link.icon svg {
    width: 1.3rem;
    fill: #495584 !important;
}

.nav-link.active,
.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

.nav-link.disabled.hover,
.nav-link.disabled.focus {
    color: #707070;
}

.nav-basic .nav-link.active,
.nav-basic .nav-link:hover,
.nav-basic .nav-link:focus {
    color: var(--primary-bg-color) !important;
}

.tabs-menu4 .nav-link:hover {
    color: var(--primary-bg-color) !important;
}

@media (max-width: 768px) {
    .nav-link.icon {
        padding: 5px !important;
    }
}

.nav-item {
    min-width: 2rem;
    transition: 0.3s color;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.nav-tabs {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
}

.nav-tabs .nav-link {
    border: 0;
    color: inherit;
    color: #76839a;
    transition: 0.3s border-color;
    font-weight: 500;
    padding: 1rem 1.8rem;
    font-size: 13px;
    text-align: center;
}

.nav-tabs .nav-link:hover:not(.disabled),
.nav-tabs .nav-link.active {
    color: #fff;
}

.nav-tabs .nav-link.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
    color: #868e96;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-item:hover .nav-submenu {
    display: block;
}

.nav-link:hover .dropdown-menu,
.nav-item:hover .dropdown-menu,
.nav-link:hover .dropdown-menu.show {
    display: block;
}

@media (max-width: 1279px) and (min-width: 992px) {
    .nav-tabs .nav-link {
        padding: 1rem 1.8rem;
        font-size: 13px;
    }
}

.nav-tabs .nav-item i {
    margin-right: 0.25rem;
    line-height: 1;
    font-size: 0rem;
    width: 0.875rem;
    vertical-align: baseline;
    display: inline-block;
    margin-right: 10px;
}

.nav-tabs .nav-submenu {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #eaedf1;
    border-top: none;
    z-index: 10;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    min-width: 10rem;
    border-radius: 0 0 3px 3px;
}

.nav-tabs .nav-submenu .nav-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #9aa0ac;
    margin: 0 !important;
    cursor: pointer;
    transition: 0.3s background;
}

.nav-tabs .nav-submenu .nav-item.active {
    color: #467fcf;
}

.nav-tabs .nav-submenu .nav-item:hover {
    color: #6e7687;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.024);
}

.hor-menu .nav-badge {
    border-radius: 30px;
    position: absolute;
    top: 3px;
    right: 14px;
    padding: 0.2em 0.4em;
    font-size: 12px;
}

@media (max-width: 992px) {
    .hor-menu .nav-badge {
        right: auto !important;
    }
}

#smartwizard .nav.nav-tabs.step-anchor {
    border-bottom: 0 !important;
    padding: 30px;
}

#smartwizard .nav-tabs {
    border-top: 0 !important;
}

#smartwizard .nav-link {
    padding: 8px 40px;
    border-radius: 5px !important;
}

#basicwizard .nav-tabs .nav-link {
    padding: 0.8rem 0.8rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.page {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
}

body.fixed-header .page {
    padding-top: 4.5rem;
}

@media (min-width: 1600px) {
    body.aside-opened .page {
        margin-right: 22rem;
    }
}

.page-main {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.page-content {
    margin: 0.75rem 0;
}

@media (min-width: 768px) {
    .page-content {
        margin: 1.5rem 0;
    }
}

.example .pagination {
    margin-bottom: 0;
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 3px;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    background-color: #fff;
    border: 1px solid #eaedf1;
    color: #495057;
}

.page-link:hover {
    z-index: 2;
    text-decoration: none;
    background-color: var(--primary-bg-color);
    color: #fff;
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: none;
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
}

.page-item.disabled .page-link {
    color: #ced4da;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #eaedf1;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.page-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0.75rem 0rem 0.75rem;
    -ms-flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    /* border-radius: 7px; */
    position: relative;
    min-height: 50px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.page-title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    margin-bottom: 0.2rem;
}

.page-title-icon {
    color: #9aa0ac;
    font-size: 1.25rem;
}

.page-subtitle {
    font-size: 0.8125rem;
    color: #c0a0f1;
    margin-left: 2rem;
    position: relative;
}

.page-subtitle a {
    color: inherit;
}

.page-options {
    margin-left: auto;
}

.page-header .breadcrumb {
    font-size: 14px;
    padding-left: 0 !important;
}

.page-breadcrumb {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    background: none;
    padding: 0;
    margin: 1rem 0 0;
    font-size: 0.875rem;
}

.page-description {
    margin: 0.25rem 0 0;
    color: #6e7687;
}

.page-description a {
    color: inherit;
}

.page-single {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .page-breadcrumb {
        margin: -0.5rem 0 0;
    }
}

.page-breadcrumb .breadcrumb-item {
    color: #9aa0ac;
}

.page-breadcrumb .breadcrumb-item.active {
    color: #6e7687;
}

.pagination-simple .page-item .page-link {
    background: none;
    border: none;
}

.pagination-simple .page-item.active .page-link {
    color: #495057;
    font-weight: 700;
}

.pagination-pager .page-prev {
    margin-right: auto;
}

.pagination-pager .page-next {
    margin-left: auto;
}

.page-total-text {
    margin-right: 1rem;
    -ms-flex-item-align: center;
    align-self: center;
    color: #6e7687;
}

.page-item.active .page-link {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.panel-heading-landing-box {
    background: var(--primary-bg-color);
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-top: none;
}

.panel-title-landing {
    color: var(--primary-bg-color);
    font-size: 35px;
    font-weight: bold;
}

.panel-body-landing {
    border: solid 2px var(--primary-bg-color);
    border-top: none;
    border-bottom: none;
    text-align: center;
    background: #fff;
}

.panel-footer-landing {
    border: solid 2px var(--primary-bg-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: none;
    text-align: center;
    background: #f7f7f7;
}

.panel-body {
    padding: 15px;
}

.panel-body .lead {
    font-size: 15px;
    margin-bottom: 0;
    padding: 10px 0;
}

.panel-body .lead strong {
    font-size: 30px;
    margin-bottom: 0;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #fff;
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
    border-right: 1px solid #eaedf1;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel.price .btn {
    box-shadow: 0 -1px 0px rgba(50, 50, 50, 0.2) inset;
    border: 0px;
}

.panel-group .panel {
    box-shadow: none;
    border-color: #eaedf1;
}

.panel-default>.panel-heading {
    padding: 0;
    background-color: #fff;
}

.panel-title {
    font-size: 14px;
    margin-bottom: 0;
}

.panel-title>a {
    display: block;
    padding: 16px;
    text-decoration: none;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: 1px solid #eaedf1;
    border-top: 0;
}

.panel1 {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #fff;
    background: none;
    box-shadow: none;
}

.panel1:last-child {
    border-bottom: none;
}

.panel-group1>.panel1:first-child .panel-heading1 {
    border-radius: 4px 4px 0 0;
}

.panel-group1 .panel1 {
    border-radius: 0;
}

.panel-body1 {
    padding: 10px;
    background: #fff;
}

.panel-title1 {
    font-size: 14px;
    margin-bottom: 0;
}

.panel-group1 .panel1+.panel1 {
    margin-top: 0;
}

.panel-heading1 {
    border-radius: 5px;
}

.panel-group1 .panel-body {
    border: 1px solid #eaedf1;
    border-radius: 0px 0px 5px 5px;
}

.panel-title1 a {
    display: block;
    color: var(--primary-bg-color) !important;
    padding: 16px;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
}

.panel1:last-child .panel-body1 {
    border-radius: 0 0 4px 4px;
}

.panel1:last-child .panel-heading1 {
    border-radius: 0 0 4px 4px;
    transition: border-radius 0.3s linear 0.2s;
}

.panel1:last-child .panel-heading1.active {
    border-radius: 0;
    transition: border-radius linear 0s;
}


.panel-heading1 a.collapsed:before {
    content: "\e9af";
    position: absolute;
    font-family: "feather" !important;
    right: 10px;
    top: 13px;
    font-size: 20px;
    transition: all 0.5s;
    transform: scale(1);
}

.panel-heading1 a:before {
    content: "\e994";
    position: absolute;
    font-family: "feather" !important;
    right: 10px;
    top: 13px;
    font-size: 20px;
    transition: all 0.5s;
    transform: scale(1);
}

.panel-heading1.active a:before {
    content: " ";
    transition: all 0.5s;
    transform: scale(0);
}

.panel-group1 p:last-child {
    margin-bottom: 0;
}

#bs-collapse .panel-heading1 a:after {
    content: "\f01a";
    font-size: 24px;
    position: absolute;
    font-family: "FontAwesome";
    right: 5px;
    top: 10px;
    transform: scale(0);
    transition: all 0.5s;
}

#bs-collapse .panel-heading1.active a:after {
    content: "\f01a";
    transform: scale(1);
    transition: all 0.5s;
}

/*--------panel----------*/
.expanel-default {
    border: #eaedf1;
}

.expanel-secondary {
    border: #e984b1;
}

.expanel-success {
    border: #4ecc48;
}

.expanel-danger {
    border: #d12c47;
}

.expanel-primary>.expanel-heading {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.expanel-info>.expanel-heading {
    color: #fff;
    background-color: #59adec;
    border-color: #59adec;
}

.expanel-warning>.expanel-heading {
    color: #fff;
    background-color: #e7c354;
    border-color: #e7c354;
}

.expanel-dark>.expanel-heading {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.expanel-light>.expanel-heading {
    color: #fff;
    background-color: #868e96;
    border-color: #868e96;
}

.expanel-success>.expanel-heading {
    color: #fff;
    background-color: #13bfa6;
    border-color: #13bfa6;
}

.expanel-secondary>.expanel-heading {
    color: #fff;
    background-color: #e984b1;
    border-color: #e984b1;
}

.expanel-success>.expanel-heading {
    color: #fff;
    background-color: #4ecc48;
    border-color: #4ecc48;
}

.expanel-danger>.expanel-heading {
    color: #fff;
    background-color: #d12c47;
    border-color: #d12c47;
}

.expanel-warning>.expanel-heading {
    color: #fff;
    background-color: #FBB034;
    border-color: #FBB034;
}

.expanel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.expanel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #eaedf1;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.01);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.01);
}

.expanel-default>.expanel-heading {
    background-color: #eaedf1;
    border-color: #eaedf1;
}

.expanel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid #eaedf1;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.expanel-footer {
    padding: 10px 15px;
    background-color: #eaedf1;
    border-top: 1px solid #eaedf1;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.expanel-body {
    padding: 15px !important;
}

progress {
    vertical-align: baseline;
}

/*-----progress-----*/
.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.703125rem;
    background-color: #ebecf5;
    border-radius: 7px;
    box-shadow: 0 5px 10px rgba(227, 228, 237, 0.3);
    position: relative;
}

.mixed-color-progress .bar-end {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    border-radius: 7px;
    transition: width 0.6s ease;
}

.current-progressbar {
    margin-top: 14.5px;
}

.progress-content {
    margin-bottom: 16.5px;
}

.progress-content:last-child {
    margin-bottom: 0;
}

@media screen and (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) !important;
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

/*------ progress sizes ------*/
.progress-xs {
    height: 0.25rem;
}

.progress-xs .progress-bar {
    height: 0.25rem;
}

.progress-sm {
    height: 0.5rem;
}

.progress-sm .progress-bar {
    height: 0.5rem;
}

.progress-lg {
    height: 1.25rem;
}

.progress-lg .progress-bar {
    height: 1.25rem;
}


/*------ Tables -----*/
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}


.table tbody+tbody {
    border-top: 2px solid #eaedf1;
}

.table .table {
    background-color: var(--primary01);
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered,
.table-bordered th,
.table-bordered td {
    border: 1px solid #eaedf1 !important;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 1px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody+tbody {
    border: 0;
}

.table-hover tbody tr:hover,
.table-hover tbody th {
    background-color: var(--primary01);
}

.table-primary {
    background-color: #d2cdf9;
}

.table-primary>th,
.table-primary>td {
    background-color: #d2cdf9;
}

.table-hover .table-primary:hover {
    background-color: #b7cded;
}

.table-hover .table-primary:hover>td,
.table-hover .table-primary:hover>th {
    background-color: #b7cded;
}

.table-secondary {
    background-color: #fdccdb;
}

.table-secondary>th,
.table-secondary>td {
    background-color: #fdccdb;
}

.table-hover .table-secondary:hover {
    background-color: #cfd2d6;
}

.table-hover .table-secondary:hover>td,
.table-hover .table-secondary:hover>th {
    background-color: #cfd2d6;
}

.table-success {
    background-color: #d2ecb8;
}

.table-success>th,
.table-success>td {
    background-color: #d2ecb8;
}

.table-hover .table-success:hover {
    background-color: #c5e7a4;
}

.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
    background-color: #c5e7a4;
}

.table-info {
    background-color: #cbe7fb;
}

.table-info>th,
.table-info>td {
    background-color: #cbe7fb;
}

.table-hover .table-info:hover {
    background-color: #b3dcf9;
}

.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
    background-color: #b3dcf9;
}

.table-warning {
    background-color: #f1d5a7;
}

.table-warning>th,
.table-warning>td {
    background-color: #f1d5a7;
}

.table-hover .table-warning:hover {
    background-color: #fae8a4;
}

.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
    background-color: #fae8a4;
}

.table-danger {
    background-color: #f1c1c0;
}

.table-danger>th,
.table-danger>td {
    background-color: #f1c1c0;
}

.table-hover .table-danger:hover {
    background-color: #ecacab;
}

.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
    background-color: #ecacab;
}

.table-light {
    background-color: #fdfdfe;
}

.table-light>th,
.table-light>td {
    background-color: #fdfdfe;
}

.table-hover .table-light:hover {
    background-color: #ececf6;
}

.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
    background-color: #ececf6;
}

.table-dark {
    background-color: #c6c8ca;
}

.table-dark>th,
.table-dark>td {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
    background-color: #b9bbbe;
}

.table-active {
    background-color: rgba(0, 0, 0, 0.04);
}

.table-active>th,
.table-active>td {
    background-color: rgba(0, 0, 0, 0.04);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
    background-color: rgba(0, 0, 0, 0.04);
}

.table .thead-dark th {
    color: var(--primary01);
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: var(--primary01);
    border-color: #eaedf1;
}

.table-dark {
    color: var(--primary01);
    background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
    border-color: #32383e;
}

.table-dark.table-bordered {
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}


.table-inbox {
    border: 1px solid #eaedf1;
    margin-bottom: 0;
}

.table-inbox tr {
    border-bottom: 1px solid rgba(238, 238, 238, 0.7);
}

.table-inbox tr:last-child {
    border-bottom: 1px solid #eaedf1;
}

.table-inbox tr td:hover {
    cursor: pointer;
}

.table-inbox tr td .fa-star.inbox-started,
.table-inbox tr td .fa-star:hover {
    color: #f78a09;
}

.table-inbox tr.unread td {
    font-weight: 600 !important;
}

.table-inbox tr:last-child {
    border-bottom-width: 0px !important;
}

.table th {
    color: #2e3138;
    font-size: 0.875rem;
    font-weight: 400;
}

.table-md th,
.table-md td {
    padding: 0.5rem;
}

.table-vcenter td,
.table-vcenter th {
    vertical-align: middle;
    border-top: 1px solid #eaedf1;
}

.table-secondary tbody+tbody,
.table-secondary td,
.table-secondary th,
.table-secondary thead th {
    border-color: rgba(255, 255, 255, 0.2);
}

.table-primary tbody+tbody,
.table-primary td,
.table-primary th,
.table-primary thead th {
    border-color: rgba(255, 255, 255, 0.2);
}

.table-center td,
.table-center th {
    text-align: center;
}

.table-calendar {
    margin: 0 0 0.75rem;
}

.table-calendar td,
.table-calendar th {
    border: 0;
    text-align: center;
    padding: 0 !important;
    width: 14.28571429%;
    line-height: 2.5rem;
}

.table-calendar td {
    border-top: 0;
}

.table-calendar-link {
    line-height: 2rem;
    min-width: calc(2rem + 2px);
    display: inline-block;
    border-radius: 3px;
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    transition: 0.3s background, 0.3s color;
    position: relative;
}

.table-calendar-link:before {
    content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0.25rem;
    top: 0.25rem;
    border-radius: 50px;
    background: #467fcf;
}

.table-calendar-link:hover {
    color: #fff;
    text-decoration: none;
    background: #467fcf;
    transition: 0.3s background;
}

.table-calendar-link:hover:before {
    background: #fff;
}

.table-header {
    cursor: pointer;
    transition: 0.3s color;
}

.table-header:hover {
    color: #495057 !important;
}

.table-header:after {
    content: "\f0dc";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

.table-header-asc {
    color: #495057 !important;
}

.table-header-asc:after {
    content: "\f0de";
}

.table-header-desc {
    color: #495057 !important;
}

.table-header-desc:after {
    content: "\f0dd";
}

table {
    border-collapse: collapse;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-color: #eaedf1;
    vertical-align:top;
}

.table> :not(caption)>*>* {
    background: transparent;
    box-shadow: none;
    border-bottom-width: inherit;
}

.dropdown-item {
    transition: all ease-in-out 0.3s;
}

.dropdown-item:focus,
.dropdown-item.active {
    background-color: var(--primary-bg-color);
    color: #fff !important;
}

div.dt-button-collection .dt-button {
    border-bottom: 1px solid rgba(var(--primary-bg-color), 0.35);
    color: var(--primary-bg-color);
}

div.dt-button-collection .dt-button:last-child {
    border-bottom: none !important;
}

.table.editable-table td {
    vertical-align: middle;
}

.table.editable-table input,
.table.editable-table select {
    border: 1px solid #eaedf1;
    height: 40px;
    width: 100%;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border-radius: 7px;
    font-size: 0.75rem;
    outline: none;
    transition: all ease 0.3s;
}

.table.editable-table input:focus,
.table.editable-table select:focus {
    border-color: var(--primary-bg-color) !important;
}

.table.editable-table option {
    font-size: 0.85rem;
}

#example3,
#example2 {
    width: 100% !important;
}

@media (max-width: 575.98px) {
    div.dataTables_wrapper div.dataTables_length label {
        justify-content: center !important;
    }

    div.dataTables_wrapper div.dataTables_filter {
        text-align: center !important;
    }
}

.dataTables_filter .form-control {
    border-radius: 4px;
    height: 34px;
}

.table> :not(:first-child) {
    border-top: 0px solid currentColor;
}

/*---- Tags-----*/
.tag {
    font-size: 0.75rem;
    color: #495057;
    background-color: rgba(228, 231, 236, 0.55);
    border-radius: 5px;
    padding: 0 0.5rem;
    line-height: 2em;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: default;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tag.tag-outline-primary {
    border-color: var(--primary-bg-color) !important;
    color: var(--primary-bg-color);
}

.tag.tag-outline-primary i {
    color: var(--primary-bg-color);
}

.tag.tag-outline-secondary {
    border-color: #e984b1 !important;
    color: #e984b1;
}

.tag.tag-outline-secondary i {
    color: #e984b1;
}

.tag.tag-outline-success {
    border-color: #13bfa6 !important;
    color: #13bfa6;
}

.tag.tag-outline-success i {
    color: #13bfa6;
}

.tag.tag-outline-info {
    border-color: #59adec !important;
    color: #59adec;
}

.tag.tag-outline-info i {
    color: #59adec;
}

.tag.tag-outline-warning {
    border-color: #e7c354 !important;
    color: #e7c354;
}

.tag.tag-outline-warning i {
    color: #e7c354;
}

.tag.tag-outline-danger {
    border-color: #d12c47 !important;
    color: #d12c47;
}

.tag.tag-outline-danger i {
    color: #d12c47;
}

.tag.tag-outline-light {
    border-color: #e4e7ecc5 !important;
    color: #e4e7ecc5;
}

.tag.tag-outline-light i {
    color: #e4e7ecc5;
}

.tag.tag-outline-dark {
    border-color: #343a40 !important;
    color: #343a40;
}

.tag.tag-outline-dark i {
    color: #343a40;
}

a.tag {
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s color, 0.3s background;
}

a.tag:hover {
    background-color: rgba(228, 231, 236, 0.65);
    color: inherit;
}

.tag-addon {
    display: inline-block;
    padding: 0 0.5rem;
    color: inherit;
    text-decoration: none;
    background-color: rgba(228, 231, 236, 0.65);
    margin: 0 -0.5rem 0 0.5rem;
    text-align: center;
    min-width: 1.5rem;
}

.tag-addon:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.tag-addon i {
    vertical-align: middle;
    margin: 0 -0.25rem;
}

a.tag-addon {
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s color, 0.3s background;
}

a.tag-addon:hover {
    background-color: rgba(228, 231, 236, 0.7);
    color: inherit;
}

.tag-avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 3px 0 0 3px;
    margin: 0 0.5rem 0 -0.5rem;
}

.tag-blue {
    background-color: #467fcf !important;
    color: #fff;
}

.tag-indigo {
    background-color: #6574cd !important;
    color: #fff;
}

.tag-purple {
    background-color: #661fd6 !important;
    color: #fff;
}

.tag-pink {
    background-color: #f58598 !important;
    color: #fff;
}

.tag-red {
    background-color: #e32f2f !important;
    color: #fff;
}

.tag-orange {
    background-color: #fc7303 !important;
    color: #fff;
}

.tag-yellow {
    background-color: #FBB034 !important;
    color: #fff;
}

.tag-green {
    background-color: #4ecc48 !important;
    color: #fff;
}

.tag-teal {
    background-color: #2bcbba !important;
    color: #fff;
}

.tag-cyan {
    background-color: #17a2b8 !important;
    color: #fff;
}

.tag-white {
    background-color: #fff !important;
    color: #fff;
}

.tag-gray {
    background-color: #868e96 !important;
    color: #fff;
}

.tag-gray-dark {
    background-color: #343a40 !important;
    color: #fff;
}

.tag-azure {
    background-color: #45aaf2 !important;
    color: #fff;
}

.tag-lime {
    background-color: #7bd235 !important;
    color: #fff;
}

.tag-primary {
    background-color: var(--primary-bg-color) !important;
    color: #fff;
}

.tag-secondary {
    background-color: #e984b1 !important;
    color: #fff;
}

.tag-success {
    background-color: #4ecc48 !important;
    color: #fff;
}

.tag-info {
    background-color: #45aaf2 !important;
    color: #fff;
}

.tag-warning {
    background-color: #e7c354 !important;
    color: #fff;
}

.tag-danger {
    background-color: #d12c47 !important;
    color: #fff;
}

.tag-light {
    background-color: #e4e7ecc5 !important;
    color: #444546;
}

.tag-dark {
    background-color: #343a40 !important;
    color: #fff;
}

.tag-rounded {
    border-radius: 50px;
}

.tag-rounded .tag-avatar {
    border-radius: 50px;
}

.tags {
    margin-bottom: -0.5rem;
    font-size: 0;
}

.tags>.tag {
    margin-bottom: 0.5rem;
}

.tags>.tag:not(:last-child) {
    margin-right: 0.5rem;
}

.badge.bg-primary {
    color: #fff;
    background-color: var(--primary-bg-color);
}

.badge.bg-secondary {
    color: #fff;
    background-color: #e984b1;
}

.badge.bg-success {
    color: #fff;
    background-color: #13bfa6;
}

.badge.bg-info {
    color: #fff;
    background-color: #59adec;
}

.badge.bg-warning {
    color: #fff;
    background-color: #e7c354;
}

.badge.bg-danger {
    color: #fff;
    background-color: #d12c47;
}

.badge.bg-light {
    color: #444546 !important;
    background-color: #e4e7ecc5 !important;
}

.badge.bg-dark {
    color: #fff;
    background-color: #343a40;
}

/*---------Thumbnails----------*/
.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #eaedf1;
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
    border-radius: 7px;
}

.thumbnail a>img,
.thumbnail>img {
    margin-right: auto;
    margin-left: auto;
}

.thumbnail p:last-child {
    margin-bottom: 0;
}

.thumbimg {
    height: 100%;
    width: 100%;
    display: block;
    border-radius: 7px;
}

.thumbnail .caption {
    padding: 15px;
}

/*---- Opacity -----*/
.op-0 {
    opacity: 0;
}

.op-0-1 {
    opacity: 0.1;
}

.op-0-2 {
    opacity: 0.2;
}

.op-0-3 {
    opacity: 0.3;
}

.op-0-4 {
    opacity: 0.4;
}

.op-0-5 {
    opacity: 0.5;
}

.op-0-6 {
    opacity: 0.6;
}

.op-0-7 {
    opacity: 0.7;
}

.op-0-8 {
    opacity: 0.8;
}

.op-0-9 {
    opacity: 0.9;
}

.op-1 {
    opacity: 1;
}

.op-0-125 {
    opacity: 0.125;
}

.op-0-225 {
    opacity: 0.225;
}

.op-0-325 {
    opacity: 0.325;
}

.op-0-425 {
    opacity: 0.425;
}

.op-0-525 {
    opacity: 0.525;
}

.op-0-625 {
    opacity: 0.625;
}

.op-0-725 {
    opacity: 0.725;
}

.op-0-825 {
    opacity: 0.825;
}

.op-0-925 {
    opacity: 0.925;
}

.op-0-15 {
    opacity: 0.15;
}

.op-0-25 {
    opacity: 0.25;
}

.op-0-35 {
    opacity: 0.35;
}

.op-0-45 {
    opacity: 0.45;
}

.op-0-55 {
    opacity: 0.55;
}

.op-0-65 {
    opacity: 0.65;
}

.op-0-75 {
    opacity: 0.75;
}

.op-0-85 {
    opacity: 0.85;
}

.op-0-95 {
    opacity: 0.95;
}

.op-0-175 {
    opacity: 0.175;
}

.op-0-275 {
    opacity: 0.275;
}

.op-0-375 {
    opacity: 0.375;
}

.op-0-475 {
    opacity: 0.475;
}

.op-0-575 {
    opacity: 0.575;
}

.op-0-675 {
    opacity: 0.675;
}

.op-0-775 {
    opacity: 0.775;
}

.op-0-875 {
    opacity: 0.875;
}

.op-0-975 {
    opacity: 0.975;
}

.op-0-i {
    opacity: 0 !important;
}

.op-0-1-i {
    opacity: 0.1 !important;
}

.op-0-2-i {
    opacity: 0.2 !important;
}

.op-0-3-i {
    opacity: 0.3 !important;
}

.op-0-4-i {
    opacity: 0.4 !important;
}

.op-0-5-i {
    opacity: 0.5 !important;
}

.op-0-6-i {
    opacity: 0.6 !important;
}

.op-0-7-i {
    opacity: 0.7 !important;
}

.op-0-8-i {
    opacity: 0.8 !important;
}

.op-0-9-i {
    opacity: 0.9 !important;
}

.op-1-i {
    opacity: 1 !important;
}

.op-0-125-i {
    opacity: 0.125 !important;
}

.op-0-225-i {
    opacity: 0.225 !important;
}

.op-0-325-i {
    opacity: 0.325 !important;
}

.op-0-425-i {
    opacity: 0.425 !important;
}

.op-0-525-i {
    opacity: 0.525 !important;
}

.op-0-625-i {
    opacity: 0.625 !important;
}

.op-0-725-i {
    opacity: 0.725 !important;
}

.op-0-825-i {
    opacity: 0.825 !important;
}

.op-0-925-i {
    opacity: 0.925 !important;
}

.op-0-15-i {
    opacity: 0.15 !important;
}

.op-0-25-i {
    opacity: 0.25 !important;
}

.op-0-35-i {
    opacity: 0.35 !important;
}

.op-0-45-i {
    opacity: 0.45 !important;
}

.op-0-55-i {
    opacity: 0.55 !important;
}

.op-0-65-i {
    opacity: 0.65 !important;
}

.op-0-75-i {
    opacity: 0.75 !important;
}

.op-0-85-i {
    opacity: 0.85 !important;
}

.op-0-95-i {
    opacity: 0.95 !important;
}

.op-0-175-i {
    opacity: 0.175 !important;
}

.op-0-275-i {
    opacity: 0.275 !important;
}

.op-0-375-i {
    opacity: 0.375 !important;
}

.op-0-475-i {
    opacity: 0.475 !important;
}

.op-0-575-i {
    opacity: 0.575 !important;
}

.op-0-675-i {
    opacity: 0.675 !important;
}

.op-0-775-i {
    opacity: 0.775 !important;
}

.op-0-875-i {
    opacity: 0.875 !important;
}

.op-0-975-i {
    opacity: 0.975 !important;
}

@media (min-width: 480px) {
    .op-xs-0 {
        opacity: 0;
    }

    .op-xs-0-f {
        opacity: 0 !important;
    }

    .op-xs-1 {
        opacity: 0.1;
    }

    .op-xs-1-f {
        opacity: 0.1 !important;
    }

    .op-xs-2 {
        opacity: 0.2;
    }

    .op-xs-2-f {
        opacity: 0.2 !important;
    }

    .op-xs-3 {
        opacity: 0.3;
    }

    .op-xs-3-f {
        opacity: 0.3 !important;
    }

    .op-xs-4 {
        opacity: 0.4;
    }

    .op-xs-4-f {
        opacity: 0.4 !important;
    }

    .op-xs-5 {
        opacity: 0.5;
    }

    .op-xs-5-f {
        opacity: 0.5 !important;
    }

    .op-xs-6 {
        opacity: 0.6;
    }

    .op-xs-6-f {
        opacity: 0.6 !important;
    }

    .op-xs-7 {
        opacity: 0.7;
    }

    .op-xs-7-f {
        opacity: 0.7 !important;
    }

    .op-xs-8 {
        opacity: 0.8;
    }

    .op-xs-8-f {
        opacity: 0.8 !important;
    }

    .op-xs-9 {
        opacity: 0.9;
    }

    .op-xs-9-f {
        opacity: 0.9 !important;
    }
}

@media (min-width: 576px) {
    .op-sm-0 {
        opacity: 0;
    }

    .op-sm-0-f {
        opacity: 0 !important;
    }

    .op-sm-1 {
        opacity: 0.1;
    }

    .op-sm-1-f {
        opacity: 0.1 !important;
    }

    .op-sm-2 {
        opacity: 0.2;
    }

    .op-sm-2-f {
        opacity: 0.2 !important;
    }

    .op-sm-3 {
        opacity: 0.3;
    }

    .op-sm-3-f {
        opacity: 0.3 !important;
    }

    .op-sm-4 {
        opacity: 0.4;
    }

    .op-sm-4-f {
        opacity: 0.4 !important;
    }

    .op-sm-5 {
        opacity: 0.5;
    }

    .op-sm-5-f {
        opacity: 0.5 !important;
    }

    .op-sm-6 {
        opacity: 0.6;
    }

    .op-sm-6-f {
        opacity: 0.6 !important;
    }

    .op-sm-7 {
        opacity: 0.7;
    }

    .op-sm-7-f {
        opacity: 0.7 !important;
    }

    .op-sm-8 {
        opacity: 0.8;
    }

    .op-sm-8-f {
        opacity: 0.8 !important;
    }

    .op-sm-9 {
        opacity: 0.9;
    }

    .op-sm-9-f {
        opacity: 0.9 !important;
    }
}

@media (min-width: 768px) {
    .op-md-0 {
        opacity: 0;
    }

    .op-md-0-f {
        opacity: 0 !important;
    }

    .op-md-1 {
        opacity: 0.1;
    }

    .op-md-1-f {
        opacity: 0.1 !important;
    }

    .op-md-2 {
        opacity: 0.2;
    }

    .op-md-2-f {
        opacity: 0.2 !important;
    }

    .op-md-3 {
        opacity: 0.3;
    }

    .op-md-3-f {
        opacity: 0.3 !important;
    }

    .op-md-4 {
        opacity: 0.4;
    }

    .op-md-4-f {
        opacity: 0.4 !important;
    }

    .op-md-5 {
        opacity: 0.5;
    }

    .op-md-5-f {
        opacity: 0.5 !important;
    }

    .op-md-6 {
        opacity: 0.6;
    }

    .op-md-6-f {
        opacity: 0.6 !important;
    }

    .op-md-7 {
        opacity: 0.7;
    }

    .op-md-7-f {
        opacity: 0.7 !important;
    }

    .op-md-8 {
        opacity: 0.8;
    }

    .op-md-8-f {
        opacity: 0.8 !important;
    }

    .op-md-9 {
        opacity: 0.9;
    }

    .op-md-9-f {
        opacity: 0.9 !important;
    }
}

@media (min-width: 992px) {
    .op-lg-0 {
        opacity: 0;
    }

    .op-lg-0-f {
        opacity: 0 !important;
    }

    .op-lg-1 {
        opacity: 0.1;
    }

    .op-lg-1-f {
        opacity: 0.1 !important;
    }

    .op-lg-2 {
        opacity: 0.2;
    }

    .op-lg-2-f {
        opacity: 0.2 !important;
    }

    .op-lg-3 {
        opacity: 0.3;
    }

    .op-lg-3-f {
        opacity: 0.3 !important;
    }

    .op-lg-4 {
        opacity: 0.4;
    }

    .op-lg-4-f {
        opacity: 0.4 !important;
    }

    .op-lg-5 {
        opacity: 0.5;
    }

    .op-lg-5-f {
        opacity: 0.5 !important;
    }

    .op-lg-6 {
        opacity: 0.6;
    }

    .op-lg-6-f {
        opacity: 0.6 !important;
    }

    .op-lg-7 {
        opacity: 0.7;
    }

    .op-lg-7-f {
        opacity: 0.7 !important;
    }

    .op-lg-8 {
        opacity: 0.8;
    }

    .op-lg-8-f {
        opacity: 0.8 !important;
    }

    .op-lg-9 {
        opacity: 0.9;
    }

    .op-lg-9-f {
        opacity: 0.9 !important;
    }
}

@media (min-width: 1200px) {
    .op-xl-0 {
        opacity: 0;
    }

    .op-xl-0-f {
        opacity: 0 !important;
    }

    .op-xl-1 {
        opacity: 0.1;
    }

    .op-xl-1-f {
        opacity: 0.1 !important;
    }

    .op-xl-2 {
        opacity: 0.2;
    }

    .op-xl-2-f {
        opacity: 0.2 !important;
    }

    .op-xl-3 {
        opacity: 0.3;
    }

    .op-xl-3-f {
        opacity: 0.3 !important;
    }

    .op-xl-4 {
        opacity: 0.4;
    }

    .op-xl-4-f {
        opacity: 0.4 !important;
    }

    .op-xl-5 {
        opacity: 0.5;
    }

    .op-xl-5-f {
        opacity: 0.5 !important;
    }

    .op-xl-6 {
        opacity: 0.6;
    }

    .op-xl-6-f {
        opacity: 0.6 !important;
    }

    .op-xl-7 {
        opacity: 0.7;
    }

    .op-xl-7-f {
        opacity: 0.7 !important;
    }

    .op-xl-8 {
        opacity: 0.8;
    }

    .op-xl-8-f {
        opacity: 0.8 !important;
    }

    .op-xl-9 {
        opacity: 0.9;
    }

    .op-xl-9-f {
        opacity: 0.9 !important;
    }
}

.shadow-default {
    box-shadow: 0 0 2px 2px rgba(246, 244, 251, 0.2) !important;
}

.shadow-0 {
    box-shadow: none !important;
}

/*-------Tooptip &popover------*/

.tooltip {
    position: absolute;
    z-index: 10;
    display: block;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
    pointer-events: none;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.tooltip.bs-tether-element-attached-bottom,
.tooltip.tooltip-top {
    padding: 5px 0;
    margin-top: -3px;
}

.tooltip.bs-tether-element-attached-left,
.tooltip.tooltip-end {
    padding: 0 5px;
    margin-left: 3px;
}

.tooltip.bs-tether-element-attached-bottom .tooltip-inner::before,
.tooltip.tooltip-top .tooltip-inner::before {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    content: "";
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.bs-tether-element-attached-left .tooltip-inner::before,
.tooltip.tooltip-end .tooltip-inner::before {
    top: 50%;
    left: 0;
    margin-top: -5px;
    content: "";
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.bs-tether-element-attached-top,
.tooltip.tooltip-bottom {
    padding: 5px 0;
    margin-top: 3px;
}

.tooltip.bs-tether-element-attached-top .tooltip-inner::before,
.tooltip.tooltip-bottom .tooltip-inner::before {
    top: 0;
    left: 50%;
    margin-left: -5px;
    content: "";
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bs-tether-element-attached-right,
.tooltip.tooltip-start {
    padding: 0 5px;
    margin-left: -3px;
}

.tooltip.bs-tether-element-attached-right .tooltip-inner::before,
.tooltip.tooltip-start .tooltip-inner::before {
    top: 50%;
    right: 0;
    margin-top: -5px;
    content: "";
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip-inner::before {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

/*alerts*/
.pop-primary {
    color: var(--primary-bg-color);
}

.popsecondary {
    color: #e984b1;
}

.popinfo {
    color: #59adec;
}

.popsuccess {
    color: #13bfa6;
}

.popdanger {
    color: #d12c47;
}

.popwarning {
    color: #e7c354;
}

.bs-tooltip-top,
.bs-tooltip-auto[data-popper-placement^=top] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
    bottom: 0;
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    top: -1px;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}

.bs-tooltip-end,
.bs-tooltip-auto[data-popper-placement^=right] {
    padding: 0 0.4rem;
}

.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    right: -1px;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[data-popper-placement^=bottom] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
    top: 0;
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}

.bs-tooltip-start,
.bs-tooltip-auto[data-popper-placement^=left] {
    padding: 0 0.4rem;
}

.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    left: -1px;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 3px;
}


.tooltip-primary .tooltip-inner {
    background-color: var(--primary-bg-color) !important;
    color: #fff;
}

.tooltip-primary.bs-tooltip-top .tooltip-arrow::before,
.tooltip-primary.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    border-top-color: var(--primary-bg-color);
}

.tooltip-primary.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip-primary.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-bottom-color: var(--primary-bg-color);
}

.tooltip-primary.bs-tooltip-start .tooltip-arrow::before,
.tooltip-primary.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: var(--primary-bg-color);
}

.tooltip-primary.bs-tooltip-end .tooltip-arrow::before,
.tooltip-primary.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: var(--primary-bg-color);
}

.tooltip-secondary .tooltip-inner {
    background-color: #e984b1 !important;
    color: #fff;
}

.tooltip-secondary.bs-tooltip-top .tooltip-arrow::before,
.tooltip-secondary.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    border-top-color: #e984b1 !important;
}

.tooltip-secondary.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip-secondary.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-bottom-color: #e984b1 !important;
}

.tooltip-secondary.bs-tooltip-start .tooltip-arrow::before,
.tooltip-secondary.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: #e984b1 !important;
}

.tooltip-secondary.bs-tooltip-end .tooltip-arrow::before,
.tooltip-secondary.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: #e984b1 !important;
}

.tooltip-success .tooltip-inner {
    background-color: #13bfa6 !important;
    color: #fff;
}

.tooltip-success.bs-tooltip-top .tooltip-arrow::before,
.tooltip-success.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    border-top-color: #13bfa6 !important;
}

.tooltip-success.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip-success.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-bottom-color: #13bfa6 !important;
}

.tooltip-success.bs-tooltip-start .tooltip-arrow::before,
.tooltip-success.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: #13bfa6 !important;
}

.tooltip-success.bs-tooltip-end .tooltip-arrow::before,
.tooltip-success.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: #13bfa6 !important;
}

.tooltip-danger .tooltip-inner {
    background-color: #d12c47 !important;
    color: #fff;
}

.tooltip-danger.bs-tooltip-top .tooltip-arrow::before,
.tooltip-danger.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    border-top-color: #d12c47 !important;
}

.tooltip-danger.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip-danger.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-bottom-color: #d12c47 !important;
}

.tooltip-danger.bs-tooltip-start .tooltip-arrow::before,
.tooltip-danger.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: #d12c47 !important;
}

.tooltip-danger.bs-tooltip-end .tooltip-arrow::before,
.tooltip-danger.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: #d12c47 !important;
}

.tooltip-info .tooltip-inner {
    background-color: #59adec !important;
    color: #fff;
}

.tooltip-info.bs-tooltip-top .tooltip-arrow::before,
.tooltip-info.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    border-top-color: #59adec !important;
}

.tooltip-info.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip-info.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-bottom-color: #59adec !important;
}

.tooltip-info.bs-tooltip-start .tooltip-arrow::before,
.tooltip-info.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: #59adec !important;
}

.tooltip-info.bs-tooltip-end .tooltip-arrow::before,
.tooltip-info.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: #59adec !important;
}

/*  ######## CUSTOM-STYLES ######## */
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    -ms-flex: 0 0 8.33333333%;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
}

.col-2 {
    -ms-flex: 0 0 16.66666667%;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
}

.col-5 {
    -ms-flex: 0 0 41.66666667%;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.33333333%;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
}

.col-8 {
    -ms-flex: 0 0 66.66666667%;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex: 0 0 83.33333333%;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
}

.col-11 {
    -ms-flex: 0 0 91.66666667%;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-sm-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-sm-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333333%;
    }

    .offset-sm-2 {
        margin-left: 16.66666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333333%;
    }

    .offset-sm-5 {
        margin-left: 41.66666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333333%;
    }

    .offset-sm-8 {
        margin-left: 66.66666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333333%;
    }

    .offset-sm-11 {
        margin-left: 91.66666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-md-2 {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-md-5 {
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-md-8 {
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-md-11 {
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-md-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-md-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-md-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-md-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-md-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-md-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-md-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-md-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-md-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-md-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-md-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .offset-md-2 {
        margin-left: 16.66666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333333%;
    }

    .offset-md-5 {
        margin-left: 41.66666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333333%;
    }

    .offset-md-8 {
        margin-left: 66.66666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333333%;
    }

    .offset-md-11 {
        margin-left: 91.66666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-lg-2 {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333333%;
    }

    .offset-lg-2 {
        margin-left: 16.66666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333333%;
    }

    .offset-lg-5 {
        margin-left: 41.66666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333333%;
    }

    .offset-lg-8 {
        margin-left: 66.66666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333333%;
    }

    .offset-lg-11 {
        margin-left: 91.66666667%;
    }
}

@media (min-width: 1280px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-xl-2 {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xl-11 {
        margin-left: 91.66666667%;
    }
}

@media (max-width: 575.98px) {
    .countdown-timer-wrapper {
        border-radius: 5px;
        margin-bottom: 30px;
        max-width: 320px;
    }

    .countdown-timer-wrapper .timer .timer-wrapper .time {
        font-size: 25px;
        font-weight: bold;
        color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 50px;
        background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
        line-height: 2.3;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 5px;
        position: relative;
        overflow: hidden;
    }

    .construction .display-2 {
        font-size: 2.3rem;
    }

    .countdown-timer-wrapper .timer {
        padding: 0px;
        text-align: center;
    }
}

.countdown span:first-child {
    font-size: 30px;
}

.count-down.row span:first-child {
    padding: 10px 15px;
    border-radius: 5px;
    background: #ebecf5;
    box-shadow: 0 5px 10px rgba(227, 228, 237, 0.3);
    margin: 2px;
}

/*----- Custom control -----*/
.custom-control {
    position: relative;
    display: block;
    min-height: 1.2rem;
    padding-left: 1.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.custom-control-input:active~.custom-control-label::before {
    color: #fff;
    background-color: rgba(218, 201, 232, 0.5);
}

.custom-control-input:disabled~.custom-control-label {
    color: #868e96;
}

.custom-control-input:disabled~.custom-control-label::before {
    background-color: #e9ecef;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #eaedf1;
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 3px;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
    background-color: var(--primary-bg-color);
    border-radius: 4px;
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    opacity: 0.8;
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(212, 182, 228, 0.5);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    opacity: 0.8;
}

.form-select {
    display: inline-block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #76839a;
    vertical-align: middle;
    background-size: 8px 10px;
    border-radius: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #b8c5d7;
}

.form-select:focus {
    border-color: #eaedf1;
    outline: 0;
    box-shadow: none;
}

.form-select:focus::-ms-value {
    color: #76839a;
    background-color: #fff;
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.form-select:disabled {
    color: #868e96;
    background-color: #e9ecef;
}

.form-select::-ms-expand {
    opacity: 0;
}

.form-select-sm {
    height: calc(1.8125rem + 2px);
    width:80px;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;
}

.form-select-lg {
    height: calc(2.6875rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 125%;
}

.form-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 2.375rem;
    margin-bottom: 0;
}

.form-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 2.375rem;
    margin: 0;
    opacity: 0;
}

.form-file-input:focus~.form-file-label {
    box-shadow: none;
    border-color: #9ca3b1;
}

.form-file-input:lang(en)~.form-file-label::after {
    content: "Browse";
}

.form-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 38px;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #76839a;
    background-color: #f1f1f9;
    border: 1px solid #d8dde4;
    border-radius: 5px;
}

.form-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(2.375rem - 2px);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #fff;
    content: "Browse";
    border-left: 1px solid #eaedf1;
    border-radius: 0 3px 3px 0;
}

.form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    border: 0;
    border-radius: 1rem;
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    box-shadow: 1px 0 0 -6px rgba(0, 50, 126, 0.12), 6px 0 0 -6px rgba(0, 50, 126, 0.12), 7px 0 0 -6px rgba(0, 50, 126, 0.12), 8px 0 0 -6px rgba(0, 50, 126, 0.12), 9px 0 0 -6px rgba(0, 50, 126, 0.12), 10px 0 0 -6px rgba(0, 50, 126, 0.12), 11px 0 0 -6px rgba(0, 50, 126, 0.12), 12px 0 0 -6px rgba(0, 50, 126, 0.12), 13px 0 0 -6px rgba(0, 50, 126, 0.12), 14px 0 0 -6px rgba(0, 50, 126, 0.12), 15px 0 0 -6px rgba(0, 50, 126, 0.12), 16px 0 0 -6px rgba(0, 50, 126, 0.12), 17px 0 0 -6px rgba(0, 50, 126, 0.12), 18px 0 0 -6px rgba(0, 50, 126, 0.12), 19px 0 0 -6px rgba(0, 50, 126, 0.12), 20px 0 0 -6px rgba(0, 50, 126, 0.12), 21px 0 0 -6px rgba(0, 50, 126, 0.12), 22px 0 0 -6px rgba(0, 50, 126, 0.12), 23px 0 0 -6px rgba(0, 50, 126, 0.12), 24px 0 0 -6px rgba(0, 50, 126, 0.12), 25px 0 0 -6px rgba(0, 50, 126, 0.12), 26px 0 0 -6px rgba(0, 50, 126, 0.12), 27px 0 0 -6px rgba(0, 50, 126, 0.12), 28px 0 0 -6px rgba(0, 50, 126, 0.12), 29px 0 0 -6px rgba(0, 50, 126, 0.12), 30px 0 0 -6px rgba(0, 50, 126, 0.12), 31px 0 0 -6px rgba(0, 50, 126, 0.12), 32px 0 0 -6px rgba(0, 50, 126, 0.12), 33px 0 0 -6px rgba(0, 50, 126, 0.12), 34px 0 0 -6px rgba(0, 50, 126, 0.12), 35px 0 0 -6px rgba(0, 50, 126, 0.12), 36px 0 0 -6px rgba(0, 50, 126, 0.12), 37px 0 0 -6px rgba(0, 50, 126, 0.12), 38px 0 0 -6px rgba(0, 50, 126, 0.12), 39px 0 0 -6px rgba(0, 50, 126, 0.12), 40px 0 0 -6px rgba(0, 50, 126, 0.12), 41px 0 0 -6px rgba(0, 50, 126, 0.12), 42px 0 0 -6px rgba(0, 50, 126, 0.12), 43px 0 0 -6px rgba(0, 50, 126, 0.12), 44px 0 0 -6px rgba(0, 50, 126, 0.12), 45px 0 0 -6px rgba(0, 50, 126, 0.12), 46px 0 0 -6px rgba(0, 50, 126, 0.12), 47px 0 0 -6px rgba(0, 50, 126, 0.12), 48px 0 0 -6px rgba(0, 50, 126, 0.12), 49px 0 0 -6px rgba(0, 50, 126, 0.12), 50px 0 0 -6px rgba(0, 50, 126, 0.12), 51px 0 0 -6px rgba(0, 50, 126, 0.12), 52px 0 0 -6px rgba(0, 50, 126, 0.12), 53px 0 0 -6px rgba(0, 50, 126, 0.12), 54px 0 0 -6px rgba(0, 50, 126, 0.12), 55px 0 0 -6px rgba(0, 50, 126, 0.12), 56px 0 0 -6px rgba(0, 50, 126, 0.12), 57px 0 0 -6px rgba(0, 50, 126, 0.12), 58px 0 0 -6px rgba(0, 50, 126, 0.12), 59px 0 0 -6px rgba(0, 50, 126, 0.12), 60px 0 0 -6px rgba(0, 50, 126, 0.12), 61px 0 0 -6px rgba(0, 50, 126, 0.12), 62px 0 0 -6px rgba(0, 50, 126, 0.12), 63px 0 0 -6px rgba(0, 50, 126, 0.12), 64px 0 0 -6px rgba(0, 50, 126, 0.12), 65px 0 0 -6px rgba(0, 50, 126, 0.12), 66px 0 0 -6px rgba(0, 50, 126, 0.12), 67px 0 0 -6px rgba(0, 50, 126, 0.12), 68px 0 0 -6px rgba(0, 50, 126, 0.12), 69px 0 0 -6px rgba(0, 50, 126, 0.12), 70px 0 0 -6px rgba(0, 50, 126, 0.12), 71px 0 0 -6px rgba(0, 50, 126, 0.12), 72px 0 0 -6px rgba(0, 50, 126, 0.12), 73px 0 0 -6px rgba(0, 50, 126, 0.12), 74px 0 0 -6px rgba(0, 50, 126, 0.12), 75px 0 0 -6px rgba(0, 50, 126, 0.12), 76px 0 0 -6px rgba(0, 50, 126, 0.12), 77px 0 0 -6px rgba(0, 50, 126, 0.12), 78px 0 0 -6px rgba(0, 50, 126, 0.12), 79px 0 0 -6px rgba(0, 50, 126, 0.12), 80px 0 0 -6px rgba(0, 50, 126, 0.12), 81px 0 0 -6px rgba(0, 50, 126, 0.12), 82px 0 0 -6px rgba(0, 50, 126, 0.12), 83px 0 0 -6px rgba(0, 50, 126, 0.12), 84px 0 0 -6px rgba(0, 50, 126, 0.12), 85px 0 0 -6px rgba(0, 50, 126, 0.12), 86px 0 0 -6px rgba(0, 50, 126, 0.12), 87px 0 0 -6px rgba(0, 50, 126, 0.12), 88px 0 0 -6px rgba(0, 50, 126, 0.12), 89px 0 0 -6px rgba(0, 50, 126, 0.12), 90px 0 0 -6px rgba(0, 50, 126, 0.12), 91px 0 0 -6px rgba(0, 50, 126, 0.12), 92px 0 0 -6px rgba(0, 50, 126, 0.12), 93px 0 0 -6px rgba(0, 50, 126, 0.12), 94px 0 0 -6px rgba(0, 50, 126, 0.12), 95px 0 0 -6px rgba(0, 50, 126, 0.12), 96px 0 0 -6px rgba(0, 50, 126, 0.12), 97px 0 0 -6px rgba(0, 50, 126, 0.12), 98px 0 0 -6px rgba(0, 50, 126, 0.12), 99px 0 0 -6px rgba(0, 50, 126, 0.12), 100px 0 0 -6px rgba(0, 50, 126, 0.12), 101px 0 0 -6px rgba(0, 50, 126, 0.12), 102px 0 0 -6px rgba(0, 50, 126, 0.12), 103px 0 0 -6px rgba(0, 50, 126, 0.12), 104px 0 0 -6px rgba(0, 50, 126, 0.12), 105px 0 0 -6px rgba(0, 50, 126, 0.12), 106px 0 0 -6px rgba(0, 50, 126, 0.12), 107px 0 0 -6px rgba(0, 50, 126, 0.12), 108px 0 0 -6px rgba(0, 50, 126, 0.12), 109px 0 0 -6px rgba(0, 50, 126, 0.12), 110px 0 0 -6px rgba(0, 50, 126, 0.12), 111px 0 0 -6px rgba(0, 50, 126, 0.12), 112px 0 0 -6px rgba(0, 50, 126, 0.12), 113px 0 0 -6px rgba(0, 50, 126, 0.12), 114px 0 0 -6px rgba(0, 50, 126, 0.12), 115px 0 0 -6px rgba(0, 50, 126, 0.12), 116px 0 0 -6px rgba(0, 50, 126, 0.12), 117px 0 0 -6px rgba(0, 50, 126, 0.12), 118px 0 0 -6px rgba(0, 50, 126, 0.12), 119px 0 0 -6px rgba(0, 50, 126, 0.12), 120px 0 0 -6px rgba(0, 50, 126, 0.12), 121px 0 0 -6px rgba(0, 50, 126, 0.12), 122px 0 0 -6px rgba(0, 50, 126, 0.12), 123px 0 0 -6px rgba(0, 50, 126, 0.12), 124px 0 0 -6px rgba(0, 50, 126, 0.12), 125px 0 0 -6px rgba(0, 50, 126, 0.12), 126px 0 0 -6px rgba(0, 50, 126, 0.12), 127px 0 0 -6px rgba(0, 50, 126, 0.12), 128px 0 0 -6px rgba(0, 50, 126, 0.12), 129px 0 0 -6px rgba(0, 50, 126, 0.12), 130px 0 0 -6px rgba(0, 50, 126, 0.12), 131px 0 0 -6px rgba(0, 50, 126, 0.12), 132px 0 0 -6px rgba(0, 50, 126, 0.12), 133px 0 0 -6px rgba(0, 50, 126, 0.12), 134px 0 0 -6px rgba(0, 50, 126, 0.12), 135px 0 0 -6px rgba(0, 50, 126, 0.12), 136px 0 0 -6px rgba(0, 50, 126, 0.12), 137px 0 0 -6px rgba(0, 50, 126, 0.12), 138px 0 0 -6px rgba(0, 50, 126, 0.12), 139px 0 0 -6px rgba(0, 50, 126, 0.12), 140px 0 0 -6px rgba(0, 50, 126, 0.12), 141px 0 0 -6px rgba(0, 50, 126, 0.12), 142px 0 0 -6px rgba(0, 50, 126, 0.12), 143px 0 0 -6px rgba(0, 50, 126, 0.12), 144px 0 0 -6px rgba(0, 50, 126, 0.12), 145px 0 0 -6px rgba(0, 50, 126, 0.12), 146px 0 0 -6px rgba(0, 50, 126, 0.12), 147px 0 0 -6px rgba(0, 50, 126, 0.12), 148px 0 0 -6px rgba(0, 50, 126, 0.12), 149px 0 0 -6px rgba(0, 50, 126, 0.12), 150px 0 0 -6px rgba(0, 50, 126, 0.12), 151px 0 0 -6px rgba(0, 50, 126, 0.12), 152px 0 0 -6px rgba(0, 50, 126, 0.12), 153px 0 0 -6px rgba(0, 50, 126, 0.12), 154px 0 0 -6px rgba(0, 50, 126, 0.12), 155px 0 0 -6px rgba(0, 50, 126, 0.12), 156px 0 0 -6px rgba(0, 50, 126, 0.12), 157px 0 0 -6px rgba(0, 50, 126, 0.12), 158px 0 0 -6px rgba(0, 50, 126, 0.12), 159px 0 0 -6px rgba(0, 50, 126, 0.12), 160px 0 0 -6px rgba(0, 50, 126, 0.12), 161px 0 0 -6px rgba(0, 50, 126, 0.12), 162px 0 0 -6px rgba(0, 50, 126, 0.12), 163px 0 0 -6px rgba(0, 50, 126, 0.12), 164px 0 0 -6px rgba(0, 50, 126, 0.12), 165px 0 0 -6px rgba(0, 50, 126, 0.12), 166px 0 0 -6px rgba(0, 50, 126, 0.12), 167px 0 0 -6px rgba(0, 50, 126, 0.12), 168px 0 0 -6px rgba(0, 50, 126, 0.12), 169px 0 0 -6px rgba(0, 50, 126, 0.12), 170px 0 0 -6px rgba(0, 50, 126, 0.12), 171px 0 0 -6px rgba(0, 50, 126, 0.12), 172px 0 0 -6px rgba(0, 50, 126, 0.12), 173px 0 0 -6px rgba(0, 50, 126, 0.12), 174px 0 0 -6px rgba(0, 50, 126, 0.12), 175px 0 0 -6px rgba(0, 50, 126, 0.12), 176px 0 0 -6px rgba(0, 50, 126, 0.12), 177px 0 0 -6px rgba(0, 50, 126, 0.12), 178px 0 0 -6px rgba(0, 50, 126, 0.12), 179px 0 0 -6px rgba(0, 50, 126, 0.12), 180px 0 0 -6px rgba(0, 50, 126, 0.12), 181px 0 0 -6px rgba(0, 50, 126, 0.12), 182px 0 0 -6px rgba(0, 50, 126, 0.12), 183px 0 0 -6px rgba(0, 50, 126, 0.12), 184px 0 0 -6px rgba(0, 50, 126, 0.12), 185px 0 0 -6px rgba(0, 50, 126, 0.12), 186px 0 0 -6px rgba(0, 50, 126, 0.12), 187px 0 0 -6px rgba(0, 50, 126, 0.12), 188px 0 0 -6px rgba(0, 50, 126, 0.12), 189px 0 0 -6px rgba(0, 50, 126, 0.12), 190px 0 0 -6px rgba(0, 50, 126, 0.12), 191px 0 0 -6px rgba(0, 50, 126, 0.12), 192px 0 0 -6px rgba(0, 50, 126, 0.12), 193px 0 0 -6px rgba(0, 50, 126, 0.12), 194px 0 0 -6px rgba(0, 50, 126, 0.12), 195px 0 0 -6px rgba(0, 50, 126, 0.12), 196px 0 0 -6px rgba(0, 50, 126, 0.12), 197px 0 0 -6px rgba(0, 50, 126, 0.12), 198px 0 0 -6px rgba(0, 50, 126, 0.12), 199px 0 0 -6px rgba(0, 50, 126, 0.12), 200px 0 0 -6px rgba(0, 50, 126, 0.12), 201px 0 0 -6px rgba(0, 50, 126, 0.12), 202px 0 0 -6px rgba(0, 50, 126, 0.12), 203px 0 0 -6px rgba(0, 50, 126, 0.12), 204px 0 0 -6px rgba(0, 50, 126, 0.12), 205px 0 0 -6px rgba(0, 50, 126, 0.12), 206px 0 0 -6px rgba(0, 50, 126, 0.12), 207px 0 0 -6px rgba(0, 50, 126, 0.12), 208px 0 0 -6px rgba(0, 50, 126, 0.12), 209px 0 0 -6px rgba(0, 50, 126, 0.12), 210px 0 0 -6px rgba(0, 50, 126, 0.12), 211px 0 0 -6px rgba(0, 50, 126, 0.12), 212px 0 0 -6px rgba(0, 50, 126, 0.12), 213px 0 0 -6px rgba(0, 50, 126, 0.12), 214px 0 0 -6px rgba(0, 50, 126, 0.12), 215px 0 0 -6px rgba(0, 50, 126, 0.12), 216px 0 0 -6px rgba(0, 50, 126, 0.12), 217px 0 0 -6px rgba(0, 50, 126, 0.12), 218px 0 0 -6px rgba(0, 50, 126, 0.12), 219px 0 0 -6px rgba(0, 50, 126, 0.12), 220px 0 0 -6px rgba(0, 50, 126, 0.12), 221px 0 0 -6px rgba(0, 50, 126, 0.12), 222px 0 0 -6px rgba(0, 50, 126, 0.12), 223px 0 0 -6px rgba(0, 50, 126, 0.12), 224px 0 0 -6px rgba(0, 50, 126, 0.12), 225px 0 0 -6px rgba(0, 50, 126, 0.12), 226px 0 0 -6px rgba(0, 50, 126, 0.12), 227px 0 0 -6px rgba(0, 50, 126, 0.12), 228px 0 0 -6px rgba(0, 50, 126, 0.12), 229px 0 0 -6px rgba(0, 50, 126, 0.12), 230px 0 0 -6px rgba(0, 50, 126, 0.12), 231px 0 0 -6px rgba(0, 50, 126, 0.12), 232px 0 0 -6px rgba(0, 50, 126, 0.12), 233px 0 0 -6px rgba(0, 50, 126, 0.12), 234px 0 0 -6px rgba(0, 50, 126, 0.12), 235px 0 0 -6px rgba(0, 50, 126, 0.12), 236px 0 0 -6px rgba(0, 50, 126, 0.12), 237px 0 0 -6px rgba(0, 50, 126, 0.12), 238px 0 0 -6px rgba(0, 50, 126, 0.12), 239px 0 0 -6px rgba(0, 50, 126, 0.12), 240px 0 0 -6px rgba(0, 50, 126, 0.12);
    transition: 0.3s border-color, 0.3s background-color;
}

.form-range::-webkit-slider-thumb:focus {
    outline: none;
    box-shadow: 0 0 0 1px #f1f1f9, 0 0 0 2px rgba(98, 58, 162, 0.25);
}

.form-range::-webkit-slider-thumb:active {
    background-color: #d4e1f4;
}

.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #eaedf1;
    border-color: transparent;
    border-radius: 1rem;
    background: #467fcf;
    content: "";
    pointer-events: none;
}

.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    border: 0;
    border-radius: 1rem;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    position: relative;
    transition: 0.3s border-color, 0.3s background-color;
}

.form-range::-moz-range-thumb:focus {
    outline: none;
    box-shadow: 0 0 0 1px #f1f1f9, 0 0 0 2px rgba(98, 58, 162, 0.25);
}

.form-range::-moz-range-thumb:active {
    background-color: #d4e1f4;
}

.form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #eaedf1;
    border-color: transparent;
    border-radius: 1rem;
    background: rgba(0, 50, 126, 0.12);
}

.form-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    border: 0;
    border-radius: 1rem;
    appearance: none;
    background: #fff;
    border-radius: 50px;
    border: 1px solid rgba(0, 30, 75, 0.12);
    transition: 0.3s border-color, 0.3s background-color;
}

.form-range::-ms-thumb:focus {
    outline: none;
    box-shadow: 0 0 0 1px #f1f1f9, 0 0 0 2px rgba(98, 58, 162, 0.25);
}

.form-range::-ms-thumb:active {
    background-color: #d4e1f4;
}

.form-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    margin-top: 10px;
}

.form-range::-ms-fill-lower {
    background-color: #eaedf1;
    border-radius: 1rem;
    background: #467fcf;
}

.custom-controls-stacked .custom-control {
    margin-bottom: 0.25rem;
}

.custom-control-label {
    vertical-align: middle;
    position: unset;
    margin-bottom: 0;
}

.custom-control-label:before {
    border: 1px solid #d8dde4;
    background-color: #f1f1f9;
    background-size: 0.5rem;
}

.custom-control-description {
    line-height: 1.5rem;
}

.form-range {
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    min-height: 2.375rem;
    overflow: hidden;
    padding: 0;
    border: 0;
    width: 100%;
    padding-left: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-range:focus {
    box-shadow: none;
    outline: none;
}

.form-range:focus::-webkit-slider-thumb,
.form-range:focus::-moz-range-thumb,
.form-range:focus::-ms-thumb {
    border-color: #467fcf;
    background-color: #467fcf;
}

.form-range::-moz-focus-outer {
    border: 0;
}

.form-range::-moz-range-progress {
    height: 2px;
    background: #467fcf;
    border: 0;
    margin-top: 0;
}

.form-range::-ms-fill-upper {
    background: rgba(0, 50, 126, 0.12);
    border-radius: 0;
    margin-right: 15px;
    background-color: #eaedf1;
}

.form-range::-ms-tooltip {
    display: none;
}

.custom-switch {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding-left: 0;
}

.custom-switch-input:checked~.custom-switch-indicator:before {
    left: calc(1rem + 1px);
}

.custom-switch-description {
    margin-left: 0.5rem;
    color: #6e7687;
    transition: 0.3s color;
}

.custom-switch-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-switch-input:checked~.custom-switch-description {
    color: #495057;
}

.custom-switches-stacked {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.custom-switches-stacked .custom-switch {
    margin-bottom: 0.5rem;
}

.custom-switch-indicator {
    display: inline-block;
    height: 1.25rem;
    width: 2.25rem;
    background: #f1f1f9;
    border-radius: 50px;
    position: relative;
    vertical-align: bottom;
    border: 1px solid #d8dde4;
    transition: 0.3s border-color, 0.3s background-color;
}

.custom-switch-indicator:before {
    content: "";
    position: absolute;
    height: calc(1.25rem - 4px);
    width: calc(1.25rem - 4px);
    top: 1px;
    left: 1px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s left;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
}

.custom-switch-input:focus~.custom-switch-indicator {
    box-shadow: none;
    border-color: #60529f;
}

.fade {
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

@media screen and (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.collapse:not(.show) {
    display: none;
    background: #fff;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.notifyimg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    fill: #fff;
    float: left;
    padding: 8px;
    height: 35px;
    margin-right: 10px;
    width: 35px;
    font-size: 16px;
}

.notifyimg svg {
    width: 1.45rem;
    fill: #fff;
}

.app-header .dropdown-menu .notifications-menu .notification-each {
    align-items: start !important;
}

.block {
    display: block !important;
}

/*----- Global Loader -----*/
#global-loader {
    position: fixed;
    z-index: 50000;
    background: white;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

#popup {
    position: absolute;
    width: auto;
    height: 30px;
    background: #fe6b1f;
    display: none;
    color: white;
    border-radius: 5px;
}

#copy {
    background: none;
    color: white;
    font-weight: bold;
    padding: 8px 25px;
    border: 0;
}

.popsecondary {
    color: #628dea;
}

.popinfo {
    color: #88c8f7;
}

.popsuccess {
    color: #bfff80;
}

.popdanger {
    color: #ea6262;
}

.popwarning {
    color: #f7db6e;
}

.wrap {
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

a:focus,
a:hover,
a:active {
    outline: 0;
    text-decoration: none;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.aside {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 22rem;
    background: #fff;
    border-left: 1px solid #eaedf1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 100;
    visibility: hidden;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05);
}

.center-block {
    margin-right: auto;
    margin-left: auto;
    float: inherit !important;
}

.leading-none {
    line-height: 1 !important;
}

.leading-tight {
    line-height: 1.25 !important;
}

.leading-normal {
    line-height: 1.5 !important;
}

.leading-loose {
    line-height: 3 !important;
}

.icon i {
    vertical-align: -1px;
}

a.icon {
    text-decoration: none;
    cursor: pointer;
}

a.icon:hover {
    color: #1a1a1a !important;
}

.shadow {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

@media (max-width: 992px) {

    .hor-content .container,
    .mobile-header .container,
    .hor-header .container {
        max-width: none;
    }

    .hor-mobile-header .animated-arrow.hor-toggle {
        margin: 20px 0 0 18px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .page-header .notifications {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .list-media .info {
        padding-bottom: 15px;
    }

    .list-media .info .text-right {
        display: none;
    }

    .header .nav-link {
        padding: 0.6rem 0.6rem !important;
        line-height: 1.9;
    }

    .header .nav-link.leading-none::after {
        top: 12px !important;
    }

    .header .navsearch i {
        font-size: 20px !important;
        margin-top: -2px;
    }

    .header .nav-link.icon {
        font-size: 16px;
    }

    #user-profile .tabs-menu2 ul li a {
        padding: 10px 8px 11px 8px;
    }

    .tabs-menu ul li {
        width: 100%;
    }

    .tabs-menu ul li:last-child {
        margin-bottom: 15px;
    }

    .tabs-menu ul li a {
        width: 100%;
        border: 1px solid #eaedf1;
        border-radius: 5px;
    }

    .tabs-menu1 ul li {
        width: 100%;
    }

    .tabs-menu1 ul li:last-child {
        margin-bottom: 15px;
    }

    .tabs-menu1 ul li a {
        width: 100%;
    }

    .wizard-card .nav-pills>li {
        text-align: center;
        padding: 9px !important;
    }

    .form-control.form-select.w-auto {
        display: none;
    }

    .mail-inbox .badge {
        margin: 0;
    }

    .construction .display-5 {
        font-size: 1.5rem;
    }

    .mail-option .hidden-phone {
        display: none;
    }

    .error-page .display-1 {
        font-size: 8.5rem !important;
        text-align: center;
        margin-right: 2px;
    }
}

@media (max-width: 320px) {
    .error-page .display-1 {
        font-size: 6.5rem !important;
        text-align: center;
    }

    .construction .btn.btn-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50%;
        text-align: center;
        padding: 0;
        background: transparent;
        font-size: 16px;
        color: #fff;
        margin: 0 2px !important;
    }

    .display-2 {
        text-align: center;
        font-size: 3rem;
    }
}

@media (max-width: 360px) {
    .error-page .display-1 {
        font-size: 6.5rem !important;
        text-align: center;
    }

    .page-header {
        display: block !important;
    }

    .breadcrumb {
        flex-wrap: wrap;
        margin-bottom: 0;
        list-style: none;
        border-radius: 3px;
        position: relative;
        right: 0;
        top: 0px;
        padding-right: 0;
        left: 0px;
        padding: 0;
        margin-top: 5px;
    }

    #user-profile .tabs-menu2 ul li a {
        padding: 10px 6px 11px 6px;
    }

    .header .nav-link {
        line-height: 1.9;
    }
}

@media (max-width: 576px) {
    .page-header {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .footer .privacy {
        text-align: center !important;
    }

    .horizontalMenucontainer .hor-mobile-header .header-brand {
        width: inherit;
        position: absolute;
        left: 0;
        right: 0;
    }

    .horizontalMenucontainer .hor-mobile-header .header-brand .header-brand-img {
        margin: 0 auto;
        margin-top: 3px;
    }
}

@media (max-width: 767.98px) {
    .nav-tabs .nav-link {
        width: 100%;
    }

    .page-subtitle {
        display: none;
    }

    .ticket-card .col-md-1 {
        width: 100%;
        display: block;
    }

    .ticket-card img {
        display: block;
        text-align: Center;
        margin: 0 auto;
    }

    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        margin-top: 10px !important;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: center !important;
    }

    .page-title {
        margin-bottom: 0;
    }

    ul.inbox-pagination li span {
        display: none;
    }

    .responsive-navbar .dropdown-menu.dropdown-menu-end.show {
        left: 10px !important;
        right: 10px;
    }

    .responsive-navbar .dropdown-menu.dropdown-menu-start.show {
        right: 10px;
        left: 10px;
    }
}

@media (max-width: 320px) {

    .wizard-card .nav-pills>li>a,
    .wizard-card .moving-tab {
        font-size: 11px;
    }

    .tui-full-calendar-popup-container {
        padding: 17px 24px !important;
    }
}

@media (max-width: 576px) {

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .sm-mb-3 {
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 990px) {
    .nav-tabs .nav-link {
        width: 100%;
    }

    .nav-tabs {
        z-index: 9;
    }
}

.icon-size {
    font-size: 2rem !important;
}

.visitor-list p {
    font-size: 12px;
}

.visitor-list i {
    font-size: 20px;
}

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    100%,
    60% {
        left: 100%;
        right: -90%;
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    100%,
    60% {
        left: 100%;
        right: -90%;
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    100%,
    60% {
        left: 107%;
        right: -8%;
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    100%,
    60% {
        left: 107%;
        right: -8%;
    }
}

@-webkit-keyframes loader {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }
}

.user p.u-name {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #495057;
}

.user p.u-designation {
    margin: 0;
    font-size: 11px;
    color: #495057;
}

.fs {
    font-size: 25px;
}

.sparkline {
    display: inline-block;
    height: 2rem;
}

@-webkit-keyframes status-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.32;
    }
}

@keyframes status-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.32;
    }
}

.status-animated {
    -webkit-animation: 1s status-pulse infinite ease;
    animation: 1s status-pulse infinite ease;
}

.chips {
    margin: 0 0 -0.5rem;
}

.chips .chip {
    margin: 0 0.5rem 0.5rem 0;
}

.chip {
    display: inline-block;
    height: 2rem;
    line-height: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6e7687;
    padding: 0 0.75rem;
    border-radius: 1rem;
    background-color: rgba(70, 127, 207, 0.06);
    transition: 0.3s background;
}

.chip .avatar {
    float: left;
    margin: 0 0.5rem 0 -0.75rem;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
}

a.chip:hover {
    color: #fff;
    text-decoration: none;
}

.stamp {
    color: #fff;
    background: #868e96;
    display: inline-block;
    min-width: 40px;
    height: 40px;
    padding: 0 0.25rem;
    line-height: 2rem;
    text-align: center;
    border-radius: 100%;
    font-weight: 600;
}

.stamp-md {
    min-width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
}

.stamp-lg {
    min-width: 4rem;
    height: 4rem;
    line-height: 4rem;
}

.example {
    padding: 1.5rem;
    border: 1px solid #eaedf1;
    border-radius: 7px;
    font-size: 0.9375rem;
}

.example-bg {
    background: #fff;
}

.colorinput {
    margin: 0;
    position: relative;
    cursor: pointer;
}

.colorinput-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.colorinput-color {
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 3px;
    border: 1px solid #eaedf1;
    color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.colorinput-color:before {
    content: "";
    opacity: 0;
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    height: 1.25rem;
    width: 1.25rem;
    transition: 0.3s opacity;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E") no-repeat center center/50% 50%;
}

.colorinput-input:checked~.colorinput-color:before {
    opacity: 1;
}

.colorinput-input:focus~.colorinput-color {
    border-color: #eaedf1;
    box-shadow: none;
}

.colorinput-input:focus:checked~.colorinput-color {
    box-shadow: 0 0 0 2px rgba(98, 58, 162, 0.25);
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#back-to-top {
    background-color: var(--primary-bg-color);
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
    text-align: center;
    z-index: 10000;
    height: 50px;
    width: 50px;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.1s linear;
    -moz-transition: background-color 0.1s linear;
    -webkit-transition: background-color 0.1s linear;
    -o-transition: background-color 0.1s linear;
    border-radius: 7px;
}

#back-to-top i {
    padding-top: 15px;
    font-size: 16px;
}

#back-to-top:hover {
    background: #fff !important;
    border: 1px solid var(--primary-bg-color);
    color: var(--primary-bg-color);
}

.feature .feature-svg {
    width: 25%;
}

.feature .feature-svg3 {
    width: 12%;
}

.col-sm-2 .feature {
    padding: 0;
    border: 0px;
    box-shadow: none;
}

.feature .border {
    position: relative;
    display: inline-block;
    width: 3em;
    height: 3em;
    line-height: 2em;
    vertical-align: middle;
    padding-top: 8px;
    border-radius: 7px;
    color: #fff;
}

.feature p {
    margin-bottom: 0;
}

.actions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.actions>li {
    display: inline-block;
}

.actions:not(.a-alt)>li>a>i {
    color: #939393;
}

.actions>li>a {
    display: block;
    padding: 0 10px;
}

.actions>li>a>i {
    font-size: 20px;
}

#sidebar li a.active {
    background: #fff;
}

#sidebar li a.active a[data-toggle=collapse] {
    background: #fff;
}

.activity {
    position: relative;
    border-left: 1px solid rgba(0, 0, 0, 0.125);
    margin-left: 16px;
}

.activity .img-activity {
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    -webkit-box-shadow: 0 0 0 0.5px #f8f9fa;
    box-shadow: 0 0 0 0.5px #f8f9fa;
}

.user-profile .box {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

.user-profile .box .img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.deco-layer {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.userprofile {
    width: 100%;
    float: left;
    clear: both;
    margin: 7px auto;
}

.userprofile .userpic {
    height: 100px;
    width: 100px;
    clear: both;
    margin: 0 auto;
    display: block;
    border-radius: 100%;
    box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.15);
    position: relative;
}

.userlist a:hover {
    color: #fff;
    opacity: 0.9;
}

.userprofile .userpic .userpicimg {
    height: auto;
    width: 100%;
    border-radius: 100%;
}
/*
.username {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.username+p {
    color: #f2f2f2;
    font-size: 13px;
    line-height: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}*/

.settingbtn {
    height: 30px;
    width: 30px;
    border-radius: 30px;
    display: block;
    position: absolute;
    bottom: 0px;
    right: 0px;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.15);
}

.error-template h2 {
    font-size: 6rem;
}

.counters h3 {
    font-weight: 400;
}

#user-profile h2 {
    padding-right: 15px;
}

#user-profile .profile-img {
    padding: 4px;
}

#user-profile .profile-label {
    text-align: center;
}

#user-profile .profile-label .label {
    padding: 5px 15px;
    font-size: 1em;
}

#user-profile .profile-details ul {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 40px;
}

#user-profile .profile-details ul>li {
    margin: 3px 0;
    line-height: 1.5;
}

#user-profile .profile-details a>i {
    padding-top: 2px;
}

#user-profile .profile-details ul>li>span {
    color: #643ba2;
}

@media (max-width: 1024px) {

    body.search-show,
    body.sidebar-show {
        overflow: hidden;
    }

    body.search-show:before,
    body.sidebar-show:before {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0.6;
        z-index: 891;
    }
}

@media (max-width: 575.98px) {
    .form-control.header-search {
        color: #000;
    }

    .header .navsearch i {
        font-size: 20px;
        color: #fff;
        padding-top: 4px;
    }

    .header .header-brand-img.desktop-logo {
        display: none;
    }

    .header .header-brand-img.mobile-view-logo {
        display: block !important;
    }
}

.server i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    position: relative;
}

.sparkline_area {
    position: relative;
    bottom: -3px;
}

#orders {
    position: relative;
    bottom: -10px;
    height: 102px !important;
    width: 100% !important;
}

#profit {
    position: relative;
    bottom: -13px;
    height: 111px !important;
}

#total-customers {
    position: relative;
    left: -11px;
}

#sales-revenue {
    position: relative;
    bottom: -13px;
}

.overflow-hidden {
    overflow: hidden;
}

.secondary-card {
    position: relative;
    bottom: 20px;
    border-radius: 0;
}

.dot-label {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100%;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .page-header .breadcrumb {
        flex-wrap: wrap;
        margin-bottom: 0;
        list-style: none;
        margin-top: 5px;
    }
}

.settings {
    content: "\e8c3";
    top: -7px;
    font-size: 18px;
    position: absolute;
    right: 4px;
    font-family: "feather";
    z-index: 1029;
    line-height: 1;
    color: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-animation: anim-rotate 1.5s linear infinite;
    animation: anim-rotate 1.5s linear infinite;
}

.floating {
    animation: floating 3s ease infinite;
    will-change: transform;
}

.floating:hover {
    animation-play-state: paused;
}

.statistics-info .counter-icon {
    margin-bottom: 1rem;
    display: inline-flex;
    width: 4rem;
    height: 4rem;
    padding: 1.3rem 1.4rem;
    border-radius: 50%;
    text-align: center;
}

.statistics-info .counter-icon i {
    font-size: 1.2rem;
}

.service .item-box i {
    font-size: 35px;
}

.productdesc .item-main-img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.productdesc .owl-nav button {
    width: 2rem;
    height: 2rem;
    line-height: 7px;
}

.productdesc .owl-prev,
.productdesc .owl-next {
    top: 70% !important;
}

.productdesc .owl-prev {
    left: -16px !important;
}

.productdesc .owl-next {
    right: -16px !important;
}

.productdesc .item-description-container {
    display: flex;
    flex-direction: column;
}

.productdesc .list-unstyled li {
    border-bottom: 0 !important;
    margin-bottom: 18px;
}

.productdesc .tab-content i {
    color: inherit;
}

.productdesc .main-img-container {
    border-radius: 7px;
}

.productdesc .hor-line {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    height: 0.038em;
    background: linear-gradient(to right, #e5e5e500, #e4e4e4, #e4e4e4 51%, #e4e4e4 53%, #e4e4e4, #e5e5e500);
}

.productdesc .colors-container .colorinput-color {
    margin-right: 8px;
}

.productdesc .comment-section-main>li {
    margin-bottom: 30px;
}

.productdesc .comment-sub-section>li {
    margin-left: 40px;
}

.productdesc .comment-section-main .name-time-container svg {
    fill: #74788e;
    width: 1rem;
}

.productdesc .comment-section-main .time-main {
    font-size: 12px;
}

.productdesc .comment-section-main .comment-main-action {
    margin-bottom: 8px;
}

.productdesc .comment-section-main .comment-main-action .comment-options-container .dropdown-menu.show .dropdown-item {
    margin: 0px;
}

.text-left {
    float: left;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@media only screen and (max-width: 1279px) and (min-width: 992px) {
    #orders {
        position: relative;
        bottom: -6px;
        height: 102px !important;
        width: 100% !important;
        left: -6px;
    }
}


@media only screen and (max-width: 490px) {
    #smartwizard .nav-link {
        padding: 15px 21px;
    }

    .select2.select2-container.select2-container--default.select2-container--below .select2-selection.select2-selection--multiple {
        overflow: auto;
    }
}

@media (max-width: 495px) {
    .nested-media .media {
        display: block;
    }
}

.material-switch>input[type=checkbox] {
    display: none;
}

.material-switch>label {
    cursor: pointer;
    height: 0px;
    position: relative;
    width: 40px;
}

.material-switch>label::before {
    background: #76839a;
    box-shadow: inset 0px 0px 10px rgba(228, 229, 237, 0.5);
    border-radius: 8px;
    content: "";
    height: 16px;
    margin-top: -8px;
    position: absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}

.material-switch>label::after {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(228, 229, 237, 0.9);
    content: "";
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}

.material-switch>input[type=checkbox]:checked+label::before {
    background: inherit;
    opacity: 0.5;
}

.material-switch>input[type=checkbox]:checked+label::after {
    background: inherit;
    left: 50%;
}

.counter-icon {
    margin-bottom: 1rem;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    font-size: 1.43rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50px;
}

.counter-icon svg {
    width: 1.45rem;
}

.light-logo,
.light-logo1,
.mobile-light {
    display: none;
}

.hor-menu .desktop-logo {
    margin-right: 0;
}

.hor-content {
    min-height: calc(100vh - 58px) !important;
}

@media (min-width: 992px) {
    .sticky {
        width: 100%;
    }

    .sticky-pin {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
    }

    .product-grid6 .product-image6 img {
        width: 100%;
        height: auto;
    }

    .hor-content .container,
    .hor-header .container,
    .horizontal-main.hor-menu .container {
        max-width: 85%;
    }
}

.input-group-btn .btn {
    border-radius: 0 4px 4px 0;
}

.card-body.scroll {
    overflow: hidden;
}

.border-transparet {
    border-color: rgba(255, 255, 255, 0.1);
}

/*********************IE***************************/
*::-ms-backdrop,
html.fullscreenie .app-content {
    overflow: scroll;
    overflow-x: hidden;
    height: 100vh;
}

*::-ms-backdrop,
html.fullscreenie .container.app-content {
    min-height: 0;
}

*::-ms-backdrop,
html.fullscreenie {
    width: 100%;
}

*::-ms-backdrop,
.ieh-100 {
    height: 100%;
}

*::-ms-backdrop,
.mail-chats li.chat-persons {
    height: 100%;
}

*::-ms-backdrop,
.card-img-top {
    height: 252px;
}

*::-ms-backdrop,
.custom-control-label::before,
*::-ms-backdrop,
.custom-control-label::after {
    left: -25px;
}

*::-ms-backdrop,
.media-body,
.media-left,
.media-right {
    display: block;
}

*::-ms-backdrop,
.resp-vtabs .resp-tabs-list li {
    display: block;
}

.transaction-table.table td {
    vertical-align: middle;
}

.header-icon-svgs {
    width: 19px;
    height: 19px;
    color: #5b6e88;
}

.pulse-danger {
    display: block;
    position: absolute;
    top: 4px;
    right: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ee335e;
}

.pulse-danger:before {
    content: "";
    top: -4px;
    right: -4px;
    width: 15px;
    height: 15px;
    position: absolute;
    border-radius: 50%;
    background: rgba(238, 51, 94, 0.8);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(238, 51, 94, 0.9);
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    8% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    15% {
        -webkit-transform: scale(0.1);
        opacity: 1;
    }

    30% {
        -webkit-transform: scale(0.5);
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    8% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    15% {
        -webkit-transform: scale(0.1);
        opacity: 1;
    }

    30% {
        -webkit-transform: scale(0.5);
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }
}

.pulse {
    display: block;
    position: absolute;
    top: 7px;
    right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c03c;
}

.pulse:before {
    content: "";
    top: -4px;
    right: -4px;
    width: 15px;
    height: 15px;
    position: absolute;
    border-radius: 50%;
    background: rgba(34, 192, 60, 0.6);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(34, 192, 60, 0.9);
    animation: pulse 1s linear infinite;
}

.progress.info1 {
    background: #fed5db;
}

.progress.secondary {
    background: #f9d1bd;
}

.app-header .header-right-icons .nav-link.icon {
    margin: 5px;
    padding: 8px !important;
    text-align: center;
    height: 2.5rem;
    font-size: 1.2rem;
    position: relative;
    background: transparent;
}

.avatar {
    display: inline-block;
    position: relative;
    text-align: center;
    color: #fff;
    font-weight: 500;
    vertical-align: bottom;
    font-size: 0.875rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.badge-success-light {
    background-color: rgba(19, 191, 27, 0.15) !important;
    color: #13bf1b;
}

.badge-orange-light {
    color: #e17626;
    background-color: rgba(225, 118, 38, 0.15);
}

.badge-danger-light {
    color: #f33819;
    background-color: rgba(243, 56, 25, 0.15);
}

.fa-user-plus:before {
    content: "\f234";
}

.todo-blog {
    display: flex;
    position: relative;
    min-height: 70px;
    margin-left: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.todo-blog:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 0;
    height: 26px;
    left: -6px;
    width: 3px;
}

.todo-blog.primary .todo-img input:checked~.checkmark {
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.todo-blog.primary:before {
    background: var(--primary-bg-color);
}

.todo-blog.secondary .todo-img input:checked~.checkmark {
    background-color: #e984b1;
    border-color: #e984b1;
}

.todo-blog.secondary:before {
    background: #e984b1;
}

.todo-blog.teritary .todo-img input:checked~.checkmark {
    background-color: #59adec;
    border-color: #59adec;
}

.todo-blog.teritary:before {
    background: #59adec;
}

.todo-blog.custom-yellow .todo-img input:checked~.checkmark {
    background-color: #e7c354;
    border-color: #e7c354;
}

.todo-blog.custom-yellow:before {
    background: #e7c354;
}

.todo-blog .todo-img {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.todo-blog .todo-img input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.todo-blog .todo-img .checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: white;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #d6d5d5;
}

.todo-blog .todo-img .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 12%;
    width: 0.4rem;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.todo-blog .todo-details {
    margin-left: 15px;
    width: 100%;
    margin-top: 6px;
}

.todo-blog .todo-details:hover .todo-blog::before,
.todo-blog .todo-details:focus .todo-blog::before {
    transform: scale(1.5);
}

.todo-blog .badge {
    color: #74788e;
    cursor: pointer;
    transition: all ease 0.2s;
}

.todo-blog .badge:hover,
.todo-blog .badge:focus {
    color: white;
}

.tl-blog {
    display: flex;
    position: relative;
    min-height: 70px;
    margin-left: 10px;
    cursor: pointer;
}

.tl-blog:before {
    content: "";
    position: absolute;
    top: 45px;
    bottom: 0;
    height: 25px;
    left: 20px;
    width: 3px;
    border-left: 1px solid #eaedf1;
}

.tl-blog i,
.tl-blog .tl-title-main {
    transition: all ease 0.2s;
}

.tl-blog:last-child::before {
    content: none;
}

.tl-blog.primary:hover .tl-title-main {
    color: var(--primary-bg-color) !important;
}

.tl-blog.secondary:hover .tl-title-main {
    color: #e984b1 !important;
}

.tl-blog.teritary:hover .tl-title-main {
    color: #59adec !important;
}

.tl-blog.custom-yellow:hover .tl-title-main {
    color: #e7c354 !important;
}

.tl-blog .tl-img {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.5rem;
}

.tl-blog .tl-details {
    margin-left: 15px;
    width: 100%;
    margin-top: 6px;
}

.tl-blog .badge {
    color: #74788e;
    cursor: pointer;
    transition: all ease 0.2s;
}

.tl-blog .badge:hover,
.tl-blog .badge:focus {
    color: white;
}

.chart-circle-sm {
    height: 4rem;
    width: 4rem;
    font-size: 0.8rem;
}

.chart-circle {
    display: block;
    height: 8rem;
    width: 8rem;
    position: relative;
    margin: 0 auto;
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}


@media (min-width: 767px) {
    .sidebar-mini.sidenav-toggled .side-menu__item.active .side-menu__icon {
        color: var(--primary-bg-color) !important;
    }

    .sidebar-mini.sidenav-toggled .side-menu .side-menu__icon {
        background: none !important;
        box-shadow: none;
    }

    .sidebar-mini.sidenav-toggled .side-menu__item.active .side-menu__icon {
        color: var(--primary-bg-color) !important;
        fill: var(--primary-bg-color) !important;
    }

    .sidebar-mini.sidenav-toggled .side-badge,
    .sidebar-mini.sidenav-toggled .slide-menu open.slide-menu hide .side-badge {
        top: 6px;
        right: 22px;
    }
}

.todo-img i {
    padding-bottom: 4px;
}

@media (max-width: 767px) {
    .sidenav-toggled .app-header.header {
        padding-left: 0px !important;
    }

    .sidenav-toggled .header-brand1 .light-logo {
        display: none !important;
    }

    .pageheader-btn {
        margin-top: 12px;
    }

    .header-brand1 {
        width: 100%;
        margin: 0 auto;
    }

    .header-brand1 .light-logo1 {
        margin: 0 auto;
        margin-top: 6px;
    }

    .app-header {
        position: fixed !important;
        z-index: 999999 !important;
    }
}

@media (max-width: 991px) {
    .app-header.header .header-brand-img.toggle-logo {
        display: none;
    }

    .app-header.header .header-brand-img.desktop-logo {
        display: none;
    }

    .dropdown-menu.header-search:before {
        left: 15px !important;
    }

    .header .dropdown-menu {
        border-radius: 0px 0px 5px 5px !important;
    }
}

.sidebar .tab-menu-heading {
    background: var(--primary-bg-color);
    color: #fff;
}

.sidebar-right .tab-content i {
    font-size: 18px;
    line-height: 2;
    background-color: var(--primary-bg-color);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    color: #fff !important;
}

.task-list {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0px 0 0;
    color: #3c4858;
}

.task-list:before {
    content: "";
    position: absolute;
    top: 9px;
    bottom: 0;
    height: 88%;
    left: 15px;
    border-left: 1px solid #e0e9f1;
}

.task-list li {
    position: relative;
    min-height: 73px;
    padding-left: 55px;
}

.task-list li:last-child:after {
    display: none;
}

.task-list li:hover .task-icon,
.task-list li:focus .task-icon {
    transform: scale(1.3);
    left: 24px;
}

.task-list li:hover .task-icon::before,
.task-list li:focus .task-icon::before {
    left: -5px;
    display: block;
}

.task-list li .task-icon {
    position: absolute;
    left: 10px;
    top: 5px;
    border-radius: 50%;
    padding: 2px;
    width: 12px;
    height: 12px;
    z-index: 2;
    transition: all ease 0.2s;
}

.task-list li .task-icon::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 1px;
    top: 5px;
    background: #e0e9f1;
    display: none;
}

@media (max-width: 360px) {
    .dropdown-menu.header-search:before {
        left: 200px !important;
    }
}

.step-footer svg {
    fill: #fff;
}

.cart-img {
    height: 55px !important;
    width: 58px;
    border-radius: 5px !important;
}

.mail-inbox .icons {
    width: 30px;
    height: 30px !important;
    border-radius: 5px;
    background: 0 0;
    text-align: center;
    line-height: 30px !important;
    display: block !important;
    padding: 0 !important;
    font-size: 16px;
    color: #565b95 !important;
    border: 1px solid #e9ebfa;
    margin-right: 8px;
}

[class^=ri-],
[class*=" ri-"] {
    font-family: "remixicon" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ri-mail-line:before {
    content: "\eef6";
}

.table-inbox tr td i {
    color: #e6e9f1;
}

.table-inbox tr td i:hover {
    color: #f7284a;
}

.table-inbox tr td .fa-star:hover {
    color: #fbc518;
}

.mail-option {
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
}

.mail-option .btn-group a.btn,
.mail-option .chk-all {
    border: 1px solid #e9ebfa;
    border-radius: 3px !important;
    display: inline-block;
    padding: 5px 10px;
}

.mail-option .btn-group,
.mail-option .chk-all {
    margin-right: 5px;
}

.mail-option .btn-group,
.mail-option .chk-all {
    margin-right: 5px;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.mail-option .btn-group a.all {
    border: 0 !important;
    padding: 0 !important;
    outline: 0;
    box-shadow: none;
}

ul.inbox-pagination {
    float: right;
}

ul.inbox-pagination li {
    float: left;
}

.inbox-pagination li span {
    display: inline-block;
    margin-right: 5px;
    margin-top: 7px;
}

.inbox-pagination a.np-btn {
    margin-left: 5px;
}

.inbox-pagination a.np-btn {
    border: 1px solid #e9ebfa;
    border-radius: 3px !important;
    display: inline-block;
    padding: 5px 15px;
}

.acc-header a.collapsed {
    border-radius: 5px;
    border: 1px solid #e9ebfa;
}

.acc-header a {
    display: block;
    padding: 15px;
    font-size: 14px;
    background-color: #d4ddca1f;
    border-bottom: 0;
    border: 1px solid #e9ebfa;
    border-radius: 5px;
}

.acc-card .collapse.show .acc-body {
    border-top: 0;
}

.acc-header a.active {
    border-radius: 5px 5px 0 0;
}

.acc-body {
    padding: 15px;
    border: 1px solid #e9ebfa;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.panel-heading1 a.active {
    border-radius: 5px 5px 0 0;
}

.card-pay .tabs-menu {
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
}

.card-pay .tabs-menu li {
    width: 33.3%;
    display: block;
}

.card-pay .tabs-menu li a.active {
    background: var(--primary-bg-color);
    color: #fff;
    border-radius: 2px;
    text-align: center;
}

.card-pay .tabs-menu li a {
    padding: 0.7rem 1rem;
    background: #f3f4f7;
    display: block;
    text-align: center;
    border-right: 1px solid #eaedf1;
}

.card-pay .tabs-menu li:last-child a {
    border-right: 0;
}

.acc-step-number {
    padding: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
}

.main-content-label {
    color: #1d212f;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.social-login {
    width: 35px;
    height: 35px;
    background: #f5f6fb;
    border-radius: 50px;
    line-height: 36px;
    font-size: 15px;
    margin-top: -5px;
}

.error-bg {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    z-index: 0;
    background: url(../images/pngs/bg1.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.error-bg::before {
    content: "";
    height: 100%;
    width: 100%;
    background: var(--primary06);
    position: absolute;
    left: 0;
    z-index: -1;
    top: 0;
}

.user-social-detail {
    margin: 0 auto;
    justify-content: center;
}

.user-social-detail .social-profile {
    height: 33px;
    width: 33px;
    background-color: rgba(228, 231, 236, 0.3);
    font-size: 13px;
    padding: 1px;
    transition: all ease 0.3s;
}

.user-social-detail .social-profile:hover {
    background-color: var(--primary-bg-color);
}

.user-social-detail .social-profile:hover i {
    color: #fff;
}

.list-group-flush .list-group-item {
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0;
}

.sidebar .list-group-flush .list-group-item {
    border-bottom: 0;
}

.sidebar .tabs-menu ul li a {
    padding: 15px 12px 15px 13px;
}

.sticky.sticky-pin .horizontal-main.hor-menu {
    box-shadow: 5px 7px 26px -5px rgba(104, 113, 123, 0.1);
}

.mini-stat-icon {
    padding: 8px 12px;
    color: #fff;
    display: block;
    border-radius: 50px;
}

.product-grid6 {
    overflow: hidden;
    border-radius: 5px;
    padding: 0px;
}

.product-grid6 .product-image6 {
    overflow: hidden;
    position: relative;
}

.product-grid6 .product-image6 .img-container {
    display: block;
    position: relative;
}

.product-grid6 .product-image6 .img-container::before {
    content: " ";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #303430db;
    z-index: 1;
    transition: all ease 0.3s;
    opacity: 0;
}

.product-grid6 .product-image6 img {
    margin: auto;
    display: block;
    transition: all ease-in-out 0.3s;
}

.product-grid6:hover .product-image6 .img-container::before {
    opacity: 1;
}

.product-grid6:hover .product-image6 img {
    transform: scale(1.1);
}

.product-grid6 .icon-container {
    position: absolute;
    z-index: 2;
    opacity: 0;
    top: 50%;
    bottom: 50%;
    left: 50%;
    height: fit-content;
    width: fit-content;
    transform: translate(-50%, -50%);
    transition: all ease;
}

.product-grid6 .icon-container .icons {
    padding: 0;
    margin: 0;
    list-style: none;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -3px;
}

.product-grid6 .icon-container .icons li {
    display: inline-block;
}

.product-grid6 .icon-container .icons li a {
    line-height: 34px;
    text-align: center;
    height: 35px;
    width: 35px;
    margin: 3px 4px;
    border-radius: 50px;
    display: block;
    position: relative;
    transition: all ease 0.3s;
}

.product-grid6 .icon-container .icons li a svg {
    fill: #fff;
}

.product-grid6 .icon-container .icons li a:hover {
    color: #fff;
    background-color: var(--primary-bg-color);
}

.product-grid6 .icon-container .icons li a:after,
.product-grid6 .icon-container .icons li a:before {
    content: attr(data-tip);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 20px;
    padding: 1px 5px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -30px;
}

.product-grid6 .icon-container .icons li a:after {
    content: "";
    height: 15px;
    width: 15px;
    border-radius: 0;
    transform: translateX(-50%) rotate(45deg);
    top: -20px;
    z-index: -1;
}

.product-grid6 .icon-container .icons li a:hover:after,
.product-grid6 .icon-container .icons li a:hover:before {
    opacity: 1;
    background-color: var(--primary-bg-color);
}

.product-grid6:hover .icon-container {
    opacity: 1;
    animation: drop-icon 0.3s linear;
}

@keyframes drop-icon {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.light-layout {
    display: none;
}

.horizontalMenucontainer .responsive-navbar.navbar .navbar-collapse {
    margin-top: 0;
}

.task-list h6 {
    font-weight: 500;
}

.task-list span {
    font-size: 12px;
    font-weight: 400;
}

.sidebar .dropdown-item h6 {
    font-weight: 500;
    color: #495057;
}

.sidebar .dropdown-item p {
    font-size: 12px;
}

.sidebar .dropdown-item .pt-1 {
    margin-top: 3px;
}

.bg-patterns {
    background: url("../images/patterns/1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.legend {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100%;
    margin-right: 5px;
    margin-top: 6px;
}

.legend.bg-background2 {
    background: #ff5d9e;
}

.mail-inbox.list-group-transparent .list-group-item.active {
    background: transparent !important;
}

.header-brand-img .toggle-logo,
.header-brand-img .light-logo {
    display: none;
}

@media (min-width: 768px) {
    .dropdown-menu.header-search:before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        left: 18px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}


.table-bordered> :not(caption)>* {
    border-width: 0px 0;
}

.list-group .contact-icons {
    position: absolute;
    top: 20px;
    left: 70px;
}

.list-group .list-contact-icons {
    min-width: 2rem;
    transition: 0.3s color;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: var(--primary-bg-color);
    background: #ece8ff;
    height: 35px;
    width: 35px;
    font-size: 13px;
    padding: 10px;
}

.sw-btn-group-extra.btn-group>.btn:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.13) !important;
}

.sw-btn-group-extra .btn+.btn {
    margin-left: 0;
}

@media screen and (max-width: 1310px) and (min-width: 1280px) {
    h3.number-font {
        font-size: 1.8rem;
    }
}

.inbox-body .mail-option .dropdown-menu {
    z-index: 8;
}

@media (max-width: 320px) {
    .responsive-navbar.navbar .nav-link.icon {
        margin: 1px !important;
    }
}

@media (min-width: 992px) and (max-width: 1060px) {
    .panel-theme .no-padding {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.dropdown-menu-arrow:before {
    content: unset;
}

.dropdown-menu span {
    font-size: 0.8rem;
}

.counter-icon.dash::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 46px;
    border-bottom-right-radius: 11px;
    border-top-right-radius: 6px;
    top: 10%;
    right: 30%;
    background: rgba(255, 255, 255, 0.135);
    transform: rotate(35deg);
}

.counter-icon.dash::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 48px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 3px;
    top: -4%;
    right: 50%;
    background: rgba(255, 255, 255, 0.135);
    transform: rotate(35deg);
}

.header-right-icons a {
    color: #100f15cf;
    transition: all ease 0.2s;
}

.header-right-icons a:hover {
    color: var(--primary-bg-color);
}

.dropdown-toggle.chart-menu::after {
    content: none;
}

.table-body tr:nth-child(even),
.table-head {
    background: transparent;
}

table.dataTable>thead .sorting.no-btn::before,
table.dataTable>thead .sorting.no-btn::after {
    content: none;
}

.showall-text {
    color: #74788e;
}

.notification-label {
    font-size: 12.5px !important;
    color: #495057;
}

.notification-subtext {
    font-size: 12px;
    color: #76839a;
    display: block;
}

.remove-animate {
    opacity: 0;
    animation: dropremove 0.3s linear;
}

@keyframes drop {
    0% {
        top: 32%;
        opacity: 1;
    }

    10% {
        top: 36%;
    }

    50% {
        top: 30%;
        opacity: 0.3;
    }

    100% {
        top: 10%;
        opacity: 0;
    }
}

@keyframes dropremove {
    0% {
        top: 32%;
        opacity: 1;
    }

    50% {
        top: 30%;
        opacity: 0.5;
    }

    100% {
        top: 10%;
        opacity: 0;
        display: none;
    }
}

.animate {
    animation: drop 0.3s linear reverse;
    display: block;
    opacity: 1;
}

.fc-day {
    text-transform: uppercase;
}

.fc-day .fc-daygrid-event {
    transition: all ease 0.3s;
}

.fc-day .fc-col-header-cell-cushion {
    font-weight: normal;
}

.fc-day.fc-day-today {
    background-color: var(--primary06);
}

.fc-day.fc-day-today .fc-daygrid-day-number {
    color: var(--primary-bg-color) !important;
}

.fc-day.fc-day-today .fc-h-event .fc-event-main {
    color: #fff;
}

.fc .fc-daygrid-day.fc-day-today {
    animation: blink 2s linear;
}

.fc-timegrid-slot {
    height: 35px !important;
}

@keyframes blink {
    0% {
        background: var(--primary03);
    }

    25% {
        background: var(--primary06);
    }

    50% {
        background: var(--primary03);
    }

    75% {
        background: var(--primary06);
    }

    100% {
        background: var(--primary03);
    }
}

.fc-event.fc-daygrid-event.fc-daygrid-dot-event {
    border: 1px solid #59adec !important;
    color: #fff;
    background-color: #59adec;
}

.fc .fc-button-primary:hover {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.fc .fc-button-primary:disabled {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.fc-event-dot {
    background-color: #59adec;
}

.ce-btn-group .btn {
    min-width: 4rem;
}

.shortcut-icn svg {
    margin-left: -4px;
}

.main-mail-menu {
    position: relative;
    padding-right: 0;
}

.main-mail-menu .nav-link {
    height: 38px;
}

.main-mail-menu .nav-link svg {
    margin-right: 10px;
}

.main-mail-menu .nav-link.text-normal {
    color: #7987a1;
}

.main-mail-menu .nav-link.text-normal:hover,
.main-mail-menu .nav-link.text-normal:focus {
    color: #495057;
}

.main-mail-menu .nav-link.text-normal:hover svg,
.main-mail-menu .nav-link.text-normal:focus svg {
    fill: rgba(0, 0, 0, 0.9);
}

.main-mail-menu .nav-link.text-normal.active {
    color: var(--primary-bg-color);
    background-color: var(--primary02);
}

.main-mail-menu .nav-link.text-normal.active svg {
    fill: var(--primary-bg-color);
}

.main-mail-menu .nav-link.text-normal.active:hover,
.main-mail-menu .nav-link.text-normal.active:focus {
    color: var(--primary-bg-color);
}

.main-mail-menu .nav-link.text-normal.active:hover svg,
.main-mail-menu .nav-link.text-normal.active:focus svg {
    fill: var(--primary-bg-color) !important;
}

@media (min-width: 992px) {
    .main-mail-menu {
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .main-mail-menu .nav-link {
        font-size: 13.5px;
    }
}

.main-mail-attachment {
    margin-right: 15px;
    font-size: 21px;
    line-height: 0.9;
    display: none;
}

@media (min-width: 992px) {
    .main-mail-attachment {
        display: block;
        position: absolute;
        right: 63px;
        top: 8px;
    }
}

.fileprogress .progress-bar {
    height: 5px;
    width: 35%;
    background-color: var(--primary-bg-color);
    animation: grow 0.6s linear 0.3s;
}

@keyframes grow {
    0% {
        width: 0%;
    }

    50% {
        width: 17%;
    }

    85% {
        width: 38%;
    }

    100% {
        width: 35%;
    }
}

.file-type {
    color: #495068;
}

.file-manger-icon img {
    height: 70px;
    width: 70px;
}

.pagination li a {
    border-radius: 2px;
}

.upgrade-storage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid linear-gradient(to right, var(--primary-bg-color) 0%, #03ab57 100%);
    border-radius: 7px;
}

.recent-files-container td,
.recent-files-container th {
    padding: 0.6rem 1.2rem;
}

.recent-files-container tbody tr:hover,
.recent-files-container tbody tr:focus {
    background-color: #f9fbfd;
}

.recent-files-container .recent-files .recent-files-icn {
    height: 25px;
    width: 25px;
}

.recent-files-options {
    animation: fade-in 0.2s linear;
}

@keyframes fade-in {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.img-link {
    cursor: pointer;
}

.owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -25px;
    margin-top: -1.65em;
}

.owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -25px;
    margin-top: -1.65em;
}

.owl-nav button {
    display: block;
    font-size: 1.3rem !important;
    line-height: 2em;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    text-align: center;
    background: #fff !important;
    opacity: 0.5 !important;
    border: 1px solid #e8ebf3 !important;
    z-index: 9;
    box-shadow: 0 4px 15px rgba(67, 67, 67, 0.15);
}

.owl-nav button:hover,
.owl-nav button:focus {
    opacity: 1;
}

.storage-list {
    list-style: none;
    margin: 0;
    padding: 0px 0 0;
    color: #3c4858;
}

.storage-list li {
    position: relative;
    margin-bottom: 18px;
    padding-left: 20px;
}

.storage-list li .storage-icon {
    border-radius: 50%;
    padding: 2px;
    width: 8px;
    height: 8px;
    z-index: 2;
    position: absolute;
    left: 4px;
    top: 3px;
}

.storage-list li .storage-amount {
    float: right;
    font-weight: bold;
}

.title-head .folder-title {
    align-items: center;
}

.title-head .folder-title .folder-image {
    width: 7%;
}

.title-head .progress {
    display: flex;
    overflow: hidden;
    font-size: 0.703125rem;
    background-color: #ebecf5;
    border-radius: 7px;
    box-shadow: 0 5px 10px rgba(227, 228, 237, 0.3);
    position: relative;
}

.title-head .progress .received {
    background-color: var(--primary-bg-color) !important;
    width: 20% !important;
}

.title-head .progress .download {
    background-color: #e984b1 !important;
    width: 25% !important;
}

.title-head .progress .shared {
    background-color: #59adec !important;
    width: 20% !important;
}

.title-head .progress .my-images {
    background-color: #e7c354 !important;
    width: 15% !important;
}

.title-head .progress .wallpapers {
    background-color: var(--primary-bg-color) !important;
    width: 20% !important;
}

.title-head .remaining-storage {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recent-files-main .recent-files-img {
    border-radius: 5px;
}

#product-each,
.products-main {
    transition: all ease 0.2s;
}

.product-grid6.list-view.product-grid6 {
    display: flex;
}

.product-grid6.list-view .product-image6 {
    max-width: 210px;
}

svg {
    fill: #212529;
}

.mail-compose-container .bootstrap-tagsinput .badge {
    margin-top: 0px !important;
}

.form-control:focus {
    border-color: var(--primary-bg-color);
}

.ckbox {
    display: block;
    position: relative;
    line-height: 1;
    margin-bottom: 13px;
}

.ckbox input[type=checkbox] {
    margin-right: 5px;
    opacity: 0;
}

.ckbox input[type=checkbox]:checked+span:after {
    display: block;
}

.ckbox span:before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #eaedf1;
    top: 1px;
    left: 0;
    border-radius: 3px;
    position: absolute;
    line-height: 18px;
}

.ckbox span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: 55% 45%;
    background-color: var(--primary-bg-color);
    line-height: 17px;
    display: none;
    border-radius: 3px;
}

.stars-main {
    cursor: pointer;
    color: #dbdbdb;
}

.stars-main i {
    color: #dbdbdb;
    font-size: 17px;
    cursor: pointer;
}

.stars-main i.active {
    color: var(--primary-bg-color) !important;
}

.stars-main.active {
    color: var(--primary-bg-color) !important;
}

.dataTables_filter label {
    margin-right: 7px;
}

.project-status {
    position: relative;
}

.project-status::before {
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #59adec;
    top: 50%;
    left: -11px;
    transform: translateY(-50%) scale(1);
    animation: expand 1.5s infinite;
}

@keyframes expand {
    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }

    100% {
        transform: translateY(-50%) scale(1);
    }
}

.project-percentage .percentage-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-percentage.large-bar .percentage-title .progress-main {
    color: var(--primary-bg-color);
}

.project-percentage.large-bar .progress-bar {
    background-color: var(--primary-bg-color) !important;
    width: 88%;
    animation: large 0.6s linear 0.3s;
}

@keyframes large {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    85% {
        width: 91%;
    }

    100% {
        width: 88%;
    }
}

.project-percentage.submitted .percentage-title .progress-main,
.project-percentage.completed .percentage-title .progress-main {
    color: var(--primary-bg-color);
}

.project-percentage.submitted .progress-bar,
.project-percentage.completed .progress-bar {
    width: 100%;
    animation: completed 0.6s linear 0.3s;
}

@keyframes completed {
    0% {
        width: 0%;
    }

    50% {
        width: 76%;
    }

    85% {
        width: 97%;
    }

    100% {
        width: 100%;
    }
}

.project-percentage.medium-bar .percentage-title .progress-main {
    color: #59adec;
}

.project-percentage.medium-bar .progress-bar {
    background-color: #59adec !important;
    width: 55%;
    animation: medium 0.6s linear 0.3s;
}

@keyframes medium {
    0% {
        width: 0%;
    }

    50% {
        width: 37%;
    }

    85% {
        width: 58%;
    }

    100% {
        width: 55%;
    }
}

.project-percentage.medium-bar.medium-lg .progress-bar {
    width: 70%;
    animation: medium-lg 0.6s linear 0.3s;
}

@keyframes medium-lg {
    0% {
        width: 0%;
    }

    50% {
        width: 52%;
    }

    85% {
        width: 73%;
    }

    100% {
        width: 70%;
    }
}

.project-percentage.small-bar .percentage-title .progress-main {
    color: #e7c354;
}

.project-percentage.small-bar .progress-bar {
    background-color: #e7c354 !important;
    width: 35%;
    animation: grow 0.6s linear 0.3s;
}

.project-percentage.small-bar.small-sm .percentage-title .progress-main {
    color: #e32f2f;
}

.project-percentage.small-bar.small-sm .progress-bar {
    background-color: #e32f2f !important;
    width: 15%;
    animation: smallsm 0.6s linear 0.3s;
}

@keyframes smallsm {
    0% {
        width: 0%;
    }

    50% {
        width: 7%;
    }

    85% {
        width: 18%;
    }

    100% {
        width: 15%;
    }
}

.projects.project-type-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projects.project-type-container .project-type {
    justify-content: flex-end;
}

.projects.project-type-container .project-type .nav-link {
    color: #495057;
    border-radius: 5px;
    margin-left: 5px;
    transition: all ease 0.3s;
    min-width: 6.3rem;
    padding: 0.4rem 0.8rem;
    align-items: center;
    justify-content: center;
}

.projects.project-type-container .project-type .nav-link.active {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.projects.project-type-container .project-type .nav-link:hover,
.projects.project-type-container .project-type .nav-link:focus {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.main-nav-column .nav-link {
    border-radius: 5px;
}

.main-nav-column .nav-link.active {
    background-color: #f2f3f987;
}

.main-nav-column .nav-link:hover,
.main-nav-column .nav-link:focus {
    background-color: #f2f3f987;
}

.dropdown-item i {
    color: #74788e !important;
}

.dropdown-item:hover i,
.dropdown-item:focus i {
    color: var(--primary-bg-color) !important;
}

.project-main-details {
    align-items: center;
}

.project-main-details .form-group {
    margin: 0px !important;
}

.project-main-details .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: unset !important;
    line-height: 38px !important;
    color: #343a40;
}

.project-main-details .form-group .select2-container--default .select2-selection--single .select2-selection__rendered:hover,
.project-main-details .form-group .select2-container--default .select2-selection--single .select2-selection__rendered:focus {
    color: var(--primary-bg-color);
}

.project-main-details .form-group .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--primary-bg-color) !important;
}

.project-main-details .form-group.status .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #59adec !important;
}

.project-main-details label {
    margin: 0px !important;
}

.project-main-details .select2-search--dropdown {
    border-top: 1px solid #eaedf1 !important;
}

.ticket-details-footer .media.ticket-reply {
    padding: 1.5rem;
    border-bottom: 1px solid #eaedf1;
}

.ticket-details-footer .reply-text-main {
    width: 100%;
}

.table-main-container {
    overflow-x: scroll;
}

.table-main-container td,
.table-main-container th {
    padding: 0.6rem 0.5rem;
}

.table-main-container tbody tr:hover,
.table-main-container tbody tr:focus {
    background-color: #f9fbfd;
}

.table-main-container tbody i {
    color: #6e84a3 !important;
}

.table-main-container .recent-files .recent-files-icn {
    height: 25px;
    width: 25px;
}


.status-main {
    border-radius: 12px;
    padding: 0.1rem 0.75rem;
    color: #fff;
}

.status-main.in-progress {
    background-color: #59adec;
}

.status-main.on-hold {
    background-color: #e7c354;
}

.status-main.completed {
    background-color: var(--primary-bg-color);
}

.tasks-table-container .select2-container,
.timetracking-table-container .select2-container,
.tickets-table-container .select2-container,
.billing-table-container .select2-container,
.files-table-container .select2-container {
    margin: 0px 5px !important;
}

@media (min-width: 576px) {
    .modal-dialog.task-view-modal {
        max-width: 850px;
    }

    .modal-dialog.new-ticket-modal {
        max-width: 768px;
    }

    .modal-dialog.edit-ticket-modal {
        max-width: 768px;
    }
}

.status-main {
    border-radius: 12px;
    padding: 0.2rem 1rem;
    color: #fff;
}

.status-main.in-progress {
    background-color: #59adec;
}

.status-main.on-hold {
    background-color: #e7c354;
}

.status-main.completed {
    background-color: var(--primary-bg-color);
}

.status-dropdown .status-main {
    border-radius: 26px;
}

.task-view-modal {
    overflow: hidden;
}

.task-view-modal .modal-body {
    padding: 1.5rem !important;
}

.task-view-modal .task-data {
    margin-bottom: 20px;
}

.task-view-modal .project-type {
    width: 100%;
    padding-bottom: 0px;
}

.task-view-modal .project-type .nav-link {
    color: #495057;
    border-radius: 5px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom: 0px !important;
    margin-right: 10px;
    transition: all ease 0.3s;
    min-width: 6.3rem;
    padding: 0.4rem 0.8rem;
    align-items: center;
    justify-content: center;
}

.task-view-modal .project-type .nav-link.active {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.task-view-modal .project-type .nav-link:hover,
.task-view-modal .project-type .nav-link:focus {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.dataTable td {
    vertical-align: middle;
    font-size: 13px;
    border-left: solid 1px #dfdfdf;
    border-bottom: solid 1px #dfdfdf;
}

.dataTable td:last-child {
    border-right: solid 1px #dfdfdf;
}

.dataTable td .fa {
    font-size: 22px;
}

    .dataTable td img {
        width:28px;
        height:28px;
    }

.datetimepicker table th.prev,
.datetimepicker table th.next,
.datetimepicker table th.switch {
    background-color: #fff;
    color: #343a40;
}

.select-product-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.select-product-container .add-product-btn {
    margin-top: 16px;
}

.product-description-each {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-description-each .invoice-product-table {
    flex: 1;
}

.product-description-each .invoice-product-table td,
.product-description-each .invoice-product-table th {
    padding: 10px;
}

.product-description-each .invoice-product-table .dashed-border-bottom {
    border-bottom: 1px dashed #707070;
}

.product-description-each .invoice-product-table .amount-cell {
    text-align: right;
    vertical-align: unset;
}

.product-description-each .invoice-product-table input[type=number]::-webkit-inner-spin-button,
.product-description-each .invoice-product-table input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.product-description-each .delete-row-btn {
    padding: 6rem 0.5rem;
    cursor: pointer;
}

.product-description-each .delete-row-btn:hover,
.product-description-each .delete-row-btn:focus {
    color: #d12c47 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline-color: var(--primary-bg-color);
}

.invoice-bottom-table-container .invoice-table-bottom td {
    padding: 10px;
    border: 1px solid #eaedf1;
}

.input-group-addon {
    padding: unset !important;
    height: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-date-checkbox,
.no-taskEnd-checkbox {
    align-self: flex-end;
    margin-bottom: 12px;
}

.create-project-main,
.invoice-timelog-main,
.task-edit-main,
.project-edit-main,
.create-client-main {
    overflow: hidden;
}

.create-project-main input[type=number]::-webkit-inner-spin-button,
.create-project-main input[type=number]::-webkit-outer-spin-button,
.invoice-timelog-main input[type=number]::-webkit-inner-spin-button,
.invoice-timelog-main input[type=number]::-webkit-outer-spin-button,
.task-edit-main input[type=number]::-webkit-inner-spin-button,
.task-edit-main input[type=number]::-webkit-outer-spin-button,
.project-edit-main input[type=number]::-webkit-inner-spin-button,
.project-edit-main input[type=number]::-webkit-outer-spin-button,
.create-client-main input[type=number]::-webkit-inner-spin-button,
.create-client-main input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.create-project-main .form-group .select2-container--default .select2-selection--single .select2-selection__rendered,
.invoice-timelog-main .form-group .select2-container--default .select2-selection--single .select2-selection__rendered,
.task-edit-main .form-group .select2-container--default .select2-selection--single .select2-selection__rendered,
.project-edit-main .form-group .select2-container--default .select2-selection--single .select2-selection__rendered,
.create-client-main .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #343a40;
    min-width: 150px !important;
}

.create-project-main .end-date-checkbox-container {
    cursor: pointer;
}

.other-details {
    cursor: pointer;
}

.status-indicator {
    position: relative;
    margin-left: 18px;
}

.status-indicator.projects::before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(50%, -41%);
}

.status-indicator.projects.in-progress::before {
    background-color: #59adec;
}

.status-indicator.projects.on-hold::before {
    background-color: #e7c354;
}

.status-indicator.projects.completed::before {
    background-color: var(--primary-bg-color);
}

.status-indicator.projects.empty::before {
    background-color: transparent;
}

.status-indicator.projects.default::before {
    background-color: transparent;
}

.status-indicator.projects.def::before {
    background-color: transparent;
}

.status-indicator.tickets::before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(50%, -41%);
}

.status-indicator.tickets.open::before {
    background-color: var(--primary-bg-color);
}

.status-indicator.tickets.pending::before {
    background-color: #e7c354;
}

.status-indicator.tickets.resolved::before {
    background-color: #13bfa6;
}

.status-indicator.tickets.closed::before {
    background-color: #e984b1;
}

.status-indicator.tickets.empty::before {
    background-color: transparent;
}

.status-indicator.tickets.default::before {
    background-color: transparent;
}

.status-indicator.tickets.def::before {
    background-color: transparent;
}

.status-indicator.invoice-bill::before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(50%, -41%);
}

.status-indicator.invoice-bill.paid::before {
    background-color: var(--primary-bg-color);
}

.status-indicator.invoice-bill.unpaid::before {
    background-color: #d12c47;
}

.status-indicator.invoice-bill.overdue::before {
    background-color: #e7c354;
}

.status-indicator.invoice-bill.empty::before {
    background-color: transparent;
}

.status-indicator.invoice-bill.default::before {
    background-color: transparent;
}

.status-indicator.invoice-bill.def::before {
    background-color: transparent;
}

.d-f-ai-c-jc-sb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.d-f-ai-c-jc-c {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.d-f-ai-c {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#remove-btn {
    position: absolute;
    top: -6px;
    left: -6px;
    background-color: #fff;
    visibility: hidden;
}

.client-title {
    display: flex;
    align-items: flex-start;
}

.attached-file-container .attached-file-image {
    position: relative;
}

.attached-file-container .attached-file-image img {
    overflow: hidden;
}

.attached-file-container .attached-file-image .image-pic {
    position: absolute;
    right: 0;
    left: 0;
    top: 0px;
    color: #fff;
    font-size: 17px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 100%);
    padding: 9px 0px 20px 15px;
    border-radius: 5px;
}

.attached-file-container .attached-file-image .icons {
    padding: 0px;
    list-style: none;
    opacity: 0;
    left: 0;
    right: 0;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    bottom: 0px;
    z-index: 1;
    transition: all ease 0.3s;
    display: block;
    margin: 0 auto;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 100%);
}

.attached-file-container .attached-file-image .icons li {
    margin: 0 auto;
    display: inline-block;
}

.attached-file-container .attached-file-image .icons li a:not([href]):not([tabindex]) {
    color: #fff;
}

.attached-file-container:hover .attached-file-image .icons {
    padding: 10px;
    opacity: 1;
}



.blog-topics .list-group-item {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid #eaedf1;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    transition: all ease 0.3s;
    cursor: pointer;
}

.blog-topics .list-group-item i {
    color: var(--primary-bg-color);
    transition: all ease 0.2s;
}

.blog-topics .list-group-item:hover {
    border-bottom: 1px solid #eaedf1;
    margin-left: 2px;
}

.blog-topics .list-group-item:hover i {
    color: var(--primary-bg-color);
    font-size: 20px;
}

.blog-topics .list-group-item a {
    display: flex;
    align-items: center;
    transition: all ease 0.3s;
}

.blog-topics .list-group-item a:hover {
    color: rgba(52, 58, 64, 0.85) !important;
}

.blog-autors .list-group-item {
    border: 0px;
    margin-bottom: 0px;
    align-items: center;
    cursor: pointer;
    transition: all ease 0.2s;
    border: 1px solid transparent;
}

.blog-autors .list-group-item:hover {
    border-color: #eaedf1;
    transform: scaleX(1.03);
    box-shadow: rgba(169, 184, 200, 0.15) 0px 3px 9px 0px;
    border: 1px solid #eaedf1;
    border-radius: 5px;
}

.blog-autors .list-group-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content p {
    line-height: 1.7;
}

.footer-container-main.blog-footer .icons-bg {
    justify-content: space-between;
}

.footer-container-main .icons-bg {
    display: flex;
    align-items: center;
}

.footer-container-main .more-btn {
    color: #707070 !important;
}

.footer-container-main .more-btn:hover {
    color: var(--primary-bg-color) !important;
}

.dropdown .nav-link:hover i,
.dropdown .nav-link:focus i,
.dropdown .nav-link:active i {
    color: #707070;
}

.profile-img-main {
    z-index: 1;
}

.profile-img-main img {
    background-color: rgba(var(--primary-bg-color), 0.19);
}

.custom-switch-input:focus~.custom-switch-indicator {
    border: none !important;
}

@media (min-width: 992px) {
    .nav1 .nav-link {
        font-size: 14px;
    }

    .nav1 .nav-link i {
        font-size: 18px;
        margin-right: 12px;
    }
}

.settings-main-icon {
    display: flex;
    text-align: center;
}

.settings-main-icon i {
    width: 3rem;
    font-size: 18px;
    line-height: 3rem;
    height: 3rem;
    background-color: var(--primary02);
    color: var(--primary-bg-color);
    border-radius: 50%;
}

#echart10 div:last-child div:last-child div:first-child {
    background-color: #59adec !important;
}

#echart10 div:last-child div:last-child div:last-child {
    background-color: #d12c47 !important;
}

.nvd3 .nv-bars rect {
    fill: #ffcf9f;
}

.pricing-card .list-unstyled {
    padding-left: 0;
    list-style: none;
}

.pricing-card .display-5 {
    font-size: 2.3rem;
    line-height: 1.2;
    padding: 25px 0 0 !important;
}

.pricing-card .list-unstyled li {
    display: flow-root;
    margin-bottom: 0;
    padding: 9px 0;
}

/*------ Pricing Styles ---------*/
.panel.price {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.panel.price>.panel-heading {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.panel.price h3 {
    margin-bottom: 0;
    padding: 20px 0;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: #fff;
}

.panel.price {
    margin-bottom: 1.5rem;
}

.panel.price>.panel-heading {
    color: #343a40;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.panel.price .list-group-item:last-child {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.panel.price .list-group-item:first-child {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

.price .panel-footer {
    border-bottom: 0px;
    background-color: #fff;
    border-left: 0;
    border-right: 0;
}

.price.panel-color>.panel-body {
    background-color: #fff;
}

.panel-body {
    padding: 5px;
    /*border: 1px solid #eaedf1;*/
}

.panel-body .lead {
    font-size: 20px;
    margin-bottom: 0;
    padding: 10px 0;
}

.panel-body .lead strong {
    font-size: 40px;
    margin-bottom: 0;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #fff;
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
    border-right: 1px solid #eaedf1;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel.price .btn {
    border: 0px;
}

.pricing .list-unstyled li {
    display: flow-root;
    margin-bottom: 0;
    padding: 15px 0;
}

.pricing-body {
    list-style-type: none;
}

.pricing-card {
    transition: box-shadow 0.3s;
}

.pricing-card.advanced:hover {
    box-shadow: 0 7px 30px rgba(119, 188, 33, 0.2) !important;
}

.pricing-card:hover {
    box-shadow: 0px 16px 32px rgba(33, 33, 33, 0.15);
}

.pricing-tabs ul.nav-price {
    text-align: center;
    margin: 0 auto;
    display: inline-flex;
    margin-top: 30px;
    margin-bottom: 40px;
    border: 1px solid #eaedf1;
    border-radius: 5px;
    padding: 7px;
    background: #fff;
    overflow: hidden;
}

.pricing-tabs ul.nav-price li {
    display: block;
}

.pricing-tabs ul.nav-price li a.active {
    background: var(--primary-bg-color);
}

.pricing-tabs ul.nav-price li a.active {
    color: #fff;
    transition: all 0.3s ease;
}

.pricing-tabs ul.nav-price li a {
    padding: 8px 16px;
    border-radius: 5px !important;
    display: block;
    background: #fff;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

@media (max-width: 1034px) {
    .project-type-container .project-type {
        display: block !important;
    }

    .project-type-container .project-type .nav-link {
        margin-left: 10px !important;
    }
}

@media (max-width: 1280px) {
    .prjct-details .details {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .mail-cmnt {
        margin-top: 0.5rem;
    }
}

.divider {
    border-left: 2px solid #eaedf1;
    width: 1px;
    height: 20px;
}

.task-view-modal {
    overflow: hidden;
}

.task-view-modal .modal-body {
    padding: 1.5rem !important;
}

.task-view-modal .task-data {
    margin-bottom: 20px;
}

.task-view-modal .modal-footer {
    align-items: flex-start;
    flex-direction: column;
}

.task-view-modal .modal-footer .tab-content {
    padding: 1.5rem !important;
}

.task-view-modal .modal-footer a.text-primary:hover svg,
.task-view-modal .modal-footer a.text-primary:focus svg {
    fill: var(--primary-bg-color) !important;
}

.task-view-modal .modal-footer .no-data {
    padding: 1rem;
    text-align: center;
}

.task-view-modal .modal-footer .no-data svg {
    width: 2.2rem;
}

.task-view-modal .modal-footer .task-files-tab label {
    cursor: pointer;
}

.task-view-modal .modal-footer .task-files-tab label.text-primary:hover,
.task-view-modal .modal-footer .task-files-tab label.text-primary:focus {
    color: var(--primary-bg-color) !important;
}

.task-view-modal .modal-footer .task-files-tab label.text-primary:hover svg,
.task-view-modal .modal-footer .task-files-tab label.text-primary:focus svg {
    fill: var(--primary-bg-color) !important;
}

.task-view-modal .modal-footer .task-files-tab .file-upload-text #task-file-input {
    display: none;
}

.task-view-modal .modal-footer .task-files-tab .file-upload-text label[for=task-file-input] * {
    vertical-align: middle;
    cursor: pointer;
}

.task-view-modal .modal-footer .task-files-tab .file-upload-text label[for=task-file-input] span {
    margin-left: 10px;
}

.task-view-modal .modal-footer .task-files-tab .file-upload-text i.remove {
    vertical-align: middle;
    margin-left: 5px;
    cursor: pointer;
    display: none;
}

.task-view-modal .modal-footer .sub-list-container .sub-list-item {
    display: flex;
    align-items: center;
    padding: 0.4rem;
}

.task-view-modal .modal-footer .sub-list-container .sub-list-item .sub-list-main {
    display: flex;
    align-items: center;
    flex: 1;
}

.task-view-modal .modal-footer .sub-list-container .sub-list-item .sub-list-main .check-btn {
    height: 11px;
    width: 11px;
    border: 1px solid #707070;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: 5px;
    align-self: flex-start;
    transition: all ease 0.3s;
}

.task-view-modal .modal-footer .sub-list-container .sub-list-item .sub-list-main .sub-list-text {
    cursor: pointer;
}

.task-view-modal .modal-footer .sub-list-container .sub-list-item.task-completed .sub-list-text {
    text-decoration: line-through;
}

.task-view-modal .modal-footer .sub-list-container .sub-list-item.task-completed .check-btn {
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.task-view-modal .modal-footer .sub-list-container li:hover,
.task-view-modal .modal-footer .sub-list-container li:focus {
    background-color: #f7f8f9;
}

.task-view-modal .modal-footer .sub-list-container .delete-main {
    cursor: pointer;
}

.task-view-modal .modal-footer .sub-list-container .delete-main:hover,
.task-view-modal .modal-footer .sub-list-container .delete-main:focus {
    fill: #d12c47 !important;
    color: #d12c47 !important;
}

.task-view-modal .modal-footer .add-task-container {
    align-items: center;
}

.task-view-modal .project-type {
    width: 100%;
    padding-bottom: 0px;
}

.task-view-modal .project-type .nav-link {
    color: #495057;
    border-radius: 5px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom: 0px !important;
    margin-right: 10px;
    transition: all ease 0.3s;
    min-width: 6.3rem;
    padding: 0.4rem 0.8rem;
    align-items: center;
    justify-content: center;
}

.task-view-modal .project-type .nav-link.active {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.task-view-modal .project-type .nav-link:hover,
.task-view-modal .project-type .nav-link:focus {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.ticket-page.modal-open {
    overflow: hidden !important;
}

.media {
    overflow: visible !important;
}

.media .media-body {
    overflow: visible !important;
}

.options-inv {
    position: absolute;
    top: 11px;
    right: 11px;
}

.select2-dropdown {
    z-index: 1 !important;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    animation: upwards 20s linear infinite;
    bottom: -150px;
    border: 2px solid rgba(227, 255, 239, 0.5);
}

.circles li:nth-child(1) {
    left: 25%;
    width: 25px;
    height: 25px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 15px;
    height: 15px;
    border-left: 0;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 20%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    border-radius: 50%;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 85%;
    width: 15px;
    height: 15px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 25%;
    width: 25px;
    height: 25px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 80%;
    width: 20px;
    height: 20px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 10%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    border-radius: 50%;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 95%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    border-left: 0;
    animation-duration: 11s;
}

@keyframes upwards {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

#circle1 canvas {
    position: absolute;
    top: 50%;
    bottom: 50%;
    transform: translateY(-50%);
    right: 15px;
}

#circle1 strong {
    position: absolute;
    right: 37px;
    top: 41%;
}

.z-10 {
    z-index: 10;
}

#tooltip-canvas {
    position: absolute;
    top: 53px;
    left: 69px;
}

.task-list1 li {
    position: relative;
    margin-bottom: 18px;
    padding-left: 20px;
}

.task-list1 li .task-icon1 {
    border-radius: 50px;
    padding: 2px;
    width: 10px;
    height: 10px;
    z-index: 2;
    position: absolute;
    left: 4px;
    top: 5px;
    margin-right: 5px;
}

.earnings {
    position: relative;
}

.welcome-card h3 {
    color: var(--primary-bg-color);
}

.welcome-card p {
    color: var(--primary-bg-color);
}

.circle-chart strong {
    color: var(--primary-bg-color);
}

.apexcharts-toolbar {
    z-index: 1;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-bg-color) !important;
}

.apexcharts-yaxis-texts-g text {
    fill: #818181 !important;
}

.apexcharts-xaxis-texts-g text {
    fill: #818181 !important;
}

.apexcharts-yaxis-title text {
    fill: #818181;
}

.apexcharts-canvas.zoomable .hovering-zoom {
    cursor: pointer;
}

svg {
    fill: #fff;
}


#data-table .select2-container {
    width: 100% !important;
}

.data-image {
    background-size: cover;
}

.side-menu-label1 {
    display: none;
}

@media (max-width: 575px) {

    .wizard>.steps .current a .title,
    .wizard>.steps .current a:hover .title,
    .wizard>.steps .current a:active .title {
        display: none !important;
    }
}

.w-icn {
    color: var(--primary-bg-color);
    fill: var(--primary-bg-color);
}

.w-inner-icn {
    color: #495584;
    fill: #495584;
}

input[type=radio],
input[type=checkbox] {
    margin-right: 7px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary-bg-color) !important;
}

.select2-container--open .select2-dropdown--below {
    z-index: 9 !important;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.spinner,
.spinner-lg,
.double-bounce1,
.double-bounce2,
.cube1,
.cube2 {
    background-color: var(--primary-bg-color);
}

.lds-ring div {
    border: 6px solid var(--primary-bg-color);
    border-color: var(--primary-bg-color) transparent transparent transparent;
}

.lds-hourglass:after {
    border: 26px solid var(--primary-bg-color);
    border-color: var(--primary-bg-color) transparent;
}

.lds-heart div:after,
.lds-heart div:before {
    background: var(--primary-bg-color);
}

.lds-heart div {
    background: var(--primary-bg-color);
}

.btn-link {
    color: var(--primary-bg-color);
}

.tabs-menu1 ul li .active {
    border-bottom: 3px solid var(--primary-bg-color);
}

.custom-switch-input:checked~.custom-switch-indicator {
    background: var(--primary-bg-color);
}

.select2-container {
    width: 20% !important;
}

.select2-results__option span img,
.select2-selection__rendered span img {
    margin: 5px !important;
}

.editable-checklist .form-label.ckbox span {
    margin-left: 10px;
}

.tag-attachments a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice-product-table input,
.invoice-table-bottom input {
    min-width: 100px;
}

@supports (-webkit-touch-callout: none) {
    @media screen and (max-device-width: 991px) and (orientation: portrait) {

        .ps.ps--active-y:hover>.ps__rail-y,
        .ps.ps--active-y:focus>.ps__rail-y {
            opacity: 0;
        }
    }

    @media screen and (max-device-width: 991px) and (orientation: landscape) {

        .ps.ps--active-y:hover>.ps__rail-y,
        .ps.ps--active-y:focus>.ps__rail-y {
            opacity: 0;
        }
    }
}

@media (max-width: 575.98px) {
    .login-img .demo-icon {
        top: 20px !important;
        right: 20px !important;
    }
}

.login-img .demo-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    padding: 6px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.login-img .demo-icon svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.error-template {
    position: relative;
}

.error-bg .demo-icon {
    position: absolute;
    right: 40px;
    top: 40px;
    padding: 6px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.error-bg .demo-icon svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.apexcharts-canvas .apexcharts-zoom-icon.selected svg,
.apexcharts-canvas .apexcharts-selection-icon.selected svg,
.apexcharts-canvas .apexcharts-reset-zoom-icon.selected svg {
    fill: var(--primary-bg-color) !important;
}

.apexcharts-zoom-icon,
.apexcharts-zoom-in-icon,
.apexcharts-zoom-out-icon,
.apexcharts-reset-zoom-icon,
.apexcharts-pan-icon svg,
.apexcharts-selection-icon,
.apexcharts-menu-icon,
.apexcharts-toolbar-custom-icon {
    cursor: pointer;
    width: 20px;
    height: 20px;
    line-height: 24px;
    color: #6e8192;
    fill: #6e8192;
    text-align: center;
}


.select2-selection__choice span {
    line-height: 2 !important;
}

.select2-selection__choice,
.select2-selection__rendered span {
    display: flex;
    align-items: center;
}


.options-inv .dropdown-menu {
    z-index: 1;
}

.select-client .select2-selection__choice {
    line-height: 1.9 !important;
}


.tag a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-img .demo-icon {
    cursor: pointer;
}

div.dataTables_wrapper div.dataTables_length label {
    width: 100% !important;
}

.select-status .select2-container,
.form-group .select2-container {
    width: 100% !important;
}

.chat-media img {
    width: 100%;
    height: 100%;
}

@media (max-width: 360px) {
    .circle-chart {
        display: none;
    }
}

.storage-card {
    border: 0px !important;
}

.select-product-container .select2-selection {
    min-width: 150px;
}

@media (max-width: 767.98px) {
    .select-product-container {
        justify-content: center;
    }
}


.ticket-details-footer .media.ticket-reply:last-child {
    border-bottom: 0px !important;
}

@media (max-width: 576px) {
    .alert-dismissible .btn-close {
        padding: 0.5rem 0.25rem;
    }
}

@media (max-width: 576px) {
    .ytp-large-play-button {
        width: 48px;
        height: 28px;
        margin-left: -24px;
        margin-top: -12px;
    }
}

.tabs-menu1 ul li {
    border-bottom: 3px solid transparent !important;
}

.pricing-body li {
    white-space: nowrap;
}

.background-image-blog {
    border: 0px !important;
}

@media (max-width: 575.98px) {
    .wizard>.actions>ul {
        display: block !important;
    }

    .wizard>.actions>ul li {
        margin: 5px 0px 5px 0px;
    }

    #echart8 canvas {
        width: 260px !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
}

@media (min-width: 992px) {
    .project-menu nav a.nav-link {
        border-bottom: 0px !important;
    }

    .tabs-menu4 .nav a.nav-link {
        border-bottom: 0px !important;
    }
}

.transaction-icon i {
    font-size: 16px;
    padding: 10px;
    margin-right: 12px;
    border-radius: 50px;
    background-color: var(--primary01);
    fill: var(--primary-bg-color);
    color: var(--primary-bg-color);
}

.transactions .list-group a {
    box-shadow: 0 4px 16px 0 rgba(169, 184, 200, 0.15);
    border-radius: 5px;
    border: 0px;
}

.sales-stats {
    padding-left: 50px;
}

.pricing-card .card-header {
    border-bottom: 0px !important;
}

.mapcontainer4.mapael svg,
.mapcontainer.mapael svg,
.mapcontainer1.mapael svg {
    width: 100%;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-11 {
    font-size: 11px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-17 {
    font-size: 17px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-19 {
    font-size: 19px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-21 {
    font-size: 21px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-23 {
    font-size: 23px !important;
}

.fs-25 {
    font-size: 25px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-40 {
    font-size: 40px;
}

.fs-50 {
    font-size: 50px;
}

.fs-65 {
    font-size: 65px;
}

.fs-100 {
    font-size: 100px;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-600 {
    font-weight: 600;
}

.fw-semibold {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

figure {
    margin: 0 0 1rem;
}

.image {
    position: relative;
}

img {
    vertical-align: middle;
    border-style: none;
}

.img-1 {
    vertical-align: middle;
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    bottom: -62px;
}

.img-1 img {
    border-radius: 100%;
    border: 6px solid rgba(225, 225, 225, 0.5);
}

.img-2 img {
    border-radius: 5px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.item-card img:hover {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #eaedf1;
    border-radius: 3px;
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #868e96;
}

img {
    max-width: 100%;
}

.loader-img {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 43%;
    left: 0;
    margin: 0 auto;
    text-align: center;
}

.login-img {
    background-attachment: fixed !important;
    height: 100%;
    width: 100%;
    background: url("../images/login-background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-table;
}

.login-img::before {
    content: "";
    height: 100%;
    width: 100%;
    background: var(--primary06);
    position: absolute;
    left: 0;
    z-index: -1;
    top: 0;
}

.profie-img .flex-md-row img {
    width: 60px;
}

.profile-img {
    display: block;
    border: 1px solid rgba(167, 180, 201, 0.2);
    border-radius: 50%;
    font-size: 10px;
    text-align: center;
    background: rgba(225, 225, 225, 0.2);
    z-index: 1000;
    position: relative;
}

.cover-image {
    background-size: cover !important;
}

.card-profile-img {
    max-width: 6rem;
    margin-bottom: 1rem;
    border: 3px solid #fff;
    border-radius: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.img-avatar {
    height: 37px;
    border-radius: 2px;
    width: 37px;
}

.image-size {
    width: 128px;
    height: 128px;
}

.img-float {
    width: 50px;
    position: absolute;
    top: -3.5rem;
    right: 1rem;
}

.member img {
    width: 100%;
}

.img-card:before {
    content: "";
    position: absolute;
    background: url(../images/svgs/circle.svg);
    background-position: right;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.label {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding-right: 0.6em;
    padding-left: 0.6em;
}

.label-size {
    font-size: 3.8em;
    margin-left: 9px;
}

.label-font-size {
    font-size: 1.8em;
}

.label-medium-size {
    font-size: 1.2em;
}

.labels li {
    display: inline;
}

.label-title {
    font-size: 1.125rem;
}

.label-font {
    font-size: 0.8em;
}

.label-default {
    background: #d5e0ec;
    color: #fff;
}

.label-primary {
    background: var(--primary-bg-color);
    color: #fff;
}

.label-secondary {
    background: #e984b1;
    color: #fff;
}

.label-light {
    background: #868e96;
    color: #fff;
}

.label-dark {
    background: #343a40;
    color: #fff;
}

.label-success {
    background: #13bfa6;
    color: #fff;
}

.label-danger {
    background: #d12c47;
    color: #fff;
}

.label-warning {
    background: #e7c354;
    color: #fff;
}

.label-info {
    background: #59adec;
    color: #fff;
}

/*-----Lists-----*/
.list-group-item.active {
    z-index: 2;
    background-color: #f6f4fb;
    color: var(--primary-bg-color);
    border-color: #d8dde4;
}

.list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item-action {
    width: 100%;
    color: #76839a;
    text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
    color: #76839a;
    text-decoration: none;
    background-color: #f1f1f9;
}

.list-group-item-action:active {
    color: #76839a;
    background-color: #e9ecef;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #eaedf1;
}

.listorder {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #eaedf1;
    list-style-type: decimal;
    list-style-position: inside;
}

.listorder1 {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #eaedf1;
    list-style-type: upper-alpha;
    list-style-position: inside;
}

.listunorder {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #eaedf1;
    list-style-type: circle;
    list-style-position: inside;
}

.listunorder1 {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #eaedf1;
    list-style-type: square;
    list-style-position: inside;
}

.list-group-item:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.list-group-item:hover,
.list-group-item:focus {
    z-index: 1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.list-group-item.disabled,
.list-group-item:disabled {
    color: #c6cad8;
    background-color: #fff;
}

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0;
}

.list-group-item-primary {
    color: #24426c;
    background-color: #cbdbf2;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
    color: #24426c;
    background-color: #b7cded;
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #24426c;
    border-color: #24426c;
}

.list-group-item-secondary {
    color: #464a4e;
    background-color: #dddfe2;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
    color: #464a4e;
    background-color: #cfd2d6;
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #464a4e;
    border-color: #464a4e;
}

.list-group-item-success {
    color: #316100;
    background-color: #d2ecb8;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
    color: #316100;
    background-color: #c5e7a4;
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #316100;
    border-color: #316100;
}

.list-group-item-info {
    color: #24587e;
    background-color: #cbe7fb;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
    color: #24587e;
    background-color: #b3dcf9;
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #24587e;
    border-color: #24587e;
}

.list-group-item-warning {
    color: #7d6608;
    background-color: #fbeebc;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
    color: #7d6608;
    background-color: #fae8a4;
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #7d6608;
    border-color: #7d6608;
}

.list-group-item-danger {
    color: #6b1110;
    background-color: #f1c1c0;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
    color: #6b1110;
    background-color: #ecacab;
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #6b1110;
    border-color: #6b1110;
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
    color: #818182;
    background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182;
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
    color: #1b1e21;
    background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}

.list-inline-dots .list-inline-item+.list-inline-item:before {
    content: "· ";
    margin-left: -2px;
    margin-right: 3px;
}

.list-separated-item {
    padding: 1rem 0;
}

.list-separated-item:first-child {
    padding-top: 0;
}

.list-group-item.active .icon {
    color: inherit !important;
}

.list-group-item .icon {
    color: #76839a !important;
}

.list-group-transparent .list-group-item {
    background: none;
    border: 0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.list-group-transparent .list-group-item.active {
    background-color: #f5f6fb;
    font-weight: 500;
    color: var(--primary-bg-color);
}

.list-group-transparent .list-group-item.active svg {
    fill: var(--primary-bg-color);
}

.list-group.lg-alt .list-group-item {
    border: 0;
}

.list.d-flex img {
    width: 60px;
}

.list-style-1 {
    list-style: inherit;
    padding-left: inherit;
}

.list-style-1 ul {
    list-style: inherit;
    padding-left: 30px;
}

.list-style-1 li {
    line-height: 30px;
}

.list-style2 {
    list-style: decimal;
    padding-left: inherit;
}

.list-style2 ul {
    list-style: decimal;
    padding-left: 30px;
}

.list-style2 li {
    line-height: 30px;
}

.list-style3 {
    list-style: circle !important;
    padding-left: inherit;
}

.list-style3 ul {
    list-style: decimal;
    padding-left: 30px;
}

.list-style3 li {
    line-height: 30px;
}

.list-style4 {
    list-style: lower-alpha;
    padding-left: inherit;
}

.list-style4 ul {
    list-style: decimal;
    padding-left: 30px;
}

.list-style4 li {
    line-height: 30px;
}

.list-style5 {
    list-style: square;
    padding-left: inherit;
}

.list-style5 ul {
    list-style: decimal;
    padding-left: 30px;
}

.list-style5 li {
    line-height: 30px;
}

.list-style6 {
    list-style: lower-roman;
    padding-left: inherit;
}

.list-style6 ul {
    list-style: decimal;
    padding-left: 30px;
}

.list-style6 li {
    line-height: 30px;
}

.order-list li {
    line-height: 30px;
}

/*------ Media object ------*/
.media {
    zoom: 1;
    overflow: hidden;
}

.media-body {
    zoom: 1;
    overflow: hidden;
    width: auto;
    -ms-flex: 1;
    flex: 1;
}

.media-object {
    display: block;
}

.media img {
    width: 40px;
    height: 40px;
}

.media-right,
.media>.pull-right {
    padding-left: 10px;
}

.media-body,
.media-left,
.media-right {
    display: block;
    vertical-align: top;
}

.media-left,
.media>.pull-left {
    padding-right: 10px;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.media-body h4 {
    font-weight: 500;
    font-size: 16px;
}

.media-middle {
    vertical-align: middle;
}

.media-bottom {
    vertical-align: bottom;
}

.list-media .media-img {
    position: relative;
    float: left;
    width: 48px;
    margin-right: 20px;
}

.list-media .info {
    padding-left: 55px;
    min-height: 40px;
    height: auto;
    position: relative;
}

.list-media .info h4 a {
    font-size: 16px;
    margin-top: 10px;
}

.list-media .info p {
    font-size: 13px;
}

.list-media .info .text-right {
    right: 0;
    color: #8a8a8a;
    top: 50%;
    font-size: 12px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    margin-top: -28px;
}

.media-icon {
    margin-bottom: 1rem;
    width: 3rem;
    height: 3rem;
    position: relative;
    line-height: 3rem;
    text-align: center;
    font-size: 1.43rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26%;
}

.media-icon::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    border-bottom-right-radius: 11px;
    border-top-right-radius: 6px;
    top: 7%;
    right: 36%;
    background: rgba(255, 255, 255, 0.135);
    transform: rotate(35deg);
}

.media-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 3px;
    top: 0%;
    right: 51%;
    background: rgba(255, 255, 255, 0.135);
    transform: rotate(35deg);
}

.media-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.media {
    display: flex;
    align-items: flex-start;
}

.mediaicon {
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 9px 0px;
    border-radius: 20px;
}

.mediafont {
    font-size: 16px;
    font-weight: 600;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar>.container,
.navbar>.container-fluid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.359375rem;
    padding-bottom: 0.359375rem;
    margin-right: 1rem;
    font-size: 1.125rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none;
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.125rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 575.98px) {

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-sm .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .navbar-expand-sm .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
}

@media (max-width: 767.98px) {

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-md .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .navbar-expand-md .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}

@media (max-width: 991.98px) {

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

@media (max-width: 1279.98px) {

    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1280px) {
    .navbar-expand-xl {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-xl .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .navbar-expand-xl .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-xl .navbar-toggler {
        display: none;
    }
}

.navbar-expand {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
    padding-right: 0;
    padding-left: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.navbar-expand .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.navbar-expand .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.navbar-expand .navbar-toggler {
    display: none;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='$black-5' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .active>.nav-link {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='$white-5' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
    color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
    color: #fff;
}

.responsive-navbar.navbar .dropdown-menu.dropdown-menu-left {
    left: -1px;
    right: -1px;
    position: absolute;
}

.responsive-navbar.navbar s .nav-link.icon {
    padding: 9px !important;
    margin: 3px;
    color: #2A1B4D !important;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .navresponsive-toggler {
        padding: 2px;
    }

    .navresponsive-toggler span {
        padding: 9px;
        text-align: center;
        height: 2.5rem;
        font-size: 1.2rem;
        position: relative;
        width: 2.5rem;
    }

    .dropdown-menu.dropdown-menu-right {
        left: 0 !important;
    }

    .responsive-navbar.navbar .navbar-collapse .icon.navsearch {
        padding: 7px 10px !important;
        border: 1px solid #e4e6f9;
        margin: 2px;
        border-radius: 25px;
    }

    .responsive-navbar.navbar .navbar-collapse .icon.navsearch i {
        line-height: 20px;
    }
}

.navbar-nav {
    flex-direction: initial !important;
}

/*-----Pricing tables-----*/
.pricing-divider {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

.pricing {
    color: #fff;
}

.pricing1 {
    color: #707070;
}

.pricing .card-category {
    background: rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    color: #fff;
}

.pricing .list-unstyled li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px 0;
}

.pricing1 .list-unstyled li {
    border-bottom: 1px solid #eaedf1;
    padding: 7px 0;
}

.pricing1 .card-category {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px 0;
    border-radius: 7px 7px 0 0;
    color: #Fff;
}


.table>tbody>tr>th {
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
}

.table>tfoot>tr>td,
.table>tfoot>tr>th {
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
}

.table > thead > tr > td,
.table > thead > tr > th {
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    border-left: solid 1px #dfdfdf;
    border-bottom: solid 1px #dfdfdf;
    border-top: solid 1px #dfdfdf;
}

.table > thead > tr > td:last-child,
.table > thead > tr > th:last-child {
    border-right: solid 1px #dfdfdf;
}

.panel-body-landing:hover>.table>tbody>tr>td {
    color: #fff;
    -webkit-transition: all 0.3s ease;
}

.panel-heading-landing {
    background: #f7f7f7;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: solid 2px #1643A3;
    border-bottom: none;
    text-align: center;
    margin-top: 20px;
}


/*------ Pricing Styles ---------*/
.panel.price {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.panel.price>.panel-heading {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.panel.price h3 {
    margin-bottom: 0;
    padding: 20px 0;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: #fff;
}

.panel.price {
    margin-bottom: 1.5rem;
    box-shadow: 0px 22px 68px -9px rgba(0, 0, 0, 0.15);
    border-radius: 7px;
    background: #fff;
}

.panel.price>.panel-heading {
    color: #fff;
}

.panel.price .list-group-item:last-child {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.panel.price .list-group-item:first-child {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

.panel.price:hover {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

.price .panel-footer {
    border-bottom: 0px;
    background-color: #fff;
    border-left: 0;
    border-right: 0;
}

.price.panel-color>.panel-body {
    background-color: #fff;
}

.product-price {
    font-size: 1rem;
}

.product-price strong {
    font-size: 1.5rem;
}

.pricing-divider-img {
    position: absolute;
    left: 0;
    width: 100%;
}

.price-detail-wrap .rating-stars {
    text-align: left !important;
}

/*-- rating--*/
.rating-stars {
    width: 100%;
    text-align: center;
    font-size: 30px;
}

.rating-stars i {
    padding: 5px;
}

.rating-stars .rating-stars-container {
    font-size: 0px;
}

.rating-stars .rating-stars-container .rating-star {
    display: inline-block;
    font-size: 32px;
    cursor: pointer;
    padding: 5px 10px;
    color: #f6f6fb;
}

.rating-stars .rating-stars-container .rating-star.sm {
    display: inline-block;
    font-size: 14px;
    color: #eaedf1;
    cursor: pointer;
    padding: 5px;
}

.rating-stars .rating-stars-container .rating-star.is--active,
.rating-stars .rating-stars-container .rating-star.is--hover {
    color: #f1c40f;
}

.rating-stars .rating-stars-container .rating-star.is--no-hover,
.rating-stars .rating-stars-container .rating-star .fa-heart .is--no-hover {
    color: #f6f6fb;
}

.rating-stars input {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #eaedf1;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.br-theme-bars-horizontal .br-widget a {
    background-color: #e7e7eb;
}

.br-theme-bars-horizontal .br-widget a.br-active,
.br-theme-bars-horizontal .br-widget a.br-selected {
    background-color: var(--primary-bg-color);
}

.br-theme-bars-horizontal .br-widget .br-current-rating {
    color: var(--primary-bg-color);
}

.br-theme-bars-pill .br-widget a {
    background-color: #e7e7eb;
    color: var(--primary-bg-color);
}

.br-theme-bars-pill .br-widget a.br-active,
.br-theme-bars-pill .br-widget a.br-selected {
    background-color: var(--primary-bg-color);
    color: white;
}

.br-theme-bars-square .br-widget a {
    border: 2px solid #e7e7eb;
    background-color: #fff;
    color: #d3d3d3;
}

.br-theme-bars-square .br-widget a.br-active,
.br-theme-bars-square .br-widget a.br-selected {
    border: 2px solid var(--primary-bg-color);
    color: var(--primary-bg-color);
}

.star-ratings .stars {
    width: 120px;
    text-align: center;
    margin: auto;
}

.box select {
    width: 120px;
    margin: 10px auto 0 auto;
    display: block;
    font-size: 16px;
}

.box .box-body {
    padding-top: 2em;
    height: 85px;
    position: relative;
}

.box-large .box-body {
    padding-top: 2em;
    height: 120px;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

.tabs-menu ul li a {
    padding: 10px 20px;
    display: block;
}

.tabs-menu ul li .active {
    color: var(--primary-bg-color);
}

.tabs-menu1 ul li a {
    padding: 10px 20px;
    display: block;
}

.tabs-menu-body {
    /*border: 1px solid #eaedf1;*/
}

.tabs-menu-body p:last-child {
    margin-bottom: 0;
}

.tab-menu-heading {
    padding: 15px;
    border: 1px solid #eaedf1;
    border-bottom: 0;
}

.tab_wrapper .content_wrapper .tab_content.active p:last-child {
    margin-bottom: 0;
}

.tabs-menu2 ul li a {
    color: #636262;
    padding: 10px 20px 11px 20px;
}

.tabs-menu2 ul li .active {
    font-weight: 600;
}

.tabs-menu2 ul li .fade {
    color: #eeee;
}

.nav.panel-tabs a {
    border: 1px solid #eaedf1;
    padding: 7px 15px;
    border-radius: 5px;
    transition: all ease 0.3s;
}

.nav.panel-tabs a.active {
    border-radius: 5px;
    border-color: var(--primary-bg-color);
    color: var(--primary-bg-color) !important;
}

.tabs-menu4 .nav a {
    padding: 10px 20px;
    transition: all ease 0.3s;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-radius: 5px;
}

.tabs-menu4 .nav a.active {
    border-color: var(--primary-bg-color);
    color: #fff !important;
    background-color: var(--primary-bg-color);
}

.tabs-menu4 .nav a:hover {
    color: var(--primary-bg-color);
}

@media (max-width: 575.98px) {
    .tabs-menu.checkout {
        display: block;
    }

    .tabs-menu.checkout li {
        border-bottom: 1px solid #eaedf1;
    }

    .card-pay .tabs-menu li {
        width: 100%;
    }
}


.projects-stat .table-bordered th,
.projects-stat .table-bordered td {
    border: transparent;
}

.projects-stat .table th,
.projects-stat .table td {
    padding: 7px 7px !important;
    vertical-align: baseline;
}

.projects-stat .project-names h6 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    line-height: 2.5;
    margin-bottom: 0;
    font-weight: 600;
    padding: 3px;
}

.review-project .project-contain {
    display: inline-block;
}

.review-project .table th,
.review-project .table td {
    vertical-align: middle;
    padding: 7px 15px;
}

.review-project.card tbody>tr>th:not(:first-child),
.review-project.card tbody>tr>td:not(:first-child) {
    font-family: roboto;
    font-size: 13px !important;
}

.review-project img {
    vertical-align: top;
    width: 35px;
    min-width: 32px;
    height: 35px;
}

.latest-tasks .tasks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin: 0 0 1.15rem 0;
}

.latest-tasks .tasks .span {
    margin-left: 1.3rem;
    font-weight: 500;
    color: #323251;
}

.latest-tasks .task-line:before {
    position: absolute;
    display: block;
    width: 0.2rem;
    top: 0.2rem;
    content: "";
    border-radius: 0.2rem;
    height: 2rem;
}

.latest-tasks .label {
    color: #495057;
    margin-left: 1.3rem;
    font-weight: 500;
}

.latest-tasks .time {
    margin-left: 1.3rem;
    font-size: 13px;
    color: #7987a1;
}

.latest-tasks .task-line.primary:before {
    background: var(--primary-bg-color);
}

.latest-tasks .task-line.pink:before {
    background: #f58598;
}

.latest-tasks .task-line.success:before {
    background: #13bfa6;
}

.latest-tasks .task-line.teal:before {
    background: #2bcbba;
}

.latest-tasks .task-line.warning:before {
    background: #e7c354;
}

.latest-tasks .task-line.orange:before {
    background: #fc7303;
}

.latest-tasks .task-line.info:before {
    background: #59adec;
}

.latest-tasks .task-line.purple:before {
    background: #661fd6;
}

.latest-tasks .task-line.danger:before {
    background: #d12c47;
}

.latest-tasks .check-box .ckbox span:before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: rgba(190, 206, 255, 0.05);
    border: 1px solid #eaedf1;
    top: 1px;
    left: 0;
    border-radius: 2px;
}

.latest-tasks .check-box .ckbox span:after {
    border-radius: 2px;
}

.latest-tasks .nav-tabs .nav-link {
    color: #7987a1;
}

.latest-tasks .nav-tabs .nav-link.active,
.latest-tasks .nav-tabs .nav-link:hover,
.latest-tasks .nav-tabs .nav-link:focus {
    color: var(--primary-bg-color);
    border: 0;
}

.image-grouped img {
    margin-right: -0.6em !important;
}

.background-text {
    position: relative;
    z-index: 10;
}

.project-countdown #launch_date {
    margin: 0;
}

.project-countdown .countdown {
    padding: 0;
    margin: 0;
}

.project-countdown .countdown li {
    width: 65px;
    height: 65px;
    z-index: 0;
    padding: 0px;
    line-height: 30px;
}

.project-countdown .countdown .number {
    font-size: 20px;
    font-weight: 700;
    line-height: 14px;
    padding-top: 11px;
}

.project-countdown .countdown .time {
    padding-top: 0px;
    font-size: 11px !important;
}

.project-countdown .countdown span {
    display: block;
    color: #fff;
}

.project-countdown .countdown li {
    background: #285cf7;
    border: 5px solid #285cf7;
}

@media (min-width: 992px) {
    .project-countdown .countdown li {
        margin: 2px 5px 7px 5px;
    }
}

.Activity-scroll {
    max-height: 349px;
}

.activity .added-project {
    font-weight: 700;
    font-size: 12px;
    color: var(--primary-bg-color);
}

.sparkline .tooltip {
    width: 20px;
    height: 20px;
}

.Project-scroll {
    max-height: 367px;
    position: relative;
}

.rating-scroll {
    max-height: 344px;
    position: relative;
}

.coming-events .icon {
    height: 47px;
    width: 47px;
    border-radius: 50%;
    text-align: center;
}

.coming-events .icon span {
    display: block;
    font-size: 12px;
}

.coming-events .icon .date {
    line-height: 10px;
    padding-top: 11px;
}

.coming-events .icon .month {
    font-size: 11px;
}

.coming-events .pt-3 {
    padding-top: 0.8rem !important;
}

.activity {
    position: relative;
    padding: 1.25rem 1.25rem 0 1.25rem;
}

.activity-list {
    position: relative;
}

.activity-list:before {
    content: " ";
    border: 1px solid #eaf2f9;
    margin: 20px 20px 0 22px;
    display: inline-block;
    position: absolute;
    width: 2px;
    height: 100%;
    z-index: 0;
}

.activity .img-activity {
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
    position: absolute;
    -webkit-box-shadow: 0 0 0 0.5px #f8f9fa;
    box-shadow: 0 0 0 0.5px #f8f9fa;
}

.activity .item-activity {
    margin-left: 60px;
    margin-bottom: 22px;
}


/* ######## LAYOUT-STYLES ######## */
.aside-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eaedf1;
}

.footer {
    background: #fff;
    border-top: 1px solid #eaedf1;
    font-size: 0.875rem;
    padding: 1.25rem 1.25rem;
}

.footer .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.footer .social {
    margin: 0 auto;
}

.footer .social ul li {
    float: left;
    padding: 7px;
}

.footer .social ul li a {
    width: 30px;
    height: 30px;
    display: block;
    border: 1px solid #eceef7;
    line-height: 25px;
    border-radius: 50%;
    background: #f3f3f3;
    color: var(--primary-bg-color);
}

@media print {
    .footer {
        display: none;
    }
}

.footer-1.footer {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}

.top-footer {
    width: 100%;
    line-height: 1.25rem;
    opacity: 1;
    transform: translate(0px, 0px);
    font-size: 14px;
    flex: 0 0 auto;
}

.top-footer h6 {
    font-size: 14px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.top-footer p {
    color: #76839a;
}

.top-footer a {
    color: #76839a;
    line-height: 2;
}

.top-footer a address {
    color: #76839a;
    margin-bottom: 0;
    line-height: 2;
}

.top-footer img {
    width: 80px;
    border: 1px solid #e6eaea;
    padding: 2px;
    height: 80px;
}

.top-footer img:hover {
    color: #8e9090;
    opacity: 0.6;
}

.top-footer .list-unstyled li {
    border-bottom: 0;
}

.main-footer {
    padding: 20px 30px 20px 280px;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    border-top: 1px solid #e6eaea;
}

.footer-social-list {
    padding-left: 0;
    list-style: none;
    margin: 0;
    line-height: 1.25rem;
}

.footer-social-list li {
    display: inline-block;
}

.footer-social-list li:not(:last-child) {
    margin-right: 1.5rem;
}

.footer-social-list a {
    text-decoration: none;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .footer-social-list {
        text-align: center;
        margin-top: 1rem;
    }

    .footer1 {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 1.25rem 0;
    }
}

.icons-bg .social .social-icon {
    transition: all ease 0.3s;
}

.icons-bg .social .social-icon:hover {
    background-color: var(--primary-bg-color);
    color: #fff;
    fill: #fff;
}

.header-search {
    min-width: 18rem !important;
}

.aside-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eaedf1;
}

.header {
    background: #fff;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #eaedf1;
}

body.fixed-header .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

@media print {
    .header {
        display: none;
    }
}

.header .dropdown-menu {
    margin-top: 0;
}

.header .mega-menu {
    width: 350px;
}

.header .nav-tabs {
    margin: 0;
}

.header-brand {
    color: inherit;
    font-size: 1.25rem;
    white-space: nowrap;
    font-weight: 600;
    padding: 0;
    transition: 0.3s opacity;
    line-height: 2.6rem;
}

.app-header .header-brand {
    color: inherit;
    margin-right: 0;
    font-size: 1.25rem;
    white-space: nowrap;
    font-weight: 600;
    padding: 0;
    transition: 0.3s opacity;
    line-height: 2.9rem;
    min-width: 200px;
    text-align: center;
}

.app-header .header-brand .header-brand-img {
    margin-right: 0;
}

.app-header1 .header-brand {
    color: inherit;
    margin-right: 0;
    font-size: 1.25rem;
    white-space: nowrap;
    font-weight: 600;
    padding: 0;
    transition: 0.3s opacity;
    line-height: 2.9rem;
    min-width: 215px;
    text-align: center;
}

.app-header1 .header-brand .header-brand-img {
    margin-right: 0;
}

.header-brand:hover {
    color: inherit;
    text-decoration: none;
}

.header-brand-img {
    vertical-align: middle;
    width: auto;
}

.header-avatar {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    vertical-align: bottom;
    border-radius: 50%;
}

.header-btn {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .header .form-inline {
        margin-right: -2px;
    }
}

@media (max-width: 767px) {
    .mobile-header {
        display: block;
        padding: 0.75rem 0;
        position: fixed;
        width: 100%;
        z-index: 999;
        background: #fff;
        border-bottom: 1px solid #eaedf1;
        box-shadow: 0 8px 24px #f8f5fb;
        top: 0;
    }

    .light-logo1 {
        display:none !important;
    }

    .toggle-logo {
        display:block !important;
    }

    .mobile-header .navbar-toggler-icon {
        color: #495584 !important;
    }

    .header-search-icon {
        display: none !important;
    }

    .header-brand-img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .mobile-header .header-brand-img {
        margin-top: 2px;
    }

    .mobile-header .header-brand {
        line-height: 0;
        margin: 0 auto;
    }

    .mobile-header .app-sidebar__toggle {
        padding: 2px 15px;
        color: #76839a;
    }

    .mobile-header .app-sidebar__toggle:hover {
        color: #76839a;
    }

    .mobile-header .header-settings {
        margin-top: 6px;
    }

    .mobile-header .profile-user {
        margin-top: 8px;
    }

    .sidebar-mini.sidenav-toggled .side-header {
        display: none;
    }

    .sidebar-mini.sidenav-toggled .mobile-header .app-sidebar__toggle {
        display: block;
    }

    .mobile-header.hor-mobile-header .header-brand-img {
        margin-left: 2.5rem;
        margin-top: 2px;
    }

    .mobile-header .profile-user {
        margin-top: 0px !important;
    }

    .mobile-header .nav-link.icon {
        padding: 12px !important;
        margin: 2px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        height: 1.9rem !important;
    }

    .mobile-header .header-right-icons .nav-link.icon:hover {
        background: none;
    }

    .mobile-header .header-right-icons .profile-user:hover {
        box-shadow: none;
    }

    .mobile-header .header-brand-img.desktop-logo {
        display: none;
    }

    .mobile-header .header-brand-img.mobile-light {
        display: block !important;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .animated-arrow {
        cursor: pointer;
        padding: 25px 35px 16px 0px !important;
        margin: 11px 0 0 15px;
    }
}

@media (max-width: 568px) {
    .mobile-header .profile-1 .nav-link {
        padding-left: 0;
        padding-right: 0 !important;
    }

    .mobile-header .header-brand-img {
        margin-left: 0rem;
        margin-top: 2px;
    }
}

@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }

    .app-content .side-app {
        padding-top: 0px !important;
    }
}

.header .form-inline .form-control {
    border-color: rgba(225, 225, 225, 0.1);
    padding-left: 20px;
    width: 220px;
    padding-right: 40px;
    background: rgba(225, 225, 225, 0.3);
    color: #000 !important;
}

.header .form-inline .btn {
    border-radius: 0;
    padding: 5px 15px 6px 15px;
    border: 2px solid transparent;
    box-shadow: none;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    background: transparent;
    color: #fff;
    margin-left: -56px;
    font-size: 15px;
}

.header .header-brand-img.mobile-view-logo {
    display: none;
}

.header .dropdown-menu {
    padding: 0;
    border: 0;
}

.header .bg-image {
    background: linear-gradient(to right bottom, rgba(132, 65, 246, 0.7), rgba(212, 40, 234, 0.7));
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header .bg-image-2 {
    background: linear-gradient(to right bottom, rgba(251, 196, 52, 0.7), rgba(246, 107, 78, 0.7));
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header .bg-image-3 {
    background: linear-gradient(to right bottom, rgba(98, 251, 92, 0.6), rgba(33, 165, 6, 0.6));
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header .bg-image a:hover {
    background: transparent !important;
}

@media (max-width: 767.98px) and (min-width: 576px) {
    .header .form-inline .search-element {
        position: absolute;
        top: 8px;
        left: 10px;
        right: 10px;
        z-index: 892;
        display: none;
    }

    body.search-show .header .form-inline .search-element {
        display: block;
    }

    .header .navsearch i {
        font-size: 20px;
        color: #fff;
    }

    .search-element .form-control {
        float: left;
        width: 100% !important;
        height: 40px;
        margin: 0 auto;
        background: #fff !important;
        color: #000;
    }

    .search-show .search-element {
        display: block;
        left: 0 !important;
        top: 0 !important;
        right: 0;
        width: 100%;
        padding: 10px 13px;
    }

    .header .form-inline .form-control::-webkit-input-placeholder {
        color: #76839a;
    }

    .header .navsearch i {
        font-size: 20px;
        color: #fff;
        padding-top: 5px;
    }

    .header .form-inline .btn {
        color: #46494a !important;
        padding: 8px 15px 6px 15px;
    }
}

@media (max-width: 568px) {
    .header .input-icon .form-control {
        display: block !important;
    }

    .page-main .header {
        top: 0px !important;
    }
}

.header-1 .navbar .nav-link.nav-link-lg i {
    font-size: 1.1rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    color: #495057;
    line-height: 32px;
    margin: 0 auto;
    text-align: center;
}

.header-1 .nav-link .badge {
    position: absolute;
    top: 3px;
    right: 6px;
    width: 1rem;
    height: 1rem;
    font-size: 11px !important;
    text-align: center !important;
    padding: 0.25em 0.4em;
    line-height: 1;
}

.header-1 .badge {
    border-radius: 50%;
}

.header-1 .form-inline .btn {
    border-radius: 0;
    padding: 5px 15px 6px 15px;
    border: 2px solid transparent;
    box-shadow: none;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    background: transparent;
    color: #495057;
    margin-left: -50px;
    font-size: 15px;
    position: inherit;
    margin-top: 3px;
}

.header-1 .form-control.header-search {
    color: #495057;
}

.header-1 .form-inline .form-control::-webkit-input-placeholder {
    color: #76839a;
}

.header-1 .animated-arrow span {
    display: none;
}

.animated-arrow span:before,
.animated-arrow span:after {
    display: none;
}

@media only screen and (max-width: 991px) {
    .header-1 .animated-arrow span {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        position: absolute;
        display: block;
        content: "";
    }

    .animated-arrow span:before,
    .animated-arrow span:after {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        position: absolute;
        display: block;
        content: "";
    }

    .header-1 .animated-arrow span {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        position: absolute;
        display: block;
        content: "";
    }

    .animated-arrow span:before,
    .animated-arrow span:after {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        position: absolute;
        display: block;
        content: "";
    }

    .header-1 .hor-toggle.animated-arrow {
        padding: 83px 35px 16px 20px !important;
        margin: 11px 0 0 0px !important;
    }

    .header-1 .animated-arrow {
        cursor: pointer;
        margin: 0px 0 0 -11px;
        position: initial;
    }

    .header-2 .animated-arrow {
        cursor: pointer;
        margin: 0px 0 0 -11px;
        position: initial;
    }

    .header-1 .form-inline .form-control,
    .header-2 .form-inline .form-control {
        width: 100PX !important;
    }

    .header-1 .header-search,
    .header-2 .header-search {
        min-width: auto !important;
    }

    .header-1 .navbar .nav-link.nav-link-lg i {
        font-size: 1.1rem;
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 50%;
        color: #495057;
        line-height: 39px;
        margin: 0 auto;
        text-align: center;
        padding: 0px 42px 0px 10px;
    }

    .header-1 .dropdown-menu {
        box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.05);
    }

    .header-1 .nav-link .badge {
        position: absolute;
        top: 4px;
        width: 1rem;
        height: 1rem;
        font-size: 11px;
        text-align: center !important;
        padding: 0.25em 0.4em;
        line-height: 1;
    }
}

.header-1 .nav-link.icon i {
    color: #5b6e88 !important;
}

.header-1 .dropdown-menu {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.05);
}

.header-2 .dropdown-menu {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.05);
}

.header-2 .nav-link .badge {
    position: absolute;
    top: 2px;
    right: 8px;
    width: 1rem;
    height: 1rem;
    font-size: 11px;
    text-align: center !important;
    padding: 0.25em 0.4em;
    line-height: 1;
    border-radius: 50%;
}

.header-2 .nav-link i {
    display: block;
    text-align: center;
    font-size: 20px;
    color: #495057;
    margin-top: 5px;
}

.header-2 .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
}

.header-2 .form-inline .btn {
    border-radius: 0;
    padding: 5px 15px 6px 15px;
    border: 2px solid transparent;
    box-shadow: none;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    background: transparent;
    color: #495057;
    margin-left: -45px;
    font-size: 15px;
    position: absolute;
    margin-top: 4px;
}

.header-2 .form-inline .form-control::-webkit-input-placeholder {
    color: #76839a;
}

.header-2 .form-control.header-search {
    background: rgba(225, 225, 225, 0.4);
    border: 1px solid rgba(225, 225, 225, 0.1);
    color: #fff;
    padding: 0.375rem 0.75rem;
    margin-top: 4px;
}

@media only screen and (max-width: 991px) {
    .header-1 .animated-arrow span {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        color: #495057;
        position: absolute;
        display: block;
        content: "";
    }

    .header-1 .animated-arrow span:before,
    .header-1 .animated-arrow span:after {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        color: #495057;
        position: absolute;
        display: block;
        content: "";
    }
}

/*--header-2--*/
@media only screen and (max-width: 991px) {
    .header-2 .animated-arrow {
        cursor: pointer;
        padding: 8px 33px 3px 0px;
        margin: 11px 0 0 -11px;
    }

    .header-2 .animated-arrow span {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        color: #495057;
        position: absolute;
        display: block;
        content: "";
    }

    .header-2 .animated-arrow span:before,
    .header-2 .animated-arrow span:after {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        color: #495057;
        position: absolute;
        display: block;
        content: "";
    }

    .header-2 .nav-link .badge {
        position: absolute;
        top: -1px;
        right: 6px;
        width: 1rem;
        height: 1rem;
        font-size: 11px;
        text-align: center !important;
        padding: 0.25em 0.4em;
        line-height: 1;
        border-radius: 50%;
    }

    .header-2 .navbar-nav .dropdown-menu {
        position: absolute;
        float: right;
    }

    .header-2 .dropdown-menu.dropdown-menu-right {
        position: absolute;
        transform: translate3d(-98px, 19px, -16px);
        top: 24px;
        left: 0px;
        will-change: transform;
    }
}

@media only screen and (max-width: 460px) {
    .header-2 .navbar-nav .envelope {
        display: none !important;
    }
}

/*--header-3--*/
.header-3 .nav-link .badge {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 1rem;
    height: 1rem;
    font-size: 11px;
    text-align: center !important;
    padding: 0.25em 0.4em;
    line-height: 1;
    border-radius: 50%;
}

.header-3 .nav-link i {
    display: block;
    text-align: center;
    font-size: 20px;
    position: relative;
    color: #495057;
}

.header-3 .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
}

.header-3 .form-inline .btn {
    border-radius: 0;
    padding: 5px 15px 6px 15px;
    border: 2px solid transparent;
    box-shadow: none;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    background: transparent;
    color: #495057;
    margin-left: -56px;
    font-size: 15px;
}

.header-3 .form-inline .form-control::-webkit-input-placeholder {
    color: #76839a;
}

.header-3 .form-control.header-search {
    background: rgba(225, 225, 225, 0.4);
    border: 1px solid rgba(225, 225, 225, 0.1);
    color: #fff;
    padding: 0.375rem 0.75rem;
    margin-top: 4px;
}

@media only screen and (max-width: 991px) {
    .header-3 .animated-arrow {
        cursor: pointer;
        padding: 32px 33px 3px 0px;
        margin: 11px 0 0 -11px;
    }

    .header-3 .animated-arrow span {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        color: #495057;
        position: absolute;
        display: block;
        content: "";
    }

    .header-3 .animated-arrow span:before,
    .header-3 .animated-arrow span:after {
        cursor: pointer;
        height: 2px;
        width: 17px;
        background: #495057;
        color: #495057;
        position: absolute;
        display: block;
        content: "";
    }

    .header-3 .nav-link .badge {
        position: absolute;
        top: -14px;
        right: 6px;
        width: 1rem;
        height: 1rem;
        font-size: 11px;
        text-align: center !important;
        padding: 0.25em 0.4em;
        line-height: 1;
        border-radius: 50%;
    }

    .header-3 .navbar-nav .dropdown-menu {
        position: absolute;
        float: right;
    }

    .header-3 .dropdown-menu.dropdown-menu-right {
        position: absolute;
        transform: translate3d(-98px, 19px, -16px);
        top: 24px;
        left: 0px;
        will-change: transform;
    }
}

@media only screen and (max-width: 460px) {
    .header-3 .navbar-nav .envelope {
        display: none !important;
    }
}

.header-style .header-brand {
    margin-left: 0 !important;
}

.default-header .form-inline .form-control,
.header2 .form-inline .form-control,
.header3 .form-inline .form-control {
    background: #f1f1f9 !important;
}

@media only screen and (max-width: 991px) {
    .page-header {
        padding: 4px;
    }

    .app-header {
        box-shadow: none !important;
        position: fixed !important;
    }

    .page {
        background: none;
    }

    .page-main {
        z-index: inherit;
    }
}

@media only screen and (min-width: 768px) {
    .header .form-inline .form-control {
        width: 200px;
    }
}

.hor-header .header-brand1 {
    color: inherit;
    font-size: 1.25rem;
    white-space: nowrap;
    font-weight: 600;
    padding: 0;
    transition: 0.3s opacity;
    line-height: 2.8rem;
    margin-top: 2px;
}

.header-right-icons .nav-link.icon:hover {
    background: none;
}

.header-right-icons .profile-user:hover {
    box-shadow: none;
}

/*Logo-center header */
@media (min-width: 991px) {
    .hor-topheader .header-brand1 .main-logo {
        display: none;
    }

    .hor-topheader .header-brand2 {
        margin-left: auto;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .hor-topheader .header-brand-img.main-logo {
        display: block;
        margin-left: 3rem;
        margin-top: 2px;
    }

    .color-hor-header .hor-topheader .header-brand1 .header-brand-img.main-logo,
    .gradient-hor-header .hor-topheader .header-brand1 .header-brand-img.main-logo {
        display: none;
    }
}

.hor-topheader .header-search.dropdown-menu {
    box-shadow: 0 10px 15px rgba(229, 228, 230, 0.5);
    margin-top: 13px !important;
    border: 1px solid #eaedf1 !important;
}

.hor-topheader .dropdown-menu.show {
    display: block;
    margin: 0;
    border: 1px solid #eaf2f6;
    transform: translate3d(8px, 45px, 0px) !important;
}

.hor-topheader .dropdown-menu-arrow.dropdown-menu-right:before,
.hor-topheader .dropdown-menu-arrow.dropdown-menu-right:after {
    right: auto;
    left: 12px;
}

@media (max-width: 480px) {

    .app-header .header-brand,
    .app-header1 .header-brand {
        min-width: auto;
    }

    .header-right-icons .dropdown .header-toggler {
        margin-top: 9px;
    }
}

@media (max-width: 992px) {
    .header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

.app .header {
    transition: all ease 0.2s;
}

.app .header .nav-link.icon:hover i,
.app .header .nav-link.icon:focus i {
    color: var(--primary-bg-color);
    fill: var(--primary-bg-color);
}

.app .header .nav-link.icon:hover svg,
.app .header .nav-link.icon:focus svg {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color) !important;
}

.app .header .nav-link #profile-heading {
    color: #100f15 !important;
}

.app .header .nav-link #profile-heading:hover,
.app .header .nav-link #profile-heading:focus {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color);
}

.app .header .nav-link.show i,
.app .header .nav-link.show #profile-heading,
.app .header .nav-link.show svg {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color) !important;
}

.app .header #menu-icon {
    color: #0d0c22;
}

.app .header #menu-icon:hover,
.app .header #menu-icon:focus {
    color: var(--primary-bg-color);
    fill: var(--primary-bg-color);
}

.app .header .dropdown-menu {
    border-bottom: none;
}

.app .header .flag-container {
    top: -3px;
    left: -7px;
}

.app .header .flag-container .dropdown-menu-arrow.show {
    animation: dropmenu 0.3s linear;
}

.app .header .flag-container .dropdown-menu-arrow.show .dropdown-item {
    border-bottom: none;
}

.app .header .flag-container .dropdown-menu-arrow.show .dropdown-item .avatar {
    width: 1.5rem;
}

.app .header .source-container .source-logo-menu.show {
    animation: dropmenu 0.3s linear;
}

.app .header .source-container .source-logo-menu.show .util-main {
    border-radius: 5px;
    padding: 5px 8px;
    transition: all ease 0.2s;
    border: 1px solid transparent;
}

.app .header .source-container .source-logo-menu.show .util-main svg {
    width: 16.9px;
    fill: #495584;
}

.app .header .source-container .source-logo-menu.show .util-main:hover,
.app .header .source-container .source-logo-menu.show .util-main:focus {
    border-color: var(--primary-bg-color);
}

.app .header .source-container .source-logo-menu.show .util-main:hover .add-icn,
.app .header .source-container .source-logo-menu.show .util-main:hover .edit-icn,
.app .header .source-container .source-logo-menu.show .util-main:focus .add-icn,
.app .header .source-container .source-logo-menu.show .util-main:focus .edit-icn {
    color: var(--primary-bg-color);
}

@keyframes dropmenu {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.app .header .source-container .dropdown-menu .col {
    text-align: center;
}

.app .header .source-container .dropdown-menu .col .source-logo-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-color: #eaedf1;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 0.5rem 0.3rem;
}

.app .header .source-container .dropdown-menu .col .source-logo-container:hover,
.app .header .source-container .dropdown-menu .col .source-logo-container :focus {
    border-color: var(--primary-bg-color);
}

.app .header .source-container .dropdown-menu .col .source-logo-container:hover span,
.app .header .source-container .dropdown-menu .col .source-logo-container:hover .source-logo,
.app .header .source-container .dropdown-menu .col .source-logo-container :focus span,
.app .header .source-container .dropdown-menu .col .source-logo-container :focus .source-logo {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color) !important;
}

.app .header .source-container .dropdown-menu .col .source-logo-container:hover .source-logo,
.app .header .source-container .dropdown-menu .col .source-logo-container :focus .source-logo {
    transform: scale(1.2);
}

.app .header .source-container .dropdown-menu .col .source-logo-container .source-logo {
    font-size: 1.69rem;
    width: 1.45rem;
    transition: all ease-in-out 0.2s;
    fill: #495584;
}

.app .header .notifications .dropdown-menu {
    min-width: 16rem;
}

.app .header .notifications .dropdown-menu-arrow.show {
    animation: dropmenu 0.3s linear;
}

.app .header .notifications .dropdown-menu-arrow.show .dropdown-item {
    border-bottom: none;
}

.app .header .notifications .notification-each {
    position: relative;
}

.app .header .notifications .notification-each .notification-right-arrow {
    position: absolute;
    top: 35%;
    left: 200px;
    font-size: 1.22rem;
    display: none;
}

.app .header .notifications .dropdown-item:hover .notification-each,
.app .header .notifications .dropdown-item:focus .notification-each,
.app .header .notifications .dropdown-item:active .notification-each {
    transition: all ease 0.2s;
}

.app .header .notifications .dropdown-item:hover .notification-right-arrow,
.app .header .notifications .dropdown-item:focus .notification-right-arrow,
.app .header .notifications .dropdown-item:active .notification-right-arrow {
    display: block;
    transform: none !important;
    color: var(--primary-bg-color);
}

.app .header .notifications .dropdown-menu.show .dropdown-item:hover svg,
.app .header .notifications .dropdown-menu.show .dropdown-item:focus svg {
    fill: #fff !important;
}

.app .header .dropdown.message .dropdown-menu {
    min-width: 18rem;
}

.app .header .dropdown.message .dropdown-menu-arrow.show .dropdown-item {
    border-bottom: none;
}

.app .header .dropdown.message .dropdown-menu-arrow.show {
    animation: dropmenu 0.3s linear;
}

.app .header .dropdown.notifications .dropdown-item,
.app .header .dropdown.message .dropdown-item {
    padding: 1rem;
}

.app .header .dropdown-menu .badge {
    padding: 9px 6px !important;
}

.app .header .dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
}

.app .header .dropdown-item {
    color: #495057;
}

.app .header .notifications-menu h5,
.app .header .message-menu h5 {
    font-size: 12.5px;
    color: #495057;
    font-weight: 500;
}

.app .header .notifications-menu span,
.app .header .message-menu span {
    font-size: 12px;
    color: #76839a;
}

.app .header .dropdown-menu {
    box-shadow: 0 10px 40px 0 rgba(104, 113, 123, 0.3);
    border: #eaedf1;
}

.app .header .dropdown-menu .badge {
    padding: 3px 6px;
}

.app .header .dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
}

.app .header .message-menu .wd-90p {
    width: 90%;
}

.app .header .profile-1 .dropdown-menu-arrow.show {
    animation: dropmenu 0.3s linear;
}

.app .header .profile-1 .dropdown-item {
    padding: 0.6rem 1rem !important;
    border-bottom: none;
    font-size: 13px;
}

.app .header .profile-1 .dropdown-item .dropdown-icon {
    font-size: 16px;
    color: #495057;
}

.responsive-navbar .notifications-menu,
.responsive-navbar .message-menu,
.responsive-navbar .cart-menu {
    max-height: 350px;
    position: relative;
}

.responsive-navbar .notifications-menu h5,
.responsive-navbar .message-menu h5,
.responsive-navbar .cart-menu h5 {
    font-size: 13.5px;
    color: #495057;
    font-weight: 500;
}

.responsive-navbar .notifications-menu span,
.responsive-navbar .message-menu span,
.responsive-navbar .cart-menu span {
    font-size: 12px;
    color: #76839a;
}

.responsive-navbar .dropdown-menu {
    box-shadow: 0 10px 40px 0 rgba(104, 113, 123, 0.3);
    border: #eaedf1;
}

.responsive-navbar .dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
}

.responsive-navbar .message-menu .wd-90p {
    width: 90%;
}

.responsive-navbar .profile-1 .dropdown-item {
    padding: 0.75rem 1rem !important;
}

.responsive-navbar .profile-1 .dropdown-item .dropdown-icon {
    font-size: 16px;
    color: #495057;
}

.header-1 .header-brand-img.logo,
.header-2 .header-brand-img.logo,
.header-1.header-style .header-brand-img.logo {
    display: none;
}

.header.header-1.header-style .dropdown-menu {
    top: inherit !important;
}

.dropdown .avatar.profile-user {
    width: 2rem;
    height: 2rem;
    line-height: 2.2rem;
    border-radius: 50px !important;
}

.dropdown-item:hover .dropdown-icon,
.dropdown-item:focus .dropdown-icon,
.dropdown-item:active .dropdown-icon {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color);
}

.dropdown-menu-arrow.dropdown-menu-end:before,
.dropdown-menu-arrow.dropdown-menu-end:after {
    left: auto;
    right: 16px;
}

@media (min-width: 768px) {
    .dropdown-menu-arrow:before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 6%;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

.side-header {
    border-bottom: 0px solid #eaedf1;
    border-right: 1px solid #eaedf1;
}

.app-sidebar {
    border-right: 1px solid #eaedf1;
}

.flag-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-dropdown .language {
    width: 24px;
    height: 16px;
}

.app-header {
    border-bottom: 1px solid #eaedf1;
}

.navbar-toggler-icon.fa.fa-ellipsis-vertical {
    color: #495584 !important;
}

.mobile-dropdown li a {
    padding: 0.55rem 1rem !important;
}

.logo-horizontal {
    display: none;
}

.app-sidebar__toggle {
    color: #495584;
    z-index: 1;
    transition: padding-left 0.3s ease;
    padding: 0 9px;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    right: 7px;
}

.app-sidebar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .app-sidebar__toggle:before {
        content: "\f0c9";
        transition: all 0.25s;
        font-size: 21px;
        font-family: "FontAwesome";
    }

.app-sidebar__toggle:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    bottom: 0;
    border-radius: 50%;
    right: 12px;
    background: rgba(var(--primary-bg-color), 0);
}

.app-header .container-fluid.main-container div:first-child {
    align-items: center !important;
}

@media (min-width: 1135px) {
    .main-header-center .form-control {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .main-header-center .form-control {
        height: 40px;
        border-radius: 20px;
        background: #f7f8f9;
    }
}

.main-header-center .form-control {
    padding: 1rem 1.5rem;
}

@media (min-width: 992px) {
    .main-header-center .btn {
        position: absolute;
        top: -1px;
        right: 12px;
        background-color: transparent;
        height: 40px;
        color: #707787;
        transition: none;
        font-size: 16px;
        padding-right: 2px;
    }
}

.header .main-header-center {
    position: relative;
    align-items: center;
    max-width: 355px;
    width: 355px;
}

.header .main-header-center i:hover {
    color: var(--primary-bg-color);
}

@media (max-width: 991px) {
    .main-header-center .form-control {
        display: none !important;
    }

    .main-header-center .btn {
        display: none !important;
    }
}

.responsive-navbar {
    display: initial;
    flex-basis: inherit;
    flex-wrap: inherit;
}

@media (min-width: 768px) {
    .responsive-navbar .navbar-collapse {
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        background: transparent;
    }
}

.dropdown-menu.header-search svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.app-header .container-fluid.main-container div:first-child {
    align-items: center !important;
}

@media (max-width: 767.98px) {

    .sidebar-mini .responsive-navbar .navbar-collapse,
    .responsive-navbar .navbar-collapse {
        margin-top: 71px !important;
    }
}

@media (max-width: 767px) {
    .responsive-navbar .navbar-collapse {
        padding: 0px;
        position: fixed;
        width: 100%;
        background: #fff;
        margin-top: 41px;
        z-index: 999;
        box-shadow: 0 12px 11px -3px rgba(104, 113, 123, 0.1);
        left: 0;
        right: 0;
        top: 0;
    }
}

@media (max-width: 767.98px) {
    .responsive-navbar.navbar .dropdown {
        position: initial;
    }
}

.dropdown-menu.dropdown-menu-end.dropdown-menu-arrow.source-logo-menu {
    min-width: 300px !important;
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .logo-horizontal {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .responsive-navbar .header-search .input-group .input-group-text.btn {
        right: 6px;
        padding: 5px;
    }
}

.header .profile-1 .dropdown-item svg {
    fill: #212529 !important;
}

.main-header-center .btn svg {
    fill: #495584 !important;
    width: 24px;
    height: 24px;
}

@media (max-width: 991.98px) {
    .side-header {
        display: none !important;
    }
}

.notification-each {
    white-space: normal;
}

.notifications a.btn-block:hover,
.notifications a.btn-block:active,
.notifications a.btn-block:focus,
.message a.btn-block:hover,
.message a.btn-block:active,
.message a.btn-block:focus,
.shopping-cart a.btn-block:hover,
.shopping-cart a.btn-block:active,
.shopping-cart a.btn-block:focus {
    color: #fff !important;
}

.header .message .dropdown-item {
    white-space: normal;
}

.shopping-cart .nav-link .badge {
    position: absolute;
    right: 2px;
    font-size: 10px !important;
    top: 2px;
    padding: 7px 4px;
    display: block;
}

@media (max-width: 575.98px) {

    .source-container,
    .dropdown .full-screen-link {
        display: none !important;
    }
}

.cart-menu a .cart-desc {
    white-space: normal;
}

@media (min-width: 576px) {
    .shopping-cart .dropdown-menu {
        min-width: 320px;
    }
}

@media (max-width: 575.98px) {
    .shopping-cart .dropdown-menu {
        min-width: 280px;
    }
}

@media (max-width: 991px) {
    .header .dropdown-menu.header-search {
        border-radius: 5px 5px 5px 5px !important;
    }
}

@media (min-width: 992px) {
    .horizontal .side-menu .side-menu__icon {
        color: #495584;
        width: 1.45rem !important;
        text-align: center;
        vertical-align: middle;
        margin-right: 8px;
        position: relative;
        font-size: 1.25rem !important;
        transition: all ease 0.3s;
        fill: #495584;
    }

    .horizontal-hover.horizontal .slide:hover ul.slide-menu {
        display: block !important;
    }

    .horizontal-hover.horizontal .sub-slide:hover .sub-slide-menu {
        display: block !important;
    }

    .horizontal-hover.horizontal .sub-slide2:hover .sub-slide-menu2 {
        display: block !important;
    }

    .horizontal-hover.horizontal .sub-slide.is-expanded .sub-angle {
        transform: none;
    }

    .horizontal .slide-menu a:before {
        left: -15px;
        margin-right: 0px;
    }

    .horizontal .side-menu__label {
        margin-right: 6px;
    }

    .horizontal .header-brand-img {
        margin-top: 11px;
    }

    .horizontal .header .main-header-center {
        margin-top: 6px;
    }

    .horizontal .app-sidebar.horizontal-main .side-menu h3 {
        display: none;
    }

    .horizontal .app-sidebar.horizontal-main .side-menu__item .badge {
        display: none;
    }

    .horizontal.dark-theme .horizontal-main .slide .slide-menu,
    .horizontal.dark-theme .horizontal-main .slide .sub-slide-menu {
        background-color: var(--dark-theme) !important;
        border: 1px solid #404353;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
    }

    .horizontal .horizontal-main {
        z-index: 77 !important;
    }

    .horizontal.dark-theme .logo-1 {
        display: none !important;
    }

    .horizontal.dark-theme .dark-logo-1 {
        display: block !important;
    }

    .horizontal .hor-header .container,
    .horizontal .horizontal-main .container,
    .horizontal .main-content.hor-content .container {
        max-width: 85% !important;
        padding: 0;
    }

    .horizontal .header.fixed-header.hor-header {
        position: relative;
    }

    .horizontal.scrollable-layout .horizontal-main {
        position: relative;
    }

    .horizontal .app-sidebar.horizontal-main .side-menu .sub-category {
        display: none;
    }

    .horizontal .app-sidebar.horizontal-main .side-menu .side-badge {
        display: none;
    }

    .horizontal .side-menu {
        display: flex;
        overflow: hidden;
        padding: 0;
    }

    .horizontal .main-sidemenu {
        margin-top: 0;
    }

    .horizontal .main-sidemenu {
        overflow: hidden;
    }

    .horizontal .side-header {
        display: none !important;
    }

    .horizontal .stickyClass .horizontal-main {
        width: 100%;
    }

    .horizontal .horizontal-main {
        position: relative;
        bottom: initial;
    }

    .horizontal .horizontal-main.ps {
        overflow: visible !important;
    }

    .horizontal .horizontal-main .slide .slide-menu,
    .horizontal .horizontal-main .slide .sub-slide-menu,
    .horizontal .horizontal-main .slide .sub-slide-menu2 {
        width: 190px;
        position: absolute;
        background-color: #fff;
        z-index: 9999;
        border-radius: 5px;
        padding: 5px;
        min-width: fit-content;
        box-shadow: 0px 16px 18px rgba(135, 135, 182, 0.1) !important;
        border: 1px solid #e7eaf3;
    }

    .horizontal .horizontal-main .slide .slide-menu .slide-item:before,
    .horizontal .horizontal-main .slide .sub-slide-menu .slide-item:before,
    .horizontal .horizontal-main .slide .sub-slide-menu2 .slide-item:before {
        left: -15px;
        margin-right: 0px;
    }

    .horizontal .slide-item {
        padding: 8px 35px;
    }

    .horizontal .fixed-header {
        position: fixed;
    }

    .horizontal .sub-slide-menu .sub-slide-item2 {
        padding: 8px 20px 8px 20px !important;
    }

    .horizontal .sub-slide .sub-angle {
        right: 0px;
        left: auto;
        margin-right: 0 !important;
        position: relative;
    }

    .horizontal .sub-angle2 {
        margin-right: 11px;
    }

    .horizontal .app-sidebar {
        transition: none;
    }

    .horizontal .sub-slide .sub-slide-menu {
        position: absolute;
        background-color: #fff;
        z-index: 9999;
        box-shadow: 5px 5px 5px #b9b9b9;
        border-radius: 5px;
        padding: 0px;
        min-width: fit-content;
        border: 1px solid #f0f0f8;
        left: 180px;
        top: 13px;
    }

    .horizontal .sub-slide .sub-slide-menu2 {
        position: absolute;
        background-color: #fff;
        z-index: 9999;
        box-shadow: 5px 5px 5px #b9b9b9;
        border-radius: 5px;
        padding: 0px;
        min-width: fit-content;
        border: 1px solid #f0f0f8;
        left: 180px;
        top: 13px;
    }

    .horizontal .sub-side-menu__item {
        padding: 8px 35px;
    }

    .horizontal .side-menu>li>a {
        display: flex;
        margin: -3px -4px !important;
        text-decoration: none;
        position: relative;
        color: #7b8191;
        padding: 20px 16px !important;
        font-weight: 400;
    }

    .horizontal .side-menu>li>a.active {
        color: var(--primary-bg-color);
    }

    .horizontal .main-sidemenu i.angle {
        position: relative;
        top: 2px;
        right: -4px;
        transform: rotate(90deg);
        font-size: 15px;
    }

    .horizontal .main-sidemenu .slide.is-expanded i.angle {
        transform: rotate(-90deg);
        position: relative;
        top: 0px;
        font-size: 15px;
    }

    .horizontal .breadcrumb-header {
        margin-top: 20px;
    }

    .horizontal .side-menu .slide .side-menu__item.active {
        border-right: none;
    }

    .horizontal .slide {
        margin: 0 3px;
    }

    .horizontal .logo-horizontal {
        display: block;
    }

    .horizontal .app-sidebar__toggle {
        display: none;
    }

    .horizontal .logo-horizontal .header-brand-img.desktop-logo {
        display: none;
    }

    .horizontal .logo-horizontal .header-brand-img.light-logo1 {
        display: block;
    }

    .mobile-logo.dark-logo-1 {
        display: none;
    }

    .main-sidemenu .slide-right {
        right: 20px;
    }

    .main-sidemenu .slide-left,
    .main-sidemenu .slide-right {
        position: absolute;
        top: 12px;
        padding: 6px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        cursor: pointer;
        border: 1px solid #eaedf1;
        border-radius: 50px;
    }

    .main-sidemenu .slide-left {
        left: 23px;
    }

    .horizontal-main {
        position: relative;
        margin: 0 auto;
    }

    .sticky-pin {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1;
    }
}

.app-sidebar.horizontal-main {
    padding-top: 0px;
}

.logo-horizontal {
    display: none;
}

@media (max-width: 991.98px) {
    .horizontal .app.horizontal .side-menu h3 {
        display: block !important;
    }

    .horizontal .app-sidebar.horizontal-main {
        left: -300px;
    }

    .horizontal .main-header.hor-header {
        box-shadow: 0px 7px 26px rgba(154, 154, 204, 0.1);
    }

    .horizontal .main-sidemenu {
        padding: 0;
    }

    .horizontal .horizontalMenucontainer .main-header.hor-header {
        position: fixed;
    }

    .horizontal.app .main-sidemenu .slide-left,
    .horizontal.app .main-sidemenu .slide-right {
        display: none;
    }

    .horizontal .app-sidebar {
        width: 270px;
    }
}

.horizontal .leftmenu-styles {
    display: none;
}

.app.sidebar-mini .main-sidemenu .slide-left,
.app.sidebar-mini .main-sidemenu .slide-right {
    display: none;
}

@media (max-width: 991.98px) {
    .app.horizontal .side-menu .side-menu__icon {
        margin-right: 8px;
    }

    .app.horizontal .side-menu .side-menu__icon {
        font-size: 1.5rem !important;
        width: 1.3rem !important;
    }

    .logo-horizontal {
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        width: inherit;
    }

    .horizontal.app .app-sidebar {
        top: 71px;
    }

    .header.hor-header {
        position: fixed;
        border-bottom: 1px solid #e9edf4;
        width: 100%;
        z-index: 999;
        top: 0;
    }

    .header.hor-header .header-brand-img.desktop-logo {
        display: none;
    }

    .hor-header .container.main-container div:first-child {
        align-items: center !important;
    }

    .header.hor-header .header-brand-img.light-logo1 {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .logo-horizontal .header-brand-img {
        margin-left: 60px;
    }
}

@media (max-width: 767.98px) {
    .header.hor-header .header-brand-img.desktop-logo {
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .horizontal-main.fixed-header.visible-title {
        width: 100%;
    }
}

.icons-list {
    list-style: none;
    margin: 0 -1px -1px 0;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.icons-list>li {
    -ms-flex: 1 0 3rem;
    flex: 1 0 3rem;
}

.icons-list-wrap {
    overflow: hidden;
}

.icons-list-item {
    text-align: center;
    height: 3rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #e9ebfa;
    margin: 4px;
    border-radius: 5px;
    background: #f5f6fb;
    color: #6d7596;
}

.icons-list-item i {
    font-size: 1.25rem;
}

/*-----Icon input-----*/
.input-icon {
    position: relative;
}

.input-icon-addon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 2.5rem;
    pointer-events: none;
    color: #fff;
}

.input-icon-addon.search-icon {
    right: auto !important;
    left: 0 !important;
    color: #636262 !important;
}

.input-icon-addon:last-child {
    left: auto;
    right: 0;
}

.icon-absolute {
    position: absolute;
    display: block;
    bottom: 10px;
    right: 10px;
    padding: 20px 0;
    text-align: center;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

@media (min-width: 991px) and (max-width: 1024px) {
    .icon-absolute {
        display: none;
    }
}

/*------ Icons List ------*/
.browser {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    background: no-repeat center/100% 100%;
    vertical-align: bottom;
    font-style: normal;
}

.browser-android-browser {
    background-image: url("../images/browsers/android-browser.svg");
}

.browser-aol-explorer {
    background-image: url("../images/browsers/aol-explorer.svg");
}

.browser-blackberry {
    background-image: url("../images/browsers/blackberry.svg");
}

.browser-camino {
    background-image: url("../images/browsers/camino.svg");
}

.browser-chrome {
    background-image: url("../images/browsers/chrome.svg");
}

.browser-chromium {
    background-image: url("../images/browsers/chromium.svg");
}

.browser-dolphin {
    background-image: url("../images/browsers/dolphin.svg");
}

.browser-edge {
    background-image: url("../images/browsers/edge.svg");
}

.browser-firefox {
    background-image: url("../images/browsers/firefox.svg");
}

.browser-ie {
    background-image: url("../images/browsers/ie.svg");
}

.browser-maxthon {
    background-image: url("../images/browsers/maxthon.svg");
}

.browser-mozilla {
    background-image: url("../images/browsers/mozilla.svg");
}

.browser-netscape {
    background-image: url("../images/browsers/netscape.svg");
}

.browser-opera {
    background-image: url("../images/browsers/opera.svg");
}

.browser-safari {
    background-image: url("../images/browsers/safari.svg");
}

.browser-sleipnir {
    background-image: url("../images/browsers/sleipnir.svg");
}

.browser-uc-browser {
    background-image: url("../images/browsers/uc-browser.svg");
}

.browser-vivaldi {
    background-image: url("../images/browsers/vivaldi.svg");
}

.flag {
    width: 1.6rem;
    height: 1.2rem;
    display: inline-block;
    background: no-repeat center/100% 100%;
    vertical-align: bottom;
    font-style: normal;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.flag-ad {
    background-image: url("../images/flags/ad.svg");
}

.flag-ae {
    background-image: url("../images/flags/ae.svg");
}

.flag-af {
    background-image: url("../images/flags/af.svg");
}

.flag-ag {
    background-image: url("../images/flags/ag.svg");
}

.flag-ai {
    background-image: url("../images/flags/ai.svg");
}

.flag-al {
    background-image: url("../images/flags/al.svg");
}

.flag-am {
    background-image: url("../images/flags/am.svg");
}

.flag-ao {
    background-image: url("../images/flags/ao.svg");
}

.flag-aq {
    background-image: url("../images/flags/aq.svg");
}

.flag-ar {
    background-image: url("../images/flags/ar.svg");
}

.flag-as {
    background-image: url("../images/flags/as.svg");
}

.flag-at {
    background-image: url("../images/flags/at.svg");
}

.flag-au {
    background-image: url("../images/flags/au.svg");
}

.flag-aw {
    background-image: url("../images/flags/aw.svg");
}

.flag-ax {
    background-image: url("../images/flags/ax.svg");
}

.flag-az {
    background-image: url("../images/flags/az.svg");
}

.flag-ba {
    background-image: url("../images/flags/ba.svg");
}

.flag-bb {
    background-image: url("../images/flags/bb.svg");
}

.flag-bd {
    background-image: url("../images/flags/bd.svg");
}

.flag-be {
    background-image: url("../images/flags/be.svg");
}

.flag-bf {
    background-image: url("../images/flags/bf.svg");
}

.flag-bg {
    background-image: url("../images/flags/bg.svg");
}

.flag-bh {
    background-image: url("../images/flags/bh.svg");
}

.flag-bi {
    background-image: url("../images/flags/bi.svg");
}

.flag-bj {
    background-image: url("../images/flags/bj.svg");
}

.flag-bl {
    background-image: url("../images/flags/bl.svg");
}

.flag-bm {
    background-image: url("../images/flags/bm.svg");
}

.flag-bn {
    background-image: url("../images/flags/bn.svg");
}

.flag-bo {
    background-image: url("../images/flags/bo.svg");
}

.flag-bq {
    background-image: url("../images/flags/bq.svg");
}

.flag-br {
    background-image: url("../images/flags/br.svg");
}

.flag-bs {
    background-image: url("../images/flags/bs.svg");
}

.flag-bt {
    background-image: url("../images/flags/bt.svg");
}

.flag-bv {
    background-image: url("../images/flags/bv.svg");
}

.flag-bw {
    background-image: url("../images/flags/bw.svg");
}

.flag-by {
    background-image: url("../images/flags/by.svg");
}

.flag-bz {
    background-image: url("../images/flags/bz.svg");
}

.flag-ca {
    background-image: url("../images/flags/ca.svg");
}

.flag-cc {
    background-image: url("../images/flags/cc.svg");
}

.flag-cd {
    background-image: url("../images/flags/cd.svg");
}

.flag-cf {
    background-image: url("../images/flags/cf.svg");
}

.flag-cg {
    background-image: url("../images/flags/cg.svg");
}

.flag-ch {
    background-image: url("../images/flags/ch.svg");
}

.flag-ci {
    background-image: url("../images/flags/ci.svg");
}

.flag-ck {
    background-image: url("../images/flags/ck.svg");
}

.flag-cl {
    background-image: url("../images/flags/cl.svg");
}

.flag-cm {
    background-image: url("../images/flags/cm.svg");
}

.flag-cn {
    background-image: url("../images/flags/cn.svg");
}

.flag-co {
    background-image: url("../images/flags/co.svg");
}

.flag-cr {
    background-image: url("../images/flags/cr.svg");
}

.flag-cu {
    background-image: url("../images/flags/cu.svg");
}

.flag-cv {
    background-image: url("../images/flags/cv.svg");
}

.flag-cw {
    background-image: url("../images/flags/cw.svg");
}

.flag-cx {
    background-image: url("../images/flags/cx.svg");
}

.flag-cy {
    background-image: url("../images/flags/cy.svg");
}

.flag-cz {
    background-image: url("../images/flags/cz.svg");
}

.flag-de {
    background-image: url("../images/flags/de.svg");
}

.flag-dj {
    background-image: url("../images/flags/dj.svg");
}

.flag-dk {
    background-image: url("../images/flags/dk.svg");
}

.flag-dm {
    background-image: url("../images/flags/dm.svg");
}

.flag-do {
    background-image: url("../images/flags/do.svg");
}

.flag-dz {
    background-image: url("../images/flags/dz.svg");
}

.flag-ec {
    background-image: url("../images/flags/ec.svg");
}

.flag-ee {
    background-image: url("../images/flags/ee.svg");
}

.flag-eg {
    background-image: url("../images/flags/eg.svg");
}

.flag-eh {
    background-image: url("../images/flags/eh.svg");
}

.flag-er {
    background-image: url("../images/flags/er.svg");
}

.flag-es {
    background-image: url("../images/flags/es.svg");
}

.flag-et {
    background-image: url("../images/flags/et.svg");
}

.flag-eu {
    background-image: url("../images/flags/eu.svg");
}

.flag-fi {
    background-image: url("../images/flags/fi.svg");
}

.flag-fj {
    background-image: url("../images/flags/fj.svg");
}

.flag-fk {
    background-image: url("../images/flags/fk.svg");
}

.flag-fm {
    background-image: url("../images/flags/fm.svg");
}

.flag-fo {
    background-image: url("../images/flags/fo.svg");
}

.flag-fr {
    background-image: url("../images/flags/fr.svg");
}

.flag-ga {
    background-image: url("../images/flags/ga.svg");
}

.flag-gb-eng {
    background-image: url("../images/flags/gb-eng.svg");
}

.flag-gb-nir {
    background-image: url("../images/flags/gb-nir.svg");
}

.flag-gb-sct {
    background-image: url("../images/flags/gb-sct.svg");
}

.flag-gb-wls {
    background-image: url("../images/flags/gb-wls.svg");
}

.flag-gb {
    background-image: url("../images/flags/gb.svg");
}

.flag-gd {
    background-image: url("../images/flags/gd.svg");
}

.flag-ge {
    background-image: url("../images/flags/ge.svg");
}

.flag-gf {
    background-image: url("../images/flags/gf.svg");
}

.flag-gg {
    background-image: url("../images/flags/gg.svg");
}

.flag-gh {
    background-image: url("../images/flags/gh.svg");
}

.flag-gi {
    background-image: url("../images/flags/gi.svg");
}

.flag-gl {
    background-image: url("../images/flags/gl.svg");
}

.flag-gm {
    background-image: url("../images/flags/gm.svg");
}

.flag-gn {
    background-image: url("../images/flags/gn.svg");
}

.flag-gp {
    background-image: url("../images/flags/gp.svg");
}

.flag-gq {
    background-image: url("../images/flags/gq.svg");
}

.flag-gr {
    background-image: url("../images/flags/gr.svg");
}

.flag-gs {
    background-image: url("../images/flags/gs.svg");
}

.flag-gt {
    background-image: url("../images/flags/gt.svg");
}

.flag-gu {
    background-image: url("../images/flags/gu.svg");
}

.flag-gw {
    background-image: url("../images/flags/gw.svg");
}

.flag-gy {
    background-image: url("../images/flags/gy.svg");
}

.flag-hk {
    background-image: url("../images/flags/hk.svg");
}

.flag-hm {
    background-image: url("../images/flags/hm.svg");
}

.flag-hn {
    background-image: url("../images/flags/hn.svg");
}

.flag-hr {
    background-image: url("../images/flags/hr.svg");
}

.flag-ht {
    background-image: url("../images/flags/ht.svg");
}

.flag-hu {
    background-image: url("../images/flags/hu.svg");
}

.flag-id {
    background-image: url("../images/flags/id.svg");
}

.flag-ie {
    background-image: url("../images/flags/ie.svg");
}

.flag-il {
    background-image: url("../images/flags/il.svg");
}

.flag-im {
    background-image: url("../images/flags/im.svg");
}

.flag-in {
    background-image: url("../images/flags/in.svg");
}

.flag-io {
    background-image: url("../images/flags/io.svg");
}

.flag-iq {
    background-image: url("../images/flags/iq.svg");
}

.flag-ir {
    background-image: url("../images/flags/ir.svg");
}

.flag-is {
    background-image: url("../images/flags/is.svg");
}

.flag-it {
    background-image: url("../images/flags/it.svg");
}

.flag-je {
    background-image: url("../images/flags/je.svg");
}

.flag-jm {
    background-image: url("../images/flags/jm.svg");
}

.flag-jo {
    background-image: url("../images/flags/jo.svg");
}

.flag-jp {
    background-image: url("../images/flags/jp.svg");
}

.flag-ke {
    background-image: url("../images/flags/ke.svg");
}

.flag-kg {
    background-image: url("../images/flags/kg.svg");
}

.flag-kh {
    background-image: url("../images/flags/kh.svg");
}

.flag-ki {
    background-image: url("../images/flags/ki.svg");
}

.flag-km {
    background-image: url("../images/flags/km.svg");
}

.flag-kn {
    background-image: url("../images/flags/kn.svg");
}

.flag-kp {
    background-image: url("../images/flags/kp.svg");
}

.flag-kr {
    background-image: url("../images/flags/kr.svg");
}

.flag-kw {
    background-image: url("../images/flags/kw.svg");
}

.flag-ky {
    background-image: url("../images/flags/ky.svg");
}

.flag-kz {
    background-image: url("../images/flags/kz.svg");
}

.flag-la {
    background-image: url("../images/flags/la.svg");
}

.flag-lb {
    background-image: url("../images/flags/lb.svg");
}

.flag-lc {
    background-image: url("../images/flags/lc.svg");
}

.flag-li {
    background-image: url("../images/flags/li.svg");
}

.flag-lk {
    background-image: url("../images/flags/lk.svg");
}

.flag-lr {
    background-image: url("../images/flags/lr.svg");
}

.flag-ls {
    background-image: url("../images/flags/ls.svg");
}

.flag-lt {
    background-image: url("../images/flags/lt.svg");
}

.flag-lu {
    background-image: url("../images/flags/lu.svg");
}

.flag-lv {
    background-image: url("../images/flags/lv.svg");
}

.flag-ly {
    background-image: url("../images/flags/ly.svg");
}

.flag-ma {
    background-image: url("../images/flags/ma.svg");
}

.flag-mc {
    background-image: url("../images/flags/mc.svg");
}

.flag-md {
    background-image: url("../images/flags/md.svg");
}

.flag-me {
    background-image: url("../images/flags/me.svg");
}

.flag-mf {
    background-image: url("../images/flags/mf.svg");
}

.flag-mg {
    background-image: url("../images/flags/mg.svg");
}

.flag-mh {
    background-image: url("../images/flags/mh.svg");
}

.flag-mk {
    background-image: url("../images/flags/mk.svg");
}

.flag-ml {
    background-image: url("../images/flags/ml.svg");
}

.flag-mm {
    background-image: url("../images/flags/mm.svg");
}

.flag-mn {
    background-image: url("../images/flags/mn.svg");
}

.flag-mo {
    background-image: url("../images/flags/mo.svg");
}

.flag-mp {
    background-image: url("../images/flags/mp.svg");
}

.flag-mq {
    background-image: url("../images/flags/mq.svg");
}

.flag-mr {
    background-image: url("../images/flags/mr.svg");
}

.flag-ms {
    background-image: url("../images/flags/ms.svg");
}

.flag-mt {
    background-image: url("../images/flags/mt.svg");
}

.flag-mu {
    background-image: url("../images/flags/mu.svg");
}

.flag-mv {
    background-image: url("../images/flags/mv.svg");
}

.flag-mw {
    background-image: url("../images/flags/mw.svg");
}

.flag-mx {
    background-image: url("../images/flags/mx.svg");
}

.flag-my {
    background-image: url("../images/flags/my.svg");
}

.flag-mz {
    background-image: url("../images/flags/mz.svg");
}

.flag-na {
    background-image: url("../images/flags/na.svg");
}

.flag-nc {
    background-image: url("../images/flags/nc.svg");
}

.flag-ne {
    background-image: url("../images/flags/ne.svg");
}

.flag-nf {
    background-image: url("../images/flags/nf.svg");
}

.flag-ng {
    background-image: url("../images/flags/ng.svg");
}

.flag-ni {
    background-image: url("../images/flags/ni.svg");
}

.flag-nl {
    background-image: url("../images/flags/nl.svg");
}

.flag-no {
    background-image: url("../images/flags/no.svg");
}

.flag-np {
    background-image: url("../images/flags/np.svg");
}

.flag-nr {
    background-image: url("../images/flags/nr.svg");
}

.flag-nu {
    background-image: url("../images/flags/nu.svg");
}

.flag-nz {
    background-image: url("../images/flags/nz.svg");
}

.flag-om {
    background-image: url("../images/flags/om.svg");
}

.flag-pa {
    background-image: url("../images/flags/pa.svg");
}

.flag-pe {
    background-image: url("../images/flags/pe.svg");
}

.flag-pf {
    background-image: url("../images/flags/pf.svg");
}

.flag-pg {
    background-image: url("../images/flags/pg.svg");
}

.flag-ph {
    background-image: url("../images/flags/ph.svg");
}

.flag-pk {
    background-image: url("../images/flags/pk.svg");
}

.flag-pl {
    background-image: url("../images/flags/pl.svg");
}

.flag-pm {
    background-image: url("../images/flags/pm.svg");
}

.flag-pn {
    background-image: url("../images/flags/pn.svg");
}

.flag-pr {
    background-image: url("../images/flags/pr.svg");
}

.flag-ps {
    background-image: url("../images/flags/ps.svg");
}

.flag-pt {
    background-image: url("../images/flags/pt.svg");
}

.flag-pw {
    background-image: url("../images/flags/pw.svg");
}

.flag-py {
    background-image: url("../images/flags/py.svg");
}

.flag-qa {
    background-image: url("../images/flags/qa.svg");
}

.flag-re {
    background-image: url("../images/flags/re.svg");
}

.flag-ro {
    background-image: url("../images/flags/ro.svg");
}

.flag-rs {
    background-image: url("../images/flags/rs.svg");
}

.flag-ru {
    background-image: url("../images/flags/ru.svg");
}

.flag-rw {
    background-image: url("../images/flags/rw.svg");
}

.flag-sa {
    background-image: url("../images/flags/sa.svg");
}

.flag-sb {
    background-image: url("../images/flags/sb.svg");
}

.flag-sc {
    background-image: url("../images/flags/sc.svg");
}

.flag-sd {
    background-image: url("../images/flags/sd.svg");
}

.flag-se {
    background-image: url("../images/flags/se.svg");
}

.flag-sg {
    background-image: url("../images/flags/sg.svg");
}

.flag-sh {
    background-image: url("../images/flags/sh.svg");
}

.flag-si {
    background-image: url("../images/flags/si.svg");
}

.flag-sj {
    background-image: url("../images/flags/sj.svg");
}

.flag-sk {
    background-image: url("../images/flags/sk.svg");
}

.flag-sl {
    background-image: url("../images/flags/sl.svg");
}

.flag-sm {
    background-image: url("../images/flags/sm.svg");
}

.flag-sn {
    background-image: url("../images/flags/sn.svg");
}

.flag-so {
    background-image: url("../images/flags/so.svg");
}

.flag-sr {
    background-image: url("../images/flags/sr.svg");
}

.flag-ss {
    background-image: url("../images/flags/ss.svg");
}

.flag-st {
    background-image: url("../images/flags/st.svg");
}

.flag-sv {
    background-image: url("../images/flags/sv.svg");
}

.flag-sx {
    background-image: url("../images/flags/sx.svg");
}

.flag-sy {
    background-image: url("../images/flags/sy.svg");
}

.flag-sz {
    background-image: url("../images/flags/sz.svg");
}

.flag-tc {
    background-image: url("../images/flags/tc.svg");
}

.flag-td {
    background-image: url("../images/flags/td.svg");
}

.flag-tf {
    background-image: url("../images/flags/tf.svg");
}

.flag-tg {
    background-image: url("../images/flags/tg.svg");
}

.flag-th {
    background-image: url("../images/flags/th.svg");
}

.flag-tj {
    background-image: url("../images/flags/tj.svg");
}

.flag-tk {
    background-image: url("../images/flags/tk.svg");
}

.flag-tl {
    background-image: url("../images/flags/tl.svg");
}

.flag-tm {
    background-image: url("../images/flags/tm.svg");
}

.flag-tn {
    background-image: url("../images/flags/tn.svg");
}

.flag-to {
    background-image: url("../images/flags/to.svg");
}

.flag-tr {
    background-image: url("../images/flags/tr.svg");
}

.flag-tt {
    background-image: url("../images/flags/tt.svg");
}

.flag-tv {
    background-image: url("../images/flags/tv.svg");
}

.flag-tw {
    background-image: url("../images/flags/tw.svg");
}

.flag-tz {
    background-image: url("../images/flags/tz.svg");
}

.flag-ua {
    background-image: url("../images/flags/ua.svg");
}

.flag-ug {
    background-image: url("../images/flags/ug.svg");
}

.flag-um {
    background-image: url("../images/flags/um.svg");
}

.flag-un {
    background-image: url("../images/flags/un.svg");
}

.flag-us {
    background-image: url("../images/flags/us.svg");
}

.flag-uy {
    background-image: url("../images/flags/uy.svg");
}

.flag-uz {
    background-image: url("../images/flags/uz.svg");
}

.flag-va {
    background-image: url("../images/flags/va.svg");
}

.flag-vc {
    background-image: url("../images/flags/vc.svg");
}

.flag-ve {
    background-image: url("../images/flags/ve.svg");
}

.flag-vg {
    background-image: url("../images/flags/vg.svg");
}

.flag-vi {
    background-image: url("../images/flags/vi.svg");
}

.flag-vn {
    background-image: url("../images/flags/vn.svg");
}

.flag-vu {
    background-image: url("../images/flags/vu.svg");
}

.flag-wf {
    background-image: url("../images/flags/wf.svg");
}

.flag-ws {
    background-image: url("../images/flags/ws.svg");
}

.flag-ye {
    background-image: url("../images/flags/ye.svg");
}

.flag-yt {
    background-image: url("../images/flags/yt.svg");
}

.flag-za {
    background-image: url("../images/flags/za.svg");
}

.flag-zm {
    background-image: url("../images/flags/zm.svg");
}

.flag-zw {
    background-image: url("../images/flags/zw.svg");
}

svg {
    -ms-touch-action: none;
    touch-action: none;
}

.col-sm-3 a {
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 3s ease;
}

.col-sm-3 a:hover {
    border: 1px solid #ff4647;
    border-radius: 100% 60%/30% 10%;
    background: linear-gradient(rgba(56, 123, 131, 0.7), rgba(56, 123, 131, 0.7));
}


.item-card-img {
    overflow: hidden;
}

/*--item-card2-img--*/
.item-card2-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}


.item-card2-desc ul li {
    margin-right: 1.5rem;
    font-size: 13px;
}

.item-card2-desc ul li:last-child {
    margin-right: 0;
}

/*--item-card2--*/
.item-card2-icons {
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 999;
}

.item-card2-icons a {
    width: 2rem;
    display: inline-block;
    height: 2rem;
    text-align: center;
    border-radius: 100px;
    line-height: 2.1rem;
    border-radius: 50px;
    color: #fff;
}

/*--item-list--*/
.item-list .list-group-item {
    border: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(167, 180, 201, 0.3);
}

.item-list .list-group-item i {
    margin-right: 5px;
    width: 25px;
    height: 25px;
    border-radius: 2px;
    font-size: 12px;
    text-align: center;
    line-height: 25px;
    color: #fff !important;
}

/*--item-user--*/
.item-user .item-user-icons a {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    text-align: center;
    border-radius: 100px;
    line-height: 2rem;
    margin-top: 0.3rem;
}

.item-user .item-user-icons a:hover {
    color: #fff;
}

.item-box .item-box-wrap {
    margin-top: 15px;
}

.item-box .stamp i {
    font-size: 18px;
    font-size: 25px;
    line-height: 2;
}

.item-box .item-box-wrap h5 {
    font-size: 20px;
    font-weight: 500;
}

/**
Dimmer
*/
.dimmer {
    position: relative;
}

.dimmer .loader {
    display: none;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.dimmer.active .loader {
    display: block;
}

.dimmer.active .dimmer-content {
    opacity: 0.04;
    pointer-events: none;
}

/*-------- Loaders ---------*/
/*Gradient variables*/
/*Background variables*/
/*gray variables*/
/*white variables*/
/*black variables*/
/*shadow variables*/
/*Dark Theme Variables*/
/*Transparent variables*/

@media (max-width: 768px) {


    .navbar-toggler-icon.fa.fa-ellipsis-vertical {
        color: rgba(255, 255, 255, 0.8);
    }
}

.select2-container--default .select2-selection--single {
    background-color: #f6f7fc;
    border: 1px solid #eaedf1 !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #9ca3b1;
    outline: 0;
    box-shadow: none;
}

.select2-container--default .select2-selection--multiple {
    background-color: #f6f7fc;
    border: 1px solid #eaedf1 !important;
    cursor: text;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #eaedf1 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff !important;
}

.select2-container--default .select2-results>.select2-results__options {
    box-shadow: 0px 16px 18px rgba(6, 10, 48, 0.1);
}

.select2-container .select2-selection--single {
    height: auto !important;
    text-align: left;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 32px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 2rem !important;
}


.logo-container {
    left: 50px;
    position: absolute;
    top: 20px;
    z-index: 3;
}

.logo-container .logo {
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #333333;
    width: 60px;
    float: left;
}

.logo-container .brand {
    font-size: 18px;
    color: #fff;
    line-height: 20px;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    width: 60px;
}

.section .wizard-card {
    min-height: inherit;
}

.tim-row {
    margin-bottom: 20px;
}

.tim-white-buttons {
    background-color: #777777;
}

.title {
    margin-top: 30px;
    margin-bottom: 25px;
    min-height: 32px;
    font-weight: 500;
}

.title.text-center {
    margin-bottom: 50px;
}

.tim-typo {
    padding-left: 25%;
    margin-bottom: 40px;
    position: relative;
}

.tim-typo .tim-note {
    bottom: 10px;
    color: #c0c1c2;
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    left: 0;
    margin-left: 20px;
    position: absolute;
    width: 260px;
}

.tim-row {
    padding-top: 50px;
}

.tim-row h3 {
    margin-top: 0;
}

.switch {
    margin-right: 20px;
}

#navbar-full .navbar {
    border-radius: 0 !important;
    margin-bottom: 15px;
    z-index: 2;
}

.space {
    height: 130px;
    display: block;
}

.space-110 {
    height: 110px;
    display: block;
}

.space-50 {
    height: 50px;
    display: block;
}

.space-70 {
    height: 70px;
    display: block;
}

.navigation-example {
    background-position: center center;
    background-size: cover;
    margin-top: 0;
    min-height: 740px;
}

.navigation-example .img-src {
    background-attachment: scroll;
}

#notifications {
    background-color: #ffffff;
    display: block;
    width: 100%;
    position: relative;
}

#notifications .alert-danger {
    margin-bottom: 0px;
}

.tim-note {
    text-transform: capitalize;
}

#buttons .btn {
    margin: 0 0px 15px;
}

.space-100 {
    height: 100px;
    display: block;
    width: 100%;
}

.be-social {
    padding-bottom: 20px;
    /*     border-bottom: 1px solid #aaa; */
    margin: 0 auto 40px;
}

.txt-white {
    color: #ffffff;
}

.txt-gray {
    color: #ddd !important;
}

.parallax {
    width: 100%;
    height: 570px;
    display: block;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.logo-container.logo-documentation {
    position: relative;
    top: 0;
    left: 0;
}

.logo-container .logo {
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #333333;
    width: 50px;
    float: left;
}

.logo-container .brand {
    font-size: 16px;
    line-height: 18px;
    float: left;
    margin-left: 10px;
    margin-top: 7px;
    width: 70px;
    height: 40px;
    text-align: left;
}

.navbar-default .logo-container .brand {
    color: #999999;
}

.navbar-transparent .logo-container .brand {
    color: #ffffff;
}

.logo-container .brand-material {
    font-size: 18px;
    margin-top: 15px;
    height: 25px;
    width: auto;
}

.logo-container .logo img {
    width: 100%;
}

.navbar-small .logo-container .brand {
    color: #333333;
}

.fixed-section {
    top: 90px;
    max-height: 80vh;
    overflow: scroll;
}

.fixed-section ul li {
    list-style: none;
}

.fixed-section li a {
    font-size: 14px;
    padding: 2px;
    display: block;
    color: #666666;
}

.fixed-section li a.active {
    color: #00bbff;
}

.fixed-section.float {
    position: fixed;
    top: 100px;
    width: 200px;
    margin-top: 0;
}

.parallax .parallax-image {
    width: 100%;
    overflow: hidden;
    position: absolute;
}

.parallax .parallax-image img {
    width: 100%;
}

@media (max-width: 768px) {
    .parallax .parallax-image {
        width: 100%;
        height: 640px;
        overflow: hidden;
    }

    .parallax .parallax-image img {
        height: 100%;
        width: auto;
    }
}

.separator {
    content: "Separator";
    color: #ffffff;
    display: block;
    width: 100%;
    padding: 20px;
}

.separator-line {
    background-color: #eee;
    height: 1px;
    width: 100%;
    display: block;
}

.separator.separator-gray {
    background-color: #eeeeee;
}

.social-buttons-demo .btn {
    margin-right: 5px;
    margin-bottom: 7px;
}

.img-container {
    width: 100%;
    overflow: hidden;
}

.img-container img {
    width: 100%;
}

.lightbox img {
    width: 100%;
}

.lightbox .modal-content {
    overflow: hidden;
}

.lightbox .modal-body {
    padding: 0;
}

@media screen and (min-width: 991px) {
    .lightbox .modal-dialog {
        width: 960px;
    }
}

@media (max-width: 768px) {
    .btn-morphing {
        margin-bottom: 10px;
    }

    .parallax .motto {
        top: 170px;
        margin-top: 0;
        font-size: 60px;
        width: 270px;
    }
}

/*       Loading dots  */
/*      transitions */
.presentation .front {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.presentation .front:after,
.presentation .front .btn {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.logo-container .logo,
.logo-container .brand {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

#images h4 {
    margin-bottom: 30px;
}

#javascriptComponents {
    padding-bottom: 0;
}

#javascriptComponents .btn-raised {
    margin: 10px 5px;
}

/*      layer animation          */
.layers-container {
    display: block;
    margin-top: 50px;
    position: relative;
}

.layers-container img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    text-align: center;
}

.section-black {
    background-color: #333;
}

.animate {
    transition: 1.5s ease-in-out;
    -moz-transition: 1.5s ease-in-out;
    -webkit-transition: 1.5s ease-in-out;
}

.navbar-default.navbar-small .logo-container .brand {
    color: #333333;
}

.navbar-transparent.navbar-small .logo-container .brand {
    color: #ffffff;
}

.navbar-default.navbar-small .logo-container .brand {
    color: #333333;
}

.sharing-area {
    margin-top: 80px;
}

.sharing-area .btn {
    margin: 15px 4px 0;
    color: #ffffff;
}

.sharing-area .btn i {
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.sharing-area .btn-twitter {
    background-color: #55acee;
}

.sharing-area .btn-facebook {
    background-color: #3b5998;
}

.sharing-area .btn-google-plus {
    background-color: #dd4b39;
}

.sharing-area .btn-github {
    background-color: #333333;
}

.section-thin,
.section-notifications {
    padding: 0;
}

.section-navbars {
    padding-top: 0;
}

#navbar .navbar {
    border-radius: 0;
}

.section-tabs {
    background: #eeeeee;
}

.section-pagination {
    padding-bottom: 0;
}

.section-download h4 {
    margin-bottom: 50px;
}

.section-examples a {
    text-decoration: none;
}

.section-examples h5 {
    margin-top: 30px;
}

.components-page .wrapper>.header,
.tutorial-page .wrapper>.header {
    height: 400px;
    padding-top: 100px;
    background-size: cover;
    background-position: center center;
}

.components-page .title,
.tutorial-page .title {
    color: #ffffff;
}

.main {
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.main-raised {
    margin: -60px 30px 0px;
    border-radius: 6px;
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.header-filter {
    position: relative;
}

.header-filter:before,
.header-filter:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
}

.header-filter::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.header-filter .container {
    z-index: 2;
    position: relative;
}

.section {
    padding: 70px 0;
    background-position: center center;
    background-size: cover;
}

.navbar {
    border: 0;
    border-radius: 3px;
    padding: 10px 0;
    -webkit-transition: all 150ms ease 0s;
    -moz-transition: all 150ms ease 0s;
    -o-transition: all 150ms ease 0s;
    -ms-transition: all 150ms ease 0s;
    transition: all 150ms ease 0s;
}

.navbar .navbar-brand {
    position: relative;
    height: 50px;
    line-height: 30px;
    color: inherit;
    padding: 10px 15px;
}

.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
    color: inherit;
    background-color: transparent;
}

.navbar.navbar-transparent {
    background-color: transparent;
    box-shadow: none;
    color: #fff;
    padding-top: 25px;
}

.navbar-fixed-top {
    border-radius: 0;
}

.navbar .navbar-nav>li>a {
    color: inherit;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 3px;
}

.navbar .navbar-nav>li>a .material-icons,
.navbar .navbar-nav>li>a .fa {
    font-size: 20px;
    max-width: 20px;
}

.navbar .navbar-nav>li>a:hover,
.navbar .navbar-nav>li>a:focus {
    color: inherit;
    background-color: transparent;
}

.navbar .navbar-nav>li>a:not(.btn) .material-icons {
    margin-top: -3px;
    top: 0px;
    position: relative;
    margin-right: 3px;
}

@media (max-width: 1199px) {
    .navbar .navbar-brand {
        height: 50px;
        padding: 10px 15px;
    }

    .navbar .navbar-nav>li>a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

:placeholder {
    color: #fff;
}

footer.footer-documentation {
    margin-top: 0;
    bottom: 0;
    text-shadow: none;
    color: inherit;
}

footer.footer-documentation li a {
    color: inherit;
}

footer.footer-documentation li a:hover,
footer.footer-documentation li a:focus {
    color: #89229b;
}

footer ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    display: inline-block;
}

footer ul li a {
    color: inherit;
    padding: 15px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    position: relative;
    display: block;
}

footer ul li a:hover {
    text-decoration: none;
}

footer ul li .btn {
    margin: 0;
}

footer ul.links-horizontal:first-child a {
    padding-left: 0;
}

footer ul.links-horizontal:last-child a {
    padding-right: 0;
}

footer ul.links-vertical li {
    display: block;
}

footer ul.links-vertical li a {
    padding: 5px 0;
}

footer .social-buttons a,
footer .social-buttons .btn {
    margin-top: 5px;
    margin-bottom: 5px;
}

footer .footer-brand {
    float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    margin-left: -15px;
}

footer .footer-brand:hover,
footer .footer-brand:focus {
    color: #3c4858;
}

footer .copyright {
    padding: 15px 0;
    text-align: center;
}

footer .copyright .material-icons {
    font-size: 18px;
    position: relative;
    top: 3px;
}

footer .pull-center {
    display: inline-block;
    float: none;
}

@media (max-width: 768px) {
    .footer .copyright {
        display: inline-block;
        text-align: center;
        padding: 10px 0;
        float: none !important;
        width: 100%;
    }

    .navbar.navbar-transparent {
        background-color: rgba(0, 0, 0, 0.4);
        padding-top: 10px;
        border-radius: 0;
    }

    .main-raised {
        margin-left: 10px;
        margin-right: 10px;
    }
}


@-webkit-keyframes stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 30px;
    }
}

@keyframes stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 30px;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }

    100% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }

    100% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
}


/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus {
    border-color: none !important;
}

input:focus {
    border-color: none !important;
}

input:focus::-webkit-input-placeholder,
input:focus:-moz-placeholder,
input:focus::-moz-placeholder,
input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder,
textarea:focus:-moz-placeholder,
textarea:focus::-moz-placeholder,
textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

textarea::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}

/*//////////////////////////////////////////////////////////////////
  [ Utility ]*/
.txt1,
.txt2 {
    font-size: 13px;
    line-height: 1.5;
    color: #24214c;
}

/*//////////////////////////////////////////////////////////////////
  [ login ]*/
.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    z-index: 999;
}

.wrap-login100 {
    /*width: 960px;*/
    background: #fff;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 137px 130px 137px 95px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
}

/*------------------------------------------------------------------
  [  ]*/
.login100-pic {
    width: 316px;
}

.login100-pic img {
    max-width: 100%;
}

/*------------------------------------------------------------------
  [  ]*/
.login100-form {
    width: 320px;
}

.login100-form-title {
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 30px;
    color: #424344;
}

/*---------------------------------------------*/
.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
}

.input100 {
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    display: block;
    width: 100%;
    background: #ffffff;
    height: 45px;
    padding: 0 30px 0 54px;
    border-radius: 5px;
    border: 1px solid #ecf0fa;
}

/*------------------------------------------------------------------
  [ Focus ]*/
.focus-input100 {
    display: block;
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    text-transform: uppercase;
    background: #6259ca;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.symbol-input100 {
    font-size: 17px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 22px;
    pointer-events: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    color: #828996;
}

.input100.focus-input100+.symbol-input100 {
    text-transform: uppercase;
    background: #6259ca;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*------------------------------------------------------------------
  [ Button ]*/
.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
}

.login100-form-btn {
    line-height: 1.5;
    color: #fff;
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    border-radius: 5px;
}

/*------------------------------------------------------------------
  [ Responsive ]*/
@media (max-width: 992px) {
    .wrap-login100 {
        padding: 35px 90px 35px 85px;
    }

    .login100-pic {
        width: 35%;
        display: none;
    }

    .login100-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wrap-login100 {
        padding: 30px 80px 30px 80px;
    }

    .login100-form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .wrap-login100 {
        padding: 25px 15px 25px 15px;
    }
}

.btn-social {
    position: relative;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #e2e7eb;
    padding-left: 60px;
    background-color: #fff;
}

.btn-social> :first-child {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    line-height: 36px;
    font-size: 1.2em;
    text-align: center;
    border-right: 1px solid #ecf0fa;
}

.btn-social.btn-lg {
    padding-left: 61px;
}

.btn-social.btn-lg> :first-child {
    line-height: 45px;
    width: 45px;
    font-size: 1.8em;
}

.btn-social.btn-sm {
    padding-left: 38px;
}

.btn-social.btn-sm> :first-child {
    line-height: 28px;
    width: 28px;
    font-size: 1.4em;
}

.btn-social.btn-xs {
    padding-left: 30px;
}

.btn-social.btn-xs> :first-child {
    line-height: 20px;
    width: 20px;
    font-size: 1.2em;
}

.btn-social-icon {
    position: relative;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 34px;
    width: 34px;
    padding: 0;
}

.btn-social-icon> :first-child {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 32px;
    line-height: 34px;
    font-size: 1.6em;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-social-icon.btn-lg {
    padding-left: 61px;
}

.btn-social-icon.btn-lg> :first-child {
    line-height: 45px;
    width: 45px;
    font-size: 1.8em;
}

.btn-social-icon.btn-sm {
    padding-left: 38px;
}

.btn-social-icon.btn-sm> :first-child {
    line-height: 28px;
    width: 28px;
    font-size: 1.4em;
}

.btn-social-icon.btn-xs {
    padding-left: 30px;
}

.btn-social-icon.btn-xs> :first-child {
    line-height: 20px;
    width: 20px;
    font-size: 1.2em;
}

.btn-social-icon> :first-child {
    border: none;
    text-align: center;
    width: 100%;
    color: #fff;
}

.btn-social-icon.btn-lg {
    height: 45px;
    width: 45px;
    padding-left: 0;
    padding-right: 0;
}

.btn-social-icon.btn-sm {
    height: 30px;
    width: 30px;
    padding-left: 0;
    padding-right: 0;
}

.btn-social-icon.btn-xs {
    height: 22px;
    width: 22px;
    padding-left: 0;
    padding-right: 0;
}


/* nvd3 version 1.8.6-dev (https://github.com/novus/nvd3) 2018-02-24 */
.nvd3 .nv-axis {
    pointer-events: none;
    opacity: 1;
}

.nvd3 .nv-axis path {
    fill: none;
    stroke: #000;
    stroke-opacity: 0.75;
    shape-rendering: crispEdges;
}

.nvd3 .nv-axis path.domain {
    stroke-opacity: 0.75;
}

.nvd3 .nv-axis.nv-x path.domain {
    stroke-opacity: 0;
}

.nvd3 .nv-axis line {
    fill: none;
    stroke: #e5e5e5;
    shape-rendering: crispEdges;
}

.nvd3 .nv-axis .zero line,
.nvd3 .nv-axis line.zero {
    stroke-opacity: 0.75;
}

.nvd3 .nv-axis .nv-axisMaxMin text {
    font-weight: bold;
}

.nvd3 .x .nv-axis .nv-axisMaxMin text,
.nvd3 .x2 .nv-axis .nv-axisMaxMin text,
.nvd3 .x3 .nv-axis .nv-axisMaxMin text {
    text-anchor: middle;
}

.nvd3 .nv-axis.nv-disabled {
    opacity: 0;
}

.nvd3 .nv-bars rect {
    fill-opacity: 0.75;
    transition: fill-opacity 250ms linear;
}

.nvd3 .nv-bars rect.hover {
    fill-opacity: 1;
}

.nvd3 .nv-bars .hover rect {
    fill: lightblue;
}

.nvd3 .nv-bars text {
    fill: rgba(0, 0, 0, 0);
}

.nvd3 .nv-bars .hover text {
    fill: black;
}

.nvd3 .nv-multibar .nv-groups rect,
.nvd3 .nv-multibarHorizontal .nv-groups rect,
.nvd3 .nv-discretebar .nv-groups rect {
    stroke-opacity: 0;
    transition: fill-opacity 250ms linear;
}

.nvd3 .nv-multibar .nv-groups rect:hover,
.nvd3 .nv-multibarHorizontal .nv-groups rect:hover,
.nvd3 .nv-candlestickBar .nv-ticks rect:hover {
    fill-opacity: 1;
}

.nvd3 .nv-discretebar .nv-groups rect:hover {
    fill-opacity: 1;
}

.nvd3 .nv-discretebar .nv-groups text {
    font-weight: bold;
    fill: black;
    stroke: rgba(0, 0, 0, 0);
}

.nvd3 .nv-multibarHorizontal .nv-groups text {
    font-weight: bold;
    fill: black;
    stroke: rgba(0, 0, 0, 0);
}

.nvd3 .nv-boxplot circle {
    fill-opacity: 0.5;
}

.nvd3 .nv-boxplot circle:hover {
    fill-opacity: 1;
}

.nvd3 .nv-boxplot rect:hover {
    fill-opacity: 1;
}

.nvd3 line.nv-boxplot-median {
    stroke: black;
}

/* boxplot CSS */
.nv-boxplot-tick:hover {
    stroke-width: 2.5px;
}

/* bullet */
.nvd3.nv-bullet {
    font: 10px sans-serif;
}

.nvd3.nv-bullet .nv-measure {
    fill-opacity: 0.8;
}

.nvd3.nv-bullet .nv-measure:hover {
    fill-opacity: 1;
}

.nvd3.nv-bullet .nv-marker {
    stroke: #000;
    stroke-width: 2px;
}

.nvd3.nv-bullet .nv-markerTriangle {
    stroke: #000;
    fill: #fff;
    stroke-width: 1.5px;
}

.nvd3.nv-bullet .nv-markerLine {
    stroke: #000;
    stroke-width: 1.5px;
}

.nvd3.nv-bullet .nv-tick line {
    stroke: #666;
    stroke-width: 0.5px;
}

.nvd3.nv-bullet .nv-range.nv-s0 {
    fill: #eee;
}

.nvd3.nv-bullet .nv-range.nv-s1 {
    fill: #ddd;
}

.nvd3.nv-bullet .nv-range.nv-s2 {
    fill: #ccc;
}

.nvd3.nv-bullet .nv-title {
    font-size: 14px;
    font-weight: bold;
}

.nvd3.nv-bullet .nv-subtitle {
    fill: #999;
}

.nvd3.nv-bullet .nv-range {
    fill: #bababa;
    fill-opacity: 0.4;
}

.nvd3.nv-bullet .nv-range:hover {
    fill-opacity: 0.7;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick {
    stroke-width: 1px;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.hover {
    stroke-width: 2px;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.positive rect {
    stroke: #2ca02c;
    fill: #2ca02c;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.negative rect {
    stroke: #d62728;
    fill: #d62728;
}

.with-transitions .nv-candlestickBar .nv-ticks .nv-tick {
    transition: stroke-width 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-candlestickBar .nv-ticks line {
    stroke: #333;
}

.nv-force-node {
    stroke: #fff;
    stroke-width: 1.5px;
}

.nv-force-link {
    stroke: #999;
    stroke-opacity: 0.6;
}

.nv-force-node text {
    stroke-width: 0px;
}

.nvd3 .nv-legend .nv-disabled rect {
    /*fill-opacity: 0;*/
}

.nvd3 .nv-check-box .nv-box {
    fill-opacity: 0;
    stroke-width: 2;
}

.nvd3 .nv-check-box .nv-check {
    fill-opacity: 0;
    stroke-width: 4;
}

.nvd3 .nv-series.nv-disabled .nv-check-box .nv-check {
    fill-opacity: 0;
    stroke-opacity: 0;
}

.nvd3 .nv-controlsWrap .nv-legend .nv-check-box .nv-check {
    opacity: 0;
}

.nvd3.nv-linePlusBar .nv-bar rect {
    fill-opacity: 0.75;
}

.nvd3.nv-linePlusBar .nv-bar rect:hover {
    fill-opacity: 1;
}

.nvd3 .nv-groups path.nv-line {
    fill: none;
}

.nvd3 .nv-groups path.nv-area {
    stroke: none;
}

.nvd3.nv-line .nvd3.nv-scatter .nv-groups .nv-point {
    fill-opacity: 0;
    stroke-opacity: 0;
}

.nvd3.nv-scatter.nv-single-point .nv-groups .nv-point {
    fill-opacity: 0.5 !important;
    stroke-opacity: 0.5 !important;
}

/* line plus bar */
.with-transitions .nvd3 .nv-groups .nv-point {
    transition: stroke-width 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-scatter .nv-groups .nv-point.hover,
.nvd3 .nv-groups .nv-point.hover {
    stroke-width: 7px;
    fill-opacity: 0.95 !important;
    stroke-opacity: 0.95 !important;
}

.nvd3 .nv-point-paths path {
    stroke: #aaa;
    stroke-opacity: 0;
    fill: #eee;
    fill-opacity: 0;
}

.nvd3 .nv-indexLine {
    cursor: ew-resize;
}

/********************
   * SVG CSS
   */
/********************
    Default CSS for an svg element nvd3 used
  */
svg.nvd3-svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
    width: 100%;
    height: 100%;
}

/********************
    Box shadow and border radius styling
  */
.nvtooltip.with-3d-shadow,
.with-3d-shadow .nvtooltip {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.nvd3 text {
    font: normal 12px Arial, sans-serif;
}

.nvd3 .title {
    font: bold 14px Arial, sans-serif;
}

.nvd3 .nv-background {
    fill: white;
    fill-opacity: 0;
}

.nvd3.nv-noData {
    font-size: 18px;
    font-weight: bold;
}

/**********
  *  Brush
  */
.nv-brush .extent {
    fill-opacity: 0.125;
    shape-rendering: crispEdges;
}

.nv-brush .resize path {
    fill: #eee;
    stroke: #666;
}

/**********
  *  Legend
  */
.nvd3 .nv-legend .nv-series {
    cursor: pointer;
}

.nvd3 .nv-legend .nv-disabled circle {
    fill-opacity: 0;
}

.nvd3 .nv-brush .extent {
    fill-opacity: 0 !important;
}

.nvd3 .nv-brushBackground rect {
    stroke: #000;
    stroke-width: 0.4;
    fill: #fff;
    fill-opacity: 0.7;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick {
    stroke-width: 1px;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.hover {
    stroke-width: 2px;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.positive {
    stroke: #2ca02c;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.negative {
    stroke: #d62728;
}

.nvd3 .background path {
    fill: none;
    stroke: #eee;
    stroke-opacity: 0.4;
    shape-rendering: crispEdges;
}

.nvd3 .foreground path {
    fill: none;
    stroke-opacity: 0.7;
}

.nvd3 .nv-parallelCoordinates-brush .extent {
    fill: #fff;
    fill-opacity: 0.6;
    stroke: gray;
    shape-rendering: crispEdges;
}

.nvd3 .nv-parallelCoordinates .hover {
    fill-opacity: 1;
    stroke-width: 3px;
}

.nvd3 .missingValuesline line {
    fill: none;
    stroke: black;
    stroke-width: 1;
    stroke-opacity: 1;
    stroke-dasharray: 5, 5;
}

.nvd3.nv-pie path {
    stroke-opacity: 0;
    transition: fill-opacity 250ms linear, stroke-width 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-pie .nv-pie-title {
    font-size: 24px;
    fill: rgba(19, 196, 249, 0.59);
}

.nvd3.nv-pie .nv-slice text {
    stroke: #000;
    stroke-width: 0;
}

.nvd3.nv-pie path {
    stroke: #fff;
    stroke-width: 1px;
    stroke-opacity: 1;
    fill-opacity: 0.7;
}

.nvd3.nv-pie .hover path {
    fill-opacity: 1;
}

.nvd3.nv-pie .nv-label {
    pointer-events: none;
}

.nvd3.nv-pie .nv-label rect {
    fill-opacity: 0;
    stroke-opacity: 0;
}

.nvd3 .nv-groups .nv-point.hover {
    stroke-width: 20px;
    stroke-opacity: 0.5;
}

.nvd3 .nv-scatter .nv-point.hover {
    fill-opacity: 1;
}

/* focus */
/**********
  *  Print
  */
@media print {
    .nvd3 text {
        stroke-width: 0;
        fill-opacity: 1;
    }
}

/* scatter */
.nv-noninteractive,
.nv-distx,
.nv-disty {
    pointer-events: none;
}

/* sparkline */
.nvd3.nv-sparkline path {
    fill: none;
}

.nvd3.nv-sparklineplus {
    pointer-events: all;
}

.nvd3.nv-sparklineplus g.nv-hoverValue {
    pointer-events: none;
}

.nvd3.nv-sparklineplus .nv-hoverValue line {
    stroke: #333;
    stroke-width: 1.5px;
}

.nvd3.nv-sparklineplus g {
    pointer-events: all;
}

.nvd3 .nv-hoverArea {
    fill-opacity: 0;
    stroke-opacity: 0;
}

.nvd3.nv-sparklineplus .nv-xValue {
    stroke-width: 0;
    font-size: 0.9em;
    font-weight: normal;
}

.nvd3.nv-sparklineplus .nv-yValue {
    stroke-width: 0;
    font-size: 0.9em;
    font-weight: normal;
    stroke: #f66;
}

.nvd3.nv-sparklineplus .nv-maxValue {
    stroke: #2ca02c;
    fill: #2ca02c;
}

.nvd3.nv-sparklineplus .nv-minValue {
    stroke: #d62728;
    fill: #d62728;
}

.nvd3.nv-sparklineplus .nv-currentValue {
    font-weight: bold;
    font-size: 1.1em;
}

.nvd3.nv-stackedarea path.nv-area {
    fill-opacity: 0.7;
    stroke-opacity: 0;
    transition: fill-opacity 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-stackedarea path.nv-area.hover {
    fill-opacity: 0.9;
}

.nvd3.nv-stackedarea .nv-groups .nv-point {
    stroke-opacity: 0;
    fill-opacity: 0;
}

/* stacked area */
.nvtooltip {
    position: absolute;
    background-color: white;
    color: black;
    padding: 1px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: block;
    font-family: Arial, sans-serif;
    font-size: 13px;
    text-align: left;
    pointer-events: none;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.nvtooltip.with-transitions {
    transition: opacity 50ms linear;
    transition-delay: 200ms;
}

/*Give tooltips that old fade in transition by
      putting a "with-transitions" class on the container div.
  */
.with-transitions .nvtooltip {
    transition: opacity 50ms linear;
    transition-delay: 200ms;
}

.nvtooltip.x-nvtooltip,
.nvtooltip.y-nvtooltip {
    padding: 8px;
}

.nvtooltip h3 {
    margin: 0;
    padding: 4px 14px;
    line-height: 18px;
    font-weight: normal;
    background-color: rgba(247, 247, 247, 0.75);
    color: black;
    text-align: center;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.nvtooltip p {
    margin: 0;
    padding: 5px 14px;
    text-align: center;
}

.nvtooltip span {
    display: inline-block;
    margin: 2px 0;
}

.nvtooltip table {
    margin: 6px;
    border-spacing: 0;
}

.nvtooltip table td {
    padding: 2px 9px 2px 0;
    vertical-align: middle;
}

.nvtooltip table td.key {
    font-weight: normal;
}

.nvtooltip table td.key.total {
    font-weight: bold;
}

.nvtooltip table td.value {
    text-align: right;
    font-weight: bold;
}

.nvtooltip table td.percent {
    color: darkgray;
}

.nvtooltip table tr.highlight td {
    padding: 1px 9px 1px 0;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-top-width: 1px;
}

.nvtooltip table td.legend-color-guide div {
    width: 8px;
    height: 8px;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    border: 1px solid #999;
}

.nvtooltip .footer {
    padding: 3px;
    text-align: center;
}

.nvtooltip-pending-removal {
    pointer-events: none;
    display: none;
}

/****
  Interactive Layer
  */
.nvd3 .nv-interactiveGuideLine {
    pointer-events: none;
}

.nvd3 line.nv-guideline {
    stroke: #ccc;
}


.rating-stars .rating-stars-container .rating-star.is--hover {
    color: #f1c40f !important;
}

/*
 * Container style
 */
.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
    display: none;
    opacity: 0;
    transition: background-color 0.2s linear, opacity 0.2s linear;
    -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
    height: 15px;
    /* there must be 'bottom' or 'top' for ps__rail-x */
    bottom: 0px;
    /* please don't change 'position' */
    position: absolute;
}

.ps__rail-y {
    display: none;
    opacity: 0;
    transition: background-color 0.2s linear, opacity 0.2s linear;
    -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
    width: 15px;
    /* there must be 'right' or 'left' for ps__rail-y */
    right: 0;
    /* please don't change 'position' */
    position: absolute;
}

.ps--active-x>.ps__rail-x,
.ps--active-y>.ps__rail-y {
    display: block;
    background-color: transparent;
}

.ps:hover>.ps__rail-x,
.ps:hover>.ps__rail-y {
    opacity: 0.6;
}

.ps--focus>.ps__rail-x,
.ps--focus>.ps__rail-y {
    opacity: 0.6;
}

.ps--scrolling-x>.ps__rail-x,
.ps--scrolling-y>.ps__rail-y {
    opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
    background-color: transparent;
    opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
    background-color: #77bc2175;
    border-radius: 6px;
    transition: background-color 0.2s linear, height 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
    height: 6px;
    /* there must be 'bottom' for ps__thumb-x */
    bottom: 2px;
    /* please don't change 'position' */
    position: absolute;
}

.ps__thumb-y {
    background-color: #77bc2175;
    border-radius: 6px;
    transition: background-color 0.2s linear, width 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
    width: 3px;
    /* there must be 'right' for ps__thumb-y */
    right: 0px;
    /* please don't change 'position' */
    position: absolute;
}

.ps__rail-x:hover>.ps__thumb-x,
.ps__rail-x:focus>.ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
    background-color: #84bf8bad;
    height: 11px;
}

.ps__rail-y:hover>.ps__thumb-y,
.ps__rail-y:focus>.ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
    background-color: #84bf8bad;
    width: 10px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
    .ps {
        overflow: auto !important;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .ps {
        overflow: auto !important;
    }
}

.vscroll {
    position: relative;
}

/* PrismJS 1.17.1
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
.token {
    color: #d20808;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #4cb350;
}

.token.punctuation {
    color: #b1abab;
}

.namespace {
    opacity: 0.7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #ffc107;
}

.token.operator,
.token.entity,
.token.url {
    color: #9a6e3a;
    background: rgba(255, 255, 255, 0.1);
}

.language-css .token.string,
.style .token.string {
    color: #9a6e3a;
    background: rgba(255, 255, 255, 0.1);
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #de20af;
}

.token.function,
.token.class-name {
    color: #dd4a68;
}

.token.regex,
.token.important,
.token.variable {
    color: #e90;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}


table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.child {
    cursor: default !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty {
    cursor: default !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before {
    display: none !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before {
    display: none !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before {
    display: none !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control {
    position: relative;
    padding-left: 30px !important;
    cursor: pointer;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control {
    position: relative;
    padding-left: 30px !important;
    cursor: pointer;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    top: 50%;
    left: 5px;
    height: 1em;
    width: 1em;
    margin-top: -9px;
    display: block;
    position: absolute;
    color: white;
    border: 0.15em solid white;
    border-radius: 1em;
    box-shadow: 0 0 0.2em #777086;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: "Courier New", Courier, monospace;
    line-height: 1em;
    content: "+";
    background-color: #3366ff;
}

table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before {
    content: "-";
    background-color: #f82649;
}

table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td.dtr-control,
table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th.dtr-control {
    padding-left: 27px;
}

table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th.dtr-control:before {
    left: 4px;
    height: 14px;
    width: 14px;
    border-radius: 14px;
    line-height: 14px;
    text-indent: 3px;
}

table.dataTable.dtr-column>tbody>tr>td.dtr-control,
table.dataTable.dtr-column>tbody>tr>th.dtr-control,
table.dataTable.dtr-column>tbody>tr>td.control,
table.dataTable.dtr-column>tbody>tr>th.control {
    position: relative;
    cursor: pointer;
}

table.dataTable.dtr-column>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-column>tbody>tr>th.dtr-control:before,
table.dataTable.dtr-column>tbody>tr>td.control:before,
table.dataTable.dtr-column>tbody>tr>th.control:before {
    top: 50%;
    left: 50%;
    height: 0.8em;
    width: 0.8em;
    margin-top: -0.5em;
    margin-left: -0.5em;
    display: block;
    position: absolute;
    color: white;
    border: 0.15em solid white;
    border-radius: 1em;
    box-shadow: 0 0 0.2em #444;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: "Courier New", Courier, monospace;
    line-height: 1em;
    content: "+";
    background-color: #2c3e50;
}

table.dataTable.dtr-column>tbody>tr.parent td.dtr-control:before,
table.dataTable.dtr-column>tbody>tr.parent th.dtr-control:before,
table.dataTable.dtr-column>tbody>tr.parent td.control:before,
table.dataTable.dtr-column>tbody>tr.parent th.control:before {
    content: "-";
    background-color: #d33333;
}

table.dataTable>tbody>tr.child {
    padding: 0.5em 1em;
}

table.dataTable>tbody>tr.child:hover {
    background: transparent !important;
}

table.dataTable>tbody>tr.child ul.dtr-details {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

table.dataTable>tbody>tr.child ul.dtr-details>li {
    border-bottom: 1px solid #efefef;
    padding: 0.5em 0;
}

table.dataTable>tbody>tr.child ul.dtr-details>li:first-child {
    padding-top: 0;
}

table.dataTable>tbody>tr.child ul.dtr-details>li:last-child {
    border-bottom: none;
}

table.dataTable>tbody>tr.child span.dtr-title {
    display: inline-block;
    min-width: 75px;
    font-weight: bold;
}

div.dtr-modal {
    position: fixed;
    box-sizing: border-box;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    padding: 10em 1em;
}

div.dtr-modal div.dtr-modal-display {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    overflow: auto;
    margin: auto;
    z-index: 102;
    overflow: auto;
    background-color: #f5f5f7;
    border: 1px solid black;
    border-radius: 0.5em;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

div.dtr-modal div.dtr-modal-content {
    position: relative;
    padding: 1em;
}

div.dtr-modal div.dtr-modal-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border: 1px solid #eaeaea;
    background-color: #f9f9f9;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    z-index: 12;
}

div.dtr-modal div.dtr-modal-close:hover {
    background-color: #eaeaea;
}

div.dtr-modal div.dtr-modal-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background: rgba(0, 0, 0, 0.6);
}

div.dtr-bs-modal table.table tr:first-child td {
    border-top: none;
}

@media screen and (max-width: 767px) {
    div.dtr-modal div.dtr-modal-display {
        width: 95%;
    }
}

.richText {
    position: relative;
    width: 100%;
}

.richText .richText-form {
    font-family: Calibri, Verdana, Helvetica, sans-serif;
}

.richText .richText-form label {
    display: block;
    padding: 10px 15px;
}

.richText .richText-form input[type=text],
.richText .richText-form input[type=file],
.richText .richText-form input[type=number] {
    padding: 10px 15px;
    border: #ecf0fa solid 1px;
    min-width: 200px;
    width: 100%;
    border-radius: 5px;
    outline: 0;
}

.richText .richText-form select {
    padding: 10px 15px;
    border: #ecf0fa solid 1px;
    min-width: 200px;
    width: 100%;
    border-radius: 5px;
    outline: 0;
    cursor: pointer;
}

.richText .richText-form button {
    margin: 10px 0;
    padding: 0.375rem 0.75rem;
    background-color: #77bc21;
    border: none;
    color: #fafafa;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.richText .richText-toolbar {
    min-height: 20px;
}

.richText .richText-toolbar ul {
    margin-bottom: 0;
}

.richText .richText-toolbar ul li {
    float: left;
    display: block;
    list-style: none;
}

.richText .richText-toolbar ul li a {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: background-color 0.4s;
    -moz-transition: background-color 0.4s;
    transition: background-color 0.4s;
    color: #495584;
}

.richText .richText-toolbar ul li a .fa,
.richText .richText-toolbar ul li a .fas,
.richText .richText-toolbar ul li a .far,
.richText .richText-toolbar ul li a svg {
    pointer-events: none;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: default;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer .richText-dropdown {
    position: relative;
    display: block;
    margin: 3% auto 0 auto;
    background-color: #fff;
    border: #ecf0fa solid 1px;
    min-width: 100px;
    width: 300px;
    max-width: 90%;
    border-radius: 5px;
    -webkit-box-shadow: 0px 16px 18px rgba(6, 10, 48, 0.1);
    -moz-box-shadow: 0px 16px 18px rgba(6, 10, 48, 0.1);
    box-shadow: 0px 16px 18px rgba(6, 10, 48, 0.1);
}

.richText .richText-toolbar ul li a .richText-dropdown-outer .richText-dropdown .richText-dropdown-close {
    position: absolute;
    top: 10px;
    right: 10px !important;
    background: rgba(255, 255, 255, 0);
    color: #0d0c22;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    width: 25px;
    border-radius: 5px;
    font-weight: 500;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown {
    list-style: none;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li {
    display: block;
    float: none;
    font-family: Calibri, Verdana, Helvetica, sans-serif;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li a {
    display: block;
    padding: 10px 15px;
    border-bottom: #efefef solid 1px;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li a:hover {
    background-color: #ffffff;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li.inline {
    margin: 10px 6px;
    float: right;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li.inline a {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px 0 #999;
    -moz-box-shadow: 0 0 10px 0 #999;
    box-shadow: 0 0 10px 0 #999;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li.inline a span {
    display: block;
    height: 30px;
    width: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.richText .richText-toolbar ul li a .richText-dropdown-outer div.richText-dropdown {
    padding: 10px 15px;
}

.richText .richText-toolbar ul li a:hover {
    background-color: #ffffff;
}

.richText .richText-toolbar ul li[data-disable=true] {
    opacity: 0.1;
}

.richText .richText-toolbar ul li[data-disable=true] a {
    cursor: default;
}

.richText .richText-toolbar ul li:not([data-disable=true]).is-selected .richText-dropdown-outer {
    display: block;
}

.richText .richText-toolbar ul:after {
    display: block;
    content: "";
    clear: both;
}

.richText .richText-toolbar:last-child {
    font-size: 12px;
}

.richText .richText-toolbar:after {
    display: block;
    clear: both;
    content: "";
}

.richText .richText-editor {
    padding: 20px;
    background-color: #ffffff;
    border-left: #ffffff solid 2px;
    font-family: Calibri, Verdana, Helvetica, sans-serif;
    height: 300px;
    outline: none;
    overflow-y: scroll;
    overflow-x: auto;
}

.richText .richText-editor ul,
.richText .richText-editor ol {
    margin: 10px 25px;
}

.richText .richText-editor table {
    margin: 10px 0;
    border-spacing: 0;
    width: 100%;
}

.richText .richText-editor table td,
.richText .richText-editor table th {
    padding: 10px;
    border: #efefef solid 1px;
}

.richText .richText-editor:focus {
    border-left: #77bc21 solid 2px;
}

.richText .richText-initial {
    margin-bottom: -4px;
    padding: 10px;
    background-color: #282828;
    border: none;
    color: #33ff33;
    font-family: Monospace, Calibri, Verdana, Helvetica, sans-serif;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    min-height: 400px;
    height: 400px;
}

.richText .richText-help {
    float: right;
    display: block;
    padding: 10px 15px;
    cursor: pointer;
}

.richText .richText-undo,
.richText .richText-redo {
    float: right;
    display: block;
    padding: 10px 15px;
    border-right: #efefef solid 1px;
    cursor: pointer;
}

.richText .richText-undo.is-disabled,
.richText .richText-redo.is-disabled {
    opacity: 0.4;
}

.richText .richText-help-popup a {
    color: #3498db;
    text-decoration: underline;
}

.richText .richText-help-popup hr {
    margin: 10px auto 5px auto;
    border: none;
    border-top: #efefef solid 1px;
}

.richText .richText-list.list-rightclick {
    position: absolute;
    background-color: #fafafa;
    border-right: #efefef solid 1px;
    border-bottom: #efefef solid 1px;
}

.richText .richText-list.list-rightclick li {
    padding: 5px 7px;
    cursor: pointer;
    list-style: none;
}

.select2-container {
    box-sizing: border-box;
    display: block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-search--inline {
    float: left;
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #eaedf1;
    border-radius: 7px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
    border-top: 1px solid #eaedf1;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 7px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #76839a;
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 4px;
    width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e3e8f2;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 7px;
    cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 7px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
    float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #e3e8f2;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f2f3f9;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #77bc21;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 7px;
    outline: 0;
    background-image: -webkit-linear-gradient(to top, #fff 50%, #e3e8f2 100%);
    background-image: -o-linear-gradient(to top, #fff 50%, #e3e8f2 100%);
    background-image: linear-gradient(to bottom, #fff 50%, #e3e8f2 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(to top, #e3e8f2 50%, #ccc 100%);
    background-image: -o-linear-gradient(to top, #e3e8f2 50%, #ccc 100%);
    background-image: linear-gradient(to bottom, #e3e8f2 50%, #ccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(to top, #fff 0%, #e3e8f2 50%);
    background-image: -o-linear-gradient(to top, #fff 0%, #e3e8f2 50%);
    background-image: linear-gradient(to bottom, #fff 0%, #e3e8f2 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(to top, #e3e8f2 50%, #fff 100%);
    background-image: -o-linear-gradient(to top, #e3e8f2 50%, #fff 100%);
    background-image: linear-gradient(to bottom, #e3e8f2 50%, #fff 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 7px;
    cursor: text;
    outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 7px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    float: right;
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none;
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: #fff;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

/*!
 * SmartWizard v4.3.x
 * jQuery Wizard Plugin
 * http://www.techlaboratory.net/smartwizard
 *
 * Created by Dipu Raj
 * http://dipuraj.me
 *
 * Licensed under the terms of MIT License
 * https://github.com/techlab/SmartWizard/blob/master/LICENSE
 */
/* SmartWizard Basic CSS */
.sw-main {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0.25rem !important;
}

.sw-main .sw-container {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
}

.sw-main .step-content {
    display: none;
    position: relative;
    margin: 0;
}

.sw-main .sw-toolbar {
    margin-left: 0;
}

/* SmartWizard Theme: White */
.sw-theme-default {
    border: 1px solid #eff0f6;
}

.sw-theme-default .sw-container {
    min-height: 250px;
}

.sw-theme-default .step-content {
    padding: 15px;
    border: 0px solid #eff0f6;
    background-color: #fff;
    text-align: left;
}

.sw-theme-default .sw-toolbar {
    background: #fff;
    border-radius: 0 !important;
    padding-left: 10px;
    padding-right: 10px;
    padding: 10px;
    margin-bottom: 0 !important;
}

.sw-theme-default .sw-toolbar-top {
    border-bottom-color: #eff0f6 !important;
}

.sw-theme-default .sw-toolbar-bottom {
    border-top-color: #eff0f6 !important;
}

.sw-theme-default>ul.step-anchor>li {
    position: relative;
    margin-right: 2px;
}

.sw-theme-default>ul.step-anchor>li>a {
    border: none !important;
    color: #5c6287 !important;
    text-decoration: none;
    outline-style: none;
    background: transparent !important;
    border: none !important;
    cursor: not-allowed;
    border-radius: 0 !important;
}

.sw-theme-default>ul.step-anchor>li>a:hover {
    border: none !important;
    color: #5c6287 !important;
    text-decoration: none;
    outline-style: none;
    background: transparent !important;
    border: none !important;
    cursor: not-allowed;
    border-radius: 0 !important;
}

.sw-theme-default>ul.step-anchor>li.clickable>a:hover {
    color: #2d66f7 !important;
    background: transparent !important;
    cursor: pointer;
}

.sw-theme-default>ul.step-anchor>li>a::after {
    content: "";
    background: #2d66f7;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    -webkit-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.sw-theme-default>ul.step-anchor>li.active>a {
    border: none !important;
    color: #fff !important;
    background: #2d66f7 !important;
    cursor: pointer;
}

.sw-theme-default>ul.step-anchor>li.active>a::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.sw-theme-default>ul.step-anchor>li.done>a {
    border: none !important;
    color: #5c6287 !important;
    background: transparent !important;
    cursor: pointer;
}

.sw-theme-default>ul.step-anchor>li.done>a::after {
    background: #2d66f7;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.sw-theme-default>ul.step-anchor>li.danger>a {
    border: none !important;
    color: #d9534f !important;
    /* background: #d9534f !important; */
    cursor: pointer;
}

.sw-theme-default>ul.step-anchor>li.danger>a::after {
    background: #d9534f;
    border-left-color: #f8d7da;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.sw-theme-default>ul.step-anchor>li.disabled>a {
    color: #eee !important;
    cursor: not-allowed;
}

.sw-theme-default>ul.step-anchor>li.disabled>a:hover {
    color: #eee !important;
    cursor: not-allowed;
}

/* Responsive CSS */
@media screen and (max-width: 768px) {
    .sw-theme-default>.nav-tabs>li {
        float: none !important;
    }
}

/* Common Loader */
.sw-loading::after {
    position: absolute;
    display: block;
    opacity: 1;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 2;
}

.sw-loading::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    -webkit-animation: spin 1s linear infinite;
    /* Safari */
    animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*!
 * SmartWizard v4.3.x
 * jQuery Wizard Plugin
 * http://www.techlaboratory.net/smartwizard
 *
 * Created by Dipu Raj
 * http://dipuraj.me
 *
 * Licensed under the terms of MIT License
 * https://github.com/techlab/SmartWizard/blob/master/LICENSE
 */
/* SmartWizard Theme: Arrows */
.sw-theme-arrows {
    border-radius: 5px;
    border: 1px solid #eff0f6;
}

.sw-theme-arrows>.sw-container {
    min-height: 200px;
}

.sw-theme-arrows .step-content {
    padding: 15px;
    border: 0px solid #eff0f6;
    background-color: #fff;
    text-align: left;
}

.sw-theme-arrows .sw-toolbar {
    padding: 10px;
    margin-bottom: 0 !important;
}

.sw-theme-arrows>ul.step-anchor {
    border: 0;
    border-bottom: 1px solid #eff0f6;
    padding: 0px;
    background: #fff;
    border-radius: 0;
    border-top-right-radius: 5px;
    list-style: none;
    overflow: hidden;
}

.sw-theme-arrows>ul.step-anchor li+li:before {
    padding: 0;
}

.sw-theme-arrows>ul.step-anchor>li>a {
    color: #5c6287;
    text-decoration: none;
    padding: 10px 0 10px 45px;
    position: relative;
    display: block;
    border: 0 !important;
    border-radius: 0;
    outline-style: none;
    background: #f4f5f5;
}

.sw-theme-arrows>ul.step-anchor>li>a:hover {
    color: #5c6287;
    text-decoration: none;
    padding: 10px 0 10px 45px;
    position: relative;
    display: block;
    border: 0 !important;
    border-radius: 0;
    outline-style: none;
    background: #f4f5f5;
}

.sw-theme-arrows>ul.step-anchor>li>a:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #f4f5f5;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}

.sw-theme-arrows>ul.step-anchor>li>a:before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-left: 30px solid #dbdef1;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: 1px;
    left: 100%;
    z-index: 1;
}

/* Responsive CSS */

.timer-alert .sa-button-container {
    display: none;
}

.timer-alert p {
    margin-bottom: 0;
}

.sweet-alert h2 {
    margin-bottom: 5px;
}

.cancel.btn.btn-default {
    color: #fff;
}

.wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.wrapper>h1 {
    text-align: center;
}

.wrapper>h1 span {
    border-bottom: 2px solid #6259ca;
    display: inline-block;
    padding: 0 10px 10px;
    color: #6259ca;
    transition: all 0.5s linear;
}

.tab_wrapper {
    display: inline-block;
    width: 100%;
    position: relative;
}

.tab_wrapper * {
    box-sizing: border-box;
}

.tab_wrapper>ul {
    clear: both;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
}

.tab_wrapper>ul li {
    float: left;
    cursor: pointer;
    font-weight: 500;
    padding: 8px 18px;
    text-transform: uppercase;
    border: 1px solid #f0f0f4;
    font-size: 1.05em;
    border-bottom: 0;
    position: relative;
    border-top: 1px solid #f0f0f4;
    margin: 0 5px 0 0;
    border-radius: 5px 5px 0px 0px;
    transition: all ease 0.3s;
}

.tab_wrapper>ul li.active {
    color: #fff !important;
}

.tab_wrapper>ul li.active:after {
    content: "";
    position: absolute;
    bottom: -1px;
    height: 1px;
    left: 0;
    background: #fff;
    width: 100%;
}

.tab_wrapper .controller {
    display: block;
    overflow: hidden;
    clear: both;
    position: absolute;
    top: 0;
    right: 0;
}

.tab_wrapper .controller span {
    padding: 8px 22px;
    background: #6259ca;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
}

.tab_wrapper .controller span.next {
    float: right;
    margin-left: 10px;
}

.tab_wrapper .content_wrapper {
    float: left;
    width: 100%;
    border: 1px solid #f0f0f4;
    box-sizing: border-box;
    position: relative;
    top: -5px;
}

.tab_wrapper .content_wrapper .tab_content {
    display: none;
    padding: 15px 20px;
}

.tab_wrapper .content_wrapper .tab_content.active {
    /* display: block; */
}

.tab_wrapper .content_wrapper .tab_content .error {
    color: red;
}

.tab_wrapper .content_wrapper .accordian_header {
    display: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #fff;
    position: relative;
    cursor: pointer;
}

.tab_wrapper .content_wrapper .accordian_header.active {
    color: #6259ca;
    border: 1px solid #eee;
}

.tab_wrapper .content_wrapper .accordian_header.active:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 5px;
    height: 100%;
    background: #6259ca;
}

.tab_wrapper .content_wrapper .accordian_header .arrow {
    float: right;
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    border-radius: 2px;
    transform: rotate(-135deg);
    background: #fff;
    border-top: 3px solid #ccc;
    border-left: 3px solid #ccc;
}

.tab_wrapper .content_wrapper .accordian_header.active .arrow {
    transform: rotate(45deg);
    margin-top: 5px;
    border-top: 3px solid #6259ca;
    border-left: 3px solid #6259ca;
}

.tab_wrapper.left_side>ul {
    width: 25%;
    float: left;
    border-bottom: 1px solid #ccc;
}

.tab_wrapper.left_side>ul li {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 18px;
    border-width: 1px;
    border-right: 0;
    border-left: 0;
}

.tab_wrapper.left_side>ul li:after {
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background: #ccc;
}

.tab_wrapper.left_side>ul li.active {
    border-color: #ccc;
}

.tab_wrapper.left_side>ul li.active:after {
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #6259ca;
}

.tab_wrapper.left_side>ul li.active:before {
    right: -1px;
    position: absolute;
    top: 0;
    content: "";
    width: 2px;
    height: 100%;
    background: #fff;
}

.tab_wrapper.left_side .content_wrapper {
    width: 75%;
    border: 1px solid #f0f0f4;
    float: left;
}

.tab_wrapper.left_side .controller {
    top: -50px;
}

.tab_wrapper.right_side>ul {
    width: 25%;
    float: right;
    border-bottom: 1px solid #f0f0f4;
}

.tab_wrapper.right_side>ul li {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 18px;
    border-width: 1px;
    border-right: 0;
    border-left: 1px solid #f0f0f4;
    text-align: right;
}

.tab_wrapper.right_side>ul li:after {
    right: 0;
    left: inherit;
    top: 0;
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background: #f0f0f4;
}

.tab_wrapper.right_side>ul li.active:after {
    right: 0;
    left: inherit;
    top: 0;
    width: 5px;
    height: 100%;
    content: "";
}

.tab_wrapper.right_side>ul li.active:before {
    left: -2px;
    right: inherit;
    position: absolute;
    top: 0;
    content: "";
    width: 2px;
    height: 100%;
    background: #fff;
}

.tab_wrapper.right_side .content_wrapper {
    width: 75%;
    float: left;
    border: 1px solid #f0f0f4;
}

.tab_wrapper.right_side .controller {
    top: -50px;
}

.tab_wrapper.accordion .content_wrapper {
    border-color: #eee;
}

.tab_wrapper.accordion .content_wrapper .accordian_header {
    display: block;
}

.tab_wrapper.accordion>ul {
    display: none;
}

.tab_wrapper .active_tab {
    display: none;
    position: relative;
    background: #000000;
    padding: 12px;
    text-align: center;
    padding-right: 50px;
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
}

.tab_wrapper .active_tab .arrow {
    width: 30px;
    height: 30px;
    overflow: hidden;
    line-height: 30px;
    text-align: center;
    background: #fff;
    position: absolute;
    right: 6px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.tab_wrapper .active_tab .arrow:after {
    content: "";
    width: 10px;
    display: inline-block;
    height: 10px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -8px;
}

.tab_wrapper .active_tab .text {
    text-indent: 39px;
    display: block;
}

@media only screen and (max-width: 768px) {
    .tab_wrapper>ul {
        display: none;
    }

    .tab_wrapper .content_wrapper {
        border: 0;
    }

    .tab_wrapper .content_wrapper .accordian_header {
        display: block;
    }

    .tab_wrapper.left_side .content_wrapper,
    .tab_wrapper.right_side .content_wrapper {
        width: 100%;
        border-top: 0;
    }

    .tab_wrapper .controller {
        display: none;
    }

    .tab_wrapper.show-as-dropdown>.tab_list {
        border: 0;
        box-shadow: 0 0 8px #ccc;
        position: absolute;
        z-index: 3;
        background: #fff;
        border-radius: 5px;
        margin-top: 15px;
    }

    .tab_wrapper.show-as-dropdown>.tab_list:before {
        content: "";
        position: absolute;
        top: -6px;
        left: 50%;
        width: 14px;
        height: 14px;
        background: #fff;
        transform: rotate(45deg);
        box-shadow: -3px -4px 5px #efefef;
        margin-left: -7px;
    }

    .tab_wrapper.show-as-dropdown>.tab_list li {
        border: 0;
        border-bottom: 1px solid #ccc;
    }

    .tab_wrapper.show-as-dropdown>.tab_list li.active:after {
        display: none;
    }

    .tab_wrapper.show-as-dropdown .active_tab {
        display: block;
    }

    .tab_wrapper.show-as-dropdown>.tab_list,
    .tab_wrapper.show-as-dropdown>.content_wrapper>.accordian_header {
        display: none;
    }

    .tab_wrapper.show-as-dropdown>.tab_list li {
        display: block;
        float: none;
        width: 100%;
    }
}

@media only screen and (min-width: 769px) {
    .tab_wrapper.show-as-dropdown>.tab_list {
        display: block !important;
        overflow: hidden;
    }
}



.indicator {
    margin-right: 5px;
    color: #4b10a4;
}

/* ######## SIDEMENU-STYLES ######## */

@media (min-width: 992px) {
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-header.header {
        padding-right: 20px !important;
        padding-left: inherit !important;
    }


    .closed-leftmenu .side-menu {
        margin-top: 20px;
    }

    .closed-leftmenu.app.sidenav-toggled .app-content {
        margin-left: 0;
    }

    .closed-leftmenu.app.sidenav-toggled .app-sidebar {
        left: 230px;
        display: none;
    }

    .closed-leftmenu.app.sidenav-toggled .app-sidebar__overlay {
        visibility: hidden;
    }

    .closed-leftmenu .app-sidebar {
        padding-top: 55px;
    }

    .closed-leftmenu .side-header {
        width: 270px;
        left: 0;
        right: 0;
        top: 0;
        position: fixed;
        z-index: 99;
        background: #fff;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .side-header {
        width: 80px !important;
    }

    .closed-leftmenu.sidebar-mini footer.footer {
        padding: 1.25rem 1.25rem 1.25rem 270px;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled footer.footer {
        padding: 1.25rem 1.25rem 1.25rem 80px;
    }
}

@media (max-width: 767.98px) {
    .closed-leftmenu .app-sidebar {
        top: 71px !important;
    }
}

@media (max-width: 991px) {
    .closed-leftmenu.app {
        overflow-x: hidden;
    }

    .closed-leftmenu.app .app-sidebar {
        left: -270px;
    }

    .closed-leftmenu.app .app-sidebar__overlay {
        visibility: hidden;
    }

    .closed-leftmenu.app.sidenav-toggled .app-content {
        margin-left: 0;
    }

    .closed-leftmenu.app.sidenav-toggled .app-sidebar {
        left: 0;
    }

    .closed-leftmenu.app.sidenav-toggled .app-sidebar__overlay {
        visibility: visible;
    }

    .closed-leftmenu.app.sidebar-mini.sidebar-gone.sidenav-toggled .app-sidebar {
        left: 0;
    }

    .closed-leftmenu.app .app-header .header-brand1 {
        width: inherit;
        position: absolute;
        left: 0;
        right: 0;
    }
}

.closed-leftmenu .app-content {
    min-height: calc(100vh - 50px);
    margin-bottom: 0 !important;
    -webkit-transition: margin-left 450ms ease;
    -o-transition: margin-left 450ms ease;
    transition: margin-left 450ms ease;
    overflow: hidden;
    margin-top: 74px;
}

.closed-leftmenu .app-content .side-app {
    padding: 0px 20px 0 20px;
}

.closed-leftmenu .footer .container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .closed-leftmenu .app-content {
        margin-left: 270px;
    }
}

@media (max-width: 991px) {
    .closed-leftmenu .app-content {
        min-width: 100%;
    }
}

@media print {
    .closed-leftmenu .app-content {
        margin: 0;
        padding: 0;
        background-color: #fff;
    }
}

.closed-leftmenu .app-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 99 !important;
    border-bottom: 1px solid #eaedf1;
    background: #ffffff;
    transition: padding-left 0.3s ease;
}

@media (max-width: 991.98px) {
    .closed-leftmenu .app-header {
        z-index: 999 !important;
    }
}

@media (min-width: 992px) {
    .closed-leftmenu .app-header {
        padding-right: 10px;
        padding-left: 285px;
    }
}

@media print {
    .closed-leftmenu .app-header {
        display: none;
    }
}

.closed-leftmenu .app-header__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    color: #fff;
    text-align: center;
    font-family: "Niconne";
    padding: 0 15px;
    font-size: 26px;
    font-weight: 400;
    line-height: 50px;
}

.closed-leftmenu .app-header__logo:focus,
.closed-leftmenu .app-header__logo:hover {
    text-decoration: none;
}

@media (min-width: 992px) {
    .closed-leftmenu .app-header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: block;
        width: 230px;
    }
}

.closed-leftmenu .app-sidebar__toggle {
    color: var(--primary-bg-color);
    z-index: 1;
    transition: padding-left 0.3s ease;
    padding: 0 9px;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    right: 7px;
}

.closed-leftmenu .app-sidebar__toggle:before {
    content: "\e907";
    transition: all 0.25s;
    font-size: 21px;
    font-family: "feather";
}

.closed-leftmenu .app-sidebar__toggle:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    bottom: 0;
    border-radius: 50%;
    right: 12px;
    background: rgba(var(--primary-bg-color), 0);
}

.closed-leftmenu .app-sidebar__toggle:focus,
.closed-leftmenu .app-sidebar__toggle:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .closed-leftmenu .app-sidebar__toggle {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}

.closed-leftmenu .app-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    color: #495057;
    width: 270px;
    z-index: 99;
    background: #fff;
    -webkit-box-shadow: 0 8px 24px rgba(168, 180, 208, 0.1);
    box-shadow: 0 8px 24px rgba(168, 180, 208, 0.1);
    -webkit-transition: left 450ms ease, width 450ms ease;
    -o-transition: left 450ms ease, width 450ms ease;
    transition: left 450ms ease, width 450ms ease;
    border-right: 1px solid #eaedf1;
}

.closed-leftmenu .app-sidebar::-webkit-scrollbar {
    width: 6px;
}

.closed-leftmenu .app-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

@media print {
    .closed-leftmenu .app-sidebar {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .closed-leftmenu .app-sidebar__overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 9;
    }
}

.closed-leftmenu .app-sidebar__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #a8a8a8;
    width: 100%;
    padding: 15px 0 15px;
    display: inline-block;
}

.closed-leftmenu .app-sidebar__user .dropdown-menu {
    top: 10px !important;
}

.closed-leftmenu .app-sidebar__user img {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(44, 44, 44, 0.2);
}

.closed-leftmenu .app-sidebar__user-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 15px;
}

.closed-leftmenu .app-sidebar__user-name {
    font-size: 17px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.closed-leftmenu .app-sidebar__user-name.text-sm {
    font-size: 12px;
    font-weight: 400;
}

.closed-leftmenu .app-sidebar__user-designation {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.closed-leftmenu .side-menu {
    margin-bottom: 0;
}

.closed-leftmenu .side-menu__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.625rem 1.5rem;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    -o-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    transition: border-left-color 0.3s ease, background-color 0.3s ease;
    color: #495057;
    margin: 0px 0px 2px 0px;
    white-space: nowrap;
}

.closed-leftmenu .side-menu__item.active {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.closed-leftmenu .side-menu__item.active:hover,
.closed-leftmenu .side-menu__item.active:focus {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.closed-leftmenu .side-menu__item:hover,
.closed-leftmenu .side-menu__item:focus {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.closed-leftmenu .side-menu__item:hover .side-menu__icon,
.closed-leftmenu .side-menu__item:hover .side-menu__label,
.closed-leftmenu .side-menu__item:focus .side-menu__icon,
.closed-leftmenu .side-menu__item:focus .side-menu__label {
    color: var(--primary-bg-color) !important;
}

@media (min-width: 992px) {
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .side-menu__label {
        display: none !important;
    }
}

.closed-leftmenu .slide-item.active,
.closed-leftmenu .slide-item:hover,
.closed-leftmenu .slide-item:focus {
    text-decoration: none;
    color: #b5c1d2;
}

.closed-leftmenu .slide-menu a.active {
    color: var(--primary-bg-color);
}

.closed-leftmenu .slide-item.active,
.closed-leftmenu .slide-item:hover,
.closed-leftmenu .slide-item:focus {
    text-decoration: none;
    color: var(--primary-bg-color) !important;
}

.closed-leftmenu .slide-menu li {
    position: relative;
}

.closed-leftmenu .slide.is-expanded a {
    text-decoration: none;
}

.closed-leftmenu .side-menu .side-menu__icon {
    color: var(--primary-bg-color);
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
}

.closed-leftmenu .side-menu .side-menu__icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 12px;
    bottom: 0;
    border-radius: 50%;
    right: 3px;
    background: rgba(var(--primary-bg-color), 0);
}

.closed-leftmenu .side-menu__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.closed-leftmenu .side-menu__label {
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.closed-leftmenu .slide.is-expanded .slide-menu {
    display: block;
}

.closed-leftmenu .slide.is-expanded .angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.closed-leftmenu .slide-menu {
    display: none;
    font-size: 0.7rem !important;
    padding-left: 30px;
}

.closed-leftmenu .slide-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 8px;
    font-size: 13.3px;
    color: #74829c;
    white-space: nowrap;
}

.closed-leftmenu .slide-item .icon {
    margin-right: 5px;
}

.closed-leftmenu .angle {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-right: 2px;
    font-size: 11px;
}

@media (min-width: 992px) {

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar__user-designation,
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .angle,
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .user-notification,
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .user-info {
        display: none;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-header.header {
        padding-left: 20px;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .side-menu {
        padding: 0 0px 40px 0px;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .side-menu .sub-category {
        display: none;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .side-menu .side-menu__icon {
        background: none !important;
        box-shadow: none;
        margin-right: 0;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .side-badge,
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .slide-menu open.slide-menu hide .side-badge {
        top: 6px;
        right: 24px;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled.sidebar-mini.sidenav-toggled.user-notification::before {
        background: transparent;
        display: none;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .avatar-xl {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1rem;
        margin-bottom: 0px !important;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar__user,
    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .side-menu {
        margin-top: 20px;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar__user-avatar {
        width: 25px;
        height: 25px;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .side-menu li .side-menu__item.active:before {
        display: none;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar__user {
        padding: 12px 0px 12px 0;
        margin-bottom: 0px;
        border-bottom: 1px solid rgba(225, 225, 225, 0.05);
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .profile-img {
        top: 0px;
        right: 19px;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-content {
        margin-left: 0px;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar {
        left: 0;
        width: 80px;
        overflow: hidden;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar:hover {
        overflow: visible;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .slide-menu {
        position: absolute;
        opacity: 0;
        z-index: 9;
        visibility: hidden;
        -webkit-transition: visibility 0.3s ease;
        -o-transition: visibility 0.3s ease;
        transition: visibility 0.3s ease;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .side-menu__item {
        padding: 10px 30px;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled .app-sidebar__user .avatar-md {
        margin: 0 auto;
    }

    .closed-leftmenu.app.sidebar-mini.sidenav-toggled .nav-badge {
        position: absolute;
        top: 8px;
        right: 28px;
        padding: 0.2rem 0.4rem;
        font-size: 11px;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar {
        width: 270px;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-header {
        width: 270px !important;
        display: flex !important;
        padding: 17px 17px !important;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo,
    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo1,
    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .mobile-light {
        display: none !important;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-header .header-brand-img.light-logo1 {
        display: block !important;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 20px;
        position: relative;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu .sub-category {
        display: block;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        font-size: 18px;
        line-height: 30px;
        text-align: center;
        vertical-align: middle;
        margin-right: 8px !important;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__label {
        display: block !important;
        white-space: nowrap;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide.is-expanded .slide-menu {
        display: block !important;
        position: unset;
        top: inherit;
        min-width: 0;
        width: 100%;
        opacity: inherit;
        visibility: inherit;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu {
        margin-top: 20px !important;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .angle {
        display: block;
    }

    .closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-badge {
        top: 17px;
        right: 20px;
    }
}

.closed-leftmenu .dropdown-menu {
    border-radius: 0;
}

.closed-leftmenu .dropdown-menu.dropdown-menu-right {
    left: auto;
}

.closed-leftmenu .dropdown-item .fa,
.closed-leftmenu .dropdown-item .icon {
    vertical-align: middle;
}

.closed-leftmenu .app-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: #FFF;
    margin: -30px -30px 30px;
    padding: 20px 30px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.closed-leftmenu .app-title h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.closed-leftmenu .app-title p {
    margin-bottom: 0;
    font-style: italic;
}

@media print {
    .closed-leftmenu .app-title {
        display: none;
    }
}

@media (max-width: 480px) {
    .closed-leftmenu .app-title {
        margin: -15px -15px 15px;
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .closed-leftmenu .app-title p {
        display: none;
    }
}

.closed-leftmenu .app-breadcrumb {
    margin-bottom: 0;
    text-align: right;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    padding: 0;
    text-align: left;
    padding: 0;
    background-color: transparent;
}

@media (max-width: 480px) {
    .closed-leftmenu .app-breadcrumb {
        margin-top: 10px;
    }
}

.closed-leftmenu.sidenav-toggled .app-sidebar__user .avatar-md {
    line-height: 2rem;
    font-size: 1rem;
}

.closed-leftmenu.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge {
    position: absolute;
    top: 5px;
    left: 57px;
    display: block !important;
    padding: 3px 5px !important;
}

.closed-leftmenu.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge1 {
    display: none;
}

.closed-leftmenu .nav-badge {
    border-radius: 30px;
    padding: 0.4em 0.6em;
    font-size: 12px;
}

.closed-leftmenu .user-info .text-dark {
    color: #25252a !important;
    font-weight: 400;
    font-size: 16px;
}

.closed-leftmenu .user-info .text-muted {
    color: #74829c !important;
}

.closed-leftmenu .side-header .header-brand1 {
    text-align: center;
    margin: 0 auto !important;
}

.closed-leftmenu .side-header .header-brand-img.desktop-logo {
    display: none;
}

.closed-leftmenu.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.desktop-logo {
    display: none;
}

.closed-leftmenu .side-header .header-brand-img.toggle-logo {
    display: none;
}

.closed-leftmenu .side-header .header-brand-img.light-logo1 {
    display: block !important;
}

.closed-leftmenu.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.closed-leftmenu.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.toggle-logo {
    display: none;
    margin-right: 0;
}

.closed-leftmenu.sidebar-mini.sidenav-toggled .sidebar-navs {
    display: none;
}

.closed-leftmenu .side-header {
    display: flex;
    border-bottom: 1px solid #eaedf1;
    border-right: 1px solid #eaedf1;
    padding: 19px 17px;
    -webkit-transition: left 0.3s ease, width 450ms ease;
    -o-transition: left 0.3s ease, width 450ms ease;
    transition: left 0.3s ease, width 450ms ease;
    height: 75px;
}

.closed-leftmenu .side-header .header-brand-img.toggle-logo,
.closed-leftmenu .side-header .header-brand-img.light-logo {
    height: 2.5rem;
}

.closed-leftmenu.sidebar-mini.sidenav-toggled .app-sidebar__toggle {
    padding-left: 10px;
}

.closed-leftmenu.sidebar-mini.sidenav-toggled .mobile-header .app-sidebar__toggle {
    margin: 0;
    margin-top: 5px;
}

.closed-leftmenu .user-pic {
    margin-bottom: 0.8rem;
}

.closed-leftmenu .side-menu .sub-category {
    color: #74829c;
    margin-bottom: 0.5rem;
    padding: 12px 30px 2px 20px;
    margin-bottom: 0;
    white-space: nowrap;
    position: relative;
}

.closed-leftmenu .side-menu .sub-category:not(:first-child) {
    margin-top: 0.75rem;
}

.closed-leftmenu .side-menu .sub-category h3 {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
    font-weight: 500;
}

.closed-leftmenu .side-menu li:not(:first-child) h3 {
    margin-top: 0rem;
}

@media (min-width: 992px) {
    .closed-leftmenu.sidenav-toggled .header-brand-img.light-logo {
        display: block;
        margin-right: 0;
    }
}

.closed-leftmenu .side-badge,
.closed-leftmenu .slide-menu open.slide-menu hide .side-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    border-radius: 50px;
    padding: 3px 6px 3px;
}

.closed-leftmenu .sub-side-menu__item {
    padding: 8px 8px;
    font-size: 14px;
    display: flex;
    color: #74829c;
}

.closed-leftmenu .sub-side-menu__item .sub-side-menu__label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.closed-leftmenu .sub-slide.is-expanded .sub-angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.closed-leftmenu .sub-angle {
    float: right;
    margin-top: 5px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.closed-leftmenu .sub-slide.is-expanded .sub-slide-menu {
    display: block;
}

.closed-leftmenu .sub-slide-menu {
    display: none;
    padding: 0 15px 15px 0;
    font-size: 13px !important;
    list-style: none;
}

.closed-leftmenu .sub-slide-item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 24px !important;
    color: #74829c;
    font-size: 13.5px;
}

.closed-leftmenu .sub-side-menu__item2 {
    padding: 8px 2px 8px 24px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #74829c;
    font-size: 13.5px;
}

.closed-leftmenu .sub-slide2 .sub-side-menu__label2 {
    flex: 1 1 auto;
}

.closed-leftmenu .sub-angle2 {
    float: right;
    line-height: 40px;
    margin-top: -2px;
    margin-right: -9px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.closed-leftmenu .sub-slide2.is-expanded .sub-angle2 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.closed-leftmenu .sub-slide2.is-expanded .sub-slide-menu2 {
    display: block;
}

.closed-leftmenu .sub-slide-menu2 {
    display: none;
    padding: 0;
    font-size: 0.8rem !important;
    padding-left: 0;
    list-style: none;
}

.closed-leftmenu .sub-slide-item2 {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 40px !important;
    font-size: 13.4px;
    color: #74829c;
}

@media (max-width: 991px) {
    .closed-leftmenu .header-brand1 .desktop-logo {
        margin: 0 auto;
        margin-top: 6px;
    }
}

.closed-leftmenu.app.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.closed-leftmenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: block !important;
}

.closed-leftmenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu-label1 {
    display: none;
}

@media (min-width: 992px) {
    .app.sidebar-mini.sidenav-toggled .side-menu__icon {
        color: #495057;
    }

    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        color: var(--primary-bg-color);
    }
}

.hover-submenu {
    /*-- Subslide ---*/
    /*-- Subslide2 ---*/
}

@media (max-width: 767.98px) {
    .hover-submenu .app-sidebar {
        top: 71px !important;
    }
}

@media (min-width: 768px) {
    .hover-submenu.sidebar-mini.sidenav-toggled .side-menu__item .side-menu__icon {
        margin-left: 0px;
    }

    .hover-submenu .app-sidebar {
        padding-top: 75px !important;
    }
}

@media (min-width: 992px) {

    .hover-submenu.app.light-mode.header-light.color-menu .slide-menu li .slide-item:before {
        color: #fff !important;
    }

    .hover-submenu.rtl.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        margin-left: 0px !important;
    }

    .hover-submenu.rtl.sidebar-mini.sidenav-toggled .slide-menu {
        box-shadow: -5px 0px 17px rgba(0, 0, 0, 0.1);
    }

    .hover-submenu.rtl.app.sidenav-toggled .app-header.header {
        padding-right: 130px !important;
        padding-left: 10px !important;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.light-logo {
        display: block !important;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.toggle-logo,
    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.desktop-logo,
    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.light-logo1 {
        display: none !important;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu h3 {
        display: none !important;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open.color-menu .slide-menu li .slide-item:before {
        color: #fff !important;
    }

    .hover-submenu.app.sidenav-toggled .app-content {
        margin-left: 0;
    }

    .hover-submenu.app.sidenav-toggled .app-sidebar {
        left: 230px;
    }

    .hover-submenu.app.sidenav-toggled .app-sidebar__overlay {
        visibility: hidden;
    }

    .hover-submenu .app-sidebar {
        padding-top: 55px;
    }

    .hover-submenu .side-header {
        width: 270px;
        left: 0;
        right: 0;
        top: 0;
        position: fixed;
        z-index: 99;
        background: #fff;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled .side-header {
        width: 120px !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled .side-header .header-brand-img.light-logo {
        height: 2.5rem;
    }

    .hover-submenu.sidebar-mini footer.footer {
        padding: 1.25rem 1.25rem 1.25rem 270px;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled footer.footer {
        padding: 1.25rem 1.25rem 1.25rem 80px;
    }
}

@media (max-width: 991px) {
    .hover-submenu.app {
        overflow-x: hidden;
    }

    .hover-submenu.app .app-sidebar {
        left: -270px;
    }

    .hover-submenu.app .app-sidebar__overlay {
        visibility: hidden;
    }

    .hover-submenu.app.sidenav-toggled .app-content {
        margin-left: 0;
    }

    .hover-submenu.app.sidenav-toggled .app-sidebar {
        left: 0;
    }

    .hover-submenu.app.sidenav-toggled .app-sidebar__overlay {
        visibility: visible;
    }

    .hover-submenu.app.sidebar-mini.sidebar-gone.sidenav-toggled .app-sidebar {
        left: 0;
    }

    .hover-submenu.app .app-header .header-brand1 {
        width: inherit;
        position: absolute;
        left: 0;
        right: 0;
    }
}

.hover-submenu .app-content {
    min-height: calc(100vh - 50px);
    margin-bottom: 0 !important;
    -webkit-transition: margin-left 0.2s ease;
    -o-transition: margin-left 0.2s ease;
    transition: margin-left 0.2s ease;
    overflow: hidden;
    margin-top: 74px;
}

.hover-submenu .footer .container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .hover-submenu .app-content {
        margin-left: 270px;
    }
}

@media (max-width: 991px) {
    .hover-submenu .app-content {
        min-width: 100%;
    }
}

@media print {
    .hover-submenu .app-content {
        margin: 0;
        padding: 0;
        background-color: #fff;
    }
}

.hover-submenu .app-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 99 !important;
    border-bottom: 1px solid #eaedf1;
    background: #ffffff;
    transition: padding-left 0.3s ease;
}

@media (max-width: 991.98px) {
    .hover-submenu .app-header {
        z-index: 999 !important;
    }
}

@media (min-width: 992px) {
    .hover-submenu .app-header {
        padding-right: 10px;
        padding-left: 285px;
    }
}

@media print {
    .hover-submenu .app-header {
        display: none;
    }
}

.hover-submenu .app-header__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    color: #fff;
    text-align: center;
    font-family: "Niconne";
    padding: 0 15px;
    font-size: 26px;
    font-weight: 400;
    line-height: 50px;
}

.hover-submenu .app-header__logo:focus,
.hover-submenu .app-header__logo:hover {
    text-decoration: none;
}

@media (min-width: 992px) {
    .hover-submenu .app-header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: block;
        width: 230px;
    }
}

.hover-submenu .app-sidebar__toggle {
    z-index: 1;
    transition: padding-left 0.3s ease;
    padding: 0 9px;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    right: 7px;
}

.hover-submenu .app-sidebar__toggle:before {
    content: "\e907";
    transition: all 0.25s;
    font-size: 21px;
    font-family: "feather";
}

.hover-submenu .app-sidebar__toggle:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    bottom: 0;
    border-radius: 50%;
    right: 12px;
    background: rgba(var(--primary-bg-color), 0);
}

.hover-submenu .app-sidebar__toggle:focus,
.hover-submenu .app-sidebar__toggle:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .hover-submenu .app-sidebar__toggle {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}

.hover-submenu .app-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    color: #495057;
    width: 270px;
    z-index: 99;
    background: #fff;
    -webkit-box-shadow: 0 8px 24px rgba(168, 180, 208, 0.1);
    box-shadow: 0 8px 24px rgba(168, 180, 208, 0.1);
    -webkit-transition: left 0.2s ease, width 0.2s ease;
    -o-transition: left 0.2s ease, width 0.2s ease;
    transition: left 0.2s ease, width 0.2s ease;
    border-right: 1px solid #eaedf1;
}

.hover-submenu .app-sidebar::-webkit-scrollbar {
    width: 6px;
}

.hover-submenu .app-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

@media print {
    .hover-submenu .app-sidebar {
        display: none;
    }
}

@media (max-width: 991px) {
    .hover-submenu .app-sidebar__overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 9;
    }
}

.hover-submenu .app-sidebar__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #a8a8a8;
    width: 100%;
    padding: 15px 0 15px;
    display: inline-block;
}

.hover-submenu .app-sidebar__user .dropdown-menu {
    top: 10px !important;
}

.hover-submenu .app-sidebar__user img {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(44, 44, 44, 0.2);
}

.hover-submenu .app-sidebar__user-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 15px;
}

.hover-submenu .app-sidebar__user-name {
    font-size: 17px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.hover-submenu .app-sidebar__user-name.text-sm {
    font-size: 12px;
    font-weight: 400;
}

.hover-submenu .app-sidebar__user-designation {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.hover-submenu .side-menu {
    margin-bottom: 0;
}

.hover-submenu .side-menu__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.625rem 1.5rem;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    -o-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    transition: border-left-color 0.3s ease, background-color 0.3s ease;
    color: #495584;
    margin: 0px 0px 2px 0px;
}

.hover-submenu .side-menu__item.active {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.hover-submenu .side-menu__item.active:hover,
.hover-submenu .side-menu__item.active:focus {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.hover-submenu .side-menu__item:hover,
.hover-submenu .side-menu__item:focus {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.hover-submenu .side-menu__item:hover .side-menu__icon,
.hover-submenu .side-menu__item:hover .side-menu__label,
.hover-submenu .side-menu__item:focus .side-menu__icon,
.hover-submenu .side-menu__item:focus .side-menu__label {
    color: var(--primary-bg-color) !important;
}

@media (min-width: 992px) {
    .hover-submenu.app.sidebar-mini.sidenav-toggled .side-menu__label {
        display: block !important;
        font-size: 12px;
        padding-top: 0px;
        margin-top: 0;
    }
}

.hover-submenu .slide-item.active,
.hover-submenu .slide-item:hover,
.hover-submenu .slide-item:focus {
    text-decoration: none;
    color: #b5c1d2;
}

.hover-submenu .slide-menu a.active {
    color: var(--primary-bg-color);
}

.hover-submenu .slide-item.active,
.hover-submenu .slide-item:hover,
.hover-submenu .slide-item:focus {
    text-decoration: none;
    color: var(--primary-bg-color) !important;
}

.hover-submenu .slide-menu li {
    position: relative;
}

.hover-submenu .slide.is-expanded a {
    text-decoration: none;
}

.hover-submenu .side-menu .side-menu__icon {
    color: var(--primary-bg-color);
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
}

.hover-submenu .side-menu .side-menu__icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 12px;
    bottom: 0;
    border-radius: 50%;
    right: 3px;
    background: rgba(var(--primary-bg-color), 0);
}

.hover-submenu .side-menu__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.hover-submenu .side-menu__label {
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.hover-submenu .slide.is-expanded .slide-menu {
    display: block;
}

.hover-submenu .slide.is-expanded .angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.hover-submenu .slide-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 17px;
    font-size: 13.3px;
    color: #74829c;
}

.hover-submenu .slide-item .icon {
    margin-right: 5px;
}

.hover-submenu .angle {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-right: 2px;
}

@media (min-width: 992px) {

    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__user-designation,
    .hover-submenu.sidebar-mini.sidenav-toggled .angle,
    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .hover-submenu.sidebar-mini.sidenav-toggled .user-notification,
    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .hover-submenu.sidebar-mini.sidenav-toggled .user-info {
        display: none;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .app-header.header {
        padding-left: 130px !important;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .side-menu {
        padding: 0 0px 40px 0px;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .side-menu .sub-category {
        display: none;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .side-menu .side-menu__icon {
        background: none !important;
        box-shadow: none;
        margin-right: 0;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .side-menu .side-menu__icon:after {
        top: 6px;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .side-badge,
    .hover-submenu.sidebar-mini.sidenav-toggled .slide-menu open.slide-menu hide .side-badge {
        top: 6px;
        right: 40px;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidebar-mini.sidenav-toggled.user-notification::before {
        background: transparent;
        display: none;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .hover-submenu.sidebar-mini.sidenav-toggled .avatar-xl {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1rem;
        margin-bottom: 0px !important;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__user-avatar {
        width: 25px;
        height: 25px;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .side-menu li .side-menu__item.active:before {
        display: none;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__user {
        padding: 12px 0px 12px 0;
        margin-bottom: 0px;
        border-bottom: 1px solid rgba(225, 225, 225, 0.05);
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .profile-img {
        top: 0px;
        right: 19px;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .app-content {
        margin-left: 120px;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar {
        left: 0;
        width: 120px !important;
        overflow: hidden;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar:hover {
        overflow: visible;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .slide-menu {
        position: absolute;
        opacity: 0;
        z-index: 9;
        visibility: hidden;
        -webkit-transition: visibility 0.3s ease;
        -o-transition: visibility 0.3s ease;
        transition: visibility 0.3s ease;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled .side-menu__item {
        padding: 12px 5px;
        text-align: center;
        display: block;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__user .avatar-md {
        margin: 0 auto;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled .nav-badge {
        position: absolute;
        top: 8px;
        right: 28px;
        padding: 0.2rem 0.4rem;
        font-size: 11px;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar {
        width: 120px !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-menu {
        padding-top: 0 !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-menu li h3 {
        display: none !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-menu li .badge {
        display: none !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-menu li .side-menu__icon {
        top: 0 !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-header {
        width: 120px !important;
        display: flex !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo,
    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo1,
    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .mobile-light {
        display: none !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu .side-menu__icon:after {
        top: 6px;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__item {
        display: block;
        padding: 12px 5px;
        text-align: center;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu .sub-category {
        display: none !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        background: none !important;
        box-shadow: none;
        margin-right: 0 !important;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__label {
        display: block !important;
        font-size: 12px;
        padding-top: 0px;
        margin-top: 0;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .angle {
        display: none;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-badge {
        top: 6px;
        right: 40px;
    }
}

.hover-submenu .dropdown-menu {
    border-radius: 0;
}

.hover-submenu .dropdown-menu.dropdown-menu-right {
    left: auto;
}

.hover-submenu .dropdown-item .fa,
.hover-submenu .dropdown-item .icon {
    vertical-align: middle;
}

.hover-submenu .app-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: #FFF;
    margin: -30px -30px 30px;
    padding: 20px 30px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hover-submenu .app-title h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.hover-submenu .app-title p {
    margin-bottom: 0;
    font-style: italic;
}

@media print {
    .hover-submenu .app-title {
        display: none;
    }
}

@media (max-width: 480px) {
    .hover-submenu .app-title {
        margin: -15px -15px 15px;
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hover-submenu .app-title p {
        display: none;
    }
}

.hover-submenu .app-breadcrumb {
    margin-bottom: 0;
    text-align: right;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    padding: 0;
    text-align: left;
    padding: 0;
    background-color: transparent;
}

@media (max-width: 480px) {
    .hover-submenu .app-breadcrumb {
        margin-top: 10px;
    }
}

.hover-submenu.sidenav-toggled .app-sidebar__user .avatar-md {
    line-height: 2rem;
    font-size: 1rem;
}

.hover-submenu.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge {
    position: absolute;
    top: 5px;
    left: 57px;
    display: block !important;
    padding: 3px 5px !important;
}

.hover-submenu.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge1 {
    display: none;
}

.hover-submenu .nav-badge {
    border-radius: 30px;
    padding: 0.4em 0.6em;
    font-size: 12px;
}

.hover-submenu .user-info .text-dark {
    color: #25252a !important;
    font-weight: 400;
    font-size: 16px;
}

.hover-submenu .user-info .text-muted {
    color: #74829c !important;
}

.hover-submenu .side-header .header-brand1 {
    text-align: center;
    margin: 0 auto !important;
}

.hover-submenu .side-header .header-brand-img.desktop-logo {
    display: none;
}

.hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.desktop-logo {
    display: none;
}

.hover-submenu .side-header .header-brand-img.toggle-logo {
    display: none;
}

.hover-submenu .side-header .header-brand-img.light-logo1 {
    display: block !important;
}

.hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.toggle-logo {
    display: none;
    margin-right: 0;
}

.hover-submenu.sidebar-mini.sidenav-toggled .sidebar-navs {
    display: none;
}

.hover-submenu .side-header {
    display: flex;
    border-bottom: 1px solid #eaedf1;
    border-right: 1px solid #eaedf1;
    padding: 19px 17px;
    --webkit-transition: left 0.3s ease, width 0.2s ease;
    -o-transition: left 0.3s ease, width 0.2s ease;
    transition: left 0.3s ease, width 0.2s ease;
    height: 75px;
}

.hover-submenu .side-header .header-brand-img.toggle-logo,
.hover-submenu .side-header .header-brand-img.light-logo {
    height: 2.5rem;
}

.hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__toggle {
    padding-left: 10px;
}

.hover-submenu.sidebar-mini.sidenav-toggled .mobile-header .app-sidebar__toggle {
    margin: 0;
    margin-top: 5px;
}

.hover-submenu .user-pic {
    margin-bottom: 0.8rem;
}

.hover-submenu .side-menu .sub-category {
    color: #74829c;
    margin-bottom: 0.5rem;
    padding: 12px 30px 2px 20px;
    margin-bottom: 0;
}

.hover-submenu .side-menu .sub-category h3 {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
    font-weight: 500;
}

.hover-submenu .side-menu li:not(:first-child) h3 {
    margin-top: 0rem;
}

.hover-submenu.sidebar-mini .app-header .light-logo1 {
    display: block !important;
}

@media (min-width: 992px) {
    .hover-submenu.sidenav-toggled .header-brand-img.light-logo {
        display: block;
        margin-right: 0;
    }
}

.hover-submenu .side-badge,
.hover-submenu .slide-menu open.slide-menu hide .side-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    border-radius: 50px;
    padding: 3px 6px 3px;
}

.hover-submenu .sub-side-menu__item {
    padding: 8px 17px;
    display: flex;
    color: #74829c;
}

.hover-submenu .sub-side-menu__item .sub-side-menu__label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.hover-submenu .sub-slide.is-expanded .sub-angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.hover-submenu .sub-angle {
    float: right;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    margin-right: 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.hover-submenu .sub-slide.is-expanded .sub-slide-menu {
    display: block;
}

.hover-submenu .sub-slide-menu {
    display: none;
    padding: 0 15px 15px 0;
    font-size: 13px !important;
    list-style: none;
}

.hover-submenu .sub-slide-item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 27px !important;
    color: #74829c;
}

.hover-submenu .sub-side-menu__item2 {
    padding: 8px 2px 8px 27px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #74829c;
}

.hover-submenu .sub-slide2 .sub-side-menu__label2 {
    flex: 1 1 auto;
}

.hover-submenu .sub-angle2 {
    float: right;
    margin-top: -2px;
    margin-right: 0px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.hover-submenu .sub-slide2.is-expanded .sub-angle2 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.hover-submenu .sub-slide2.is-expanded .sub-slide-menu2 {
    display: block;
}

.hover-submenu .sub-slide-menu2 {
    display: none;
    padding: 0;
    font-size: 0.8rem !important;
    padding-left: 0;
    list-style: none;
}

.hover-submenu .sub-slide-item2 {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 40px !important;
    color: #74829c;
}

@media (max-width: 991px) {
    .hover-submenu .header-brand1 .desktop-logo {
        margin: 0 auto;
        margin-top: 6px;
    }
}


.hover-submenu.app.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}


@media (min-width: 992px) {
    .hover-submenu.sidenav-toggled .app-sidebar {
        overflow: visible !important;
        position: absolute !important;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu:hover .side-menu {
        max-height: inherit !important;
        visibility: visible;
        border-radius: 1px !important;
        transition: none !important;
        padding: 8px 0px;
        opacity: inherit;
        display: block !important;
    }

    .hover-submenu .app-sidebar .slide {
        position: relative;
        display: block;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled .slide-menu {
        position: absolute;
        left: 108px;
        min-width: 185px;
        opacity: 1;
        z-index: 9999;
        visibility: hidden;
        top: 0;
        display: block;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled-open .slide-menu {
        position: absolute;
        left: 108px;
        min-width: 185px;
        opacity: 1;
        z-index: 9999;
        visibility: visible;
        top: 0;
        display: block;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled-open .slide-menu.open {
        position: absolute;
        left: 108px;
        min-width: 185px;
        opacity: 1;
        z-index: 9999;
        visibility: visible;
        top: 0;
        display: block;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide.is-expanded .slide-menu {
        position: absolute;
        left: 108px;
        min-width: 185px;
        opacity: 1;
        z-index: 9999;
        visibility: hidden;
        top: 0;
        height: auto !important;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide .slide-menu {
        position: absolute;
        left: 108px;
        min-width: 185px;
        opacity: 1;
        z-index: 9999;
        visibility: hidden;
        top: 0;
        display: block;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide:hover .slide-menu {
        visibility: visible;
        display: block !important;
        height: auto !important;
    }

    .hover-submenu.sidebar-mini.sidenav-toggled .slide-menu {
        position: absolute;
        background: #ffffff;
        opacity: 1;
        visibility: visible;
        z-index: 999;
        left: 72px;
        transition: none !important;
        display: block !important;
        box-shadow: 8px 8px 17px rgba(0, 0, 0, 0.1);
    }

    .hover-submenu.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu-label1 {
        display: none;
    }

    .hover-submenu.sidenav-toggled .app-content {
        min-height: 1262px;
    }
}

.hover-submenu .ps--active-x>.ps__rail-x,
.hover-submenu .ps--active-y>.ps__rail-y {
    display: none;
}

.hover-submenu.sidebar-mini.sidenav-toggled .slide-menu {
    max-height: inherit !important;
    padding-bottom: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 8px !important;
    height: auto !important;
    overflow: hidden !important;
}

.hover-submenu.color-menu .side-header .light-logo {
    display: none !important;
}

.hover-submenu.sidenav-toggled.sidenav-toggled-open .slide .slide-menu {
    border-radius: 0px 6px 6px 0px !important;
}

.hover-submenu.rtl.sidenav-toggled.sidenav-toggled-open .slide .slide-menu {
    border-radius: 6px 0px 0px 6px !important;
}

@media (min-width: 992px) {
    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        color: #495057;
    }

    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__item:hover .side-menu__icon,
    .hover-submenu.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__item:focus .side-menu__icon {
        color: var(--primary-bg-color);
    }
}

@media (min-width: 768px) {

    .hover-submenu.sidebar-mini.sidenav-toggled .app-sidebar__user,
    .hover-submenu.sidebar-mini.sidenav-toggled .side-menu {
        padding-top: 0px !important;
    }
}

@media (min-width: 992px) {

    .hover-submenu.light-mode.color-header.color-menu.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .desktop-logo,
    .hover-submenu.light-mode.color-header.color-menu.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .light-logo,
    .hover-submenu.light-mode.color-header.color-menu.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .light-logo1,
    .app.hover-submenu.sidenav-toggled.color-menu.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .desktop-logo,
    .app.hover-submenu.sidenav-toggled.color-menu.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .light-logo,
    .app.hover-submenu.sidenav-toggled.color-menu.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .light-logo1 {
        display: none !important;
    }

    .hover-submenu.light-mode.color-header.color-menu.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .toggle-logo,
    .app.hover-submenu.sidenav-toggled.color-menu.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .toggle-logo {
        display: block !important;
    }
}


@media (min-width: 992px) {
    .app.hover-submenu.sidenav-toggled .slide-menu {
        display: none;
        padding: 0px;
        font-size: 0.8rem !important;
        padding-left: 3px;
        margin-left: 12px;
    }
}

.app.hover-submenu .slide-menu {
    display: none;
    padding: 5px 30px;
    font-size: 0.8rem !important;
    padding-left: 20px;
    margin-left: 20px;
}

.rtl.app.hover-submenu .slide-menu {
    padding-right: 20px !important;
    padding-left: inherit !important;
    margin-right: 20px !important;
    margin-left: inherit !important;
}

@media (min-width: 992px) {
    .rtl.app.hover-submenu.sidenav-toggled .slide-menu {
        padding-right: 3px !important;
        padding-left: inherit !important;
        margin-right: 12px !important;
        margin-left: inherit !important;
    }
}


.hover-submenu1 {
    /*-- Subslide ---*/
    /*-- Subslide2 ---*/
}

@media (max-width: 767.98px) {
    .hover-submenu1 .app-sidebar {
        top: 71px !important;
    }
}

@media (min-width: 768px) {
    .hover-submenu1.sidebar-mini.sidenav-toggled .side-menu__item .side-menu__icon {
        margin-left: 0px;
    }

    .hover-submenu1 .app-sidebar {
        padding-top: 75px !important;
    }
}

@media (min-width: 992px) {

    .hover-submenu1.rtl.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        margin-left: 0px !important;
    }

    .hover-submenu1.app.color-menu .slide-menu li .slide-item::before {
        color: #fff !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open.color-menu .side-menu-label1 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hover-submenu1.color-menu .side-menu-label1 a {
        color: #fff !important;
    }

    .hover-submenu1.rtl.sidebar-mini.sidenav-toggled .app-content {
        margin-right: 120px !important;
        margin-left: inherit !important;
    }

    .hover-submenu1.rtl.sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide .slide-menu {
        right: 106px !important;
        left: inherit !important;
    }

    .hover-submenu1.sidenav-toggled-open .slide-item.active .slide-menu li .slide-item:before,
    .hover-submenu1 .hover-submenu1 .slide-item:hover .slide-menu li .slide-item:before,
    .hover-submenu1 .hover-submenu1 .slide-item:focus .slide-menu li .slide-item:before {
        color: #fff !important;
    }

    .hover-submenu1.rtl.sidebar-mini.sidenav-toggled .slide-menu {
        box-shadow: -5px 0px 17px rgba(0, 0, 0, 0.1);
    }

    .hover-submenu1.rtl.app.sidenav-toggled .app-header.header {
        padding-right: 130px !important;
        padding-left: 10px !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.light-logo {
        display: block !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.toggle-logo,
    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.desktop-logo,
    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.light-logo1 {
        display: none !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu h3 {
        display: none !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open.color-menu .slide-menu li .slide-item:before {
        color: #fff !important;
    }

    .hover-submenu1.app.sidenav-toggled .app-content {
        margin-left: 0;
    }

    .hover-submenu1.app.sidenav-toggled .app-sidebar {
        left: 230px;
    }

    .hover-submenu1.app.sidenav-toggled .app-sidebar__overlay {
        visibility: hidden;
    }

    .hover-submenu1 .app-sidebar {
        padding-top: 55px;
    }

    .hover-submenu1 .side-header {
        width: 270px;
        left: 0;
        right: 0;
        top: 0;
        position: fixed;
        z-index: 99;
        background: #fff;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled .side-header {
        width: 120px !important;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled .side-header .header-brand-img.light-logo {
        height: 2.5rem;
    }

    .hover-submenu1.sidebar-mini footer.footer {
        padding: 1.25rem 1.25rem 1.25rem 270px;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled footer.footer {
        padding: 1.25rem 1.25rem 1.25rem 80px;
    }
}

@media (max-width: 991px) {
    .hover-submenu1.app {
        overflow-x: hidden;
    }

    .hover-submenu1.app .app-sidebar {
        left: -270px;
    }

    .hover-submenu1.app .app-sidebar__overlay {
        visibility: hidden;
    }

    .hover-submenu1.app.sidenav-toggled .app-content {
        margin-left: 0;
    }

    .hover-submenu1.app.sidenav-toggled .app-sidebar {
        left: 0;
    }

    .hover-submenu1.app.sidenav-toggled .app-sidebar__overlay {
        visibility: visible;
    }

    .hover-submenu1.app.sidebar-mini.sidebar-gone.sidenav-toggled .app-sidebar {
        left: 0;
    }

    .hover-submenu1.app .app-header .header-brand1 {
        width: inherit;
        position: absolute;
        left: 0;
        right: 0;
    }
}

.hover-submenu1 .app-content {
    min-height: calc(100vh - 50px);
    margin-bottom: 0 !important;
    -webkit-transition: margin-left 0.2s ease;
    -o-transition: margin-left 0.2s ease;
    transition: margin-left 0.2s ease;
    overflow: hidden;
    margin-top: 74px;
}

.hover-submenu1 .footer .container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .hover-submenu1 .app-content {
        margin-left: 270px;
    }
}

@media (max-width: 991px) {
    .hover-submenu1 .app-content {
        min-width: 100%;
    }
}

@media print {
    .hover-submenu1 .app-content {
        margin: 0;
        padding: 0;
        background-color: #fff;
    }
}

.hover-submenu1 .app-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 99 !important;
    border-bottom: 1px solid #eaedf1;
    background: #ffffff;
    transition: padding-left 0.3s ease;
}

@media (max-width: 991.98px) {
    .hover-submenu1 .app-header {
        z-index: 999 !important;
    }
}

@media (min-width: 992px) {
    .hover-submenu1 .app-header {
        padding-right: 10px;
        padding-left: 285px;
    }
}

@media print {
    .hover-submenu1 .app-header {
        display: none;
    }
}

.hover-submenu1 .app-header__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    color: #fff;
    text-align: center;
    font-family: "Niconne";
    padding: 0 15px;
    font-size: 26px;
    font-weight: 400;
    line-height: 50px;
}

.hover-submenu1 .app-header__logo:focus,
.hover-submenu1 .app-header__logo:hover {
    text-decoration: none;
}

@media (min-width: 992px) {
    .hover-submenu1 .app-header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: block;
        width: 230px;
    }
}

.hover-submenu1 .app-sidebar__toggle {
    z-index: 1;
    transition: padding-left 0.3s ease;
    padding: 0 9px;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    right: 7px;
}

.hover-submenu1 .app-sidebar__toggle:before {
    content: "\e907";
    transition: all 0.25s;
    font-size: 21px;
    font-family: "feather";
}

.hover-submenu1 .app-sidebar__toggle:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    bottom: 0;
    border-radius: 50%;
    right: 12px;
    background: rgba(var(--primary-bg-color), 0);
}

.hover-submenu1 .app-sidebar__toggle:focus,
.hover-submenu1 .app-sidebar__toggle:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .hover-submenu1 .app-sidebar__toggle {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}

.hover-submenu1 .app-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    color: #495057;
    width: 270px;
    z-index: 99;
    background: #fff;
    -webkit-box-shadow: 0 8px 24px rgba(168, 180, 208, 0.1);
    box-shadow: 0 8px 24px rgba(168, 180, 208, 0.1);
    -webkit-transition: left 0.2s ease, width 0.2s ease;
    -o-transition: left 0.2s ease, width 0.2s ease;
    transition: left 0.2s ease, width 0.2s ease;
    border-right: 1px solid #eaedf1;
}

.hover-submenu1 .app-sidebar::-webkit-scrollbar {
    width: 6px;
}

.hover-submenu1 .app-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

@media print {
    .hover-submenu1 .app-sidebar {
        display: none;
    }
}

@media (max-width: 991px) {
    .hover-submenu1 .app-sidebar__overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 9;
    }
}

.hover-submenu1 .app-sidebar__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #a8a8a8;
    width: 100%;
    padding: 15px 0 15px;
    display: inline-block;
}

.hover-submenu1 .app-sidebar__user .dropdown-menu {
    top: 10px !important;
}

.hover-submenu1 .app-sidebar__user img {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(44, 44, 44, 0.2);
}

.hover-submenu1 .app-sidebar__user-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 15px;
}

.hover-submenu1 .app-sidebar__user-name {
    font-size: 17px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.hover-submenu1 .app-sidebar__user-name.text-sm {
    font-size: 12px;
    font-weight: 400;
}

.hover-submenu1 .app-sidebar__user-designation {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.hover-submenu1 .side-menu {
    margin-bottom: 0;
}

.hover-submenu1 .side-menu__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.625rem 1.5rem;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    -o-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    transition: border-left-color 0.3s ease, background-color 0.3s ease;
    color: #495584;
    margin: 0px 0px 2px 0px;
}

.hover-submenu1 .side-menu__item.active {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.hover-submenu1 .side-menu__item.active:hover,
.hover-submenu1 .side-menu__item.active:focus {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.hover-submenu1 .side-menu__item:hover,
.hover-submenu1 .side-menu__item:focus {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.hover-submenu1 .side-menu__item:hover .side-menu__icon,
.hover-submenu1 .side-menu__item:hover .side-menu__label,
.hover-submenu1 .side-menu__item:focus .side-menu__icon,
.hover-submenu1 .side-menu__item:focus .side-menu__label {
    color: var(--primary-bg-color) !important;
}

@media (min-width: 992px) {
    .hover-submenu1.app.sidebar-mini.sidenav-toggled .side-menu__label {
        display: block !important;
        font-size: 12px;
        padding-top: 0px;
        margin-top: 0;
    }
}

.hover-submenu1 .slide-item.active,
.hover-submenu1 .slide-item:hover,
.hover-submenu1 .slide-item:focus {
    text-decoration: none;
    color: #b5c1d2;
}

.hover-submenu1 .slide-menu a.active {
    color: var(--primary-bg-color);
}

.hover-submenu1 .slide-item.active,
.hover-submenu1 .slide-item:hover,
.hover-submenu1 .slide-item:focus {
    text-decoration: none;
    color: var(--primary-bg-color) !important;
}

.hover-submenu1 .slide-menu li {
    position: relative;
}

.hover-submenu1 .slide.is-expanded a {
    text-decoration: none;
}

.hover-submenu1 .side-menu .side-menu__icon {
    color: var(--primary-bg-color);
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
}

.hover-submenu1 .side-menu .side-menu__icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 12px;
    bottom: 0;
    border-radius: 50%;
    right: 3px;
    background: rgba(var(--primary-bg-color), 0);
}

.hover-submenu1 .side-menu__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.hover-submenu1 .side-menu__label {
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.hover-submenu1 .slide.is-expanded .slide-menu {
    display: block;
}

.hover-submenu1 .slide.is-expanded .angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.hover-submenu1 .slide-menu {
    display: none;
    padding: 0px;
    font-size: 0.8rem !important;
    padding-left: 3px;
    margin-left: 12px;
}

.hover-submenu1 .slide-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 17px;
    font-size: 13.3px;
    color: #74829c;
}

.hover-submenu1 .slide-item .icon {
    margin-right: 5px;
}

.hover-submenu1 .angle {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-right: 2px;
}

@media (min-width: 992px) {

    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar__user-designation,
    .hover-submenu1.sidebar-mini.sidenav-toggled .angle,
    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .hover-submenu1.sidebar-mini.sidenav-toggled .user-notification,
    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .hover-submenu1.sidebar-mini.sidenav-toggled .user-info {
        display: none;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .app-header.header {
        padding-left: 130px !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .side-menu {
        padding: 0 0px 40px 0px;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .side-menu .sub-category {
        display: none;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .side-menu .side-menu__icon {
        background: none !important;
        box-shadow: none;
        margin-right: 0;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .side-menu .side-menu__icon:after {
        top: 6px;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .side-badge,
    .hover-submenu1.sidebar-mini.sidenav-toggled .slide-menu open.slide-menu hide .side-badge {
        top: 6px;
        right: 40px;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidebar-mini.sidenav-toggled.user-notification::before {
        background: transparent;
        display: none;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .hover-submenu1.sidebar-mini.sidenav-toggled .avatar-xl {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1rem;
        margin-bottom: 0px !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar__user-avatar {
        width: 25px;
        height: 25px;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .side-menu li .side-menu__item.active:before {
        display: none;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar__user {
        padding: 12px 0px 12px 0;
        margin-bottom: 0px;
        border-bottom: 1px solid rgba(225, 225, 225, 0.05);
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .profile-img {
        top: 0px;
        right: 19px;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .app-content {
        margin-left: 120px;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar {
        left: 0;
        width: 120px !important;
        overflow: hidden;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar:hover {
        overflow: visible;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .slide-menu {
        position: absolute;
        opacity: 0;
        z-index: 9;
        visibility: hidden;
        -webkit-transition: visibility 0.3s ease;
        -o-transition: visibility 0.3s ease;
        transition: visibility 0.3s ease;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled .side-menu__item {
        padding: 12px 5px;
        text-align: center;
        display: block;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar__user .avatar-md {
        margin: 0 auto;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled .nav-badge {
        position: absolute;
        top: 8px;
        right: 28px;
        padding: 0.2rem 0.4rem;
        font-size: 11px;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar {
        width: 120px !important;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-menu li h3 {
        display: none !important;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-menu li .badge {
        display: none !important;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-menu li .side-menu__icon {
        top: 0 !important;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-header {
        width: 120px !important;
        display: flex !important;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo,
    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo1,
    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .mobile-light {
        display: none !important;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu .side-menu__icon:after {
        top: 6px;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__item {
        display: block;
        padding: 12px 5px;
        text-align: center;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu .sub-category {
        display: none !important;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        background: none !important;
        box-shadow: none;
        margin-right: 0 !important;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__label {
        display: block !important;
        font-size: 12px;
        padding-top: 0px;
        margin-top: 0;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .angle {
        display: none;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-badge {
        top: 6px;
        right: 40px;
    }
}

.hover-submenu1 .dropdown-menu {
    border-radius: 0;
}

.hover-submenu1 .dropdown-menu.dropdown-menu-right {
    left: auto;
}

.hover-submenu1 .dropdown-item .fa,
.hover-submenu1 .dropdown-item .icon {
    vertical-align: middle;
}

.hover-submenu1 .app-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: #FFF;
    margin: -30px -30px 30px;
    padding: 20px 30px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hover-submenu1 .app-title h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.hover-submenu1 .app-title p {
    margin-bottom: 0;
    font-style: italic;
}

@media print {
    .hover-submenu1 .app-title {
        display: none;
    }
}

@media (max-width: 480px) {
    .hover-submenu1 .app-title {
        margin: -15px -15px 15px;
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hover-submenu1 .app-title p {
        display: none;
    }
}

.hover-submenu1 .app-breadcrumb {
    margin-bottom: 0;
    text-align: right;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    padding: 0;
    text-align: left;
    padding: 0;
    background-color: transparent;
}

@media (max-width: 480px) {
    .hover-submenu1 .app-breadcrumb {
        margin-top: 10px;
    }
}

.hover-submenu1.sidenav-toggled .app-sidebar__user .avatar-md {
    line-height: 2rem;
    font-size: 1rem;
}

.hover-submenu1.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge {
    position: absolute;
    top: 5px;
    left: 57px;
    display: block !important;
    padding: 3px 5px !important;
}

.hover-submenu1.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge1 {
    display: none;
}

.hover-submenu1 .nav-badge {
    border-radius: 30px;
    padding: 0.4em 0.6em;
    font-size: 12px;
}

.hover-submenu1 .user-info .text-dark {
    color: #25252a !important;
    font-weight: 400;
    font-size: 16px;
}

.hover-submenu1 .user-info .text-muted {
    color: #74829c !important;
}

.hover-submenu1 .side-header .header-brand1 {
    text-align: center;
    margin: 0 auto !important;
}

.hover-submenu1 .side-header .header-brand-img.desktop-logo {
    display: none;
}

.hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.desktop-logo {
    display: none;
}

.hover-submenu1 .side-header .header-brand-img.toggle-logo {
    display: none;
}

.hover-submenu1 .side-header .header-brand-img.light-logo1 {
    display: block !important;
}

.hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.toggle-logo {
    display: none;
    margin-right: 0;
}

.hover-submenu1.sidebar-mini.sidenav-toggled .sidebar-navs {
    display: none;
}

.hover-submenu1 .side-header {
    display: flex;
    border-bottom: 1px solid #eaedf1;
    border-right: 1px solid #eaedf1;
    padding: 19px 17px;
    --webkit-transition: left 0.3s ease, width 0.2s ease;
    -o-transition: left 0.3s ease, width 0.2s ease;
    transition: left 0.3s ease, width 0.2s ease;
    height: 75px;
}

.hover-submenu1 .side-header .header-brand-img.toggle-logo,
.hover-submenu1 .side-header .header-brand-img.light-logo {
    height: 2.5rem;
}

.hover-submenu1.sidebar-mini.sidenav-toggled .app-sidebar__toggle {
    padding-left: 10px;
}

.hover-submenu1.sidebar-mini.sidenav-toggled .mobile-header .app-sidebar__toggle {
    margin: 0;
    margin-top: 5px;
}

.hover-submenu1 .user-pic {
    margin-bottom: 0.8rem;
}

.hover-submenu1 .side-menu .sub-category {
    color: #74829c;
    margin-bottom: 0.5rem;
    padding: 12px 30px 2px 20px;
    margin-bottom: 0;
}

.hover-submenu1 .side-menu .sub-category h3 {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
    font-weight: 500;
}

.hover-submenu1 .side-menu li:not(:first-child) h3 {
    margin-top: 0rem;
}

.hover-submenu1.sidebar-mini .app-header .light-logo1 {
    display: block !important;
}

@media (min-width: 992px) {
    .hover-submenu1.sidenav-toggled .header-brand-img.light-logo {
        display: block;
        margin-right: 0;
    }
}

.hover-submenu1 .side-badge,
.hover-submenu1 .slide-menu open.slide-menu hide .side-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    border-radius: 50px;
    padding: 3px 6px 3px;
}

.hover-submenu1 .sub-side-menu__item {
    padding: 8px 17px;
    display: flex;
    color: #74829c;
}

.hover-submenu1 .sub-side-menu__item .sub-side-menu__label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}


.hover-submenu1 .sub-slide.is-expanded .sub-angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.hover-submenu1 .sub-angle {
    float: right;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    margin-right: 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.hover-submenu1 .sub-slide.is-expanded .sub-slide-menu {
    display: block;
}

.hover-submenu1 .sub-slide-menu {
    display: none;
    padding: 0 15px 15px 0;
    font-size: 13px !important;
    list-style: none;
}

.hover-submenu1 .sub-slide-item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 27px !important;
    color: #74829c;
}

.hover-submenu1 .sub-side-menu__item2 {
    padding: 8px 2px 8px 27px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #74829c;
}

.hover-submenu1 .sub-slide2 .sub-side-menu__label2 {
    flex: 1 1 auto;
}

.hover-submenu1 .sub-angle2 {
    float: right;
    margin-top: -2px;
    margin-right: 0px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.hover-submenu1 .sub-slide2.is-expanded .sub-angle2 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.hover-submenu1 .sub-slide2.is-expanded .sub-slide-menu2 {
    display: block;
}

.hover-submenu1 .sub-slide-menu2 {
    display: none;
    padding: 0;
    font-size: 0.8rem !important;
    padding-left: 0;
    list-style: none;
}

.hover-submenu1 .sub-slide-item2 {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 40px !important;
    color: #74829c;
}

@media (max-width: 991px) {
    .hover-submenu1 .header-brand1 .desktop-logo {
        margin: 0 auto;
        margin-top: 6px;
    }
}

.hover-submenu1.app.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

@media (min-width: 992px) {
    .hover-submenu1.sidenav-toggled .app-sidebar {
        overflow: visible !important;
        position: absolute !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu:hover .side-menu {
        max-height: inherit !important;
        visibility: visible;
        border-radius: 1px !important;
        transition: none !important;
        padding: 8px 0px;
        opacity: inherit;
        display: block !important;
    }

    .hover-submenu1 .app-sidebar .slide {
        position: relative;
        display: block;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled .slide-menu {
        position: absolute;
        left: 108px;
        min-width: 180px;
        opacity: 1;
        z-index: 9999;
        visibility: hidden;
        top: 0;
        display: block;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled-open .slide-menu {
        position: absolute;
        left: 108px;
        min-width: 180px;
        opacity: 1;
        z-index: 9999;
        visibility: visible;
        top: 0;
        display: block;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled-open .slide-menu.open {
        position: absolute;
        left: 108px;
        min-width: 180px;
        opacity: 1;
        z-index: 9999;
        visibility: visible;
        top: 0;
        display: block;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide.is-expanded .slide-menu {
        position: absolute;
        left: 108px;
        min-width: 180px;
        opacity: 1;
        z-index: 9999;
        visibility: hidden;
        top: 0;
        height: auto !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide .slide-menu {
        position: absolute;
        left: 108px;
        min-width: 180px;
        opacity: 1;
        z-index: 9999;
        visibility: hidden;
        top: 0;
        display: block;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide:hover .slide-menu {
        visibility: visible;
        display: block !important;
        height: auto !important;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled .slide-menu {
        position: absolute;
        background: #ffffff;
        opacity: 1;
        visibility: visible;
        z-index: 999;
        left: 72px;
        transition: none !important;
        display: block !important;
        box-shadow: 8px 8px 17px rgba(0, 0, 0, 0.1);
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu-label1 {
        display: none;
    }

    .hover-submenu1.sidenav-toggled .app-content {
        min-height: 1262px;
    }
}

.hover-submenu1 .ps--active-x>.ps__rail-x,
.hover-submenu1 .ps--active-y>.ps__rail-y {
    display: none;
}

.hover-submenu1.sidebar-mini.sidenav-toggled .slide-menu {
    max-height: inherit !important;
    padding-bottom: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 8px !important;
    height: auto !important;
    overflow: hidden !important;
}

.hover-submenu1.color-menu .side-header .light-logo {
    display: none !important;
}

.hover-submenu1.sidenav-toggled.sidenav-toggled-open .slide .slide-menu {
    border-radius: 0px 6px 6px 0px !important;
}

.hover-submenu1.rtl.sidenav-toggled.sidenav-toggled-open .slide .slide-menu {
    border-radius: 6px 0px 0px 6px !important;
}

@media (min-width: 992px) {
    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        color: #495057;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__item:hover .side-menu__icon,
    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__item:focus .side-menu__icon {
        color: var(--primary-bg-color);
    }
}

@media (min-width: 992px) {

    .hover-submenu1.light-mode.color-header.color-menu.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .desktop-logo,
    .hover-submenu1.light-mode.color-header.color-menu.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .light-logo,
    .hover-submenu1.light-mode.color-header.color-menu.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .light-logo1,
    .app.hover-submenu1.sidenav-toggled.color-menu.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .desktop-logo,
    .app.hover-submenu1.sidenav-toggled.color-menu.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .light-logo,
    .app.hover-submenu1.sidenav-toggled.color-menu.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .light-logo1 {
        display: none !important;
    }

    .hover-submenu1.light-mode.color-header.color-menu.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .toggle-logo,
    .app.hover-submenu1.sidenav-toggled.color-menu.sidenav-toggled-open .app-sidebar .side-header .header-brand1 .toggle-logo {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu-label1 {
        display: block;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid #e9edf4;
        padding: 10px 15px !important;
        color: var(--primary-bg-color);
        margin-bottom: 6px;
    }

    .hover-submenu1.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu-label1 a:before {
        display: none;
    }

    .hover-submenu1.app.sidebar-mini.sidenav-toggled .side-menu__label,
    .hover-submenu1.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__label {
        display: none !important;
        font-size: 12px;
        padding-top: 0px;
        margin-top: 0;
    }

    .app.hover-submenu1.sidenav-toggled.sidenav-toggled-open .side-menu {
        padding-top: 10px !important;
    }
}

@media (min-width: 992px) {
    .app.hover-submenu1.sidenav-toggled .slide-menu {
        display: none;
        padding: 0px;
        font-size: 0.8rem !important;
        padding-left: 3px;
        margin-left: 12px;
    }
}

.app.hover-submenu1 .slide-menu {
    display: none;
    padding: 5px 30px;
    font-size: 0.8rem !important;
    padding-left: 20px;
    margin-left: 20px;
}

.rtl.app.hover-submenu1 .slide-menu {
    padding-right: 20px !important;
    padding-left: inherit !important;
    margin-right: 20px !important;
    margin-left: inherit !important;
}

@media (min-width: 992px) {
    .rtl.app.hover-submenu1.sidenav-toggled .slide-menu {
        padding-right: 3px !important;
        padding-left: inherit !important;
        margin-right: 12px !important;
        margin-left: inherit !important;
    }
}

@media (max-width: 991.98px) {
    .hover-submenu1 .app-sidebar {
        border-right: 1px solid var(--dark-border);
    }
}


/*Gradient variables*/
/*Background variables*/
/*gray variables*/
/*white variables*/
/*black variables*/
/*shadow variables*/
/*Transparent variables*/

@media (min-width: 768px) {
    .app.sidenav-toggled .app-content {
        margin-left: 0;
    }

    .app.sidenav-toggled .app-sidebar {
        left: 230px;
    }

    .app.sidenav-toggled .app-sidebar__overlay {
        visibility: hidden;
    }

    .app-sidebar {
        padding-top: 75px;
    }

    .side-header {
        width: 270px;
        left: 0;
        right: 0;
        top: 0;
        position: fixed;
        z-index: 99;
        background: #fff;
    }

    .sidebar-mini.sidenav-toggled footer.footer {
        padding: 1.25rem 1.25rem 1.25rem 80px;
    }
}

@media (min-width: 992px) {
    .sidebar-mini footer.footer {
        padding: 0.2rem 1.25rem 0.2rem 270px;
    }
}

.app-content {
    margin-bottom: 0 !important;
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
    overflow: hidden;
    margin-top: 74px;
}

.footer .container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .app-content {
        margin-left: 230px;
    }

    .app.sidebar-mini.sidenav-toggled .side-header {
        width: 80px !important;
    }

    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-header {
        width: 270px !important;
    }
}

@media print {
    .app-content {
        margin: 0;
        padding: 0;
        background-color: #fff;
    }
}

.light-text {
    font-weight: 300 !important;
}

.semibold-text {
    font-weight: 600 !important;
}

.line-head {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

/*----- Componant: Top Navigation Bar ----- */
.app-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 99 !important;
    background: #ffffff;
    transition: all ease 0.2s;
}

@media (max-width: 991.98px) {
    .app-header {
        z-index: 999 !important;
    }
}

@media (min-width: 992px) {
    .app-header {
        padding-right: 10px;
        padding-left: 285px;
    }
}

@media print {
    .app-header {
        display: none;
    }
}

.app-header__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    color: #fff;
    text-align: center;
    font-family: "Niconne";
    padding: 0 15px;
    font-size: 26px;
    font-weight: 400;
    line-height: 50px;
}

.app-header__logo:focus,
.app-header__logo:hover {
    text-decoration: none;
}

@media (min-width: 768px) {
    .app-header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: block;
        width: 230px;
    }
}

.app-sidebar__hamb {
    color: #495584;
    fill: #495584;
    z-index: 1;
    margin-top: 5px;
    transition: padding-left 0.3s ease;
    padding: 9px;
    text-align: center;
    height: 2.7rem;
    font-size: 2.451rem;
    line-height: 1;
    position: relative;
    border-radius: 50%;
}

.app-sidebar__hamb:hover {
    color: var(--primary-bg-color);
}

.app-sidebar__hamb:before {
    transition: all 0.25s;
    font-size: 21px;
}

.app-sidebar__hamb:focus,
.app-sidebar__hamb:hover {
    text-decoration: none;
}

.app-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .app-nav {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }
}

.app-nav__item {
    display: block;
    padding: 15px;
    line-height: 20px;
    color: #a8a8a8;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.app-nav__item:hover,
.app-nav__item:focus {
    background: rgba(0, 0, 0, 0.1);
    color: #f6f6f6;
}

.app-search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    align-self: center;
    margin-right: 15px;
    padding: 10px 0;
}

@media (max-width: 480px) {
    .app-search {
        display: none;
    }
}

.app-search__input {
    border: 0;
    padding: 5px 10px;
    padding-right: 30px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.app-search__input::-webkit-input-placeholder,
.app-search__input:-ms-input-placeholder,
.app-search__input::-ms-input-placeholder,
.app-search__input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.app-search__button {
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    padding: 0 10px;
    border: 0;
    color: rgba(0, 0, 0, 0.8);
    background: none;
    cursor: pointer;
}

.app-notification {
    min-width: 270px;
}

.app-notification__title {
    padding: 8px 20px;
    text-align: center;
    background-color: rgba(0, 150, 136, 0.4);
    color: #333;
}

.app-notification__footer {
    padding: 8px 20px;
    text-align: center;
    background-color: #eee;
}

.app-notification__content {
    max-height: 220px;
    overflow-y: auto;
}

.app-notification__content::-webkit-scrollbar {
    width: 6px;
}

.app-notification__content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

.app-notification__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 20px;
    color: inherit;
    border-bottom: 1px solid #ddd;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.app-notification__item:focus,
.app-notification__item:hover {
    color: inherit;
    text-decoration: none;
    background-color: #e0e0e0;
}

.app-notification__message,
.app-notification__meta {
    margin-bottom: 0;
}

.app-notification__icon {
    padding-right: 10px;
}

.app-notification__message {
    line-height: 1.2;
}

.app-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    color: #8a98ac;
    z-index: 99;
    background: #fff !important;
    -webkit-box-shadow: 0 8px 24px rgba(229, 228, 230, 0.4);
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.app-sidebar::-webkit-scrollbar {
    width: 6px;
}

.app-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

@media print {
    .app-sidebar {
        display: none;
    }
}

.app-sidebar__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #a8a8a8;
    width: 100%;
    padding: 15px 0 15px;
    display: inline-block;
}

.app-sidebar__user .dropdown-menu {
    top: 10px !important;
}

.app-sidebar__user img {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(44, 44, 44, 0.2);
}

.app-sidebar__user-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 15px;
}

.app-sidebar__user-name {
    font-size: 17px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.app-sidebar__user-name.text-sm {
    font-size: 12px;
    font-weight: 400;
}

.app-sidebar__user-designation {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.sub-side-menu__item:hover {
    color: var(--primary-bg-color);
}

.sub-slide-item:hover {
    color: var(--primary-bg-color);
}

.sub-side-menu__item2:hover {
    color: var(--primary-bg-color);
}

.sub-slide-item2:hover {
    color: var(--primary-bg-color);
}

.side-menu__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    color: #495584;
    margin: 0px 0px 2px 0px;
}

.side-menu__item.active {
    text-decoration: none;
}

.side-menu__item.active:hover,
.side-menu__item.active:focus {
    text-decoration: none;
}

.side-menu__item:hover,
.side-menu__item:focus {
    text-decoration: none;
    color: var(--primary-bg-color) !important;
    background: transparent !important;
}

.side-menu__item:hover .side-menu__icon,
.side-menu__item:hover .side-menu__label,
.side-menu__item:focus .side-menu__icon,
.side-menu__item:focus .side-menu__label {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color) !important;
}

.slide-item.active,
.slide-item:hover,
.slide-item:focus {
    text-decoration: none;
    color: #b5c1d2;
}

.slide-menu a.active {
    color: var(--primary-bg-color) !important;
}

.slide-item.active,
.slide-item:hover,
.slide-item:focus {
    text-decoration: none;
    color: var(--primary-bg-color) !important;
}

.slide-menu li {
    position: relative;
}

.slide.is-expanded a {
    text-decoration: none;
}

.sidebar-mini .side-menu .side-menu__icon {
    color: #495584;
    width: 1.3rem !important;
    text-align: center;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
    font-size: 1.25rem !important;
    transition: all ease 0.3s;
    fill: #495584;
}

.side-menu__label {
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    top: 1px;
    line-height: inherit;
}

.slide.is-expanded .slide-menu {
    display: block;
}

.slide.is-expanded .angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slide-menu {
    display: none;
    padding: 0px 30px;
    font-size: 0.8rem !important;
    padding-left: 20px;
    margin-left: 20px;
}

.slide-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 8px;
    font-size: 13px;
    color: #76839a;
}

.slide-item .icon {
    margin-right: 5px;
}

.angle {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-right: 2px;
}

@media (min-width: 992px) {
    .sidebar-mini.sidenav-toggled .side-menu__item .side-menu__icon {
        margin-left: -6px;
        margin-right: -3px;
    }

    .sidebar-mini.sidenav-toggled .side-menu .side-menu__icon {
        background: none !important;
        box-shadow: none;
    }

    .sidebar-mini.sidenav-toggled .sidebar-mini.sidenav-toggled.user-notification::before {
        background: transparent;
        display: none;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar__user-name {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1rem;
        margin-bottom: 0px !important;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar__user-avatar {
        width: 25px;
        height: 25px;
    }

    .sidebar-mini.sidenav-toggled .side-menu li .side-menu__item.active:before {
        display: none;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar__user {
        padding: 12px 0px 12px 0;
        margin-bottom: 0px;
        border-bottom: 1px solid rgba(225, 225, 225, 0.05);
    }

    .sidebar-mini.sidenav-toggled .profile-img {
        top: 0px;
        right: 19px;
    }

    .sidebar-mini.sidenav-toggled .app-content {
        margin-left: 80px;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar:hover {
        overflow: visible;
    }

    .sidebar-mini.sidenav-toggled .side-menu__item {
        overflow: hidden;
    }

    .sidebar-mini.sidenav-toggled .slide-menu {
        position: absolute;
        opacity: 0;
        border-bottom-right-radius: 4px;
        z-index: 9;
        visibility: hidden;
        -webkit-transition: visibility 0.3s ease;
        -o-transition: visibility 0.3s ease;
        transition: visibility 0.3s ease;
    }

    .app.sidebar-mini.sidenav-toggled .side-menu__item {
        border-radius: 0;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar__user .avatar-md {
        margin: 0 auto;
    }

    .app.sidebar-mini.sidenav-toggled .nav-badge {
        position: absolute;
        top: 8px;
        right: 28px;
        padding: 0.2rem 0.4rem;
        font-size: 11px;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar {
        width: 270px !important;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-header .header-brand-img.light-logo1 {
        display: block !important;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu h3 {
        display: block !important;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        font-size: 1.25rem;
        text-align: center;
        vertical-align: middle;
        margin-right: 8px !important;
        position: relative;
        top: -1px;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__label {
        display: block !important;
        white-space: nowrap;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        position: relative;
        top: 1px;
        line-height: inherit;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .angle {
        display: block;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-badge {
        top: 10px;
    }
}

.app.sidebar-mini .side-menu_label {
    display: none;
}

.dropdown-menu {
    border-radius: 0;
}

.dropdown-menu.dropdown-menu-right {
    left: auto;
}

.dropdown-item .fa,
.dropdown-item .icon {
    vertical-align: middle;
}

.app-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: #fff;
    margin: -30px -30px 30px;
    padding: 20px 30px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.app-title h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.app-title p {
    margin-bottom: 0;
    font-style: italic;
}

@media print {
    .app-title {
        display: none;
    }
}

@media (max-width: 480px) {
    .app-title {
        margin: -15px -15px 15px;
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .app-title p {
        display: none;
    }
}

.app-breadcrumb {
    margin-bottom: 0;
    text-align: right;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    padding: 0;
    text-align: left;
    padding: 0;
    background-color: transparent;
}

@media (max-width: 480px) {
    .app-breadcrumb {
        margin-top: 10px;
    }
}

.tile {
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    padding: 20px;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidenav-toggled .app-sidebar__user .avatar-md {
    line-height: 2rem;
    font-size: 1rem;
}

.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge {
    position: absolute;
    top: 5px;
    left: 57px;
    display: block !important;
    padding: 3px 5px !important;
}

.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge1 {
    display: none;
}

.nav-badge {
    border-radius: 30px;
    padding: 0.4em 0.6em;
    font-size: 12px;
}

.user-info .text-dark {
    color: #25252a !important;
    font-weight: 400;
    font-size: 16px;
}

.user-info .text-muted {
    color: #76839a !important;
}

.side-header .header-brand1 {
    text-align: center;
    margin: 0 auto !important;
}

.side-header .header-brand-img.desktop-logo {
    display: none;
}

.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.desktop-logo {
    display: none;
}

.side-header .header-brand-img.toggle-logo {
    display: none;
}

.side-header .header-brand-img.light-logo1 {
    display: block !important;
}

.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.toggle-logo {
    display: none;
    margin-right: 0;
}

.sidebar-mini.sidenav-toggled .sidebar-navs {
    display: none;
}

.side-header {
    display: flex;
    padding: 22px 17px;
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
    height: 61px;
}

.sidebar-mini.sidenav-toggled .app-sidebar__toggle {
    padding-left: 10px;
}

.sidebar-mini.sidenav-toggled .mobile-header .app-sidebar__toggle {
    margin: 0;
    margin-top: 5px;
}

.user-pic {
    margin-bottom: 0.8rem;
}

.sidebar-navs a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #eaedf1 !important;
    color: #68798b !important;
    border-radius: 5px;
    padding: 0.8rem !important;
}

.app-sidebar .sidebar-navs {
    padding: 0 10px 10px 10px;
    border-bottom: 1px solid #eaedf1;
}

.sidebar-navs .nav li:last-child a {
    margin-right: 0 !important;
}

.side-menu h3 {
    color: #76839a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
    margin-bottom: 0.5rem;
    padding-top: 1.5rem !important;
    font-weight: 500;
    padding: 5px 30px 5px;
    opacity: 0.7;
}

.side-menu li:not(:first-child) h3 {
    margin-top: 0rem;
}

@media (min-width: 992px) {
    .sidebar-mini.sidenav-toggled .side-menu h3 {
        display: none !important;
    }

    .side-header {
        width: 230px !important;
        display: flex !important;
        padding: 5px !important;
    }
}

.sidebar-mini .app-header .light-logo1 {
    display: block !important;
}

@media (min-width: 768px) {
    .sidenav-toggled .header-brand-img.light-logo {
        display: block;
        margin-right: 0;
    }
}

.side-badge,
.slide-menu open.slide-menu hide .side-badge {
    position: absolute;
    top: 15px;
    right: 27px;
    border-radius: 50em;
    padding: 0.8em 0.7em;
    display: inline-block;
}

.side-menu__item.active .side-menu__label {
    color: var(--primary-bg-color) !important;
}

/*-- Subslide ---*/
.sub-side-menu__item {
    padding: 8px 8px;
    font-size: 13px;
    display: flex;
    color: #495584;
}

.sub-side-menu__item .sub-side-menu__label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.sub-slide.is-expanded .sub-angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sub-angle {
    float: right;
    line-height: 40px;
    margin-top: 3px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sub-slide.is-expanded .sub-slide-menu {
    display: block;
}

.sub-slide-menu {
    display: none;
    padding: 0 15px 15px 0;
    font-size: 13px !important;
    list-style: none;
}

.sub-slide-item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 24px !important;
    color: #495584;
    font-size: 12px;
}

/*-- Subslide2 ---*/
.sub-side-menu__item2 {
    padding: 8px 2px 8px 24px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #495584;
    font-size: 12px;
}

.sub-slide2 .sub-side-menu__label2 {
    flex: 1 1 auto;
}

.sub-angle2 {
    float: right;
    line-height: 40px;
    margin-top: -2px;
    margin-right: -9px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sub-slide2.is-expanded .sub-angle2 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sub-slide2.is-expanded .sub-slide-menu2 {
    display: block;
}

.sub-slide-menu2 {
    display: none;
    padding: 0;
    font-size: 0.8rem !important;
    padding-left: 0;
    list-style: none;
}

.sub-slide-item2 {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 40px !important;
    font-size: 11px;
    color: #495584;
}

.app.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: block !important;
}


.side-menu__item.active .side-menu__icon {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color) !important;
}

.side-menu__item.active:hover .side-menu__icon {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color) !important;
}

.app.sidenav-toggled .side-menu .side-menu__icon {
    font-size: 1.5rem !important;
    width: 1.3rem !important;
}

.sidebar-open #menu-icon {
    color: var(--primary-bg-color);
    fill: var(--primary-bg-color);
}

@media (max-width: 991.98px) {
    .side-header {
        display: none !important;
    }

    .app .app-sidebar {
        left: -270px;
    }

    .app.sidenav-toggled .side-menu h3 {
        display: block !important;
    }

    .app.sidenav-toggled .app-content {
        margin-left: 0;
    }

    .app.sidenav-toggled .app-sidebar {
        left: 0;
    }

    .app.sidenav-toggled .app-sidebar__overlay {
        visibility: visible;
    }

    .sidebar-mini.sidebar-gone.sidenav-toggled .app-sidebar {
        left: 0;
    }

    .header-brand1 .desktop-logo {
        margin: 0 auto;
        margin-top: 6px;
    }

    .app {
        overflow-x: hidden;
    }

    .app.sidebar-mini.sidenav-toggled .side-menu .side-menu__icon {
        margin-right: 8px;
        font-size: 1.5rem !important;
    }

    .app .app-sidebar__overlay {
        visibility: hidden;
    }

    .app .app-header .header-brand1 {
        width: inherit;
        position: absolute;
        left: 0;
        right: 0;
    }

    .app-content {
        min-width: 100%;
    }

    .app-sidebar__toggle {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .app-sidebar__overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 9;
    }
}

@media (min-width: 992px) {

    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo,
    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo1,
    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .mobile-light {
        display: none !important;
    }

    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__label {
        display: block !important;
    }

    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .badge-hide,
    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide-menu open.slide-menu hide .badge-hide {
        display: block;
    }

    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar__user-name,
    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar__user-designation,
    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .angle,
    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar__user-name,
    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .user-notification,
    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar__user-name,
    .app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .user-info {
        display: block;
    }

    .app.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .app.sidebar-mini.sidenav-toggled .app-sidebar__user-designation,
    .app.sidebar-mini.sidenav-toggled .angle,
    .app.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .app.sidebar-mini.sidenav-toggled .user-notification,
    .app.sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .app.sidebar-mini.sidenav-toggled .user-info {
        display: none;
    }

    .app.sidebar-mini.sidenav-toggled .badge-hide,
    .app.sidebar-mini.sidenav-toggled .slide-menu open.slide-menu hide .badge-hide {
        display: none;
    }

    .app.sidebar-mini.sidenav-toggled .app-header.header {
        padding-left: 100px;
    }

    .app.sidebar-mini.sidenav-toggled .side-menu {
        padding: 0 0px 40px 0px;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar {
        left: 0;
        width: 80px !important;
        overflow: hidden;
    }

    .app.sidebar-mini.sidenav-toggled .side-menu__label {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu {
        padding-top: 0px !important;
    }

    .sidebar-mini.sidenav-toggled .side-menu {
        padding-top: 10px !important;
    }
}

.app.sidebar-mini .side-menu .slide-item.active:before,
.app.sidebar-mini .side-menu .slide-item:hover:before,
.app.sidebar-mini .side-menu .slide-item:focus:before {
    color: var(--primary-bg-color) !important;
}

.sidebar-mini .app-sidebar .side-menu {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.side-menu__item.active i {
    color: var(--primary-bg-color);
}

@media (max-width: 992px) {
    .side-menu {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
}

.app.sidebar-mini .app-sidebar {
    width: 230px;
}

@media (min-width: 992px) {
    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide-menu {
        display: none;
        position: unset;
        top: inherit;
        min-width: 0;
        width: 100%;
        opacity: inherit;
        visibility: inherit;
    }
}

@media (max-width: 767.98px) {
    .app-sidebar {
        top: 71px;
    }

    .demo-icon.nav-link {
        margin: 2px 0px 0px 0px !important;
    }
}

.side-menu__item .badge {
    border-radius: 50px !important;
}

@media (min-width: 992px) {

    .horizontal-hover .side-menu__item:not(.has-link),
    .horizontal-hover .sub-side-menu__item,
    .horizontal-hover .sub-side-menu__item2 {
        pointer-events: none;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide.is-expanded .slide-menu {
        display: block !important;
        position: unset;
        top: inherit;
        min-width: 0;
        width: 100%;
        opacity: inherit;
        visibility: inherit;
    }
}


/*------ Charts styles ------*/
.chart-visitors {
    min-height: 18rem;
    overflow: hidden;
}

.chart-tasks {
    height: 15rem;
    overflow: hidden;
}

.chart-donut,
.chart-pie {
    height: 21rem;
    overflow: hidden;
}

.chartwidget {
    height: 17rem;
    overflow: hidden;
}


.map,
.chart {
    position: relative;
    padding-top: 56.25%;
}

.map-square,
.chart-square {
    padding-top: 100%;
}

.map-content,
.chart-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-header {
    margin-bottom: 1.5rem;
    height: 15rem;
    position: relative;
    margin-bottom: -1.5rem;
}

.map-header:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10rem;
    background: linear-gradient(to bottom, rgba(245, 247, 251, 0) 5%, #f1f1f9 95%);
    pointer-events: none;
}

.map-header-layer {
    height: 100%;
}

.map-static {
    height: 120px;
    width: 100%;
    max-width: 640px;
    background-position: center center;
    background-size: 640px 120px;
}

.chart-circle {
    height: 7rem;
    width: 7rem;
    position: relative;
}

.chart-circle-1 {
    display: initial;
    height: 12rem;
    width: 12rem;
    position: relative;
}

.chart-circle canvas {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.chart-circle-xs {
    height: 2.5rem;
    width: 2.5rem;
    font-size: 0.8rem;
}

.chart-circle-sm {
    height: 6rem !important;
    width: 6rem !important;
    font-size: 1rem;
}

.chart-circle-lg {
    height: 10rem;
    width: 10rem;
    font-size: 0.8rem;
}

.chart-circle-value {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1;
}

.chart-circle-value small {
    display: block;
    color: #9aa0ac;
    font-size: 0.9375rem;
}

.chart-circle-1-value {
    position: absolute;
    top: -184px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1;
    font-size: 40px;
}

.chart-circle-1-value small {
    display: block;
    color: #9aa0ac;
    font-size: 0.9375rem;
}

.chart-circle-value-3 {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1;
}

.chart-circle-value-4 {
    position: absolute;
    top: -66px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1;
    font-size: 50px;
}

.amcharts-chart-div a,
.canvasjs-chart-container a {
    display: none !important;
}

.amChartsLegend.amcharts-legend-div {
    display: none;
}

/*----chart-drop-shadow----*/
.chart-dropshadow {
    -webkit-filter: drop-shadow(-6px 12px 4px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(-6px 12px 4px rgba(0, 0, 0, 0.1));
}

.chart-dropshadow-primary {
    -webkit-filter: drop-shadow(-6px 12px 4px rgba(133, 67, 246, 0.5));
    filter: drop-shadow(-6px 12px 4px rgba(133, 67, 246, 0.5));
}

.chart-dropshadow-primary-1 {
    -webkit-filter: drop-shadow(-6px 12px 4px rgba(133, 67, 246, 0.2));
    filter: drop-shadow(-6px 12px 4px rgba(133, 67, 246, 0.2));
}

.chart-dropshadow-danger {
    -webkit-filter: drop-shadow(-6px 12px 4px rgba(244, 88, 91, 0.5));
    filter: drop-shadow(-6px 5px 4px rgba(244, 88, 91, 0.2));
}

.chart-dropshadow-warning {
    -webkit-filter: drop-shadow(-6px 12px 4px rgba(251, 141, 52, 0.5));
    filter: drop-shadow(-6px 12px 4px rgba(251, 141, 52, 0.5));
}

.BarChartShadow {
    -webkit-filter: drop-shadow(-4px 9px 4px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(-6px 9px 4px rgba(0, 0, 0, 0.3));
}

.highcharts-credits,
.highcharts-button,
.highcharts-data-label,
.highcharts-label {
    display: none;
}

.highcharts-data-label-connector {
    display: none !important;
}

#areaChart1,
#areaChart2,
#areaChart3,
#areaChart4 {
    height: 7rem !important;
}

#AreaChart5 {
    width: 105% !important;
    height: 163px !important;
    bottom: -15px;
    position: relative;
    left: -7px;
}

/*----chart-drop-shadow----*/
.chart-dropshadow2 {
    -webkit-filter: drop-shadow(-6px 5px 4px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(-6px 5px 4px rgba(0, 0, 0, 0.2));
}

.chart-dropshadow-secondary {
    -webkit-filter: drop-shadow(-6px 5px 4px rgba(167, 66, 153, 0.2));
    filter: drop-shadow(-6px 5px 4px rgba(167, 66, 153, 0.2));
}

.chart-dropshadow-success {
    -webkit-filter: drop-shadow(-6px 5px 4px rgba(19, 191, 166, 0.2));
    filter: drop-shadow(-6px 5px 4px rgba(19, 191, 166, 0.2));
}

.chart-dropshadow-info {
    -webkit-filter: drop-shadow(-6px 5px 4px rgba(7, 116, 248, 0.2));
    filter: drop-shadow(-6px 5px 4px rgba(7, 116, 248, 0.2));
}

.z-index2 {
    z-index: 2;
}

.tilebox-one i {
    font-size: 62px;
}

ul li .legend-dots {
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 0.5rem;
}

.legend li {
    padding: 5px;
    display: inline;
}

.GradientlineShadow {
    -webkit-filter: drop-shadow(0 -8px 4px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 -8px 4px rgba(0, 0, 0, 0.2));
}

.donutShadow {
    -webkit-filter: drop-shadow(-5px 4px 6px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(-1px 0px 2px rgba(159, 120, 255, 0.5));
}

.donutShadow-yellow {
    -webkit-filter: drop-shadow(-5px 4px 6px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(-1px 0px 2px rgba(251, 196, 52, 0.5));
}

.donutShadow-blue {
    -webkit-filter: drop-shadow(-5px 4px 6px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(-1px 0px 2px rgba(36, 72, 135, 0.5));
}

.circle-icon {
    height: 70px;
    width: 70px;
    position: absolute;
    margin-top: 13px;
    margin-left: 13px;
    float: right;
    border-radius: 5px;
}

.square-icon {
    height: 88px;
    width: 81px;
    position: absolute;
    float: right;
    border-radius: 7px 0px 0px 7px;
    line-height: 7;
}

/* ###### Chat  ###### */
@media (max-width: 991.98px) {
    .main-content-body-show .main-header-menu-icon {
        display: none;
    }

    .main-content-body-show .main-header-left .main-header-arrow {
        display: block;
    }

    .main-content-body-show .main-content-left-chat {
        display: none;
    }

    .main-content-body-show .main-content-body-chat {
        display: flex;
    }
}

.main-content-left-chat {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.main-nav-line-chat {
    border-bottom: 1px solid #eaedf1;
    flex-shrink: 0;
    flex-direction: row;
    padding-left: 20px;
    padding: 0;
}

.main-nav-line-chat .nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #343a40;
    text-transform: uppercase;
    padding: 0.8rem 1.3rem;
    border-bottom: 3px solid transparent;
}

.main-nav-line-chat .nav-link:hover,
.main-nav-line-chat .nav-link:focus,
.main-nav-line-chat .nav-link:active {
    outline: none;
}

.main-nav-line-chat .nav-link+.nav-link {
    margin-top: 0;
    margin-left: 18px;
}

.main-chat-contacts-wrapper {
    padding: 10px 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.main-chat-contacts-wrapper .main-content-label,
.main-chat-contacts-wrapper .card-table-two .card-title {
    margin-bottom: 15px;
    line-height: 1;
}

@media (min-width: 992px) {
    .main-chat-contacts-wrapper {
        padding: 10px 15px 10px 0;
    }
}

.card-table-two .main-chat-contacts-wrapper .card-title,
.main-chat-contacts-wrapper .card-dashboard-eight .card-title,
.card-dashboard-eight .main-chat-contacts-wrapper .card-title {
    margin-bottom: 15px;
    line-height: 1;
}

.main-chat-contacts-wrapper .lSSlideOuter,
.main-chat-contacts-wrapper .lSSlideWrapper {
    overflow: visible;
}

.main-chat-contacts {
    padding-left: 20px;
    display: flex;
}

.main-chat-contacts .lslide {
    display: flex;
    flex-direction: column;
    align-items: center;
    float: none;
    margin-right: 10px;
}

.main-chat-contacts small {
    font-size: 11px;
    width: 36px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 3px;
    text-align: center;
}

.main-chat-contacts-more {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

@media (min-width: 992px) {
    .main-chat-list {
        height: calc(100% - 134px);
        position: relative;
    }
}

.main-chat-list .media {
    padding: 0.75rem 1.5rem;
    border: 1px solid #eaedf1;
    position: relative;
    border-left: 0;
    border-right: 0;
}

.main-chat-list .media .main-img-user {
    flex-shrink: 0;
    top: 3px;
}

.main-chat-list .media+.media {
    margin-top: -1px;
    border-top: 1px solid #eaedf1;
}

.main-chat-list .media.new {
    background-color: #fff;
}

.main-chat-list .media.new .main-img-user span {
    display: flex;
}

.main-chat-list .media.new .media-contact-name span:first-child {
    font-weight: 500;
    color: #404c6d;
}

.main-chat-list .media.new .media-body p {
    color: #8f9cc0;
}

.main-chat-list .media:hover {
    cursor: pointer;
    background-color: var(--primary02);
    border-top-color: #eaedf1;
    border-bottom-color: #eaedf1;
}

.main-chat-list .media:hover:first-child,
.main-chat-list .media:focus:first-child {
    border-top-color: transparent;
}

.main-chat-list .media.selected {
    background-color: var(--primary02);
    border-top-color: #f7f8f9;
    border-bottom-color: #f7f8f9;
}

.main-chat-list .media.selected:first-child {
    border-top-color: transparent;
}

.main-chat-list .media.selected::after {
    display: block;
}

.main-chat-list .media.selected .media-contact-name span:first-child {
    color: #404c6d;
}

.main-chat-list .media.selected .media-body p {
    color: #8f9cc0;
}

.main-chat-list .main-img-user span {
    position: absolute;
    top: 0;
    left: -2px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 9px;
    font-weight: 500;
    color: #fff;
    background-color: #e984b1;
    box-shadow: 0 0 0 2px #fff;
}

.main-chat-list .media-body {
    margin-left: 15px;
}

.main-chat-list .media-body p {
    font-size: 13px;
    margin-bottom: 0;
    color: #76839a;
    line-height: 1.35;
}

.main-chat-list .media-contact-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.main-chat-list .media-contact-name span:first-child {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #404c6d;
}

.main-chat-list .media-contact-name span:last-child {
    display: block;
    font-size: 11px;
    color: #76839a;
}

@media (min-width: 992px) {
    .main-chat-list .media {
        padding: 0.75rem 1.5rem;
    }
}

.main-content-body-chat {
    flex-direction: column;
}

@media (min-width: 992px) {
    .main-content-body-chat {
        display: flex;
    }
}

.main-chat-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 12px;
    border-bottom: 1px solid #eaedf1;
}

.main-chat-header .nav {
    margin-left: auto;
    align-items: center;
}

.main-chat-header .nav-link {
    padding: 0;
    color: #76839a;
    font-size: 16px;
    text-align: center;
    padding: 0.35rem 0.75rem;
    margin: 0 2px;
}

.main-chat-header .nav-link i {
    line-height: 0;
}

.main-chat-header .nav-link .typcn {
    line-height: 0.9;
}

.main-chat-header .nav-link .typcn::before {
    width: auto;
}

.main-chat-header .nav-link+.nav-link {
    margin-left: 15px;
}

@media (min-width: 576px) {
    .main-chat-header .nav-link {
        display: block;
    }
}

.main-chat-msg-name {
    margin-left: 15px;
}

.main-chat-msg-name h6 {
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 700;
}

.main-chat-msg-name small {
    font-size: 12px;
    color: #76839a;
}

@media (min-width: 992px) {
    .main-chat-body {
        padding-bottom: 0;
        height: 700px;
        overflow: hidden;
    }
}

@media (min-width: 576px) {
    .main-chat-body .media.flex-row-reverse .media-body {
        margin-left: 55px;
    }
}

.main-chat-body .media-body {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-chat-body .media-body>div:last-child {
    font-size: 11px;
    color: #76839a;
    display: flex;
    align-items: center;
}

@media (min-width: 576px) {
    .main-chat-body .media-body {
        margin-right: 55px;
    }
}

.main-chat-time {
    display: block;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.main-chat-time:first-of-type {
    margin-top: 0;
}

.main-chat-time span {
    position: relative;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    padding: 25px;
    border-radius: 4px;
}

.main-chat-time::before {
    content: "";
    position: absolute;
    width: 40% !important;
    height: 1px;
    left: 0;
    right: 0;
    background-color: #e9e9ef;
    top: 10px;
}

@media (max-width: 991px) {
    .main-chat-time::before {
        left: 0 !important;
        right: 0 !important;
    }
}

.main-chat-time::after {
    content: "";
    position: absolute;
    width: 40% !important;
    height: 1px;
    left: auto;
    right: 0;
    background-color: #e9e9ef;
    top: 10px;
}

.main-chat-footer {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 60px;
    padding-right: 20px;
    border-top: 1px solid #eaedf1;
    background-color: #fff;
    position: inherit;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 7px 7px;
}

.main-chat-footer .nav {
    align-items: center;
}

.main-chat-footer .nav-link {
    padding: 0;
    color: #76839a;
    font-size: 16px;
    display: none;
}

.main-chat-footer .form-control {
    flex: 1;
    margin: 0 10px;
    padding-left: 12px;
    padding-right: 0;
    border-width: 0;
    border: 1px solid #eaedf1;
}

.main-chat-footer .form-control:hover,
.main-chat-footer .form-control:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
    .main-chat-footer {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
    }
}

@media (min-width: 576px) {
    .main-chat-footer .nav-link {
        display: block;
    }
}

@media (min-width: 576px) {
    .main-chat-footer .form-control {
        margin-left: 20px;
    }
}

@media (min-width: 768px) {
    .main-chat-footer .form-control {
        margin: 0 20px;
    }
}

.main-msg-send {
    font-size: 20px;
}

.main-content-title {
    color: #170c6b;
    font-weight: 500;
    font-size: 32px;
    text-indent: -1px;
    line-height: 1;
    position: relative;
    margin-bottom: 20px;
}

.main-content-left-contacts .main-content-breadcrumb,
.main-content-left-contacts .main-content-title {
    padding-left: 20px;
}

@media (min-width: 992px) {

    .main-content-left-contacts .main-content-breadcrumb,
    .main-content-left-contacts .main-content-title {
        padding-left: 0;
    }

    .main-content-body-contacts {
        display: block;
        overflow-y: auto;
    }
}

.main-chat-list .media.new .main-img-user span {
    display: flex;
}

.media img {
    border-radius: 4px;
}

.main-img-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.main-chat-list .media .main-img-user {
    flex-shrink: 0;
    top: 3px;
}

.main-img-user {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 100%;
}

@media (min-width: 992px) {
    .main-chat-list {
        height: 700px;
        position: relative;
    }
}

.fa,
.far,
.fas {
    font-family: "Font Awesome 5 Free";
}

.far {
    font-weight: 400;
}

.main-msg-wrapper {
    padding: 10px 15px;
    background-color: #f9faf8;
    font-size: 13px;
    margin-bottom: 10px;
    display: inline-block;
    border-radius: 20px;
    position: relative;
}

.main-chat-body {
    position: relative;
}

.main-chat-body .content-inner {
    padding: 20px;
}

.main-chat-body .media+.media {
    margin-top: 20px;
}

.main-chat-body .media.flex-row-reverse .media-body {
    margin-left: 0;
    margin-right: 20px;
    align-items: flex-end;
}

.main-chat-body .media.flex-row-reverse .main-msg-wrapper {
    background-color: var(--primary02);
    color: #000;
    position: relative;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

/* ###### Chat  ###### */
.chat-left .main-msg-wrapper {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.profile-user-online {
    background-repeat: no-repeat;
}

.slick-slider {
    position: relative;
    display: block;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
    margin: 0 -6px;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 0;
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-slider .slick-list .slick-slide {
    padding: 0 6px;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}

.recent-box .recent-profile {
    height: 90px;
    width: 100%;
    border-radius: 10px;
    position: relative;
}

.chat-profile {
    line-height: 1;
    padding: 0.75rem;
    color: #495057;
}

.chat-profile i {
    font-size: 14px;
}

.chat-profile:hover {
    color: var(--primary-bg-color) !important;
}

.chat-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.shared-files {
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid #eaedf1;
}

@media (min-width: 992px) {
    .main-content-app {
        height: calc(100vh - 250px);
    }
}

.overflow-scroll::-webkit-scrollbar {
    display: none;
}

.overflow-scroll {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.media-files {
    padding: 0.75rem;
}

.dropdown-item:focus,
.dropdown-item.active {
    background-color: #ffffff;
    color: var(--primary-bg-color) !important;
}

.tabs-menu .panel-tabs li a {
    color: #495057 !important;
}

.tabs-menu .panel-tabs li a.active {
    color: var(--primary-bg-color) !important;
}

@media (max-width: 1279.98px) {
    .main-chat-footer {
        padding-bottom: 1.5rem;
    }
}

.main-chat-footer .nav-link.active,
.main-chat-footer .nav-link:hover,
.main-chat-footer .nav-link:focus {
    color: var(--primary-bg-color) !important;
}


.login100-social-item {
    font-size: 20px;
    color: #fff;
    display: inline-block;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 5px;
    text-align: center;
    line-height: 2;
}

.login100-social-item:hover {
    color: #fff;
}

.container-login100 .box .social-icons {
    position: relative;
}

.container-login100 .box ul {
    margin: 0;
    padding: 0;
}

.container-login100 .box ul li {
    list-style: none;
    float: left;
    padding: 7px 7px;
}

.container-login100 .box ul li a {
    margin: 0 10px;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
}

.relative {
    position: relative !important;
}

.construction .btn.btn-icon {
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 0;
    background: #5851ab;
    font-size: 20px;
    color: #fff;
    margin: 0 3px;
}

/*----- Range slider -------*/
.range {
    display: table;
    position: relative;
    height: 25px;
    margin-top: 20px;
    background-color: whitesmoke;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.range input[type=range] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    -o-appearance: none !important;
    appearance: none !important;
    display: table-cell;
    width: 100%;
    background-color: transparent;
    height: 25px;
    cursor: pointer;
}

.range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    -o-appearance: none !important;
    appearance: none !important;
    width: 11px;
    height: 25px;
    color: white;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0px;
    background-color: #999999;
}

.range input[type=range]::-moz-slider-thumb {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    -o-appearance: none !important;
    appearance: none !important;
    width: 11px;
    height: 25px;
    color: white;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0px;
    background-color: #999999;
}

.range output {
    display: table-cell;
    padding: 3px 5px 2px;
    min-width: 40px;
    color: white;
    background-color: #999999;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

.range input[type=range] {
    outline: none;
}

.range.range-success input[type=range]::-webkit-slider-thumb {
    background-color: #4ecc48;
}

.range.range-success input[type=range]::-moz-slider-thumb {
    background-color: #4ecc48;
}

.range.range-success output {
    background-color: #4ecc48;
}

.range.range-success input[type=range] {
    outline-color: #4ecc48;
}

.range.range-info input[type=range]::-webkit-slider-thumb {
    background-color: #45aaf2;
}

.range.range-info input[type=range]::-moz-slider-thumb {
    background-color: #45aaf2;
}

.range.range-info output {
    background-color: #45aaf2;
}

.range.range-info input[type=range] {
    outline-color: #45aaf2;
}

.range.range-warning input[type=range]::-webkit-slider-thumb {
    background-color: #ecb403;
}

.range.range-warning input[type=range]::-moz-slider-thumb {
    background-color: #ecb403;
}

.range.range-warning output {
    background-color: #ecb403;
}

.range.range-warning input[type=range] {
    outline-color: #ecb403;
}

.range.range-danger input[type=range]::-webkit-slider-thumb {
    background-color: #c21a1a;
}

.range.range-danger input[type=range]::-moz-slider-thumb {
    background-color: #c21a1a;
}

.range.range-danger output {
    background-color: #c21a1a;
}

.range.range-danger input[type=range] {
    outline-color: #c21a1a;
}

.ribbon1 {
    position: absolute;
    top: -6.1px;
    right: 10px;
    color: #fff;
    z-index: 1;
}

.ribbon1:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 24px solid transparent;
    border-top: 13px solid #45aaf2;
}

.ribbon1 span {
    position: relative;
    display: block;
    text-align: center;
    background: #45aaf2;
    font-size: 14px;
    line-height: 1;
    padding: 12px 8px 10px;
    border-top-right-radius: 8px;
}

.ribbon1 span:before,
.ribbon1 span:after {
    position: absolute;
    content: "";
}

.ribbon1 span:before {
    height: 6px;
    width: 6px;
    left: -6px;
    top: 0;
    background: #45aaf2;
}

.ribbon1 span:after {
    height: 6px;
    width: 8px;
    left: -8px;
    top: 0;
    border-radius: 8px 8px 0 0;
    background: #45aaf2;
}

.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#45aaf2 0%, #45aaf2 100%);
    box-shadow: 0 3px 10px -5px black;
    position: absolute;
    top: 19px;
    right: -21px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #45aaf2;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #45aaf2;
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #45aaf2;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #45aaf2;
}

/*--- WIZARD ELEMENTS ---*/
.wizard {
    border: 1px solid #e9edf4;
    background-color: #fff;
}

.wizard>.steps {
    padding: 20px;
}

.wizard>.steps>ul {
    padding: 0;
    margin-bottom: 0;
    display: flex;
}

.wizard>.steps>ul li {
    float: none;
    display: block;
    width: auto;
}

.wizard>.steps>ul li .current-info {
    display: none;
}

.wizard>.steps>ul li .title {
    margin-left: 5px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
    margin: 0;
    min-height: auto;
}

.wizard>.steps>ul li+li {
    margin-left: 5px;
}

.wizard>.steps a {
    color: var(--primary-bg-color);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.wizard>.steps a:hover,
.wizard>.steps a:active {
    color: var(--primary-bg-color);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wizard>.steps a .number,
.wizard>.steps a:hover .number,
.wizard>.steps a:active .number {
    flex-shrink: 0;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: var(--primary-bg-color);
    display: block;
    text-align: center;
    line-height: 2;
    width: 30px;
    height: 30px;
    background-color: #f1f1f9;
    border-radius: 100%;
    transition: all 0.2s ease-in-out;
    margin-right: 5px;
}

.wizard>.steps .disabled a {
    color: #737688;
}

.wizard>.steps .disabled a:hover,
.wizard>.steps .disabled a:active {
    color: #737688;
}

.wizard>.steps .current a {
    color: var(--primary-bg-color);
}

.wizard>.steps .current a:hover,
.wizard>.steps .current a:active {
    color: var(--primary-bg-color);
}

.wizard>.steps .current a .title,
.wizard>.steps .current a:hover .title,
.wizard>.steps .current a:active .title {
    display: inline-block;
}

.wizard>.steps .current a .number,
.wizard>.steps .current a:hover .number,
.wizard>.steps .current a:active .number {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.wizard>.steps .done a {
    color: #13bfa6;
}

.wizard>.steps .done a:hover,
.wizard>.steps .done a:active {
    color: #13bfa6;
}

.wizard>.steps .done a .title,
.wizard>.steps .done a:hover .title,
.wizard>.steps .done a:active .title {
    display: none;
}

.wizard>.steps .done a .number,
.wizard>.steps .done a:hover .number,
.wizard>.steps .done a:active .number {
    background-color: #13bfa6;
    color: #fff;
}

.wizard>.content {
    border-top: 1px solid #e9edf4;
    border-bottom: 1px solid #e9edf4;
    min-height: 150px;
    padding: 20px;
}

.wizard>.content>.title {
    font-size: 18px;
    color: #495057;
    font-weight: 600;
    padding-bottom: 15px;
    display: none;
    margin: 0;
}

.wizard>.content>.title.current {
    display: block;
}

.wizard>.content>.body {
    float: none;
    position: static;
    width: auto;
    height: auto;
}

.wizard>.content>.body input.parsley-error {
    border-color: #ff5c77;
}

.wizard>.content>.body input.parsley-error+ul {
    list-style: none !important;
}

.wizard>.actions {
    padding: 20px;
}

.wizard>.actions>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.wizard>.actions>ul>li:last-child a {
    background-color: #13bfa6;
}

.wizard>.actions a {
    display: block;
    background-color: var(--primary-bg-color);
    padding: 9px 25px;
    line-height: 1.573;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
}

.wizard>.actions a:hover,
.wizard>.actions a:active {
    display: block;
    background-color: var(--primary-bg-color);
    padding: 9px 25px;
    line-height: 1.573;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
}

.wizard>.actions .disabled a {
    background-color: #e8ebf2;
    color: #495057;
}

.wizard>.actions .disabled a:hover,
.wizard>.actions .disabled a:active {
    background-color: #e8ebf2;
    color: #495057;
}

.wizard.vertical>.steps {
    padding: 20px;
}

.wizard.vertical>.steps ul li+li {
    margin-left: 10px;
}

.wizard.vertical>.steps ul li .title {
    display: none;
}

.wizard.vertical>.steps .current a .title {
    display: inline-block;
}

.wizard.vertical>.content {
    margin: 0;
    padding: 20px;
}

.wizard.vertical>.actions {
    padding: 20px;
}

.wizard.vertical>.actions ul {
    float: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .wizard>.steps {
        padding: 25px;
    }
}

@media (min-width: 992px) {
    .wizard>.steps {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wizard>.steps>ul li .title {
        transition: none;
    }
}

@media (min-width: 576px) {
    .wizard>.steps>ul li .title {
        display: none;
        margin-left: 10px;
    }
}

@media (min-width: 768px) {
    .wizard>.steps>ul li .title {
        display: inline-block;
    }
}

@media (min-width: 576px) {
    .wizard>.steps>ul li+li {
        margin-left: 20px;
    }
}

@media (min-width: 992px) {
    .wizard>.steps>ul li+li {
        margin-left: 30px;
    }
}

@media (min-width: 1200px) {
    .wizard>.steps a {
        justify-content: flex-start;
    }

    .wizard>.steps a:hover,
    .wizard>.steps a:active {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {

    .wizard>.steps a .number,
    .wizard>.steps a:hover .number,
    .wizard>.steps a:active .number {
        transition: none;
    }
}

@media (min-width: 576px) {

    .wizard>.steps a .number,
    .wizard>.steps a:hover .number,
    .wizard>.steps a:active .number {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.9;
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 992px) {
    .wizard>.steps .disabled {
        display: block;
    }
}

@media (max-width: 991px) {
    .wizard>.steps .disabled {
        display: none;
    }
}

@media (min-width: 768px) {

    .wizard>.steps .done a .title,
    .wizard>.steps .done a:hover .title,
    .wizard>.steps .done a:active .title {
        display: inline-block;
    }
}

@media (min-width: 768px) {
    .wizard>.content {
        padding: 25px;
    }
}

@media (min-width: 992px) {
    .wizard>.content {
        padding: 20px;
    }
}

@media (min-width: 768px) {
    .wizard>.actions {
        padding: 25px;
    }
}

@media (min-width: 992px) {
    .wizard>.actions {
        padding: 20px;
    }
}

@media (min-width: 576px) {
    .wizard.vertical>.steps {
        float: left;
        width: 20%;
    }
}

@media (min-width: 768px) {
    .wizard.vertical>.steps {
        width: 15%;
    }
}

@media (min-width: 992px) {
    .wizard.vertical>.steps {
        padding: 20px;
        width: 30%;
    }
}

@media (min-width: 576px) {
    .wizard.vertical>.steps ul {
        flex-direction: column;
    }
}

@media (min-width: 576px) {
    .wizard.vertical>.steps ul li+li {
        margin-top: 10px;
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .wizard.vertical>.steps ul li+li {
        margin-top: 20px;
    }
}

@media (min-width: 1200px) {
    .wizard.vertical>.steps ul li .title {
        display: block;
    }
}

@media (min-width: 992px) {
    .wizard.vertical>.steps a {
        justify-content: flex-start;
    }
}

@media (min-width: 576px) {
    .wizard.vertical>.steps .current a .title {
        display: none;
    }
}

@media (min-width: 1200px) {
    .wizard.vertical>.steps .current a .title {
        display: inline-block;
    }
}

@media (min-width: 576px) {
    .wizard.vertical>.content {
        border-top-width: 0;
        border-bottom-width: 0;
        width: 80%;
        float: right;
        border-left: 1px solid #e9edf4;
    }
}

@media (min-width: 768px) {
    .wizard.vertical>.content {
        width: 85%;
    }
}

@media (min-width: 992px) {
    .wizard.vertical>.content {
        width: 70%;
        padding: 25px;
    }
}

@media (min-width: 576px) {
    .wizard.vertical>.actions {
        width: 80%;
        float: right;
        border-left: 1px solid #e9edf4;
    }
}

@media (min-width: 768px) {
    .wizard.vertical>.actions {
        width: 85%;
    }
}

@media (min-width: 992px) {
    .wizard.vertical>.actions {
        width: 70%;
        padding: 25px;
    }
}

/****** EQUAL COLUMN WIDTH STEP INDICATOR *****/
.step-equal-width>.steps>ul {
    display: flex;
    display: flex;
}

.step-equal-width>.steps>ul>li {
    flex: 1;
    width: auto;
    float: none;
    flex: 1;
    width: auto;
    float: none;
}

/****** EQUAL COLUMN WIDTH STEP INDICATOR *****/
/***** CUSTOM STYLES *****/
.wizard-style-1>.steps>ul a {
    padding: 0;
    height: 50px;
}

.wizard-style-1>.steps>ul a:hover,
.wizard-style-1>.steps>ul a:active {
    padding: 0;
    height: 50px;
}

.wizard-style-1>.steps>ul a .number,
.wizard-style-1>.steps>ul a:hover .number,
.wizard-style-1>.steps>ul a:active .number {
    width: 50px;
    height: 100%;
    border: 0;
    font-size: 18px;
    font-weight: bold;
    color: #737688;
    background-color: #f3f7fd;
    border-radius: 0;
}

.wizard-style-1>.steps>ul a .title,
.wizard-style-1>.steps>ul a:hover .title,
.wizard-style-1>.steps>ul a:active .title {
    margin-right: 20px;
    margin-left: 20px;
}

.wizard-style-1>.steps>ul .current a .number,
.wizard-style-1>.steps>ul .current a:hover .number,
.wizard-style-1>.steps>ul .current a:active .number {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.wizard-style-1>.steps>ul .done a .number,
.wizard-style-1>.steps>ul .done a:hover .number,
.wizard-style-1>.steps>ul .done a:active .number {
    background-color: #643ab0;
    color: #fff;
}

.wizard-style-2>.steps>ul a {
    padding: 0;
    height: 50px;
    border-radius: 50px;
}

.wizard-style-2>.steps>ul a:hover,
.wizard-style-2>.steps>ul a:active {
    padding: 0;
    height: 50px;
    border-radius: 50px;
}

.wizard-style-2>.steps>ul a .number,
.wizard-style-2>.steps>ul a:hover .number,
.wizard-style-2>.steps>ul a:active .number {
    width: 50px;
    height: 100%;
    border: 2px solid #f3f7fd;
    font-size: 18px;
    font-weight: bold;
    color: #737688;
    background-color: #fff;
}

.wizard-style-2>.steps>ul a .title,
.wizard-style-2>.steps>ul a:hover .title,
.wizard-style-2>.steps>ul a:active .title {
    margin-right: 20px;
}

.wizard-style-2>.steps>ul .current a .number,
.wizard-style-2>.steps>ul .current a:hover .number,
.wizard-style-2>.steps>ul .current a:active .number {
    border-color: var(--primary-bg-color);
    color: var(--primary-bg-color);
}

.wizard-style-2>.steps>ul .done a .number,
.wizard-style-2>.steps>ul .done a:hover .number,
.wizard-style-2>.steps>ul .done a:active .number {
    border-color: #8c3feb;
    color: #8c3feb;
}

/*--- WIZARD ELEMENTS ---*/
.parsley-required {
    font-size: 12px;
    color: #ff5c77;
    margin-top: 3px;
}

.wizard-card .moving-tab {
    margin-top: 5px;
    background-color: var(--primary-bg-color) !important;
}

.form-group label.control-label {
    color: var(--primary-bg-color);
}

.wizard-card.form-group .form-control {
    background-image: linear-gradient(#c4c4c4, #c4c4c4, linear-gradient(#e1e1e2, #e1e1e2));
}

.wizard-container .wizard-navigation {
    background: #ebeff8;
}

.wizard-card .choice:hover .icon,
.wizard-card .choice.active .icon {
    border-color: var(--primary-bg-color) !important;
    color: var(--primary-bg-color) !important;
}

.weather-card {
    height: 492px;
    background: #fff;
    overflow: hidden;
}

.weather-card .top {
    position: relative;
    height: 328px;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.weather-card .top .wrapper {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.weather-card .top .wrapper .mynav {
    height: 20px;
}

.weather-card .top .wrapper .mynav .lnr {
    color: #fff;
    font-size: 20px;
}

.weather-card .top .wrapper .mynav .lnr-chevron-left {
    display: inline-block;
    float: left;
}

.weather-card .top .wrapper .mynav .lnr-cog {
    display: inline-block;
    float: right;
}

.weather-card .top .wrapper .heading {
    margin-top: 20px;
    font-size: 35px;
    font-weight: 400;
    color: #fff;
}

.weather-card .top .wrapper .location {
    margin-top: 20px;
    font-size: 21px;
    font-weight: 400;
    color: #fff;
}

.weather-card .top .wrapper .temp {
    margin-top: 20px;
}

.weather-card .top .wrapper .temp a {
    text-decoration: none;
    color: #fff;
}

.weather-card .top .wrapper .temp a .temp-type {
    font-size: 85px;
}

.weather-card .top .wrapper .temp .temp-value {
    display: inline-block;
    font-size: 85px;
    font-weight: 600;
    color: #fff;
}

.weather-card .top .wrapper .temp .deg {
    display: inline-block;
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    vertical-align: top;
    margin-top: 10px;
}

.weather-card .top:after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.weather-card .bottom {
    padding: 0 30px;
    background: #fff;
}

.weather-card .bottom .wrapper .forecast {
    overflow: hidden;
    margin: 0;
    font-size: 0;
    padding: 0;
    padding-top: 20px;
    max-height: 155px;
}

.weather-card .bottom .wrapper .forecast a {
    text-decoration: none;
    color: #000;
}

.weather-card .bottom .wrapper .forecast .go-up {
    text-align: center;
    display: block;
    font-size: 25px;
    margin-bottom: 10px;
}

.weather-card .bottom .wrapper .forecast li {
    display: block;
    font-size: 25px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.25);
    line-height: 1em;
    margin-bottom: 30px;
}

.weather-card .bottom .wrapper .forecast li .date {
    display: inline-block;
}

.weather-card .bottom .wrapper .forecast li .condition {
    display: inline-block;
    vertical-align: middle;
    float: right;
    font-size: 25px;
}

.weather-card .bottom .wrapper .forecast li .condition .temp {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    font-weight: 400;
    padding-top: 2px;
}

.weather-card .bottom .wrapper .forecast li .condition .temp .deg {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    margin-left: 3px;
    vertical-align: top;
}

.weather-card .bottom .wrapper .forecast li .condition .temp .temp-type {
    font-size: 20px;
}

.weather-card .bottom .wrapper .forecast li.active {
    color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1279px) {
    .wideget-user-info .wideget-user-warap {
        margin-top: 2rem !important;
    }
}

@media (max-width: 360px) {
    .wideget-user-desc .wideget-user-img {
        width: 130px;
        height: 130px;
    }

    .wideget-user-desc .user-wrap {
        margin-top: 0.7rem !important;
        margin-left: 13px;
    }

    .wideget-user-info .wideget-user-warap .wideget-user-warap-r {
        margin-left: 5rem !important;
    }
}

.widget-info i {
    width: 100px;
    height: 100px;
    padding: 27px 0;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
}

.widget-info a {
    border-bottom: 1px solid #fff;
}

.widgets-cards .wrp.icon-circle {
    width: 73px;
    height: 73px;
    border-radius: 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0;
    margin-right: 15px;
}

.widgets-cards .wrp.icon-circle i {
    font-size: 1.6rem;
    color: #fff;
}

.widgets-cards .wrp p {
    margin-bottom: 0;
    line-height: 1;
    margin-bottom: 10px;
}

.widgets-cards .wrp p:first-child {
    font-weight: 600;
    font-size: 25px;
}

/**widgets*/
.widgets {
    font-size: 35px;
    padding: 20px;
}

.widgetstext {
    top: 0;
    bottom: 0;
    padding: 20px 40px;
}

.widget-line h4 {
    font-size: 24px;
    font-weight: 600;
}

.widget-line p {
    font-size: 16px;
}

.widget-line-list li {
    display: inline-block;
    font-size: 16px;
    line-height: 27px;
    padding: 5px 20px 0 15px;
    list-style-type: none;
}

.wideget-user-info {
    margin-top: 1rem;
}

.widget-line-list {
    margin: 6px;
}

.widget-progress .progress {
    background-color: rgba(0, 0, 0, 0.1);
}

.widget-card-1 i {
    position: relative;
    bottom: 1px;
    right: 11px;
    border-radius: 5px;
    font-size: 57px;
    color: #fff;
    opacity: 0.5;
}

.widget-card-1 i:hover {
    color: #fff;
    font-size: 80px;
    position: absolute;
    bottom: -10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.wideget-user-desc .wideget-user-img img {
    border-radius: 100%;
    margin-right: 2rem;
}

.wideget-user-desc .user-wrap {
    margin-top: 1.5rem;
}

.wideget-user .wideget-user-icons a {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    text-align: center;
    border-radius: 100px;
    line-height: 2rem;
    margin-top: 0.3rem;
}

.wideget-user .wideget-user-icons a:hover {
    color: #fff;
}

.wideget-user-info .wideget-user-warap {
    display: flex;
}

.wideget-user-info .wideget-user-warap h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.wideget-user-info .wideget-user-warap .wideget-user-warap-r {
    margin-left: 10rem;
}

.wideget-user-info .wideget-user-rating a {
    font-size: 18px;
}

.wideget-user-tab .tab-menu-heading {
    padding: 0;
    border: 0;
}

.wideget-user-tab .tab-menu-heading .nav li a {
    color: #374254;
    font-size: 15px;
    font-weight: 400;
}

.wideget-user-tab .tabs-menu1 ul li a {
    padding: 14px 20px 14px 20px;
    display: block;
}

.widgets-cards .widgets-cards-data {
    margin-top: 8px;
}

.widgets-cards .widgets-cards-data .wrp p:first-child {
    font-size: 20px;
    font-weight: 500;
}

.widget-drop .dropdown-menu {
    position: absolute;
    transform: translate3d(-156px, 31px, 0px) !important;
    top: 0px;
    left: 0px;
    will-change: transform;
    min-width: 80px;
}

.widget-drop .button:focus {
    border-color: transparant !important;
}

#widgetChart1,
#widgetChart2,
#widgetChart3 {
    width: 110% !important;
    height: 142px !important;
    bottom: -15px;
    position: relative;
    left: -17px;
    overflow: hidden !important;
    border-radius: 27%;
}

.clip-widget {
    position: relative;
}

/* ######## UTILITIES-STYLES ######## */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-21by9::before {
    padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-4by3::before {
    padding-top: 75%;
}

.embed-responsive-1by1::before {
    padding-top: 100%;
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
}

@media (min-width: 1280px) {
    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
}

/*------ Alignments -------*/
.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1280px) {
    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.bg-secondary {
    background-color: #e984b1 !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus {
    background-color: rgba(233, 132, 177, 0.85) !important;
}

button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: rgba(233, 132, 177, 0.85) !important;
}

a.bg-teritary:hover,
a.bg-teritary:focus {
    background-color: rgba(89, 173, 236, 0.85) !important;
}

button.bg-teritary:hover,
button.bg-teritary:focus {
    background-color: rgba(89, 173, 236, 0.85) !important;
}

a.bg-custom-yellow:hover,
a.bg-custom-yellow:focus {
    background-color: rgba(231, 195, 84, 0.85) !important;
}

button.bg-custom-yellow:hover,
button.bg-custom-yellow:focus {
    background-color: rgba(231, 195, 84, 0.85) !important;
}

.bg-success {
    background-color: #13bfa6 !important;
}

a.bg-success:hover,
a.bg-success:focus {
    background-color: rgba(19, 191, 166, 0.85) !important;
}

button.bg-success:hover,
button.bg-success:focus {
    background-color: rgba(19, 191, 166, 0.85) !important;
}

.bg-info {
    background-color: #59adec !important;
}

a.bg-info:hover,
a.bg-info:focus {
    background-color: rgba(89, 173, 236, 0.85) !important;
}

button.bg-info:hover,
button.bg-info:focus {
    background-color: rgba(89, 173, 236, 0.85) !important;
}

.bg-warning {
    background-color: #e7c354 !important;
}

a.bg-warning:hover,
a.bg-warning:focus {
    background-color: rgba(231, 195, 84, 0.85) !important;
}

button.bg-warning:hover,
button.bg-warning:focus {
    background-color: rgba(231, 195, 84, 0.85) !important;
}

.bg-danger {
    background-color: #d12c47 !important;
}

a.bg-danger:hover,
a.bg-danger:focus {
    background-color: rgba(209, 44, 71, 0.85) !important;
}

button.bg-danger:hover,
button.bg-danger:focus {
    background-color: rgba(209, 44, 71, 0.85) !important;
}

.bg-light {
    background-color: #e4e7ecc5 !important;
}

.bg-light-lightest {
    background-color: rgba(228, 231, 236, 0.15) !important;
}

.bg-light-lighter {
    background-color: rgba(228, 231, 236, 0.65) !important;
}

a.bg-light:hover,
a.bg-light:focus {
    background-color: rgba(228, 231, 236, 0.85) !important;
}

button.bg-light:hover,
button.bg-light:focus {
    background-color: rgba(228, 231, 236, 0.85) !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus {
    background-color: rgba(68, 69, 70, 0.85) !important;
}

button.bg-dark:hover,
button.bg-dark:focus {
    background-color: rgba(68, 69, 70, 0.85) !important;
}

/*--- gradient-backgrounds --*/
.bg-primary-gradient {
    background: linear-gradient(to right, var(--primary-bg-color) 0%, #03ab57 100%) !important;
}

a.bg-primary-gradient:hover,
a.bg-primary-gradient:focus {
    background: var(--primary-bg-color) !important;
}

button.bg-primary-gradient:hover,
button.bg-primary-gradient:focus {
    background: var(--primary-bg-color) !important;
}

.bg-secondary-gradient {
    background: linear-gradient(to right bottom, #e984b1 0%, #ffa18a 100%) !important;
}

a.bg-secondary-gradient:hover,
a.bg-secondary-gradient:focus {
    background: #e984b1 !important;
}

button.bg-secondary-gradient:hover,
button.bg-secondary-gradient:focus {
    background: #e984b1 !important;
}

.bg-success-gradient {
    background: linear-gradient(to right bottom, #13bfa6 0%, #008E98 100%) !important;
}

a.bg-success-gradient:hover,
a.bg-success-gradient:focus {
    background: rgba(var(--primary-bg-color), 0.85) !important;
}

button.bg-success-gradient:hover,
button.bg-success-gradient:focus {
    background: rgba(var(--primary-bg-color), 0.85) !important;
}

.bg-info-gradient {
    background: linear-gradient(to right bottom, #59adec 0%, #2a85ca 100%) !important;
}

a.bg-info-gradient:hover,
a.bg-info-gradient:focus {
    background: rgba(89, 173, 236, 0.85) !important;
}

button.bg-info-gradient:hover,
button.bg-info-gradient:focus {
    background: rgba(89, 173, 236, 0.85) !important;
}

.bg-warning-gradient {
    background: linear-gradient(to right bottom, #e7c354 0%, #c9a22f 100%) !important;
}

a.bg-warning-gradient:hover,
a.bg-warning-gradient:focus {
    background: #FBB034 !important;
}

button.bg-warning-gradient:hover,
button.bg-warning-gradient:focus {
    background: #FBB034 !important;
}

.bg-danger-gradient {
    background-image: linear-gradient(to right bottom, #d12c47 0%, #c100a9 100%) !important;
}

a.bg-danger-gradient:hover,
a.bg-danger-gradient:focus {
    background: rgba(209, 44, 71, 0.85) !important;
}

button.bg-danger-gradient:hover,
button.bg-danger-gradient:focus {
    background: rgba(209, 44, 71, 0.85) !important;
}

.bg-purple-gradient {
    background-image: linear-gradient(to right bottom, #661fd6 0%, #0061FF 100%) !important;
}

a.bg-purple-gradient:hover,
a.bg-purple-gradient:focus {
    background: rgba(102, 31, 214, 0.85) !important;
}

button.bg-purple-gradient:hover,
button.bg-purple-gradient:focus {
    background: rgba(102, 31, 214, 0.85) !important;
}

.bg-pink-gradient {
    background-image: linear-gradient(to right bottom, #f58598 0%, #E8AA98 100%) !important;
}

a.bg-pink-gradient:hover,
a.bg-pink-gradient:focus {
    background: rgba(245, 133, 152, 0.85) !important;
}

button.bg-pink-gradient:hover,
button.bg-pink-gradient:focus {
    background: rgba(245, 133, 152, 0.85) !important;
}

.bg-teal-gradient {
    background-image: linear-gradient(to right bottom, #2bcbba 0%, #00B8D0 100%) !important;
}

a.bg-teal-gradient:hover,
a.bg-teal-gradient:focus {
    background: rgba(43, 203, 186, 0.85) !important;
}

button.bg-teal-gradient:hover,
button.bg-teal-gradient:focus {
    background: rgba(43, 203, 186, 0.85) !important;
}

.bg-light-gradient {
    background: linear-gradient(to right bottom, #868e96 0%, #474c54 100%) !important;
}

a.bg-light-gradient:hover,
a.bg-light-gradient:focus {
    background: rgba(228, 231, 236, 0.85) !important;
}

button.bg-light-gradient:hover,
button.bg-light-gradient:focus {
    background: rgba(228, 231, 236, 0.85) !important;
}

.bg-dark-gradient {
    background: linear-gradient(to right bottom, #444546 0%, #000000b8 100%) !important;
}

a.bg-dark-gradient:hover,
a.bg-dark-gradient:focus {
    background: rgba(68, 69, 70, 0.85) !important;
}

button.bg-dark-gradient:hover,
button.bg-dark-gradient:focus {
    background: rgba(68, 69, 70, 0.85) !important;
}

.bg-facebook-gradient {
    background: linear-gradient(to bottom right, #3b5998, #2b4170) !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.bg1 {
    background-color: linear-gradient(to right bottom, #163b7c 0%, #548beb 100%);
}

.bg2 {
    background-color: linear-gradient(to bottom right, #00f2fe 0%, #1e63c3 100%) !important;
}

.bg3 {
    background-color: linear-gradient(to bottom right, #f53e31, #dd4b39);
}

/*------ Background colors -------*/
.bg-purple {
    background-color: #661fd6 !important;
    color: #fff !important;
}

a.bg-purple:hover,
a.bg-purple:focus {
    background-color: rgba(102, 31, 214, 0.85) !important;
}

button.bg-purple:hover,
button.bg-purple:focus {
    background-color: rgba(102, 31, 214, 0.85) !important;
}

.bg-purple-lightest {
    background-color: rgba(102, 31, 214, 0.55) !important;
}

a.bg-purple-lightest:hover,
a.bg-purple-lightest:focus {
    background-color: rgba(102, 31, 214, 0.35) !important;
}

button.bg-purple-lightest:hover,
button.bg-purple-lightest:focus {
    background-color: rgba(102, 31, 214, 0.35) !important;
}

.bg-purple-lighter {
    background-color: rgba(102, 31, 214, 0.65) !important;
}

a.bg-purple-lighter:hover,
a.bg-purple-lighter:focus {
    background-color: rgba(102, 31, 214, 0.45) !important;
}

button.bg-purple-lighter:hover,
button.bg-purple-lighter:focus {
    background-color: rgba(102, 31, 214, 0.45) !important;
}

.bg-purple-light {
    background-color: rgba(102, 31, 214, 0.85) !important;
}

a.bg-purple-light:hover,
a.bg-purple-light:focus {
    background-color: rgba(102, 31, 214, 0.55) !important;
}

button.bg-purple-light:hover,
button.bg-purple-light:focus {
    background-color: rgba(102, 31, 214, 0.55) !important;
}

.bg-purple-dark {
    background-color: rgba(59, 8, 141, 0.55) !important;
}

a.bg-purple-dark:hover,
a.bg-purple-dark:focus {
    background-color: rgba(59, 8, 141, 0.35) !important;
}

button.bg-purple-dark:hover,
button.bg-purple-dark:focus {
    background-color: rgba(59, 8, 141, 0.35) !important;
}

.bg-purple-darker {
    background-color: rgba(59, 8, 141, 0.85) !important;
}

a.bg-purple-darker:hover,
a.bg-purple-darker:focus {
    background-color: rgba(59, 8, 141, 0.55) !important;
}

button.bg-purple-darker:hover,
button.bg-purple-darker:focus {
    background-color: rgba(59, 8, 141, 0.55) !important;
}

.bg-purple-darkest {
    background-color: #3b088d !important;
}

a.bg-purple-darkest:hover,
a.bg-purple-darkest:focus {
    background-color: rgba(59, 8, 141, 0.85) !important;
}

button.bg-purple-darkest:hover,
button.bg-purple-darkest:focus {
    background-color: rgba(59, 8, 141, 0.85) !important;
}

.bg-blue {
    background-color: #467fcf !important;
}

.bg-blue-lightest {
    background-color: rgba(70, 127, 207, 0.35) !important;
}

a.bg-blue-lightest:hover,
a.bg-blue-lightest:focus {
    background-color: rgba(70, 127, 207, 0.15) !important;
}

button.bg-blue-lightest:hover,
button.bg-blue-lightest:focus {
    background-color: rgba(70, 127, 207, 0.15) !important;
}

.bg-blue-lighter {
    background-color: rgba(70, 127, 207, 0.55) !important;
}

a.bg-blue-lighter:hover,
a.bg-blue-lighter:focus {
    background-color: rgba(70, 127, 207, 0.55) !important;
}

button.bg-blue-lighter:hover,
button.bg-blue-lighter:focus {
    background-color: rgba(70, 127, 207, 0.55) !important;
}

.bg-blue-light {
    background-color: rgba(70, 127, 207, 0.85) !important;
}

a.bg-blue-light:hover,
a.bg-blue-light:focus {
    background-color: rgba(70, 127, 207, 0.55) !important;
}

button.bg-blue-light:hover,
button.bg-blue-light:focus {
    background-color: rgba(70, 127, 207, 0.55) !important;
}

.bg-blue-dark {
    background-color: #132949 !important;
}

a.bg-blue-dark:hover,
a.bg-blue-dark:focus {
    background-color: rgba(19, 41, 73, 0.55) !important;
}

button.bg-blue-dark:hover,
button.bg-blue-dark:focus {
    background-color: rgba(19, 41, 73, 0.35) !important;
}

.bg-blue-darker {
    background-color: rgba(19, 41, 73, 0.85) !important;
}

a.bg-blue-darker:hover,
a.bg-blue-darker:focus {
    background-color: rgba(19, 41, 73, 0.55) !important;
}

button.bg-blue-darker:hover,
button.bg-blue-darker:focus {
    background-color: rgba(19, 41, 73, 0.55) !important;
}

.bg-blue-darkest {
    background-color: #132949 !important;
}

a.bg-blue-darkest:hover,
a.bg-blue-darkest:focus {
    background-color: rgba(19, 41, 73, 0.85) !important;
}

button.bg-blue-darkest:hover,
button.bg-blue-darkest:focus {
    background-color: rgba(19, 41, 73, 0.85) !important;
}

.bg-purssianblue {
    background-color: #362f71;
}

a.bg-purssianblue-lightest:hover,
a.bg-purssianblue-lightest:focus {
    background-color: rgba(54, 47, 113, 0.35) !important;
}

button.bg-purssianblue-lightest:hover,
button.bg-purssianblue-lightest:focus {
    background-color: rgba(54, 47, 113, 0.35) !important;
}

.bg-indigo-lightest {
    background-color: rgba(101, 116, 205, 0.55) !important;
}

a.bg-indigo-lightest:hover,
a.bg-indigo-lightest:focus {
    background-color: rgba(101, 116, 205, 0.35) !important;
}

button.bg-indigo-lightest:hover,
button.bg-indigo-lightest:focus {
    background-color: rgba(101, 116, 205, 0.35) !important;
}

.bg-indigo-lighter {
    background-color: rgba(101, 116, 205, 0.85) !important;
}

a.bg-indigo-lighter:hover,
a.bg-indigo-lighter:focus {
    background-color: rgba(101, 116, 205, 0.55) !important;
}

button.bg-indigo-lighter:hover,
button.bg-indigo-lighter:focus {
    background-color: rgba(101, 116, 205, 0.55) !important;
}

.bg-indigo-light {
    background-color: rgba(101, 116, 205, 0.765) !important;
}

a.bg-indigo-light:hover,
a.bg-indigo-light:focus {
    background-color: rgba(101, 116, 205, 0.45) !important;
}

button.bg-indigo-light:hover,
button.bg-indigo-light:focus {
    background-color: rgba(101, 116, 205, 0.45) !important;
}

.bg-indigo-dark {
    background-color: rgba(18, 37, 149, 0.55) !important;
}

a.bg-indigo-dark:hover,
a.bg-indigo-dark:focus {
    background-color: rgba(18, 37, 149, 0.35) !important;
}

button.bg-indigo-dark:hover,
button.bg-indigo-dark:focus {
    background-color: rgba(18, 37, 149, 0.35) !important;
}

.bg-indigo-darker {
    background-color: rgba(18, 37, 149, 0.85) !important;
}

a.bg-indigo-darker:hover,
a.bg-indigo-darker:focus {
    background-color: rgba(18, 37, 149, 0.55) !important;
}

button.bg-indigo-darker:hover,
button.bg-indigo-darker:focus {
    background-color: rgba(18, 37, 149, 0.55) !important;
}

.bg-indigo-darkest {
    background-color: #122595 !important;
}

a.bg-indigo-darkest:hover,
a.bg-indigo-darkest:focus {
    background-color: rgba(18, 37, 149, 0.85) !important;
}

button.bg-indigo-darkest:hover,
button.bg-indigo-darkest:focus {
    background-color: rgba(18, 37, 149, 0.85) !important;
}

.bg-pink-lightest {
    background-color: rgba(245, 133, 152, 0.35) !important;
}

a.bg-pink-lightest:hover,
a.bg-pink-lightest:focus {
    background-color: rgba(245, 133, 152, 0.15) !important;
}

button.bg-pink-lightest:hover,
button.bg-pink-lightest:focus {
    background-color: rgba(245, 133, 152, 0.15) !important;
}

.bg-pink-lighter {
    background-color: rgba(245, 133, 152, 0.55) !important;
}

a.bg-pink-lighter:hover,
a.bg-pink-lighter:focus {
    background-color: rgba(245, 133, 152, 0.35) !important;
}

button.bg-pink-lighter:hover,
button.bg-pink-lighter:focus {
    background-color: rgba(245, 133, 152, 0.35) !important;
}

.bg-pink-light {
    background-color: rgba(245, 133, 152, 0.85) !important;
}

a.bg-pink-light:hover,
a.bg-pink-light:focus {
    background-color: rgba(245, 133, 152, 0.55) !important;
}

button.bg-pink-light:hover,
button.bg-pink-light:focus {
    background-color: rgba(245, 133, 152, 0.55) !important;
}

.bg-pink-dark {
    background-color: rgba(243, 85, 111, 0.55) !important;
}

a.bg-pink-dark:hover,
a.bg-pink-dark:focus {
    background-color: rgba(243, 85, 111, 0.35) !important;
}

button.bg-pink-dark:hover,
button.bg-pink-dark:focus {
    background-color: rgba(243, 85, 111, 0.35) !important;
}

.bg-pink-darker {
    background-color: rgba(243, 85, 111, 0.85) !important;
}

a.bg-pink-darker:hover,
a.bg-pink-darker:focus {
    background-color: rgba(243, 85, 111, 0.35) !important;
}

button.bg-pink-darker:hover,
button.bg-pink-darker:focus {
    background-color: rgba(243, 85, 111, 0.55) !important;
}

.bg-pink-darkest {
    background-color: #f3556f !important;
}

a.bg-pink-darkest:hover,
a.bg-pink-darkest:focus {
    background-color: rgba(243, 85, 111, 0.85) !important;
}

button.bg-pink-darkest:hover,
button.bg-pink-darkest:focus {
    background-color: rgba(243, 85, 111, 0.85) !important;
}

.bg-red {
    background-color: #e32f2f !important;
}

.bg-red-lightest {
    background-color: rgba(227, 47, 47, 0.35) !important;
}

a.bg-red-lightest:hover,
a.bg-red-lightest:focus {
    background-color: rgba(227, 47, 47, 0.15) !important;
}

button.bg-red-lightest:hover,
button.bg-red-lightest:focus {
    background-color: rgba(227, 47, 47, 0.15) !important;
}

.bg-red-lighter {
    background-color: rgba(227, 47, 47, 0.55) !important;
}

a.bg-red-lighter:hover,
a.bg-red-lighter:focus {
    background-color: rgba(227, 47, 47, 0.35) !important;
}

button.bg-red-lighter:hover,
button.bg-red-lighter:focus {
    background-color: rgba(227, 47, 47, 0.35) !important;
}

.bg-red-light {
    background-color: rgba(227, 47, 47, 0.85) !important;
}

a.bg-red-light:hover,
a.bg-red-light:focus {
    background-color: rgba(227, 47, 47, 0.55) !important;
}

button.bg-red-light:hover,
button.bg-red-light:focus {
    background-color: rgba(227, 47, 47, 0.55) !important;
}

.bg-red-dark {
    background-color: rgba(163, 6, 6, 0.55) !important;
}

a.bg-red-dark:hover,
a.bg-red-dark:focus {
    background-color: rgba(163, 6, 6, 0.35) !important;
}

button.bg-red-dark:hover,
button.bg-red-dark:focus {
    background-color: rgba(163, 6, 6, 0.35) !important;
}

.bg-red-darker {
    background-color: rgba(163, 6, 6, 0.85) !important;
}

a.bg-red-darker:hover,
a.bg-red-darker:focus {
    background-color: rgba(163, 6, 6, 0.55) !important;
}

button.bg-red-darker:hover,
button.bg-red-darker:focus {
    background-color: rgba(163, 6, 6, 0.55) !important;
}

.bg-red-darkest {
    background-color: #a30606 !important;
}

a.bg-red-darkest:hover,
a.bg-red-darkest:focus {
    background-color: rgba(163, 6, 6, 0.85) !important;
}

button.bg-red-darkest:hover,
button.bg-red-darkest:focus {
    background-color: rgba(163, 6, 6, 0.85) !important;
}

.bg-orange-lightest {
    background-color: rgba(252, 115, 3, 0.35) !important;
}

a.bg-orange-lightest:hover,
a.bg-orange-lightest:focus {
    background-color: rgba(252, 115, 3, 0.15) !important;
}

button.bg-orange-lightest:hover,
button.bg-orange-lightest:focus {
    background-color: rgba(252, 115, 3, 0.15) !important;
}

.bg-orange-lighter {
    background-color: rgba(252, 115, 3, 0.55) !important;
}

a.bg-orange-lighter:hover,
a.bg-orange-lighter:focus {
    background-color: rgba(252, 115, 3, 0.35) !important;
}

button.bg-orange-lighter:hover,
button.bg-orange-lighter:focus {
    background-color: rgba(252, 115, 3, 0.35) !important;
}

.bg-orange-light {
    background-color: rgba(252, 115, 3, 0.85) !important;
}

a.bg-orange-light:hover,
a.bg-orange-light:focus {
    background-color: rgba(252, 115, 3, 0.55) !important;
}

button.bg-orange-light:hover,
button.bg-orange-light:focus {
    background-color: rgba(252, 115, 3, 0.55) !important;
}

.bg-orange-dark {
    background-color: rgba(149, 67, 0, 0.55) !important;
}

a.bg-orange-dark:hover,
a.bg-orange-dark:focus {
    background-color: rgba(149, 67, 0, 0.35) !important;
}

button.bg-orange-dark:hover,
button.bg-orange-dark:focus {
    background-color: rgba(149, 67, 0, 0.35) !important;
}

.bg-orange-darker {
    background-color: rgba(149, 67, 0, 0.85) !important;
}

a.bg-orange-darker:hover,
a.bg-orange-darker:focus {
    background-color: rgba(149, 67, 0, 0.55) !important;
}

button.bg-orange-darker:hover,
button.bg-orange-darker:focus {
    background-color: rgba(149, 67, 0, 0.55) !important;
}

.bg-orange-darkest {
    background-color: #954300 !important;
}

a.bg-orange-darkest:hover,
a.bg-orange-darkest:focus {
    background-color: rgba(149, 67, 0, 0.85) !important;
}

button.bg-orange-darkest:hover,
button.bg-orange-darkest:focus {
    background-color: rgba(149, 67, 0, 0.85) !important;
}

.bg-yellow-lightest {
    background-color: rgba(251, 176, 52, 0.35) !important;
}

a.bg-yellow-lightest:hover,
a.bg-yellow-lightest:focus {
    background-color: rgba(251, 176, 52, 0.15) !important;
}

button.bg-yellow-lightest:hover,
button.bg-yellow-lightest:focus {
    background-color: rgba(251, 176, 52, 0.15) !important;
}

.bg-yellow-lighter {
    background-color: rgba(251, 176, 52, 0.55) !important;
}

a.bg-yellow-lighter:hover,
a.bg-yellow-lighter:focus {
    background-color: rgba(251, 176, 52, 0.35) !important;
}

button.bg-yellow-lighter:hover,
button.bg-yellow-lighter:focus {
    background-color: rgba(251, 176, 52, 0.35) !important;
}

.bg-yellow-light {
    background-color: rgba(251, 176, 52, 0.85) !important;
}

a.bg-yellow-light:hover,
a.bg-yellow-light:focus {
    background-color: rgba(251, 176, 52, 0.55) !important;
}

button.bg-yellow-light:hover,
button.bg-yellow-light:focus {
    background-color: rgba(251, 176, 52, 0.55) !important;
}

.bg-yellow-dark {
    background-color: rgba(151, 93, 0, 0.55) !important;
}

a.bg-yellow-dark:hover,
a.bg-yellow-dark:focus {
    background-color: rgba(151, 93, 0, 0.35) !important;
}

button.bg-yellow-dark:hover,
button.bg-yellow-dark:focus {
    background-color: rgba(151, 93, 0, 0.35) !important;
}

.bg-yellow-darker {
    background-color: rgba(151, 93, 0, 0.85) !important;
}

a.bg-yellow-darker:hover,
a.bg-yellow-darker:focus {
    background-color: rgba(151, 93, 0, 0.55) !important;
}

button.bg-yellow-darker:hover,
button.bg-yellow-darker:focus {
    background-color: rgba(151, 93, 0, 0.55) !important;
}

.bg-yellow-darkest {
    background-color: #975d00 !important;
}

a.bg-yellow-darkest:hover,
a.bg-yellow-darkest:focus {
    background-color: rgba(151, 93, 0, 0.85) !important;
}

button.bg-yellow-darkest:hover,
button.bg-yellow-darkest:focus {
    background-color: rgba(151, 93, 0, 0.85) !important;
}

.bg-green-lightest {
    background-color: rgba(78, 204, 72, 0.35) !important;
}

a.bg-green-lightest:hover,
a.bg-green-lightest:focus {
    background-color: rgba(78, 204, 72, 0.15) !important;
}

button.bg-green-lightest:hover,
button.bg-green-lightest:focus {
    background-color: rgba(78, 204, 72, 0.15) !important;
}

.bg-green-lighter {
    background-color: rgba(78, 204, 72, 0.55) !important;
}

a.bg-green-lighter:hover,
a.bg-green-lighter:focus {
    background-color: rgba(78, 204, 72, 0.35) !important;
}

button.bg-green-lighter:hover,
button.bg-green-lighter:focus {
    background-color: rgba(78, 204, 72, 0.35) !important;
}

.bg-green-light {
    background-color: rgba(78, 204, 72, 0.85) !important;
}

a.bg-green-light:hover,
a.bg-green-light:focus {
    background-color: rgba(78, 204, 72, 0.55) !important;
}

button.bg-green-light:hover,
button.bg-green-light:focus {
    background-color: rgba(78, 204, 72, 0.55) !important;
}

.bg-green-dark {
    background-color: rgba(6, 121, 0, 0.55) !important;
}

a.bg-green-dark:hover,
a.bg-green-dark:focus {
    background-color: rgba(6, 121, 0, 0.35) !important;
}

button.bg-green-dark:hover,
button.bg-green-dark:focus {
    background-color: rgba(6, 121, 0, 0.35) !important;
}

.bg-green-darker {
    background-color: rgba(6, 121, 0, 0.85) !important;
}

a.bg-green-darker:hover,
a.bg-green-darker:focus {
    background-color: rgba(6, 121, 0, 0.55) !important;
}

button.bg-green-darker:hover,
button.bg-green-darker:focus {
    background-color: rgba(6, 121, 0, 0.55) !important;
}

.bg-green-darkest {
    background-color: #067900 !important;
}

a.bg-green-darkest:hover,
a.bg-green-darkest:focus {
    background-color: rgba(6, 121, 0, 0.85) !important;
}

button.bg-green-darkest:hover,
button.bg-green-darkest:focus {
    background-color: rgba(6, 121, 0, 0.85) !important;
}

.bg-teal-lightest {
    background-color: rgba(43, 203, 186, 0.35) !important;
}

a.bg-teal-lightest:hover,
a.bg-teal-lightest:focus {
    background-color: rgba(43, 203, 186, 0.15) !important;
}

button.bg-teal-lightest:hover,
button.bg-teal-lightest:focus {
    background-color: rgba(43, 203, 186, 0.15) !important;
}

.bg-teal-lighter {
    background-color: rgba(43, 203, 186, 0.55) !important;
}

a.bg-teal-lighter:hover,
a.bg-teal-lighter:focus {
    background-color: rgba(43, 203, 186, 0.35) !important;
}

button.bg-teal-lighter:hover,
button.bg-teal-lighter:focus {
    background-color: rgba(43, 203, 186, 0.35) !important;
}

.bg-teal-light {
    background-color: rgba(43, 203, 186, 0.85) !important;
}

a.bg-teal-light:hover,
a.bg-teal-light:focus {
    background-color: rgba(43, 203, 186, 0.55) !important;
}

button.bg-teal-light:hover,
button.bg-teal-light:focus {
    background-color: rgba(43, 203, 186, 0.55) !important;
}

.bg-teal-dark {
    background-color: rgba(0, 129, 116, 0.55) !important;
}

a.bg-teal-dark:hover,
a.bg-teal-dark:focus {
    background-color: rgba(0, 129, 116, 0.35) !important;
}

button.bg-teal-dark:hover,
button.bg-teal-dark:focus {
    background-color: rgba(0, 129, 116, 0.35) !important;
}

.bg-teal-darker {
    background-color: rgba(0, 129, 116, 0.85) !important;
}

a.bg-teal-darker:hover,
a.bg-teal-darker:focus {
    background-color: rgba(0, 129, 116, 0.55) !important;
}

button.bg-teal-darker:hover,
button.bg-teal-darker:focus {
    background-color: rgba(0, 129, 116, 0.55) !important;
}

.bg-teal-darkest {
    background-color: #008174 !important;
}

a.bg-teal-darkest:hover,
a.bg-teal-darkest:focus {
    background-color: rgba(0, 129, 116, 0.85) !important;
}

button.bg-teal-darkest:hover,
button.bg-teal-darkest:focus {
    background-color: rgba(0, 129, 116, 0.85) !important;
}

.bg-cyan-lightest {
    background-color: rgba(23, 162, 184, 0.35) !important;
}

a.bg-cyan-lightest:hover,
a.bg-cyan-lightest:focus {
    background-color: rgba(23, 162, 184, 0.15) !important;
}

button.bg-cyan-lightest:hover,
button.bg-cyan-lightest:focus {
    background-color: rgba(23, 162, 184, 0.15) !important;
}

.bg-cyan-lighter {
    background-color: rgba(23, 162, 184, 0.55) !important;
}

a.bg-cyan-lighter:hover,
a.bg-cyan-lighter:focus {
    background-color: rgba(23, 162, 184, 0.35) !important;
}

button.bg-cyan-lighter:hover,
button.bg-cyan-lighter:focus {
    background-color: rgba(23, 162, 184, 0.35) !important;
}

.bg-cyan-light {
    background-color: rgba(23, 162, 184, 0.85) !important;
}

a.bg-cyan-light:hover,
a.bg-cyan-light:focus {
    background-color: rgba(23, 162, 184, 0.55) !important;
}

button.bg-cyan-light:hover,
button.bg-cyan-light:focus {
    background-color: rgba(23, 162, 184, 0.55) !important;
}

.bg-cyan-dark {
    background-color: rgba(0, 119, 138, 0.55) !important;
}

a.bg-cyan-dark:hover,
a.bg-cyan-dark:focus {
    background-color: rgba(0, 119, 138, 0.35) !important;
}

button.bg-cyan-dark:hover,
button.bg-cyan-dark:focus {
    background-color: rgba(0, 119, 138, 0.35) !important;
}

.bg-cyan-darker {
    background-color: rgba(0, 119, 138, 0.85) !important;
}

a.bg-cyan-darker:hover,
a.bg-cyan-darker:focus {
    background-color: rgba(0, 119, 138, 0.55) !important;
}

button.bg-cyan-darker:hover,
button.bg-cyan-darker:focus {
    background-color: rgba(0, 119, 138, 0.55) !important;
}

.bg-cyan-darkest {
    background-color: #00778a !important;
}

a.bg-cyan-darkest:hover,
a.bg-cyan-darkest:focus {
    background-color: rgba(0, 119, 138, 0.85) !important;
}

button.bg-cyan-darkest:hover,
button.bg-cyan-darkest:focus {
    background-color: rgba(0, 119, 138, 0.85) !important;
}

.bg-white-lightest {
    background-color: rgba(255, 255, 255, 0.35) !important;
}

a.bg-white-lightest:hover,
a.bg-white-lightest:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

button.bg-white-lightest:hover,
button.bg-white-lightest:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.bg-white-lighter {
    background-color: rgba(255, 255, 255, 0.55) !important;
}

a.bg-white-lighter:hover,
a.bg-white-lighter:focus {
    background-color: rgba(255, 255, 255, 0.35) !important;
}

button.bg-white-lighter:hover,
button.bg-white-lighter:focus {
    background-color: rgba(255, 255, 255, 0.35) !important;
}

.bg-white-light {
    background-color: rgba(255, 255, 255, 0.85) !important;
}

a.bg-white-light:hover,
a.bg-white-light:focus {
    background-color: rgba(255, 255, 255, 0.55) !important;
}

button.bg-white-light:hover,
button.bg-white-light:focus {
    background-color: rgba(255, 255, 255, 0.55) !important;
}

.bg-white-dark {
    background-color: rgba(128, 128, 128, 0.55) !important;
}

a.bg-white-dark:hover,
a.bg-white-dark:focus {
    background-color: rgba(128, 128, 128, 0.35) !important;
}

button.bg-white-dark:hover,
button.bg-white-dark:focus {
    background-color: rgba(128, 128, 128, 0.35) !important;
}

.bg-white-darker {
    background-color: rgba(128, 128, 128, 0.85) !important;
}

a.bg-white-darker:hover,
a.bg-white-darker:focus {
    background-color: rgba(128, 128, 128, 0.55) !important;
}

button.bg-white-darker:hover,
button.bg-white-darker:focus {
    background-color: rgba(128, 128, 128, 0.55) !important;
}

.bg-white-darkest {
    background-color: #808080 !important;
}

a.bg-white-darkest:hover,
a.bg-white-darkest:focus {
    background-color: rgba(128, 128, 128, 0.85) !important;
}

button.bg-white-darkest:hover,
button.bg-white-darkest:focus {
    background-color: rgba(128, 128, 128, 0.85) !important;
}

.bg-gray-lightest {
    background-color: rgba(134, 142, 150, 0.35) !important;
}

a.bg-gray-lightest:hover,
a.bg-gray-lightest:focus {
    background-color: rgba(134, 142, 150, 0.15) !important;
}

button.bg-gray-lightest:hover,
button.bg-gray-lightest:focus {
    background-color: rgba(134, 142, 150, 0.15) !important;
}

.bg-gray-lighter {
    background-color: rgba(134, 142, 150, 0.55) !important;
}

a.bg-gray-lighter:hover,
a.bg-gray-lighter:focus {
    background-color: rgba(134, 142, 150, 0.35) !important;
}

button.bg-gray-lighter:hover,
button.bg-gray-lighter:focus {
    background-color: rgba(134, 142, 150, 0.35) !important;
}

.bg-gray-light {
    background-color: rgba(134, 142, 150, 0.85) !important;
}

a.bg-gray-light:hover,
a.bg-gray-light:focus {
    background-color: rgba(134, 142, 150, 0.55) !important;
}

button.bg-gray-light:hover,
button.bg-gray-light:focus {
    background-color: rgba(134, 142, 150, 0.55) !important;
}

.bg-gray-dark {
    background-color: rgba(68, 69, 70, 0.55) !important;
    background-color: #343a40 !important;
}

a.bg-gray-dark:hover,
a.bg-gray-dark:focus {
    background-color: rgba(68, 69, 70, 0.35) !important;
}

button.bg-gray-dark:hover,
button.bg-gray-dark:focus {
    background-color: rgba(68, 69, 70, 0.35) !important;
}

.bg-gray-darker {
    background-color: rgba(68, 69, 70, 0.85) !important;
}

a.bg-gray-darker:hover,
a.bg-gray-darker:focus {
    background-color: rgba(68, 69, 70, 0.55) !important;
}

button.bg-gray-darker:hover,
button.bg-gray-darker:focus {
    background-color: rgba(68, 69, 70, 0.55) !important;
}

.bg-gray-darkest {
    background-color: #444546 !important;
}

a.bg-gray-darkest:hover,
a.bg-gray-darkest:focus {
    background-color: rgba(68, 69, 70, 0.85) !important;
}

button.bg-gray-darkest:hover,
button.bg-gray-darkest:focus {
    background-color: rgba(68, 69, 70, 0.85) !important;
}

.bg-azure-lightest {
    background-color: rgba(69, 170, 242, 0.35) !important;
}

a.bg-azure-lightest:hover,
a.bg-azure-lightest:focus {
    background-color: rgba(69, 170, 242, 0.15) !important;
}

button.bg-azure-lightest:hover,
button.bg-azure-lightest:focus {
    background-color: rgba(69, 170, 242, 0.15) !important;
}

.bg-azure-lighter {
    background-color: rgba(69, 170, 242, 0.55) !important;
}

a.bg-azure-lighter:hover,
a.bg-azure-lighter:focus {
    background-color: rgba(69, 170, 242, 0.35) !important;
}

button.bg-azure-lighter:hover,
button.bg-azure-lighter:focus {
    background-color: rgba(69, 170, 242, 0.35) !important;
}

.bg-azure-light {
    background-color: rgba(69, 170, 242, 0.85) !important;
}

a.bg-azure-light:hover,
a.bg-azure-light:focus {
    background-color: rgba(69, 170, 242, 0.55) !important;
}

button.bg-azure-light:hover,
button.bg-azure-light:focus {
    background-color: rgba(69, 170, 242, 0.55) !important;
}

.bg-azure-dark {
    background-color: rgba(69, 170, 242, 0.55) !important;
}

a.bg-azure-dark:hover,
a.bg-azure-dark:focus {
    background-color: rgba(69, 170, 242, 0.35) !important;
}

button.bg-azure-dark:hover,
button.bg-azure-dark:focus {
    background-color: rgba(69, 170, 242, 0.35) !important;
}

.bg-azure-darker {
    background-color: rgba(69, 170, 242, 0.85) !important;
}

a.bg-azure-darker:hover,
a.bg-azure-darker:focus {
    background-color: rgba(69, 170, 242, 0.55) !important;
}

button.bg-azure-darker:hover,
button.bg-azure-darker:focus {
    background-color: rgba(69, 170, 242, 0.55) !important;
}

.bg-azure-darkest {
    background-color: #005694 !important;
}

a.bg-azure-darkest:hover,
a.bg-azure-darkest:focus {
    background-color: rgba(69, 170, 242, 0.85) !important;
}

button.bg-azure-darkest:hover,
button.bg-azure-darkest:focus {
    background-color: rgba(69, 170, 242, 0.85) !important;
}

.bg-lime-lightest {
    background-color: rgba(123, 210, 53, 0.35) !important;
}

a.bg-lime-lightest:hover,
a.bg-lime-lightest:focus {
    background-color: rgba(123, 210, 53, 0.15) !important;
}

button.bg-lime-lightest:hover,
button.bg-lime-lightest:focus {
    background-color: rgba(123, 210, 53, 0.15) !important;
}

.bg-lime-lighter {
    background-color: rgba(123, 210, 53, 0.55) !important;
}

a.bg-lime-lighter:hover,
a.bg-lime-lighter:focus {
    background-color: rgba(123, 210, 53, 0.35) !important;
}

button.bg-lime-lighter:hover,
button.bg-lime-lighter:focus {
    background-color: rgba(123, 210, 53, 0.35) !important;
}

.bg-lime-light {
    background-color: rgba(123, 210, 53, 0.85) !important;
}

a.bg-lime-light:hover,
a.bg-lime-light:focus {
    background-color: rgba(123, 210, 53, 0.55) !important;
}

button.bg-lime-light:hover,
button.bg-lime-light:focus {
    background-color: rgba(123, 210, 53, 0.55) !important;
}

.bg-lime-dark {
    background-color: rgba(57, 128, 0, 0.55) !important;
}

a.bg-lime-dark:hover,
a.bg-lime-dark:focus {
    background-color: rgba(57, 128, 0, 0.35) !important;
}

button.bg-lime-dark:hover,
button.bg-lime-dark:focus {
    background-color: rgba(57, 128, 0, 0.35) !important;
}

.bg-lime-darker {
    background-color: rgba(57, 128, 0, 0.85) !important;
}

a.bg-lime-darker:hover,
a.bg-lime-darker:focus {
    background-color: rgba(57, 128, 0, 0.55) !important;
}

button.bg-lime-darker:hover,
button.bg-lime-darker:focus {
    background-color: rgba(57, 128, 0, 0.55) !important;
}

.bg-lime-darkest {
    background-color: #398000 !important;
}

a.bg-lime-darkest:hover,
a.bg-lime-darkest:focus {
    background-color: rgba(57, 128, 0, 0.85) !important;
}

button.bg-lime-darkest:hover,
button.bg-lime-darkest:focus {
    background-color: rgba(57, 128, 0, 0.85) !important;
}

.bg-orange {
    background-color: #fc7303ab !important;
}

.bg-indigo {
    background-color: #6574cd;
    color: #fff !important;
}

.bg-purple-gradient {
    background-color: linear-gradient(to bottom right, #661fd6 0%, rgba(102, 31, 214, 0.55) 100%) !important;
    color: #fff !important;
}

a.bg-purple-gradient:hover,
a.bg-purple-gradient:focus {
    background-color: rgba(102, 31, 214, 0.35) !important;
}

button.bg-purple-gradient:hover,
button.bg-purple-gradient:focus {
    background-color: rgba(102, 31, 214, 0.35) !important;
}

.bg-pink {
    background-color: #f58598 !important;
    color: #fff !important;
}

.bg-darkpink {
    background-color: rgba(243, 85, 111, 0.55) !important;
    color: #fff !important;
}

.bg-red-gradient {
    background-color: linear-gradient(to bottom right, #e32f2f 0%, rgba(227, 47, 47, 0.55) 100%);
    color: #fff !important;
}

a.bg-red:hover,
a.bg-red:focus {
    background-color: rgba(102, 31, 214, 0.35) !important;
}

button.bg-red:hover,
button.bg-red:focus {
    background-color: rgba(102, 31, 214, 0.35) !important;
}

.bg-orange {
    background-color: #fc7303;
    color: #fff !important;
}

.bg-yellow-1 {
    background-color: #FBB034;
    color: #fff !important;
}

.bg-yellow {
    background-color: #FBB034;
    color: #fff !important;
}

.bg-green {
    background-color: #4ecc48;
    color: #fff !important;
}

.bg-teal {
    background-color: #2bcbba !important;
}

.bg-cyan {
    background-color: #17a2b8 !important;
    color: #fff !important;
}

.bg-gray {
    background-color: #868e96 !important;
}

.bg-gray-100 {
    background-color: #f9f9fb !important;
    color: #495057 !important;
}

.bg-gray-200 {
    background-color: #f0f0f8 !important;
    color: #495057 !important;
}

.bg-gray-300 {
    background-color: #e1e1ef !important;
    color: #495057 !important;
}

.bg-gray-400 {
    background-color: #d6d6e6 !important;
    color: #495057 !important;
}

.bg-gray-500 {
    background-color: #949eb7 !important;
}

.bg-gray-600 {
    background-color: #7987a1 !important;
}

.bg-gray-700 {
    background-color: #4d5875 !important;
}

.bg-gray-700 {
    background-color: #4d5875 !important;
}

.bg-gray-800 {
    background-color: #383853 !important;
}

.bg-gray-900 {
    background-color: #323251 !important;
}

.bg-azure {
    background-color: #45aaf2;
}

.bg-lime {
    background-color: #7bd235;
}

.bg-round {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    position: absolute;
}

.bg-square {
    color: #fff;
    background-color: #868e96;
    display: inline-block;
    min-width: 2rem;
    height: 2rem;
    padding: 0.5rem 0.25rem;
    text-align: center;
    border-radius: 3px;
    font-weight: 600;
}

.bg-google-plus {
    background-color: #dd4b39;
}

.bg-pinterest {
    background-color: linear-gradient(to right bottom, #c51629 0%, #bd081c 100%);
}

.bg-dribbble {
    background-color: linear-gradient(to bottom right, #ea4c89, #c93764) !important;
}

.bg-google {
    background-color: linear-gradient(to bottom right, #e64522, #c33219) !important;
    color: #fff;
}

/*--bg colors--*/
.bg-primary {
    background-color: var(--primary-bg-color) !important;
}

a.bg-primary:hover,
a.bg-primary:focus {
    background-color: rgba(var(--primary-bg-color), 0.85) !important;
}

button.bg-primary:hover,
button.bg-primary:focus {
    background-color: rgba(var(--primary-bg-color), 0.85) !important;
}

.bg-primary-lightest {
    background-color: var(--primary03) !important;
}

a.bg-primary-lightest:hover,
a.bg-primary-lightest:focus {
    background-color: var(--primary02) !important;
}

button.bg-primary-lightest:hover,
button.bg-primary-lightest:focus {
    background-color: var(--primary02) !important;
}

.bg-primary-lighter {
    background-color: rgba(var(--primary-bg-color), 0.55) !important;
}

a.bg-primary-lighter:hover,
a.bg-primary-lighter:focus {
    background-color: rgba(var(--primary-bg-color), 0.35) !important;
}

button.bg-primary-lighter:hover,
button.bg-primary-lighter:focus {
    background-color: rgba(var(--primary-bg-color), 0.35) !important;
}

.bg-primary-light {
    background-color: rgba(var(--primary-bg-color), 0.85) !important;
}

a.bg-primary-light:hover,
a.bg-primary-light:focus {
    background-color: rgba(var(--primary-bg-color), 0.55) !important;
}

button.bg-primary-light:hover,
button.bg-primary-light:focus {
    background-color: rgba(var(--primary-bg-color), 0.55) !important;
}

.bg-primary-dark {
    background-color: rgba(var(--primary-bg-color), 0.55) !important;
}

a.bg-primary-dark:hover,
a.bg-primary-dark:focus {
    background-color: rgba(var(--primary-bg-color), 0.35) !important;
}

button.bg-primary-dark:hover,
button.bg-primary-dark:focus {
    background-color: rgba(var(--primary-bg-color), 0.35) !important;
}

.bg-primary-darker {
    background-color: rgba(var(--primary-bg-color), 0.85) !important;
}

a.bg-primary-darker:hover,
a.bg-primary-darker:focus {
    background-color: rgba(var(--primary-bg-color), 0.55) !important;
}

button.bg-primary-darker:hover,
button.bg-primary-darker:focus {
    background-color: rgba(var(--primary-bg-color), 0.55) !important;
}

.bg-primary-darkest {
    background-color: var(--primary-bg-color) !important;
}

a.bg-primary-darkest:hover,
a.bg-primary-darkest:focus {
    background-color: rgba(var(--primary-bg-color), 0.85) !important;
}

button.bg-primary-darkest:hover,
button.bg-primary-darkest:focus {
    background-color: rgba(var(--primary-bg-color), 0.85) !important;
}

.bg-secondary {
    background-color: #e984b1 !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus {
    background-color: rgba(233, 132, 177, 0.85) !important;
}

button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: rgba(233, 132, 177, 0.85) !important;
}

.bg-secondary-lightest {
    background-color: rgba(233, 132, 177, 0.35) !important;
}

a.bg-secondary-lightest:hover,
a.bg-secondary-lightest:focus {
    background-color: rgba(233, 132, 177, 0.15) !important;
}

button.bg-secondary-lightest:hover,
button.bg-secondary-lightest:focus {
    background-color: rgba(233, 132, 177, 0.15) !important;
}

.bg-secondary-lighter {
    background-color: rgba(233, 132, 177, 0.55) !important;
}

a.bg-secondary-lighter:hover,
a.bg-secondary-lighter:focus {
    background-color: rgba(233, 132, 177, 0.35) !important;
}

button.bg-secondary-lighter:hover,
button.bg-secondary-lighter:focus {
    background-color: rgba(233, 132, 177, 0.35) !important;
}

.bg-secondary-light {
    background-color: rgba(233, 132, 177, 0.85) !important;
}

a.bg-secondary-light:hover,
a.bg-secondary-light:focus {
    background-color: rgba(233, 132, 177, 0.55) !important;
}

button.bg-secondary-light:hover,
button.bg-secondary-light:focus {
    background-color: rgba(233, 132, 177, 0.55) !important;
}

.bg-secondary-dark {
    background-color: rgba(211, 40, 117, 0.55) !important;
}

a.bg-secondary-dark:hover,
a.bg-secondary-dark:focus {
    background-color: rgba(211, 40, 117, 0.35) !important;
}

button.bg-secondary-dark:hover,
button.bg-secondary-dark:focus {
    background-color: rgba(211, 40, 117, 0.35) !important;
}

.bg-secondary-darker {
    background-color: rgba(211, 40, 117, 0.85) !important;
}

a.bg-secondary-darker:hover,
a.bg-secondary-darker:focus {
    background-color: rgba(211, 40, 117, 0.55) !important;
}

button.bg-secondary-darker:hover,
button.bg-secondary-darker:focus {
    background-color: rgba(211, 40, 117, 0.55) !important;
}

.bg-secondary-darkest {
    background-color: #d32875 !important;
}

a.bg-secondary-darkest:hover,
a.bg-secondary-darkest:focus {
    background-color: rgba(211, 40, 117, 0.85) !important;
}

button.bg-secondary-darkest:hover,
button.bg-secondary-darkest:focus {
    background-color: rgba(211, 40, 117, 0.85) !important;
}

.bg-teritary {
    background-color: #59adec !important;
}

a.bg-teritary:hover,
a.bg-teritary:focus {
    background-color: rgba(89, 173, 236, 0.85) !important;
}

button.bg-teritary:hover,
button.bg-teritary:focus {
    background-color: rgba(89, 173, 236, 0.85) !important;
}

.bg-teritary-lightest {
    background-color: rgba(89, 173, 236, 0.35) !important;
}

a.bg-teritary-lightest:hover,
a.bg-teritary-lightest:focus {
    background-color: rgba(89, 173, 236, 0.15) !important;
}

button.bg-teritary-lightest:hover,
button.bg-teritary-lightest:focus {
    background-color: rgba(89, 173, 236, 0.15) !important;
}

.bg-teritary-lighter {
    background-color: rgba(89, 173, 236, 0.55) !important;
}

a.bg-teritary-lighter:hover,
a.bg-teritary-lighter:focus {
    background-color: rgba(89, 173, 236, 0.35) !important;
}

button.bg-teritary-lighter:hover,
button.bg-teritary-lighter:focus {
    background-color: rgba(89, 173, 236, 0.35) !important;
}

.bg-teritary-light {
    background-color: rgba(89, 173, 236, 0.85) !important;
}

a.bg-teritary-light:hover,
a.bg-teritary-light:focus {
    background-color: rgba(89, 173, 236, 0.55) !important;
}

button.bg-teritary-light:hover,
button.bg-teritary-light:focus {
    background-color: rgba(89, 173, 236, 0.55) !important;
}

.bg-teritary-dark {
    background-color: rgba(42, 133, 202, 0.55) !important;
}

a.bg-teritary-dark:hover,
a.bg-teritary-dark:focus {
    background-color: rgba(42, 133, 202, 0.35) !important;
}

button.bg-teritary-dark:hover,
button.bg-teritary-dark:focus {
    background-color: rgba(42, 133, 202, 0.35) !important;
}

.bg-teritary-darker {
    background-color: rgba(42, 133, 202, 0.85) !important;
}

a.bg-teritary-darker:hover,
a.bg-teritary-darker:focus {
    background-color: rgba(42, 133, 202, 0.55) !important;
}

button.bg-teritary-darker:hover,
button.bg-teritary-darker:focus {
    background-color: rgba(42, 133, 202, 0.55) !important;
}

.bg-teritary-darkest {
    background-color: #2a85ca !important;
}

a.bg-teritary-darkest:hover,
a.bg-teritary-darkest:focus {
    background-color: rgba(42, 133, 202, 0.85) !important;
}

button.bg-teritary-darkest:hover,
button.bg-teritary-darkest:focus {
    background-color: rgba(42, 133, 202, 0.85) !important;
}

.bg-custom-yellow {
    background-color: #e7c354 !important;
}

a.bg-custom-yellow:hover,
a.bg-custom-yellow:focus {
    background-color: rgba(231, 195, 84, 0.85) !important;
}

button.bg-custom-yellow:hover,
button.bg-custom-yellow:focus {
    background-color: rgba(231, 195, 84, 0.85) !important;
}

.bg-custom-yellow-lightest {
    background-color: rgba(231, 195, 84, 0.35) !important;
}

a.bg-custom-yellow-lightest:hover,
a.bg-custom-yellow-lightest:focus {
    background-color: rgba(231, 195, 84, 0.15) !important;
}

button.bg-custom-yellow-lightest:hover,
button.bg-custom-yellow-lightest:focus {
    background-color: rgba(231, 195, 84, 0.15) !important;
}

.bg-custom-yellow-lighter {
    background-color: rgba(231, 195, 84, 0.55) !important;
}

a.bg-custom-yellow-lighter:hover,
a.bg-custom-yellow-lighter:focus {
    background-color: rgba(231, 195, 84, 0.35) !important;
}

button.bg-custom-yellow-lighter:hover,
button.bg-custom-yellow-lighter:focus {
    background-color: rgba(231, 195, 84, 0.35) !important;
}

.bg-custom-yellow-light {
    background-color: rgba(231, 195, 84, 0.85) !important;
}

a.bg-custom-yellow-light:hover,
a.bg-custom-yellow-light:focus {
    background-color: rgba(231, 195, 84, 0.55) !important;
}

button.bg-custom-yellow-light:hover,
button.bg-custom-yellow-light:focus {
    background-color: rgba(231, 195, 84, 0.55) !important;
}

.bg-custom-yellow-dark {
    background-color: rgba(201, 162, 47, 0.55) !important;
}

a.bg-custom-yellow-dark:hover,
a.bg-custom-yellow-dark:focus {
    background-color: rgba(201, 162, 47, 0.35) !important;
}

button.bg-custom-yellow-dark:hover,
button.bg-custom-yellow-dark:focus {
    background-color: rgba(201, 162, 47, 0.35) !important;
}

.bg-custom-yellow-darker {
    background-color: rgba(201, 162, 47, 0.85) !important;
}

a.bg-custom-yellow-darker:hover,
a.bg-custom-yellow-darker:focus {
    background-color: rgba(201, 162, 47, 0.55) !important;
}

button.bg-custom-yellow-darker:hover,
button.bg-custom-yellow-darker:focus {
    background-color: rgba(201, 162, 47, 0.55) !important;
}

.bg-custom-yellow-darkest {
    background-color: #c9a22f !important;
}

a.bg-custom-yellow-darkest:hover,
a.bg-custom-yellow-darkest:focus {
    background-color: rgba(201, 162, 47, 0.85) !important;
}

button.bg-custom-yellow-darkest:hover,
button.bg-custom-yellow-darkest:focus {
    background-color: rgba(201, 162, 47, 0.85) !important;
}

/*--bg-transparents--*/
.bg-pink-transparent {
    background-color: rgba(245, 133, 152, 0.15) !important;
}

.bg-purple-transparent {
    background-color: rgba(102, 31, 214, 0.15) !important;
}

.bg-dark-transparent {
    background-color: rgba(52, 58, 64, 0.15) !important;
}

.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.bg-primary-transparent {
    background-color: var(--primary02) !important;
}

.bg-secondary-transparent {
    background-color: rgba(233, 132, 177, 0.15) !important;
}

.bg-success-transparent {
    background-color: rgba(19, 191, 166, 0.15) !important;
}

.bg-warning-transparent {
    background-color: rgba(231, 195, 84, 0.15) !important;
}

.bg-danger-transparent {
    background-color: rgba(209, 44, 71, 0.15) !important;
}

.bg-info-transparent {
    background-color: rgba(89, 173, 236, 0.15) !important;
}

.bg-teritary-transparent {
    background-color: rgba(89, 173, 236, 0.15) !important;
}

.bg-custom-yellow-transparent {
    background-color: rgba(231, 195, 84, 0.15) !important;
}

.bg-light-transparent {
    background-color: rgba(134, 142, 150, 0.15) !important;
}

/*--Box-shadow--*/
.shadow-primary {
    box-shadow: 0 7px 30px var(--primary02) !important;
}

.shadow-secondary {
    box-shadow: 0 7px 30px rgba(233, 132, 177, 0.2) !important;
}

.shadow-teritary {
    box-shadow: 0 7px 30px rgba(89, 173, 236, 0.2) !important;
}

.shadow-warning {
    box-shadow: 0 7px 30px rgba(231, 195, 84, 0.2) !important;
}

.shadow-custom-yellow {
    box-shadow: 0 7px 30px rgba(231, 195, 84, 0.2) !important;
}

.shadow-info {
    box-shadow: 0 7px 30px rgba(89, 173, 236, 0.2) !important;
}

.shadow-success {
    box-shadow: 0 7px 30px rgba(19, 191, 166, 0.2) !important;
}

.shadow-danger {
    box-shadow: 0 7px 30px rgba(209, 44, 71, 0.2) !important;
}

.shadow-default {
    box-shadow: 0 0 2px 2px rgba(246, 244, 251, 0.2) !important;
}

.box-shadow-primary {
    box-shadow: 0 7px 30px var(--primary02) !important;
}

.box-shadow-secondary {
    box-shadow: 0 7px 30px rgba(233, 132, 177, 0.2) !important;
}

.box-shadow-teritary {
    box-shadow: 0 7px 30px rgba(89, 173, 236, 0.2) !important;
}

.box-shadow-warning {
    box-shadow: 0 7px 30px rgba(231, 195, 84, 0.2) !important;
}

.box-shadow-custom-yellow {
    box-shadow: 0 7px 30px rgba(231, 195, 84, 0.2) !important;
}

.box-shadow-info {
    box-shadow: 0 7px 30px rgba(89, 173, 236, 0.2) !important;
}

.box-shadow-success {
    box-shadow: 0 7px 30px rgba(19, 191, 166, 0.2) !important;
}

.box-shadow-danger {
    box-shadow: 0 7px 30px rgba(209, 44, 71, 0.2) !important;
}

.box-shadow-default {
    box-shadow: 0 3px 15px rgba(246, 244, 251, 0.2) !important;
}

.box-shadow-0 {
    box-shadow: none !important;
}

.primary .pricing-divider {
    padding: 1em 0 4em;
    position: relative;
}

.secondary .pricing-divider {
    background-color: linear-gradient(to bottom right, #f1bf64 0%, #f71d36 100%) !important;
    padding: 1em 0 4em;
    position: relative;
}

.info .pricing-divider {
    background-color: linear-gradient(to bottom right, #529efa 0%, #0774f8 100%) !important;
    padding: 1em 0 4em;
    position: relative;
}

.success .pricing-divider {
    background-color: linear-gradient(to bottom right, #62fb62 0%, #21a544 100%) !important;
    padding: 1em 0 4em;
    position: relative;
}

/*--- text bold colors ---*/
.primary b {
    color: rgba(var(--primary-bg-color), 0.75);
}

.secondary b {
    color: rgba(211, 40, 117, 0.75);
}

.info b {
    color: rgba(42, 133, 202, 0.75);
}

.teritary b {
    color: rgba(42, 133, 202, 0.75);
}

.success b {
    color: rgba(42, 133, 202, 0.75);
}

.bg-default {
    background-color: #f6f4fb;
    color: #000;
}

.bg-white-1 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white-2 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-white-3 {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-white-4 {
    background-color: rgba(255, 255, 255, 0.4);
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.5);
}

.bg-white-6 {
    background-color: rgba(255, 255, 255, 0.6);
}

.bg-white-7 {
    background-color: rgba(255, 255, 255, 0.7);
}

.bg-white-8 {
    background-color: rgba(255, 255, 255, 0.8);
}

.bg-white-9 {
    background-color: rgba(255, 255, 255, 0.9);
}

.bg-black-1 {
    background-color: rgba(0, 0, 0, 0.1);
}

.bg-black-2 {
    background-color: rgba(0, 0, 0, 0.2);
}

.bg-black-3 {
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-black-4 {
    background-color: rgba(0, 0, 0, 0.4);
}

.bg-black-5 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-black-6 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-black-7 {
    background-color: rgba(0, 0, 0, 0.7);
}

.bg-black-8 {
    background-color: rgba(0, 0, 0, 0.8);
}

.bg-black-9 {
    background: rgba(0, 0, 0, 0.9);
}

.border {
    border: 1px solid #eaedf1 !important;
}

.border-top {
    border-top: 1px solid #eaedf1 !important;
}

.border-end {
    border-right: 1px solid #eaedf1 !important;
}

.border-bottom {
    border-bottom: 1px solid #eaedf1 !important;
}

.border-start {
    border-left: 1px solid #eaedf1 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-end-0 {
    border-right: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-start-0 {
    border-left: 0 !important;
}

.border-x-0 {
    border-left: 0 !important;
    border-right: 0 !important;
}

.border-y-0 {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.border-secondary {
    border-color: #e984b1 !important;
}

.border-success {
    border-color: #13bfa6 !important;
}

.border-info {
    border-color: #59adec !important;
}

.border-warning {
    border-color: #e7c354 !important;
}

.border-danger {
    border-color: #d12c47 !important;
}

.border-teal {
    border-color: #2bcbba !important;
}

.border-pink {
    border-color: #f58598 !important;
}

.border-orange {
    border-color: #fc7303 !important;
}

.border-purple {
    border-color: #661fd6 !important;
}

.border-light {
    border-color: #e4e7ecc5 !important;
}

.border-gray-100 {
    border-color: #f9f9fb !important;
}

.border-gray-200 {
    border-color: #f0f0f8 !important;
}

.border-gray-300 {
    border-color: #e1e1ef !important;
}

.border-gray-400 {
    border-color: #d6d6e6 !important;
}

.border-gray-500 {
    border-color: #949eb7 !important;
}

.border-gray-600 {
    border-color: #7987a1 !important;
}

.border-gray-700 {
    border-color: #4d5875 !important;
}

.border-gray-800 {
    border-color: #383853 !important;
}

.border-gray-900 {
    border-color: #323251 !important;
}

.border-transparent {
    border: 1px solid transparent !important;
}

.border-dark {
    border-color: #343a40 !important;
}

.border-white {
    border-color: #fff !important;
}

.border-primary {
    border: 1px solid var(--primary-bg-color) !important;
}

.border-secondary {
    border: 1px solid #e984b1 !important;
}

.border-teritary {
    border: 1px solid #59adec;
}

.border-custom-yellow {
    border: 1px solid #e7c354;
}

.br-100 {
    border-radius: 100% !important;
}

.br-7 {
    border-radius: 7px;
}

.br-5 {
    border-radius: 5px;
}

.br-tl-5 {
    border-top-left-radius: 5px !important;
}

.br-bl-5 {
    border-bottom-left-radius: 5px !important;
}

.br-tr-5 {
    border-top-right-radius: 5px !important;
}

.br-br-5 {
    border-bottom-right-radius: 5px !important;
}

.br-tl-4 {
    border-top-left-radius: 4px !important;
}

.br-bl-4 {
    border-bottom-left-radius: 4px !important;
}

.br-tr-4 {
    border-top-right-radius: 4px !important;
}

.br-br-4 {
    border-bottom-right-radius: 4px !important;
}

.br-tl-7 {
    border-top-left-radius: 7px !important;
}

.br-bl-7 {
    border-bottom-left-radius: 7px !important;
}

.br-tr-7 {
    border-top-right-radius: 7px !important;
}

.br-br-7 {
    border-bottom-right-radius: 7px !important;
}

.br-tl-0 {
    border-top-left-radius: 0px !important;
}

.br-bl-0 {
    border-bottom-left-radius: 0px !important;
}

.br-tr-0 {
    border-top-right-radius: 0px !important;
}

.br-br-0 {
    border-bottom-right-radius: 0px !important;
}

.br-0 {
    border-radius: 0 !important;
}

.noborder {
    border-radius: 0;
}

.brround {
    border-radius: 26% !important;
}

.bradius {
    border-radius: 25%;
}

.border-danger {
    border: 2px solid;
}

.border-end-1 {
    border-right: 1px solid #d5dce3;
}

.rounded {
    border-radius: 50% !important;
}

.rounded-top {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}

.rounded-end {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.rounded-bottom {
    border-bottom-right-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.rounded-start {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.border-dotted {
    border: 2px dotted;
}

.border-solid {
    border: 2px solid;
}

.border-bottom-primary {
    border-bottom-color: var(--primary-bg-color) !important;
}

.border-bottom-secondary {
    border-bottom-color: #e984b1 !important;
}

.border-bottom-success {
    border-bottom-color: #13bfa6 !important;
}

.border-bottom-info {
    border-bottom-color: #59adec !important;
}

.border-bottom-warning {
    border-bottom-color: #e7c354 !important;
}

.border-bottom-danger {
    border-bottom-color: #d12c47 !important;
}

.border-bottom-dark {
    border-bottom-color: #444546 !important;
}

.border-bottom-light {
    border-bottom-color: #e4e7ecc5 !important;
}

.border-bottom-primary-light {
    border-bottom-color: rgba(var(--primary-bg-color), 0.25) !important;
}

.border-bottom-secondary-light {
    border-bottom-color: rgba(233, 132, 177, 0.25) !important;
}

.border-bottom-success-light {
    border-bottom-color: rgba(19, 191, 166, 0.25) !important;
}

.border-bottom-info-light {
    border-bottom-color: rgba(89, 173, 236, 0.25) !important;
}

.border-bottom-warning-light {
    border-bottom-color: rgba(231, 195, 84, 0.25) !important;
}

.border-bottom-danger-light {
    border-bottom-color: rgba(209, 44, 71, 0.25) !important;
}

.border-bottom-dark-light {
    border-bottom-color: rgba(68, 69, 70, 0.25) !important;
}

.border-bottom-light-light {
    border-bottom-color: rgba(228, 231, 236, 0.25) !important;
}

.br-bottom-radius-0 {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.br-bottom-radius-5 {
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.border-x {
    border-left: 1px solid #eaedf1;
    border-right: 1px solid #eaedf1;
}

.border-y {
    border-top: 1px solid #eaedf1;
    border-bottom: 1px solid #eaedf1;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.radius-1 {
    border-radius: 1px;
}

.radius-5 {
    border-radius: 5px;
}

.radius-10 {
    border-radius: 10px;
}

.radius-20 {
    border-radius: 20px;
}

.radius-30 {
    border-radius: 30px;
}

.radius-40 {
    border-radius: 40px;
}

.radius-50 {
    border-radius: 50px !important;
}

@media (min-width: 992px) {
    .border-lg-bottom-0 {
        border-bottom: 0px !important;
    }

    .br-lg-5 {
        border-radius: 5px;
    }
}

@media (min-width: 576px) {
    .br-tl-sm-5 {
        border-top-left-radius: 5px;
    }

    .br-bl-sm-5 {
        border-bottom-left-radius: 5px;
    }

    .br-tr-sm-5 {
        border-top-right-radius: 5px;
    }

    .br-br-sm-5 {
        border-bottom-right-radius: 5px;
    }
}

@media (max-width: 575.98px) {
    .br-xs-bl-5 {
        border-bottom-left-radius: 5px;
    }

    .br-xs-br-5 {
        border-bottom-right-radius: 5px;
    }

    .br-xs-tl-5 {
        border-top-left-radius: 5px;
    }

    .br-xs-tr-5 {
        border-top-right-radius: 5px;
    }

    .br-sm-max-0 {
        border-radius: 0px !important;
    }
}

@media (min-width: 576px) {
    .border-bottomo-sm {
        border-bottom: 1px solid #eaedf1;
    }
}

.display-1 {
    font-size: 6em;
    font-weight: 300;
    line-height: 1.2;
}

.display-2 {
    font-size: 5.5em;
    font-weight: 300;
    line-height: 1.2;
}

.display-3 {
    font-size: 4.5em;
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: calc(1.475em + 2.7vw);
    font-weight: 300;
    line-height: 1.2;
}

.display-5 {
    font-size: calc(1.425em + 2.1vw);
    font-weight: 300;
    line-height: 1.2;
}

.display-6 {
    font-size: calc(1.375em + 1.5vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5em;
    }

    .display-5 {
        font-size: 3em;
    }

    .display-6 {
        font-size: 2.5em;
    }
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-flex {
    display: flex !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}


@media (max-width: 992px) {
    .d-lg-none-max {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .d-md-none-max {
        display: none !important;
    }

    .d-md-block-max {
        display: block !important;
    }
}

@media (max-width: 1280px) {
    .d-xl-none-max {
        display: none !important;
    }

    .d-xl-block-max {
        display: block !important;
    }
}

@media (max-width: 576px) {
    .d-sm-block-max {
        display: block !important;
    }

    .d-sm-none-max {
        display: none !important;
    }
}

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .float-sm-start {
        float: left !important;
    }

    .float-sm-end {
        float: right !important;
    }

    .float-sm-none {
        float: none !important;
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float: left !important;
    }

    .float-md-end {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float: left !important;
    }

    .float-lg-end {
        float: right !important;
    }

    .float-lg-none {
        float: none !important;
    }
}

@media (min-width: 1280px) {
    .float-xl-start {
        float: left !important;
    }

    .float-xl-end {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }
}

.floating {
    animation: floating 3s ease infinite;
    will-change: transform;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: normal;
    line-height: 1.1;
}

h1,
.h1 {
    font-size: 2rem;
}

h2,
.h2 {
    font-size: 1.75rem;
}

h3,
.h3 {
    font-size: 1.5rem;
}

h4,
.h4 {
    font-size: 1.125rem;
}

h5,
.h5 {
    font-size: 1rem;
}

h6,
.h6 {
    font-size: 0.85rem;
}

@media (max-width: 576px) {

    h1,
    .h1 {
        font-size: 1.5rem;
    }

    h2,
    .h2 {
        font-size: 1.25rem;
    }

    h3,
    .h3 {
        font-size: 1rem;
    }

    h4,
    .h4 {
        font-size: 0.9rem;
    }

    h5,
    .h5 {
        font-size: 0.8rem;
    }

    h6,
    .h6 {
        font-size: 0.75rem;
    }
}

/*--------- Heighpx--------------*/
.h-10 {
    height: 10% !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-90 {
    height: 90px !important;
}

.h-60 {
    height: 60px !important;
}

.h-100 {
    height: 100% !important;
}

.h-150 {
    height: 150px !important;
}

.h-160 {
    height: 160px !important;
}

.h-180 {
    height: 180px !important;
}

.h-275 {
    height: 275px !important;
}

.h-365 {
    height: 365px !important;
}

.h-400 {
    height: 400px !important;
}

.h-415 {
    height: 415px !important;
}

.h-430 {
    height: 430px !important;
}

.h-450 {
    height: 450px !important;
}

.h-200 {
    height: 200px !important;
}

.h-230 {
    height: 230px !important;
}

.h-500 {
    height: 500px !important;
}

.h-550 {
    height: 550px !important;
}

.h-600 {
    height: 600px !important;
}

.h-650 {
    height: 650px !important;
}

.h-auto {
    height: auto !important;
}

.h-0 {
    height: 0 !important;
}

.h-1 {
    height: 0.25rem !important;
}

.h-2 {
    height: 0.5rem !important;
}

.h-3 {
    height: 0.75rem !important;
}

.h-4 {
    height: 1rem !important;
}

.h-5 {
    height: 1.5rem !important;
}

.h-6 {
    height: 2rem !important;
}

.h-7 {
    height: 3rem !important;
}

.h-8 {
    height: 4rem !important;
}

.h-9 {
    height: 6rem !important;
}

.h-97 {
    height: 97px !important;
}

.h-240 {
    height: 240px !important;
}

.h-250 {
    height: 250px !important;
}

.h-260 {
    height: 260px !important;
}

.h-270 {
    height: 270px !important;
}

.h-280 {
    height: 280px !important;
}

.h-300 {
    height: 300px !important;
}

.h-340 {
    height: 340px !important;
}

.mh-100 {
    max-height: 100% !important;
}

.h-100vh {
    height: 100vh !important;
}

.hpx-1 {
    height: 1px;
}

.hpx-2 {
    height: 2px;
}

.hpx-3 {
    height: 3px;
}

.hpx-4 {
    height: 4px;
}

.hpx-5 {
    height: 5px;
}

.hpx-6 {
    height: 6px;
}

.hpx-7 {
    height: 7px;
}

.hpx-8 {
    height: 8px;
}

.hpx-9 {
    height: 9px !important;
}

.hpx-10 {
    height: 10px !important;
}

.hpx-20 {
    height: 20px !important;
}

.hpx-25 {
    height: 25px !important;
}

.hpx-30 {
    height: 30px !important;
}

.hpx-35 {
    height: 35px !important;
}

.hpx-40 {
    height: 40px !important;
}

.hpx-45 {
    height: 45px !important;
}

.hpx-50 {
    height: 50px;
}

.hpx-55 {
    height: 55px;
}

.hpx-60 {
    height: 60px;
}

.hpx-65 {
    height: 65px;
}

.hpx-70 {
    height: 70px;
}

.hpx-75 {
    height: 75px;
}

.hpx-80 {
    height: 80px;
}

.hpx-85 {
    height: 85px;
}

.hpx-90 {
    height: 90px;
}

.hpx-95 {
    height: 95px;
}

.hpx-100 {
    height: 100px;
}

.hpx-150 {
    height: 150px;
}

.hrem-6 {
    height: 6rem;
}

.ht-100v {
    height: 100vh;
}

.ht-auto {
    height: auto;
}

/*--------- Paddings--------------*/
.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pe-0,
.px-0 {
    padding-right: 0 !important;
}


.ps-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pe-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.ps-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pe-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.ps-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 0.75rem !important;
}

.pt-3 {
    padding-top: 0.75rem !important;
}

.pe-3,
.px-3 {
    padding-right: 0.75rem !important;
}

.ps-3,
.px-3 {
    padding-left: 0.75rem !important;
}

.p-4 {
    padding: 1rem !important;
}

.pt-4 {
    padding-top: 1rem !important;
}

.pe-4,
.px-4 {
    padding-right: 1rem !important;
}

.ps-4,
.px-4 {
    padding-left: 1rem !important;
}

.p-5 {
    padding: 1.5rem !important;
}

.pt-5 {
    padding-top: 1.5rem !important;
}

.pe-5,
.px-5 {
    padding-right: 1.5rem !important;
}

.ps-5,
.px-5 {
    padding-left: 1.5rem !important;
}

.p-6 {
    padding: 2rem !important;
}

.pt-6 {
    padding-top: 2rem !important;
}

.pe-6 {
    padding-right: 2rem !important;
}

.ps-6,
.px-6 {
    padding-left: 2rem !important;
}

.p-7 {
    padding: 3rem !important;
}

.pt-7 {
    padding-top: 3rem !important;
}

.pe-7,
.px-7 {
    padding-right: 3rem !important;
}

.ps-7,
.px-7 {
    padding-left: 3rem !important;
}

.p-8 {
    padding: 4rem !important;
}

.pt-8 {
    padding-top: 4rem !important;
}

.pe-8 {
    padding-right: 4rem !important;
}

.ps-8,
.px-8 {
    padding-left: 4rem !important;
}

.p-9 {
    padding: 6rem !important;
}

.pt-9 {
    padding-top: 6rem !important;
}

.pe-9,
.px-9 {
    padding-right: 6rem !important;
}

.t-0 {
    top: 0px;
}

.r-0 {
    right: 0px;
}

.b-0 {
    bottom: 0px;
}

.l-0 {
    left: 0px;
}

.t--0 {
    top: 0px;
}

.r--0 {
    right: 0px;
}

.b--0 {
    bottom: 0px;
}

.l--0 {
    left: 0px;
}

.x-0,
.y-0 {
    left: 0px;
    right: 0px;
}

.t-5 {
    top: 5px;
}

.r-5 {
    right: 5px;
}

.b-5 {
    bottom: 5px;
}

.l-5 {
    left: 5px;
}

.t--5 {
    top: -5px;
}

.r--5 {
    right: -5px;
}

.b--5 {
    bottom: -5px;
}

.l--5 {
    left: -5px;
}

.a-5 {
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
}

.x-5,
.y-5 {
    left: 5px;
    right: 5px;
}

.t-10 {
    top: 10px;
}

.r-10 {
    right: 10px;
}

.b-10 {
    bottom: 10px;
}

.l-10 {
    left: 10px;
}

.t--10 {
    top: -10px;
}

.r--10 {
    right: -10px;
}

.b--10 {
    bottom: -10px;
}

.l--10 {
    left: -10px;
}

.a-10 {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
}

.x-10,
.y-10 {
    left: 10px;
    right: 10px;
}

.t-15 {
    top: 15px;
}

.r-15 {
    right: 15px;
}

.b-15 {
    bottom: 15px;
}

.l-15 {
    left: 15px;
}

.t--15 {
    top: -15px;
}

.r--15 {
    right: -15px;
}

.b--15 {
    bottom: -15px;
}

.l--15 {
    left: -15px;
}

.a-15 {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
}

.x-15,
.y-15 {
    left: 15px;
    right: 15px;
}

.t-20 {
    top: 20px;
}

.r-20 {
    right: 20px;
}

.b-20 {
    bottom: 20px;
}

.l-20 {
    left: 20px;
}

.t--20 {
    top: -20px;
}

.r--20 {
    right: -20px;
}

.b--20 {
    bottom: -20px;
}

.l--20 {
    left: -20px;
}

.a-20 {
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
}

.x-20,
.y-20 {
    left: 20px;
    right: 20px;
}

.t-25 {
    top: 25px;
}

.r-25 {
    right: 25px;
}

.b-25 {
    bottom: 25px;
}

.l-25 {
    left: 25px;
}

.t--25 {
    top: -25px;
}

.r--25 {
    right: -25px;
}

.b--25 {
    bottom: -25px;
}

.l--25 {
    left: -25px;
}

.a-25 {
    top: 25px;
    right: 25px;
    bottom: 25px;
    left: 25px;
}

.x-25,
.y-25 {
    left: 25px;
    right: 25px;
}

.t-30 {
    top: 30px;
}

.r-30 {
    right: 30px;
}

.b-30 {
    bottom: 30px;
}

.l-30 {
    left: 30px;
}

.t--30 {
    top: -30px;
}

.r--30 {
    right: -30px;
}

.b--30 {
    bottom: -30px;
}

.l--30 {
    left: -30px;
}

.a-30 {
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
}

.x-30,
.y-30 {
    left: 30px;
    right: 30px;
}

.t-35 {
    top: 35px;
}

.r-35 {
    right: 35px;
}

.b-35 {
    bottom: 35px;
}

.l-35 {
    left: 35px;
}

.t--35 {
    top: -35px;
}

.r--35 {
    right: -35px;
}

.b--35 {
    bottom: -35px;
}

.l--35 {
    left: -35px;
}

.a-35 {
    top: 35px;
    right: 35px;
    bottom: 35px;
    left: 35px;
}

.x-35,
.y-35 {
    left: 35px;
    right: 35px;
}

.t-40 {
    top: 40px;
}

.r-40 {
    right: 40px;
}

.b-40 {
    bottom: 40px;
}

.l-40 {
    left: 40px;
}

.t--40 {
    top: -40px;
}

.r--40 {
    right: -40px;
}

.b--40 {
    bottom: -40px;
}

.l--40 {
    left: -40px;
}

.a-40 {
    top: 40px;
    right: 40px;
    bottom: 40px;
    left: 40px;
}

.x-40,
.y-40 {
    left: 40px;
    right: 40px;
}

.t-45 {
    top: 45px;
}

.r-45 {
    right: 45px;
}

.b-45 {
    bottom: 45px;
}

.l-45 {
    left: 45px;
}

.t--45 {
    top: -45px;
}

.r--45 {
    right: -45px;
}

.b--45 {
    bottom: -45px;
}

.l--45 {
    left: -45px;
}

.a-45 {
    top: 45px;
    right: 45px;
    bottom: 45px;
    left: 45px;
}

.x-45,
.y-45 {
    left: 45px;
    right: 45px;
}

.t-50 {
    top: 50px;
}

.r-50 {
    right: 50px;
}

.b-50 {
    bottom: 50px;
}

.l-50 {
    left: 50px;
}

.t--50 {
    top: -50px;
}

.r--50 {
    right: -50px;
}

.b--50 {
    bottom: -50px;
}

.l--50 {
    left: -50px;
}

.a-50 {
    top: 50px;
    right: 50px;
    bottom: 50px;
    left: 50px;
}

.x-50,
.y-50 {
    left: 50px;
    right: 50px;
}

.t-55 {
    top: 55px;
}

.r-55 {
    right: 55px;
}

.b-55 {
    bottom: 55px;
}

.l-55 {
    left: 55px;
}

.t--55 {
    top: -55px;
}

.r--55 {
    right: -55px;
}

.b--55 {
    bottom: -55px;
}

.l--55 {
    left: -55px;
}

.a-55 {
    top: 55px;
    right: 55px;
    bottom: 55px;
    left: 55px;
}

.x-55,
.y-55 {
    left: 55px;
    right: 55px;
}

.t-60 {
    top: 60px;
}

.r-60 {
    right: 60px;
}

.b-60 {
    bottom: 60px;
}

.l-60 {
    left: 60px;
}

.t--60 {
    top: -60px;
}

.r--60 {
    right: -60px;
}

.b--60 {
    bottom: -60px;
}

.l--60 {
    left: -60px;
}

.a-60 {
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
}

.x-60,
.y-60 {
    left: 60px;
    right: 60px;
}

.t-65 {
    top: 65px;
}

.r-65 {
    right: 65px;
}

.b-65 {
    bottom: 65px;
}

.l-65 {
    left: 65px;
}

.t--65 {
    top: -65px;
}

.r--65 {
    right: -65px;
}

.b--65 {
    bottom: -65px;
}

.l--65 {
    left: -65px;
}

.a-65 {
    top: 65px;
    right: 65px;
    bottom: 65px;
    left: 65px;
}

.x-65,
.y-65 {
    left: 65px;
    right: 65px;
}

.t-70 {
    top: 70px;
}

.r-70 {
    right: 70px;
}

.b-70 {
    bottom: 70px;
}

.l-70 {
    left: 70px;
}

.t--70 {
    top: -70px;
}

.r--70 {
    right: -70px;
}

.b--70 {
    bottom: -70px;
}

.l--70 {
    left: -70px;
}

.a-70 {
    top: 70px;
    right: 70px;
    bottom: 70px;
    left: 70px;
}

.x-70,
.y-70 {
    left: 70px;
    right: 70px;
}

.t-75 {
    top: 75px;
}

.r-75 {
    right: 75px;
}

.b-75 {
    bottom: 75px;
}

.l-75 {
    left: 75px;
}

.t--75 {
    top: -75px;
}

.r--75 {
    right: -75px;
}

.b--75 {
    bottom: -75px;
}

.l--75 {
    left: -75px;
}

.a-75 {
    top: 75px;
    right: 75px;
    bottom: 75px;
    left: 75px;
}

.x-75,
.y-75 {
    left: 75px;
    right: 75px;
}

.t-80 {
    top: 80px;
}

.r-80 {
    right: 80px;
}

.b-80 {
    bottom: 80px;
}

.l-80 {
    left: 80px;
}

.t--80 {
    top: -80px;
}

.r--80 {
    right: -80px;
}

.b--80 {
    bottom: -80px;
}

.l--80 {
    left: -80px;
}

.a-80 {
    top: 80px;
    right: 80px;
    bottom: 80px;
    left: 80px;
}

.x-80,
.y-80 {
    left: 80px;
    right: 80px;
}

.t-85 {
    top: 85px;
}

.r-85 {
    right: 85px;
}

.b-85 {
    bottom: 85px;
}

.l-85 {
    left: 85px;
}

.t--85 {
    top: -85px;
}

.r--85 {
    right: -85px;
}

.b--85 {
    bottom: -85px;
}

.l--85 {
    left: -85px;
}

.a-85 {
    top: 85px;
    right: 85px;
    bottom: 85px;
    left: 85px;
}

.x-85,
.y-85 {
    left: 85px;
    right: 85px;
}

.t-90 {
    top: 90px;
}

.r-90 {
    right: 90px;
}

.b-90 {
    bottom: 90px;
}

.l-90 {
    left: 90px;
}

.t--90 {
    top: -90px;
}

.r--90 {
    right: -90px;
}

.b--90 {
    bottom: -90px;
}

.l--90 {
    left: -90px;
}

.a-90 {
    top: 90px;
    right: 90px;
    bottom: 90px;
    left: 90px;
}

.x-90,
.y-90 {
    left: 90px;
    right: 90px;
}

.t-95 {
    top: 95px;
}

.r-95 {
    right: 95px;
}

.b-95 {
    bottom: 95px;
}

.l-95 {
    left: 95px;
}

.t--95 {
    top: -95px;
}

.r--95 {
    right: -95px;
}

.b--95 {
    bottom: -95px;
}

.l--95 {
    left: -95px;
}

.a-95 {
    top: 95px;
    right: 95px;
    bottom: 95px;
    left: 95px;
}

.x-95,
.y-95 {
    left: 95px;
    right: 95px;
}

.t-100 {
    top: 100px;
}

.r-100 {
    right: 100px;
}

.b-100 {
    bottom: 100px;
}

.l-100 {
    left: 100px;
}

.t--100 {
    top: -100px;
}

.r--100 {
    right: -100px;
}

.b--100 {
    bottom: -100px;
}

.l--100 {
    left: -100px;
}

.a-100 {
    top: 100px;
    right: 100px;
    bottom: 100px;
    left: 100px;
}

.x-100,
.y-100 {
    left: 100px;
    right: 100px;
}

.t-2 {
    top: 2px;
}

.r--5 {
    right: -5px;
}

.z-index-0 {
    z-index: 0;
}

.z-index-10 {
    z-index: 10;
}

.z-index-50 {
    z-index: 50;
}

.z-index-100 {
    z-index: 100;
}

.z-index-150 {
    z-index: 150;
}

.z-index-200 {
    z-index: 200;
}

@media (min-width: 480px) {
    .ps-xs-absolute {
        position: absolute;
    }

    .ps-xs-relative {
        position: relative;
    }

    .ps-xs-fixed {
        position: fixed;
    }

    .ps-xs-static {
        position: static;
    }

    .t-xs-auto {
        top: auto;
    }

    .r-xs-auto {
        right: auto;
    }

    .b-xs-auto {
        bottom: auto;
    }

    .l-xs-auto {
        left: auto;
    }
}

@media (min-width: 576px) {
    .ps-sm-absolute {
        position: absolute;
    }

    .ps-sm-relative {
        position: relative;
    }

    .ps-sm-fixed {
        position: fixed;
    }

    .ps-sm-static {
        position: static;
    }

    .t-sm-auto {
        top: auto;
    }

    .r-sm-auto {
        right: auto;
    }

    .b-sm-auto {
        bottom: auto;
    }

    .l-sm-auto {
        left: auto;
    }
}

@media (min-width: 768px) {
    .ps-md-absolute {
        position: absolute;
    }

    .ps-md-relative {
        position: relative;
    }

    .ps-md-fixed {
        position: fixed;
    }

    .ps-md-static {
        position: static;
    }

    .t-md-auto {
        top: auto;
    }

    .r-md-auto {
        right: auto;
    }

    .b-md-auto {
        bottom: auto;
    }

    .l-md-auto {
        left: auto;
    }
}

@media (min-width: 992px) {
    .ps-lg-absolute {
        position: absolute;
    }

    .ps-lg-relative {
        position: relative;
    }

    .ps-lg-fixed {
        position: fixed;
    }

    .ps-lg-static {
        position: static;
    }

    .t-lg-auto {
        top: auto;
    }

    .r-lg-auto {
        right: auto;
    }

    .b-lg-auto {
        bottom: auto;
    }

    .l-lg-auto {
        left: auto;
    }
}

@media (min-width: 1200px) {
    .ps-xl-absolute {
        position: absolute;
    }

    .ps-xl-relative {
        position: relative;
    }

    .ps-xl-fixed {
        position: fixed;
    }

    .ps-xl-static {
        position: static;
    }

    .t-xl-auto {
        top: auto;
    }

    .r-xl-auto {
        right: auto;
    }

    .b-xl-auto {
        bottom: auto;
    }

    .l-xl-auto {
        left: auto;
    }
}

textarea {
    overflow: auto;
    resize: vertical;
}


/*------Colors------*/
.text-primary {
    color: var(--primary-bg-color) !important;
    fill: var(--primary-bg-color) !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: rgba(var(--primary-bg-color), 0.9) !important;
}

.text-primary-light {
    color: var(--primary09) !important;
    fill: var(--primary09) !important;
}

a.text-primary-light:hover,
a.text-primary-light:focus {
    color: var(--primary06) !important;
}

.text-primary-lighter {
    color: var(--primary06) !important;
    fill: var(--primary06) !important;
}

a.text-primary-lighter:hover,
a.text-primary-lighter:focus {
    color: var(--primary03) !important;
}

.text-primary-lightest {
    color: var(--primary03) !important;
    fill: var(--primary03) !important;
}

a.text-primary-lightest:hover,
a.text-primary-lightest:focus {
    color: rgba(var(--primary-bg-color), 0.15) !important;
}

.text-primary-dark {
    color: var(--primary06) !important;
    fill: var(--primary06) !important;
}

a.text-primary-dark:hover,
a.text-primary-dark:focus {
    color: var(--primary03) !important;
}

.text-primary-darker {
    color: var(--primary09) !important;
    fill: var(--primary09) !important;
}

a.text-primary-darker:hover,
a.text-primary-darker:focus {
    color: var(--primary06) !important;
}

.text-primary-darkest {
    color: var(--primary-bg-color);
    fill: var(--primary-bg-color);
}

a.text-primary-darkest:hover,
a.text-primary-darkest:focus {
    color: var(--primary09) !important;
}

.text-secondary {
    color: #e984b1 !important;
    fill: #e984b1 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: rgba(233, 132, 177, 0.9) !important;
}

.text-secondary-light {
    color: rgba(233, 132, 177, 0.85) !important;
    fill: rgba(233, 132, 177, 0.85) !important;
}

a.text-secondary-light:hover,
a.text-secondary-light:focus {
    color: rgba(233, 132, 177, 0.55) !important;
}

.text-secondary-lighter {
    color: rgba(233, 132, 177, 0.55) !important;
    fill: rgba(233, 132, 177, 0.55) !important;
}

a.text-secondary-lighter:hover,
a.text-secondary-lighter:focus {
    color: rgba(233, 132, 177, 0.35) !important;
}

.text-secondary-lightest {
    color: rgba(233, 132, 177, 0.35) !important;
    fill: rgba(233, 132, 177, 0.35) !important;
}

a.text-secondary-lightest:hover,
a.text-secondary-lightest:focus {
    color: rgba(233, 132, 177, 0.15) !important;
}

.text-secondary-dark {
    color: rgba(211, 40, 117, 0.55) !important;
    fill: rgba(211, 40, 117, 0.55) !important;
}

a.text-secondary-dark:hover,
a.text-secondary-dark:focus {
    color: rgba(211, 40, 117, 0.35) !important;
}

.text-secondary-darker {
    color: rgba(211, 40, 117, 0.85) !important;
    fill: rgba(211, 40, 117, 0.85) !important;
}

a.text-secondary-darker:hover,
a.text-secondary-darker:focus {
    color: rgba(211, 40, 117, 0.55) !important;
}

.text-secondary-darkest {
    color: #d32875;
    fill: #d32875;
}

a.text-secondary-darkest:hover,
a.text-secondary-darkest:focus {
    color: rgba(211, 40, 117, 0.85) !important;
}

.text-teritary {
    color: #59adec !important;
    fill: #59adec !important;
}

a.text-teritary:hover,
a.text-teritary:focus {
    color: rgba(89, 173, 236, 0.85) !important;
}

.text-teritary-light {
    color: rgba(89, 173, 236, 0.85) !important;
    fill: rgba(89, 173, 236, 0.85) !important;
}

a.text-teritary-light:hover,
a.text-teritary-light:focus {
    color: rgba(89, 173, 236, 0.55) !important;
}

.text-teritary-lighter {
    color: rgba(89, 173, 236, 0.55) !important;
    fill: rgba(89, 173, 236, 0.55) !important;
}

a.text-teritary-lighter:hover,
a.text-teritary-lighter:focus {
    color: rgba(89, 173, 236, 0.35) !important;
}

.text-teritary-lightest {
    color: rgba(89, 173, 236, 0.35) !important;
    fill: rgba(89, 173, 236, 0.35) !important;
}

a.text-teritary-lightest:hover,
a.text-teritary-lightest:focus {
    color: rgba(89, 173, 236, 0.15) !important;
}

.text-teritary-dark {
    color: rgba(42, 133, 202, 0.55) !important;
    fill: rgba(42, 133, 202, 0.55) !important;
}

a.text-teritary-dark:hover,
a.text-teritary-dark:focus {
    color: rgba(42, 133, 202, 0.35) !important;
}

.text-teritary-darker {
    color: rgba(42, 133, 202, 0.85) !important;
    fill: rgba(42, 133, 202, 0.85) !important;
}

a.text-teritary-darker:hover,
a.text-teritary-darker:focus {
    color: rgba(42, 133, 202, 0.55) !important;
}

.text-teritary-darkest {
    color: #2a85ca;
    fill: #2a85ca;
}

a.text-teritary-darkest:hover,
a.text-teritary-darkest:focus {
    color: rgba(42, 133, 202, 0.85) !important;
}

.text-info {
    color: #59adec !important;
    fill: #59adec !important;
}

a.text-info:hover,
a.text-info:focus {
    color: rgba(89, 173, 236, 0.85) !important;
}

.text-info-light {
    color: rgba(89, 173, 236, 0.85) !important;
    fill: rgba(89, 173, 236, 0.85) !important;
}

a.text-info-light:hover,
a.text-info-light:focus {
    color: rgba(89, 173, 236, 0.55) !important;
}

.text-info-lighter {
    color: rgba(89, 173, 236, 0.55) !important;
    fill: rgba(89, 173, 236, 0.55) !important;
}

a.text-info-lighter:hover,
a.text-info-lighter:focus {
    color: rgba(89, 173, 236, 0.35) !important;
}

.text-info-lightest {
    color: rgba(89, 173, 236, 0.35) !important;
    fill: rgba(89, 173, 236, 0.35) !important;
}

a.text-info-lightest:hover,
a.text-info-lightest:focus {
    color: rgba(89, 173, 236, 0.15) !important;
}

.text-info-dark {
    color: rgba(42, 133, 202, 0.55) !important;
    fill: rgba(42, 133, 202, 0.55) !important;
}

a.text-info-dark:hover,
a.text-info-dark:focus {
    color: rgba(42, 133, 202, 0.35) !important;
}

.text-info-darker {
    color: rgba(42, 133, 202, 0.85) !important;
    fill: rgba(42, 133, 202, 0.85) !important;
}

a.text-info-darker:hover,
a.text-info-darker:focus {
    color: rgba(42, 133, 202, 0.55) !important;
}

.text-info-darkest {
    color: #2a85ca;
    fill: #2a85ca;
}

a.text-info-darkest:hover,
a.text-info-darkest:focus {
    color: rgba(42, 133, 202, 0.85) !important;
}

.text-warning {
    color: #e7c354 !important;
    fill: #e7c354 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: rgba(231, 195, 84, 0.85) !important;
}

.text-warning-light {
    color: rgba(231, 195, 84, 0.85) !important;
    fill: rgba(231, 195, 84, 0.85) !important;
}

a.text-warning-light:hover,
a.text-warning-light:focus {
    color: rgba(231, 195, 84, 0.55) !important;
}

.text-warning-lighter {
    color: rgba(231, 195, 84, 0.55) !important;
    fill: rgba(231, 195, 84, 0.55) !important;
}

a.text-warning-lighter:hover,
a.text-warning-lighter:focus {
    color: rgba(231, 195, 84, 0.35) !important;
}

.text-warning-lightest {
    color: rgba(231, 195, 84, 0.35) !important;
    fill: rgba(231, 195, 84, 0.35) !important;
}

a.text-warning-lightest:hover,
a.text-warning-lightest:focus {
    color: rgba(231, 195, 84, 0.15) !important;
}

.text-warning-dark {
    color: rgba(201, 162, 47, 0.55) !important;
    fill: rgba(201, 162, 47, 0.55) !important;
}

a.text-warning-dark:hover,
a.text-warning-dark:focus {
    color: rgba(201, 162, 47, 0.35) !important;
}

.text-warning-darker {
    color: rgba(201, 162, 47, 0.85) !important;
    fill: rgba(201, 162, 47, 0.85) !important;
}

a.text-warning-darker:hover,
a.text-warning-darker:focus {
    color: rgba(201, 162, 47, 0.55) !important;
}

.text-warning-darkest {
    color: #c9a22f;
    fill: #c9a22f;
}

a.text-warning-darkest:hover,
a.text-warning-darkest:focus {
    color: rgba(201, 162, 47, 0.85) !important;
}

.text-custom-yellow {
    color: #e7c354 !important;
    fill: #e7c354 !important;
}

a.text-custom-yellow:hover,
a.text-custom-yellow:focus {
    color: rgba(231, 195, 84, 0.85) !important;
}

.text-custom-yellow-light {
    color: rgba(231, 195, 84, 0.85) !important;
    fill: rgba(231, 195, 84, 0.85) !important;
}

a.text-custom-yellow-light:hover,
a.text-custom-yellow-light:focus {
    color: rgba(231, 195, 84, 0.55) !important;
}

.text-custom-yellow-lighter {
    color: rgba(231, 195, 84, 0.55) !important;
    fill: rgba(231, 195, 84, 0.55) !important;
}

a.text-custom-yellow-lighter:hover,
a.text-custom-yellow-lighter:focus {
    color: rgba(231, 195, 84, 0.35) !important;
}

.text-custom-yellow-lightest {
    color: rgba(231, 195, 84, 0.35) !important;
    fill: rgba(231, 195, 84, 0.35) !important;
}

a.text-custom-yellow-lightest:hover,
a.text-custom-yellow-lightest:focus {
    color: rgba(231, 195, 84, 0.15) !important;
}

.text-custom-yellow-dark {
    color: rgba(201, 162, 47, 0.55) !important;
    fill: rgba(201, 162, 47, 0.55) !important;
}

a.text-custom-yellow-dark:hover,
a.text-custom-yellow-dark:focus {
    color: rgba(201, 162, 47, 0.35) !important;
}

.text-custom-yellow-darker {
    color: rgba(201, 162, 47, 0.85) !important;
    fill: rgba(201, 162, 47, 0.85) !important;
}

a.text-custom-yellow-darker:hover,
a.text-custom-yellow-darker:focus {
    color: rgba(201, 162, 47, 0.55) !important;
}

.text-custom-yellow-darkest {
    color: #c9a22f;
    fill: #c9a22f;
}

a.text-custom-yellow-darkest:hover,
a.text-custom-yellow-darkest:focus {
    color: rgba(201, 162, 47, 0.85) !important;
}

.text-warning {
    color: #e7c354 !important;
    fill: #e7c354 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: rgba(231, 195, 84, 0.85) !important;
}

.text-warning-light {
    color: rgba(231, 195, 84, 0.85) !important;
    fill: rgba(231, 195, 84, 0.85) !important;
}

a.text-warning-light:hover,
a.text-warning-light:focus {
    color: rgba(231, 195, 84, 0.55) !important;
}

.text-warning-lighter {
    color: rgba(231, 195, 84, 0.55) !important;
    fill: rgba(231, 195, 84, 0.55) !important;
}

a.text-warning-lighter:hover,
a.text-warning-lighter:focus {
    color: rgba(231, 195, 84, 0.35) !important;
}

.text-warning-lightest {
    color: rgba(231, 195, 84, 0.35) !important;
    fill: rgba(231, 195, 84, 0.35) !important;
}

a.text-warning-lightest:hover,
a.text-warning-lightest:focus {
    color: rgba(231, 195, 84, 0.15) !important;
}

.text-warning-dark {
    color: rgba(201, 162, 47, 0.55) !important;
    fill: rgba(201, 162, 47, 0.55) !important;
}

a.text-warning-dark:hover,
a.text-warning-dark:focus {
    color: rgba(201, 162, 47, 0.35) !important;
}

.text-warning-darker {
    color: rgba(201, 162, 47, 0.85) !important;
    fill: rgba(201, 162, 47, 0.85) !important;
}

a.text-warning-darker:hover,
a.text-warning-darker:focus {
    color: rgba(201, 162, 47, 0.55) !important;
}

.text-warning-darkest {
    color: #c9a22f;
    fill: #c9a22f;
}

a.text-warning-darkest:hover,
a.text-warning-darkest:focus {
    color: rgba(201, 162, 47, 0.85) !important;
}

.text-success {
    color: #13bfa6 !important;
    fill: #13bfa6 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: rgba(19, 191, 166, 0.85) !important;
}

.text-success-light {
    color: rgba(19, 191, 166, 0.85) !important;
    fill: rgba(19, 191, 166, 0.85) !important;
}

a.text-success-light:hover,
a.text-success-light:focus {
    color: rgba(19, 191, 166, 0.55) !important;
}

.text-success-lighter {
    color: rgba(19, 191, 166, 0.55) !important;
    fill: rgba(19, 191, 166, 0.55) !important;
}

a.text-success-lighter:hover,
a.text-success-lighter:focus {
    color: rgba(19, 191, 166, 0.35) !important;
}

.text-success-lightest {
    color: rgba(19, 191, 166, 0.35) !important;
    fill: rgba(19, 191, 166, 0.35) !important;
}

a.text-success-lightest:hover,
a.text-success-lightest:focus {
    color: rgba(19, 191, 166, 0.15) !important;
}

.text-success-dark {
    color: rgba(0, 112, 95, 0.55) !important;
    fill: rgba(0, 112, 95, 0.55) !important;
}

a.text-success-dark:hover,
a.text-success-dark:focus {
    color: rgba(0, 112, 95, 0.35) !important;
}

.text-success-darker {
    color: rgba(0, 112, 95, 0.85) !important;
    fill: rgba(0, 112, 95, 0.85) !important;
}

a.text-success-darker:hover,
a.text-success-darker:focus {
    color: rgba(0, 112, 95, 0.55) !important;
}

.text-success-darkest {
    color: #00705f;
    fill: #00705f;
}

a.text-success-darkest:hover,
a.text-success-darkest:focus {
    color: rgba(0, 112, 95, 0.85) !important;
}

.text-light {
    color: #e4e7ecc5 !important;
}

a.text-light:hover,
a.text-light:focus {
    color: rgba(228, 231, 236, 0.85) !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
    color: rgba(52, 58, 64, 0.85) !important;
}

.text-dark-light {
    color: rgba(52, 58, 64, 0.85) !important;
    fill: rgba(52, 58, 64, 0.85) !important;
}

a.text-dark-light:hover,
a.text-dark-light:focus {
    color: rgba(52, 58, 64, 0.55) !important;
}

.text-dark-lighter {
    color: rgba(52, 58, 64, 0.55) !important;
    fill: rgba(52, 58, 64, 0.55) !important;
}

a.text-dark-lighter:hover,
a.text-dark-lighter:focus {
    color: rgba(52, 58, 64, 0.35) !important;
}

.text-dark-lightest {
    color: rgba(52, 58, 64, 0.35) !important;
    fill: rgba(52, 58, 64, 0.35) !important;
}

a.text-dark-lightest:hover,
a.text-dark-lightest:focus {
    color: rgba(52, 58, 64, 0.15) !important;
}

.text-body {
    color: #495057 !important;
}

.text-muted {
    color: #707070 !important;
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.text-wrap {
    font-size: 14px;
    line-height: 1.66;
}

.text-wrap> :first-child {
    margin-top: 0;
}

.text-wrap> :last-child {
    margin-bottom: 0;
}

/*----- Typography ------*/
.heading-inverse {
    background-color: #444546;
    color: #fff;
    padding: 5px;
}

.heading-primary {
    background-color: var(--primary-bg-color);
    color: #fff;
    padding: 5px;
}

.heading-secondary {
    background-color: #e984b1;
    color: #fff;
    padding: 5px;
}

.heading-success {
    background-color: #13bfa6;
    color: #fff;
    padding: 5px;
}

.heading-info {
    background-color: #59adec;
    color: #fff;
    padding: 5px;
}

.heading-teritary {
    background-color: #59adec;
    color: #fff;
    padding: 5px;
}

.heading-warning {
    background-color: #e7c354;
    color: #fff;
    padding: 5px;
}

.heading-danger {
    background-color: #d12c47;
    color: #fff;
    padding: 5px;
}

.text-inherit {
    color: inherit !important;
}

.text-default {
    color: #495057 !important;
}

.text-muted-dark {
    color: #56585f !important;
}

.text-fb-blue {
    color: rgba(19, 41, 73, 0.85) !important;
}

.text-blue {
    color: #467fcf !important;
}

.text-info {
    color: #59adec !important;
}

.text-teritary {
    color: #59adec !important;
}

.text-indigo {
    color: #6574cd !important;
}

.text-purple {
    color: #661fd6 !important;
}

.text-lime {
    color: #7bd235 !important;
}

.text-pink {
    color: #f58598 !important;
}

.text-red {
    color: #e32f2f !important;
}

.text-orange {
    color: #fc7303 !important;
}

.text-yellow {
    color: #FBB034 !important;
}

.text-green {
    color: #4ecc48 !important;
}

.text-lime-dark {
    color: rgba(57, 128, 0, 0.85) !important;
}

.text-teal {
    color: #2bcbba !important;
}

.text-cyan {
    color: #17a2b8 !important;
}

.text-white {
    color: #fff !important;
    fill: #fff !important;
}

.text-gray {
    color: #868e96 !important;
}

.text-gray-dark {
    color: #444546 !important;
}

.text-azure {
    color: #45aaf2 !important;
}

.text-lime {
    color: #7bd235 !important;
}

.text-gray-100 {
    color: #f9f9fb !important;
}

.text-gray-200 {
    color: #f0f0f8 !important;
}

.text-gray-300 {
    color: #e1e1ef !important;
}

.text-gray-400 {
    color: #d6d6e6 !important;
}

.text-gray-500 {
    color: #949eb7 !important;
}

.text-gray-600 {
    color: #7987a1 !important;
}

.text-gray-700 {
    color: #4d5875 !important;
}

.text-gray-800 {
    color: #383853 !important;
}

.text-gray-900 {
    color: #323251 !important;
}

textarea[cols] {
    height: auto;
}

.text-end {
    text-align: right;
}

.text-transparent {
    color: rgba(51, 37, 37, 0.5);
}

textarea.form-control {
    height: auto;
}

.text-primary-gradient {
    background: linear-gradient(to right, var(--primary-bg-color) 0%, var(--primary-bg-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to right, #e984b1 0%, #d32875 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-warning-gradient {
    background: linear-gradient(to right, #e7c354 0%, #c9a22f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-custom-yellow-gradient {
    background: linear-gradient(to right, #e7c354 0%, #c9a22f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-info-gradient {
    background: linear-gradient(to right, #59adec 0%, #2a85ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-danger-gradient {
    background: linear-gradient(to right, #d12c47 0%, #df092d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-success-gradient {
    background: linear-gradient(to right, #13bfa6 0%, #00705f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*--text-shadow--*/
.text-success-shadow {
    text-shadow: 0 5px 10px rgba(19, 191, 166, 0.3) !important;
}

.text-info-shadow {
    text-shadow: 0 5px 10px rgba(89, 173, 236, 0.3) !important;
}

.text-warning-shadow {
    text-shadow: 0 5px 10px rgba(231, 195, 84, 0.3) !important;
}

.text-danger-shadow {
    text-shadow: 0 5px 10px rgba(209, 44, 71, 0.3) !important;
}

.text-pink-shadow {
    text-shadow: 0 5px 10px rgba(245, 133, 152, 0.3) !important;
}

.text-purple-shadow {
    text-shadow: 0 5px 10px rgba(102, 31, 214, 0.3) !important;
}

.text-dark-shadow {
    text-shadow: 0 5px 10px rgba(68, 69, 70, 0.3) !important;
}

.text-white-shadow {
    text-shadow: 0 5px 10px rgba(255, 255, 255, 0.3) !important;
}

.text-secondary-shadow {
    text-shadow: 0 5px 10px rgba(233, 132, 177, 0.3) !important;
}

.text-teritary-shadow {
    text-shadow: 0 5px 10px rgba(89, 173, 236, 0.3) !important;
}

.text-custom-yellow-shadow {
    text-shadow: 0 5px 10px rgba(231, 195, 84, 0.3) !important;
}


/*---- weight ----*/
.text-bold {
    font-weight: 700;
}

.text-semibold {
    font-weight: 600;
}

.text-medium {
    font-weight: 500;
}

.text-normal {
    font-weight: 400;
}

.text-light {
    font-weight: 300;
}

.text-thin {
    font-weight: 200;
}

.text-xthin {
    font-weight: 100;
}


.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

/*--------- Width--------------*/
.w-auto {
    width: auto !important;
}

.w-0 {
    width: 0 !important;
}

.mw-100 {
    max-width: 100% !important;
}

.minw-100 {
    min-width: 100% !important;
}

.w-icn {
    width: 1.45rem !important;
}

.w-inner-icn {
    width: 1.2rem !important;
}


/*# sourceMappingURL=style.css.map */

.tab-option-container {
    display: flex;
    flex-direction:row;
    padding:0;
}

    .tab-option-container button, .tab-option-container a {
        text-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid #e9ebfa;
        margin: 4px !important;
        border-radius: 5px;
        background: #f5f6fb;
        color: #6d7596;
        padding: 10px;
    }

        .tab-option-container button i, .tab-option-container a i {
            font-size: 1.5rem;
        }

        .tab-option-container button div, .tab-option-container a div {
            font-size: 11px;
        }

#columnsVisibilityOptions .dropdown-toggle {
    padding: 0 12px;
    line-height: 1;
    height: 30px;
    margin-right: 0;
    margin-left: auto;
}

.table-columns .checkbox {
    padding: 3px 8px;
}

.table-columns .form-group {
    margin:0;
}

.hidden-column {
    display:none;
}

.hidden-row {
    display: none;
}

/* 
 * dragtable
 *
 * @Version 2.0.15
 *
 * default css
 *
 */
/*##### the dragtable stuff #####*/
.dragtable-sortable {
    list-style-type: none;
    margin: 0;
    padding: 0;
    -moz-user-select: none;
}

    .dragtable-sortable li {
        margin: 0;
        padding: 0;
        float: left;
        font-size: 1em;
        background: white;
    }

    .dragtable-sortable th, .dragtable-sortable td {
        border-left: 0px;
    }

    .dragtable-sortable li:first-child th, .dragtable-sortable li:first-child td {
        border-left: 1px solid #CCC;
    }

.ui-sortable-helper {
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.ui-sortable-placeholder {
    -moz-box-shadow: 4px 5px 4px #C6C6C6 inset;
    -webkit-box-shadow: 4px 5px 4px #C6C6C6 inset;
    box-shadow: 4px 5px 4px #C6C6C6 inset;
    border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
    visibility: visible !important;
    background: #EFEFEF !important;
    visibility: visible !important;
}

    .ui-sortable-placeholder * {
        opacity: 0.0;
        visibility: hidden;
    }

/*##### the dragtable stuff end #####*/

.dataTable thead tr {
    background: #f2f2f2;
}

.side-view {
    padding: 15px 15px 15px 0;
    overflow: auto;
    width:350px;
}

    .side-view > div {
        box-shadow: 0 4px 16px 0 rgba(143, 143, 143, 0.45);
    }

    .side-view table {
        width:100%;
    }

    .side-view table td {
        font-size: 13px;
        text-align: left;
        padding: 4px 6px;
    }

        .side-view table td:nth-child(2n+1) {
            font-weight:600;
        }

        .side-view table td .fa {
            font-size: 16px;
        }

.modal-splitter {
    display: flex;
    flex-direction: row;
}

/* ########## PakeUpload ########## */


.pekeupload-btn-file {
    -moz-box-shadow: inset 0px -3px 7px 0px #29bbff;
    -webkit-box-shadow: inset 0px -3px 7px 0px #29bbff;
    box-shadow: inset 0px -3px 7px 0px #29bbff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #2dabf9), color-stop(1, #0688fa));
    background: -moz-linear-gradient(top, #2dabf9 5%, #0688fa 100%);
    background: -webkit-linear-gradient(top, #2dabf9 5%, #0688fa 100%);
    background: -o-linear-gradient(top, #2dabf9 5%, #0688fa 100%);
    background: -ms-linear-gradient(top, #2dabf9 5%, #0688fa 100%);
    background: linear-gradient(to bottom, #2dabf9 5%, #0688fa 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2dabf9', endColorstr='#0688fa',GradientType=0);
    background-color: #2dabf9;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #0b0e07;
    display: inline-block;
    color: #ffffff;
    font-family: arial;
    font-size: 15px;
    font-weight: normal;
    padding: 9px 23px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #263666;
}

    .pekeupload-btn-file:hover {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0688fa), color-stop(1, #2dabf9));
        background: -moz-linear-gradient(top, #0688fa 5%, #2dabf9 100%);
        background: -webkit-linear-gradient(top, #0688fa 5%, #2dabf9 100%);
        background: -o-linear-gradient(top, #0688fa 5%, #2dabf9 100%);
        background: -ms-linear-gradient(top, #0688fa 5%, #2dabf9 100%);
        background: linear-gradient(to bottom, #0688fa 5%, #2dabf9 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0688fa', endColorstr='#2dabf9',GradientType=0);
        background-color: #0688fa;
        text-decoration: none;
        color: #fff;
    }

    .pekeupload-btn-file:active {
        position: relative;
        top: 1px;
    }


.progress-pekeupload {
    width: 100%;
    height: 16px;
    margin: 0 auto 20px auto;
    padding: 0px;
    background: #cfcfcf;
    border-width: 1px;
    border-style: solid;
    border-color: #aaa #bbb #fff #bbb;
    box-shadow: inset 0px 2px 3px #bbb;
}

.progress-pekeupload,
.bar-pekeupload {
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
}

.bar-pekeupload {
    height: 100%;
    background: #999;
    background-size: 18px 18px;
    background-color: #7ce;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    background-image: -ms-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    box-shadow: inset 0px 2px 8px rgba(255, 255, 255, .5), inset -1px -1px 0px rgba(0, 0, 0, .2);
    text-align: center;
}

.alert-pekeupload {
    padding: 8px 35px 8px 14px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #b94a48;
    background-color: #f2dede;
    border: 1px solid #eed3d7;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-color:;
}

    .alert-pekeupload .close {
        margin-top: 2px;
    }

.pekeitem_preview {
    float: left;
    width: 20%;
}

.pekerow .file {
    float: left;
    width: 80%;
}

.pekerow {
    overflow: hidden;
    width: 100%;
}

.pekeupload-drag-area {
    width: 100%;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f0f0f0;
}

.pkuparea h4 {
    line-height: 50px;
    padding: 0 50px;
    background: rgb(255,221,154);
    background: radial-gradient(circle, rgba(255,221,154,1) 0%, rgba(251,230,196,1) 100%);
    border-color: #e9a010;
    border-style: solid;
    border-radius: 4px;
    border-width: 2px;
    box-shadow: 0 0 10px rgba(160, 89, 14, 0.11) inset;
    font-size:16px;
}

/* ########## End of PakeUpload ########## */

.draggable-table {
    background: white;
    -webkit-box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
}

    .draggable-table .draggable-table__drag {
        position: absolute;
        width: 100%;
        border: 1px solid #f1f1f1;
        z-index: 10;
        cursor: grabbing;
        -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.05);
        box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.05);
        opacity: 1;
    }

        .draggable-table .draggable-table__drag td{
            background:white;
        }

        .draggable-table thead th {
            user-select: none;
        }

    .draggable-table tbody tr {
        cursor: grabbing;
    }

        .draggable-table tbody tr td {
            text-transform: capitalize;
            user-select: none;
        }

        .draggable-table tbody tr.is-dragging {
            background: #f1c40f;            
        }

            .draggable-table tbody tr.is-dragging td {
                color: #f1c40f !important;
                border-color: #f1c40f !important;
            }

            .draggable-table tbody tr.is-dragging td *{
                display:none;
            }

.context-panel {
    margin-bottom: auto;
}

.search-params-wrapper {
    padding: 5px 0 0 0;
}

.search-button-wrapper {
/*    margin-left: auto;*/
    width: fit-content;
}

    .search-button-wrapper button {
        margin-top: 22px;
        margin-left:8px;
    }

.full-row-container {
    display: flex;
}

.full-content {
    flex-grow: 1;
}

.image-button-content {
    width:50px;
    text-align:center;
}

    .image-button-content .btn {
        padding: 4px;
    }

.btn .fa {
    font-size: 22px;
    color: white;
}

.table-handle {
    background-image: url('data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAIAAAANAQMAAAC5Li2yAAAABlBMVEXd3d2ZmZl1DvVeAAAADklEQVQI12MAAQcsmAEAEFoBQSzdkZ8AAAAASUVORK5CYII=');
    background-repeat: repeat-x;
    height: 18px;
    margin: 0 1px;
    cursor: move;
}

.footer-sum {
    color:red;
    font-weight:bold;
    text-align:right;
}

input:required:invalid, select:required:invalid {
    border-color: var(--primary-bg-border);
/*    background: var(--tertiary-bg-color);*/
/*    background: linear-gradient(90deg, rgba(251,217,217,1) 0%, rgba(251,203,203,1) 100%);*/
}
.select2-selection.required {
    border-color: var(--primary-bg-border);
/*    background-color: var(--primary-bg-color) !important;*/
}