@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.cdnfonts.com/css/eurostile');

:root {
    --font-family: "Nunito", sans-serif;
    --main-color: #727CF5;
    --main-color-hover: #5b65da;
}

a:focus-visible {
    outline: none !important;
}

select:focus-visible {
    outline: none !important;
}

/* :target {
    scroll-margin-top: calc(70px + 54px + 25px);
} */

body {
    --bs-body-font-size: .9rem !important;
    --background-color: #fafbfe;
    --bg-navbar-color: #ffffff;
    --bg-side-navbar: #fafafa;
    --bg-side-navbar-menu: #ffffff;
    --box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    --border-color: #e7ebf0;
    --bg-options-navbar: #313a46;
    --bs-table-striped-bg: #f1f3fa94 !important;
    overflow-y: overlay !important;
    scrollbar-gutter: auto;
}

body {
    margin: 0;
    font-family: var(--font-family) !important;
    background-color: var(--background-color) !important;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: #a2adb7;
    border-radius: 3px;
}

main {
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
}

/* KEYFRAMES */

@-webkit-keyframes DropDownSlide {
    100% {
        -webkit-transform: translateY(70px);
        transform: translateY(70px)
    }

    0% {
        -webkit-transform: translateY(80px);
        transform: translateY(80px)
    }
}

@keyframes DropDownSlide {
    100% {
        -webkit-transform: translateY(70px);
        transform: translateY(70px)
    }

    0% {
        -webkit-transform: translateY(80px);
        transform: translateY(80px)
    }
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

@-webkit-keyframes bouncing-loader {
    to {
        opacity: 0.1;
        -webkit-transform: translate3d(0, -16px, 0);
        transform: translate3d(0, -16px, 0);
    }
}
@keyframes bouncing-loader {
    to {
        opacity: 0.1;
        -webkit-transform: translate3d(0, -16px, 0);
        transform: translate3d(0, -16px, 0);
    }
}

/* PRELOADER */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fafbfe;
    z-index: 9999;
}

#status {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -40px;
}

.bouncing-loader {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
}

.bouncing-loader > div {
    width: 13px;
    height: 13px;
    margin: 32px 3px;
    background: #727cf5;
    border-radius: 50%;
    -webkit-animation: bouncing-loader .6s infinite alternate;
    animation: bouncing-loader .6s infinite alternate;
}

.bouncing-loader>div:nth-child(2) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    background: #fa5c7c;
}

.bouncing-loader>div:nth-child(3) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    background: #0acf97;
}

.no-js #preloader {
    display: none;
}

/* ANIMATIONS */

.spin {
    animation: spin 2s infinite linear;
}

/* BASE COMPONENTS */

.tooltip-main {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip-main .tooltip-text {
    visibility: hidden;
    width: fit-content;
    background-color: #fff;
    color: #6c757d;
    text-align: center;
    border-radius: 6px;
    padding: .7rem;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15) !important;
    border: 1px solid #dee2e6;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 105%;
}

.tooltip-main:hover .tooltip-text {
    visibility: visible;
}

.shadow-main {
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15) !important;
}

.shadow-main-sm {
    box-shadow: 0px 0px 15px 0px rgba(154, 161, 171, 0.15) !important;
}

.inset-shadow-main {
    box-shadow: inset 0px 0px 15px rgba(154, 161, 171, 0.15) !important;
}

a.link-main {
    color: #727CF3;
    text-decoration: none;
}

a.link-main:hover {
    color: #6169d0;
}

.panel-button:hover {
    background-color: #727CF5;
}

.panel-button:hover i, .panel-button:hover h4 {
    color: #fff !important;
}

.panel {
    position: relative;
    border: none;
    border-radius: .25rem;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    background-color: #fff;
}

.panel .panel-header {
    border-radius: .25rem .25rem 0 0;
}

.panel .panel-header img {
    border-radius: .25rem .25rem 0 0;
    width: 100%;
    object-fit: cover;
    max-height: 140px;
}

.panel .panel-body {
    padding: 1.5rem;
}

.table {
    color: #6c757d !important;
    border-color: #eef2f7 !important;
}

/* .table>:not(:first-child) {
    border-top: 2px solid #edeff1 !important;
} */

@media only screen and (max-width : 426px) {
    .table.nowrap {
        white-space: nowrap;
        table-layout: fixed;
        border-collapse: collapse;
        width: 100%;
    }
}

@media only screen and (min-width : 427px) {
    .table.nowrap {
        white-space: nowrap;
        border-collapse: collapse;
        width: 100%;
    }
}

.nowrap {
    white-space: nowrap;
}

.breadcrumb-nowrap {
    display: block !important;
    white-space: nowrap !important;
    overflow-x: auto !important;
}

.breadcrumb-nowrap::-webkit-scrollbar {
    width: 0px !important;
}

hr {
    opacity: 1 !important;
    border-color: rgba(108, 117, 125, .1) !important;
}

.scroll-content {
    overflow-x: hidden;
    overflow-y: auto;
}

.scroll-content::-webkit-scrollbar {
    width: 4px;
}

.scroll-content::-webkit-scrollbar-track {
    background-color: transparent;
}

.scroll-content::-webkit-scrollbar-thumb {
    background-color: #a2adb7;
    border-radius: 2px;
}

input[data-switch] {
    display: none;
}

input[data-switch=bool]:checked+label {
    background-color: #39afd1;
}

input[data-switch=bool]+label {
    background-color: #fa5c7c;
}

input[data-switch=warning]+label {
    background-color: #ffbc00;
    color: #fff;
}

input[data-switch=warning]:checked+label {
    background-color: #0acf97;
}

input[data-switch]+label {
    width: 96px;
    height: 24px;
    background-image: none;
    border-radius: 2rem !important;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
}

input[data-switch=bool]+label:before, input[data-switch=bool]:checked+label:before {
    color: #fff!important;
}

input[data-switch]:checked+label:before {
    color: #fff;
    content: attr(data-on-label);
    right: auto;
    left: 4px;
}
input[data-switch=warning]+label:before {
    color: #fff;
    content: attr(data-off-label);
    display: block;
    font-family: inherit;
    font-weight: 600;
    font-size: .75rem;
    line-height: 24px;
    position: absolute;
    right: 3px;
    margin: 0 0.21667rem;
    top: 0;
    text-align: center;
    min-width: 1.66667rem;
    overflow: hidden;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

input[data-switch=bool]+label:before {
    color: #313a46;
    content: attr(data-off-label);
    display: block;
    font-family: inherit;
    font-weight: 600;
    font-size: .75rem;
    line-height: 24px;
    position: absolute;
    right: 3px;
    margin: 0 0.21667rem;
    top: 0;
    text-align: center;
    min-width: 1.66667rem;
    overflow: hidden;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

input[data-switch]:checked+label:after {
    left: 74px;
    background-color: #f1f3fa;
}

input[data-switch=bool]+label:after {
    background-color: #f1f3fa;
}

input[data-switch]+label:after {
    content: "";
    position: absolute;
    left: 4px;
    background-color: #adb5bd;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2rem;
    height: 18px;
    width: 18px;
    top: 3px;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.section-title {
    color: #6c757d;
    line-height: 35px;
    font-size: 16px !important;
}

.list-group-item {
    /* padding: 6px 12px !important; */
    /* border-radius: .15rem !important; */
    border-color: #dee2e6 !important;
}

/* .list-group-item {
    border: none !important;
    color: #6c757d !important;
} */

/* .list-group-item:hover {
    background-color: #f4f6fb !important;
} */

.table-fixed thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.progress {
    height: 16px;
    background-color: #eef2f7 !important;
    border-radius: .25rem !important;
}

/* .progress .progress-bar {
    background-color: #727CF3;
} */

.progress .progress-bar.pricewidget {
    overflow: visible;
}

.progress.widget {
    height: 20px !important;
    min-width: 125px;
}

.text-shadow {
    /* text-shadow: 0px 0px 2px rgb(109, 106, 106); */
    text-shadow: 1px 1px 2px black;
}

.reddot {
    position: absolute;
    background-color: #da5e5e;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.accueil-title {
    margin-top: 35px;
    border: 1px solid #6c757d;
    text-align: center;
    border-radius: .15rem;
    padding: 2px 0px 2px 12px;
}

.accueil-title span:first-child {
    color: #6c757d;
}

.accueil-title span:last-child {
    color: #fff265;
    background-color: #6c757d;
    padding: 0 6px;
}

/* CONTENT */

@media only screen and (max-width : 767px) {
    .content-page {
        margin-left: 24px;
    }
    #panelsContentLoader, #panelsContentLoaderProgress, #baseContentLoader {
        margin-left: 0px !important;
    }
}

@media only screen and (min-width : 768px) {
    #panelsContentLoader, #panelsContentLoaderProgress, #baseContentLoader {
        margin-left: 55px !important;
    }
    .content-page.condensed.reduct, .preloader-page.condensed.reduct {
        margin-left: 90px;
    }
    .content-page.condensed {
        margin-left: 294px;
    }
    .preloader-page.condensed {
        margin-left: 270px;
    }
    .preloader-page.condensed img {
        margin-left: -270px;
    }
}

#panelsContentLoader {
    min-width: 310px !important;
    display: none;
}

#panelsContentLoaderProgress {
    min-width: 310px !important;
    display: none;
}

#panelsContentLoaderProgress .progress {
    min-width: 170px;
    height: 32px !important;
}

/* LOGIN */

.login-container {
    position: relative;
    min-height: 100vh;
    min-width: 100vw;
    background-image: url('https://coderthemes.com/hyper/saas/assets/images/bg-pattern-light.svg');
    background-size: cover;
    background-position: center;
}

.login-container .login-content {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    min-height: 100vh;
    position: relative;
}

.login-container .login-content .container {
    width: 100%;
}

.login-container .login-alert {
    position: absolute;
    top: -25%;
    width: 100%;
    align-content: center;
}





/* SIDEBAR + TOPBAR + FOOTER + CONTENT-PAGE + PRELOADER-PAGE */

@media only screen and (max-width : 768px) {
    .sidebar, .topbar .leftbar-lg {
        display: none !important;
    }

    .topbar .leftbar-sm {
        display: flex !important;
    }

    .topbar, .footer {
        left: 0 !important;
    }

    .content-page {
        margin-left: 24px !important;
    }
}

@media only screen and (min-width : 769px) {
    .sidebar, .topbar .leftbar-lg {
        display: flex !important;
    }

    .topbar .leftbar-sm, .sidebar-collapse {
        display: none !important;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #313a46;
    box-shadow: 0 0 45px 0 rgba(108, 117, 125, .2);
    z-index: 100;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    flex-direction: column;

    padding-top: 80px;
}

.sidebar::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.sidebar-collapse {
    top: 70px;
    left: 0;
    bottom: 0;
    background-color: #313a46;
    box-shadow: 0 0 45px 0 rgba(108, 117, 125, .2);
    overflow-y: scroll;
    z-index: 90;

    position: fixed;
}

.sidebar-collapse .sidebar-collapse-content {
    width: 270px;
}

.sidebar .logo, .sidebar-collapse .sidebar-collapse-content .logo {
    width: 100%;
    height: 70px;
    line-height: 70px;
    display: block;
    top: 0;
    position: fixed;
    margin-bottom: 10px;
    text-align: center;
    /* background-color: #313a46; */
    z-index: 1;
}

.sidebar .logo h2, .sidebar-collapse .sidebar-collapse-content .logo h2 {
    color: #fff;
    font-size: 1.9rem;
    pointer-events: none;
    line-height: 70px;
    vertical-align: middle;
    margin-bottom: 0;
    display: inline-block;
    margin-left: 12px;
}

.sidebar .logo img, .sidebar-collapse .sidebar-collapse-content .logo img {
    width: 46px;
    height: auto;
}

.topbar {
    position: fixed;
    top: 0;
    right: 0;
    height: 70px;
    background-color: #fff;
    box-shadow: 0 0 45px 0 rgba(108, 117, 125, .2);
    z-index: 99;
    display: flex;
    justify-content: space-between;
}

.footer {
    position: absolute;
    bottom: 0;
    border-top: 1px solid rgba(152,166,173,.2);
    padding: 19px 24px 20px;
    right: 0;
    left: 66px;
    color: #98a6ad;
    display: flex;
    justify-content: space-between;
}

.content-page {
    margin-right: 24px;
    margin-top: 70px;
    padding-bottom: 84px;
    min-height: calc(100vh - 70px);
    z-index: 98;
}

.preloader-page {
    background-color: #fafbfe;
    top: 0;
    bottom: 0;
    width: 100%;
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-nav .side-nav-link {
    display: block;
    list-style: none;
    position: relative;
    white-space: nowrap;
    color: #8391a2;
    transition: all .25s ease-in-out;
    font-size: .9375rem;
    padding: 15px 0px;
    text-decoration: none;
}

html[data-sidenav=expanded] .sidebar {
    width: 270px;
    overflow-y: scroll;
}

html[data-sidenav=collapsed] .sidebar {
    width: 70px;
    position: absolute;
}

html[data-sidenav=expanded] .sidebar .logo {
    width: 270px;
}

html[data-sidenav=collapsed] .sidebar .logo {
    width: 70px;
}

html[data-sidenav=expanded] .sidebar .side-nav .side-nav-title {
    display: block;
}

html[data-sidenav=expanded] .sidebar .side-nav .side-nav-item a span {
    display: inline;
}

html[data-sidenav=collapsed] .sidebar .logo h2, 
html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-title, 
html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item:not(:hover) .side-nav-link span, 
html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item > a .menu-arrow {
    display: none;
}

html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item:hover > .collapse {
    display: block;
}

html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item .side-nav-third-level:hover > .collapse {
    display: block;
}

html[data-sidenav=collapsed] .topbar, html[data-sidenav=collapsed] .footer {
    left: 70px;
}

html[data-sidenav=collapsed] .content-page {
    margin-left: 90px;
}

html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item:hover {
    background-color: #727CF5;
}

html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item:hover > .side-nav-link {
    color: #fff;
}

html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item:hover > .collapse > .side-nav-second-level {
    display: block;
    left: 70px;
    position: absolute;
    background-color: #313a46;
    box-shadow: 0 0 45px 0 rgba(108, 117, 125, .2);
    width: calc(270px - 70px);
}

html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item .side-nav-third-level:hover > .collapse > ul {
    display: block;
    left: 200px;
    position: absolute;
    background-color: #313a46;
    box-shadow: 0 0 45px 0 rgba(108, 117, 125, .2);
    width: calc(270px - 70px);
    padding-left: 0px;
    margin-top: -40px;
}

html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item:hover > .side-nav-link span:not(.badge) {
    display: block;
    left: 70px;
    position: absolute;
    background-color: #727CF5;
    color: #fff;
    width: calc(270px - 70px);
    padding: calc(25px* .6) calc(20px* 1.5);
    margin-top: -37px;
}

html[data-sidenav=collapsed] .sidebar .side-nav .side-nav-item:hover > .side-nav-link .counter {
    display: block;
    left: 200px;
    position: absolute;
}

html[data-sidenav=collapsed] .side-nav-second-level > li {
    padding-left: 0px;
}

html[data-sidenav=collapsed] .sidebar .side-nav-item .collapse.show {
    display: none;
}

html[data-sidenav=collapsed] .sidebar .collapsing {
    transition: none !important;
}

html[data-sidenav=expanded] .sidebar .side-nav .side-nav-link:hover {
    color: #bccee4;
    text-decoration: none;
}

html[data-sidenav=expanded] .side-nav-second-level > li {
    padding-left: 32px;
}

html[data-sidenav=expanded] .topbar, html[data-sidenav=expanded] .footer {
    left: 270px;
}

html[data-sidenav=expanded] .content-page {
    margin-left: 294px;
}



.filiale-dropdown { position: relative; font-size: 14px; }

.filiale-selected {
  display: flex; 
  align-items: center; 
  gap: 10px;
  padding: 8px 12px; 
  /* background: #fff; */
  border: 0.5px solid transparent;
  color: rgba(250, 249, 245, 1);
  border-radius: 8px; cursor: pointer;
  user-select: none; transition: border-color .15s;
}
.filiale-selected:hover { border-color: rgba(250, 249, 245, 1); }

.filiale-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #E6F1FB; color: #185FA5;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500;
  flex-shrink: 0; overflow: hidden;
}
.filiale-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.filiale-label { flex: 1; }

.filiale-chevron {
  width: 24px; height: 24px; color: rgba(250, 249, 245, 1);
  transition: transform .2s; flex-shrink: 0;
}
.filiale-dropdown.open .filiale-chevron { transform: rotate(180deg); }

.filiale-menu {
  position: absolute; 
  top: calc(100% + 4px);
  left: 0; 
  right: 0;
  background: #fff; 
  border: 0.5px solid rgba(0,0,0,0.2);
  border-radius: 8px; overflow: hidden;
  display: none; z-index: 200;
}
.filiale-dropdown.open .filiale-menu { display: block; }

.filiale-option {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; cursor: pointer;
  transition: background .1s;
}
.filiale-option:hover, .filiale-option.active { background: #f5f5f5; }


.side-nav {
    /* margin-top: 80px; */
    padding-left: 0;
    list-style-type: none;
    flex-grow: 1;
}

.side-nav .side-nav-title {
    letter-spacing: .05em;
    pointer-events: none;
    cursor: default;
    white-space: nowrap;
    text-transform: uppercase;
    color: #8391a2;
    font-weight: 700;
    font-size: calc(.9375rem * .74);
    padding: calc(15px * .74) calc(10px * 2);
}

.side-nav .side-nav-link.active {
    color: #fff !important;
    text-decoration: none;
}

.side-nav .side-nav-link i.side-nav-menu-icon,
.side-nav .side-nav-link svg.side-nav-menu-icon {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.2rem;
    width: calc(66px - 10px * 2);
    margin-left: 12px;
}

html[data-sidenav=expanded] .side-nav i.menu-arrow {
    display: inline-block;
    text-rendering: auto;
    position: absolute;
    top: 50%;
    right: calc(10px * 1.5);
    vertical-align: middle;
    transform: translate(-50%,-50%);
    transition: transform .15s,-webkit-transform .15s;
    line-height: 1.2rem;
    font-size: .9375rem;
}

html[data-sidenav=collapsed] .side-nav i.menu-arrow {
    display: inline-block;
    text-rendering: auto;
    position: absolute;
    top: 25%;
    right: calc(10px * 1.5);
    vertical-align: middle;
    line-height: 1.2rem;
    font-size: .9375rem;
}

html[data-sidenav=expanded] .side-nav .side-nav-item>a:not(.collapsed)>.menu-arrow {
    transform: translate(-50%,-50%) rotate(90deg);
}

html[data-sidenav=expanded] .side-nav-second-level>li>a:not(.collapsed)>.menu-arrow {
    transform: translate(-50%,-50%) rotate(90deg);
}

html[data-sidenav=expanded] .side-nav-forth-level>a:not(.collapsed)>.menu-arrow {
    transform: translate(-50%,-50%) rotate(90deg);
}

.side-nav-second-level {
    list-style: none;
    margin-top: 0;
    padding-left: 0px;
}

.side-nav-second-level li:hover {
    background-color: #202A37 !important;
}

.side-nav-second-level li a {
    white-space: nowrap;
    color: #8391a2;
    display: block;
    position: relative;
    transition: all .25s ease-in-out;
    font-size: calc(.9375rem * .95);
    padding: calc(15px  * .6) calc(20px * 1.5);
    text-decoration: none;
}

.side-nav-second-level li a:hover {
    color: #bccee4;
    text-decoration: none;
}

.side-nav-second-level li a.active {
    color: #fff !important;
    text-decoration: none;
}

.side-nav-second-level .side-nav-link {
    padding-left: 15px;
}

.side-nav-third-level {
    list-style: none;
}

.side-nav-third-level a.side-nav-link {
    padding: 9px 15px !important;
    margin-left: 16px;
}

.side-nav-third-level div ul {
    list-style: none;
    padding-left: 20px;
}

.side-nav-third-level div ul li {
    list-style: none;
    line-height: calc(40px - 18px);
}

.side-nav-third-level li a.active {
    color: #fff !important;
    text-decoration: none;
}

.topbar ul .dropdown .dropdown-menu .dropdown-icon-item {
    display: block;
    border-radius: 3px;
    line-height: 34px;
    text-align: center;
    padding: 15px 0 9px;
    display: block;
    border: 1px solid transparent;
    color: #6c757d;
}

.topbar ul .dropdown .dropdown-menu .dropdown-icon-item:hover {
    background-color: #f6f7fb;
}

.topbar ul .dropdown .dropdown-menu .dropdown-icon-item img {
    height: 24px;
}

.topbar ul .dropdown .dropdown-menu .dropdown-icon-item span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14.4px;
}

@media only screen and (max-width : 767px) {
    .topbar {
        left: 0;
    }
    .topbar.condensed {
        left: 0;
    }
    .topbar ul .topnav-item:last-child a span span:first-child {
        display: none;
    }

    .topbar ul .topnav-item:last-child a span span:last-child {
        display: none;
    }
    .topbar ul .topnav-item:last-child a {
        gap: 0px;
    }
    .topbar .dropdown-menu-animated {
        position: fixed !important;
        left: 10px !important;
        right: 10px !important;
    }

    .side-nav {
        margin-top: 0px;
    }

    .content-blur {
        filter: blur(2px);
    }
}

@media only screen and (min-width : 768px) {
    .topbar {
        left: 270px;
    }
    .topbar.reduct {
        left: 70px;
    }
    .topbar.condensed {
        left: 240px;
    }
    .topbar ul .topnav-item:last-child a span span:first-child {
        display: flex;
    }

    .topbar ul .topnav-item:last-child a span span:last-child {
        display: flex;
    }
    .topbar ul .topnav-item:last-child a {
        gap: 8px;
    }
    /* .topbar ul .dropdown .dropdown-menu.user-menu {
        inset: 0px 0px auto 0px !important;
    } */
    .topbar ul .dropdown .dropdown-menu.dropdown-application {
        width: 380px;
    }
    .topbar ul .dropdown .dropdown-menu.dropdown-notification {
        width: 380px;
    }
    .topbar ul .dropdown .dropdown-menu.dropdown-search {
        width: 380px;
    }
}

.topbar ul .dropdown .dropdown-menu.dropdown-application {
    max-height: 430px;
    overflow-y: auto;
}

.topbar div:first-child.leftbar {
    padding: 0 24px;
}

.topbar ul:first-child {
    list-style: none;
    /* padding: 0 24px; */
    /* padding-right: 24px; */
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.topbar ul:first-child li a i {
    color: #313a46;
    font-size: 24px;
}

.topbar ul:last-child {
    list-style: none;
    padding-right: 24px;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

@media screen and (max-width: 768px){
    .topbar ul:last-child {padding-right: 0;}
    .topbar div:first-child.leftbar{padding: 0 12px}
}

.topbar ul .dropdown .dropdown-menu {
    display: none;
    border-radius: .25rem;
    padding: 4px 0;
    border: 1px solid #e7ebf0;
    -webkit-animation-name: DropDownSlide;
    animation-name: DropDownSlide;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 1001;
}

.topbar ul .dropdown .dropdown-menu.pb-0 {
    display: none;
    border-radius: .25rem;
    padding: 4px 0 0 0;
    border: 1px solid #e7ebf0;
    -webkit-animation-name: DropDownSlide;
    animation-name: DropDownSlide;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 1001;
}

.topbar ul .dropdown .dropdown-menu.show {
    display: block;
}

.topbar ul .dropdown .dropdown-menu .dropdown-item {
    font-weight: 400;
    font-size: .9rem;
    color: #6c757d;
    padding: 7px 20px;
    display: block;
}

.topbar ul .dropdown .dropdown-menu .dropdown-item i {
    font-size: .9rem;
    margin-right: 8px;
}

.topbar ul .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #f4f6fb;
    color: #2c343f;
}

.topbar ul .topnav-item:not(.branche-item) {
    height: 100%;
    width: 52px;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-header h5 {
    font-weight: 700;
    font-size: .9375rem;
    color: #6c757d;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-header a {
    font-size: .75rem;
    font-weight: 400;
    cursor: pointer;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-wrapper {
    max-height: 292px;
    overflow-x: hidden;
    overflow-y: overlay;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-wrapper::-webkit-scrollbar {
    width: 4px;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-wrapper::-webkit-scrollbar-track {
    background-color: transparent;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-wrapper::-webkit-scrollbar-thumb {
    background-color: #a2adb7;
    border-radius: 2px;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-date {
    font-size: 13px;
    color: #98a6ad;
    margin-bottom: 10px;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    border: 1px solid #eef2f7;
    border-radius: .25rem;
    margin-bottom: 10px;
    position: relative;
    background-color: transparent;
    transition: .3s;
    position: relative;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif .notification-close {
    height: inherit;
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif .notification-close i {
    font-size: 16px;
    line-height: 16px;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif:hover {
    background-color: #f3f5fb;
    border: 1px solid #f3f5fb;
    transition: .3s;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif a:not(.notification-close) {
    display: inherit;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    padding: 14px;
    gap: 14px;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif .notification-icon {
    height: 39px;
    width: 39px;
    border-radius: 50%;
    line-height: 39px;
    text-align: center;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif .notification-icon i {
    font-size: inherit;
    line-height: 36px;
    color: #fff;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif .notification-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif .notification-title {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-notif .notification-resume {
    max-width: 170px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .75rem;
    color: #98a6ad;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-footer {
    text-align: center;
    padding: 0;
    border-top: 1px solid #eef2f7;
}

.topbar ul .dropdown .dropdown-menu.dropdown-notification .notification-footer a {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    color: #727cf5;
}

.topbar ul .topnav-item a:hover > i {
    color: #6c757d;
}

.topbar ul .topnav-item a:hover > span > i {
    color: #6c757d;
}

.topbar ul .topnav-item > a > i, .topbar ul .topnav-item > a > span > i {
    font-size: 24px;
    color: #98a6ad;
}

.topbar ul .topnav-item > a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
}

.topbar ul .topnav-item:last-child a span span:first-child {
    font-weight: 500;
}

.topbar ul .topnav-item:last-child a span span:last-child {
    font-size: .75rem;
}

.topbar ul .topnav-item:last-child {
    background-color: #fafbfd;
    border: 1px solid #f1f3fa;
    border-width: 0 1px;
    width: auto;
    margin-left: 12px;
}

.topbar ul .topnav-item:last-child:hover {
    background-color: #f5f5f7;
}

.topbar ul .topnav-item:last-child a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    width: 100%;
    height: 100%;
}

.topbar ul .topnav-item:last-child a img {
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.topbar ul .topnav-item:last-child a span span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #98a6ad;
}

.topbar ul .topnav-item img.branche-icone {
    height: 70px;
    width: auto;
    border-left: 1px solid #f1f3fa;
}

.topbar ul .topnav-item.branche-item:hover {
    box-shadow: inset 0px 0px 15px rgba(154, 161, 171, 0.15) !important;
}

/* OFFCANAVS */

@media only screen and (max-width : 1400px) {
    .offcanvas-responsive, .offcanvas-1_3, .offcanvas-fullscreen {
        width: 100vw !important;
    }

    .offcanvas-body .offcanvas-footer-responsive, .offcanvas-body .offcanvas-footer-fullscreen {
        width: 100%;
    }
}

@media only screen and (min-width : 1401px) {
    .offcanvas-responsive {
        width: 50vw !important;
    }

    .offcanvas-1_3 {
        width: 33vw !important;
    }

    .offcanvas-fullscreen {
        width: 100vw !important;
    }

    .offcanvas-body .offcanvas-footer-responsive {
        width: 50vw;
    }

    .offcanvas-body .offcanvas-footer-1_3 {
        width: 33vw;
    }

    .offcanvas-body .offcanvas-footer-fullscreen {
        width: 100vw;
    }
}

.offcanvas-body {
    padding-bottom: 87px;
}

.offcanvas-body .offcanvas-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 399px;
    padding: 16px;
    border-top: 1px solid #dee2e6;
    background-color: #fff;
}

.offcanvas-body .offcanvas-footer-1_3 {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 16px;
    border-top: 1px solid #dee2e6;
    background-color: #fff;
}

.offcanvas-body .offcanvas-footer-responsive {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 16px;
    border-top: 1px solid #dee2e6;
}

/* ALERTS */

.alert-icon {
    position: absolute;
    background-color: #da5e5e;
    top: 18px;
    right: 14px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.alert-message {
    position: absolute;
    background-color: #da5e5e;
    top: 18px;
    right: 7px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.warning-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-25%) translateY(-50%);
}

.footer a {
    text-decoration: none;
    color: #98a6ad;
    margin-left: 1.5rem;
}

.footer a:hover {
    color: #6c757d;
}

/* USER FILE WIDGET */

.userfiles-widget .userfiles-item {
    overflow: hidden;
    padding: 0.625rem 0;
    position: relative;
}

.userfiles-widget .userfiles-item:not(:last-child) {
    border-bottom: 1px solid rgba(152, 166, 173, .25);
}

.userfiles-widget .userfiles-item .userfiles-item-img {
    display: block;
    float: left;
    margin-right: 15px;
    width: 40px;
}

.userfiles-widget .userfiles-item .userfiles-item-img img {
    width: 40px;
    height: 40px;
}

.userfiles-widget .userfiles-item .userfiles-item-title {
    color: #343a40;
    display: block;
    margin-bottom: 3px;
    overflow: hidden;
    white-space: nowrap;
    /* text-overflow: ellipsis; */
    padding-right: 100px;
}

.userfiles-widget .userfiles-item .userfiles-item-resume {
    color: #adb5bd;
    display: block;
    font-size: .8125rem;
    margin: 0;
    padding-right: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.userfiles-widget .userfiles-item .userfiles-item-action {
    position: absolute;
    right: 5px;
    top: 10px;
}

/* USER RENT WIDGET */

.userrent-widget i.userrent-widget-illu {
    position: absolute;
    left: 0;
    bottom: -25px;
    font-size: 4rem;
    opacity: .3;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

.widget-icon {
    color: #727cf5;
    font-size: 20px;
    background-color: rgba(114, 124, 245, .25);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 3px;
    display: inline-block;
}

.backtotop-button {
    position: fixed;
    bottom: 42px;
    right: 24px;
    z-index: 1020;
}

/* APP-SEARCH */

.app-search .form-control:focus {
    box-shadow: none !important;
    background-color: #f1f3fa !important;
}

.app-search .form-select:focus {
    box-shadow: none !important;
    background-color: #f1f3fa !important;
}

.app-search .form-control {
    border: none;
    height: calc(1.5rem + .9rem + 2px);
    padding-left: 40px !important;
    padding-right: 20px !important;
    background-color: #eef2f7;
    box-shadow: none;
    color: #6c757d;
    overflow: hidden;
}

.app-search input.form-control:placeholder-shown {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.app-search .search-icon {
    position: absolute;
    z-index: 4;
    font-size: 18px;
    line-height: 42px;
    left: 14px;
    top: 0;
    color: #6c757d;
}

.app-search .form-select {
    border: none;
    height: calc(1.5rem + .9rem + 2px);
    box-shadow: none;
    color: #6c757d;
    background-color: #eef2f7;
}

.app-search .search-content {
    left: 0;
    right: 0;
    z-index: 1040;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: .15rem;
    border-bottom-right-radius: .15rem;
    box-shadow: 0px 0px 35px 0px rgb(154 161 171 / 15%);
    background-color: #fff;
}

.app-search .search-content .content-result {
    display: none;
    max-width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: .15rem;
    border-bottom-right-radius: .15rem;
    border: none !important;
}

.app-search .search-content .content-result .list-group-item {
    border: none;
    color: #6c757d !important;
}

.app-search .search-content .content-result .list-group-item:hover {
    background-color: #f4f6fb !important;
}

/* NAVBAR-SEARCH */

.topbar .navbar-search form {
    height: 70px;
    max-width: 620px
}

.topbar .navbar-search form .form-control {
    color: #6c757d;
    background-color: #f0f3f8;
}

.topbar .navbar-search form .search-icon {
    color: #6c757d;
}

.navbar-search {
    position: static;
    overflow-y: hidden
}

.navbar-search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.navbar-search form .form-control {
    border: none;
    height: calc(1.5em + .9rem + 2px);
    padding-left: 40px;
    padding-right: 20px;
    background-color: var(--ct-light);
    -webkit-box-shadow: none;
    box-shadow: none
}

.navbar-search form .search-icon {
    position: absolute;
    z-index: 4;
    font-size: 20px;
    line-height: 38px;
    left: 10px;
    top: 0;
    z-index: 5;
    color: var(--ct-secondary)
}

.navbar-search form .input-group-text {
    margin-left: 0;
    z-index: 4
}

.navbar-search form .dropdown-menu {
    z-index: 1060;
}

.navbar-search .search-dropdown {
    width: 440px;
    border-radius: .15rem !important;
}

.scroll-dropdown {
    max-height: calc(100vh - 140px);
    overflow-y: scroll;
}

.navbar-search .search-dropdown .dropdown-header {
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    padding: .5rem 1rem;
    font-size: .875rem;
    white-space: nowrap;
}

.navbar-search .search-dropdown .dropdown-item:active {
    background-color: #e9ecef;
}

/* GRILLE */

 .grille-item:hover .menu {
    opacity: 1;
}

.grille-item .menu {
    opacity: 0;
}

.grille-item img {
    height: 380px !important;
    object-fit: cover !important;
    width: 100% !important;
}

.grille-item iframe {
    height: 380px !important;
    object-fit: cover !important;
    width: 100% !important;
}

/* TILEBOX */

.tilebox div {
    position: relative;
}

.tilebox i {
    position: absolute;
    right: 1.5rem;
    font-size: 2rem;
    opacity: .3;
}

.tilebox h3 {
    color: #6c757d;
    font-size: 18px !important;
}

/* TIMELINE */

.timeline-alt {
    position: relative;
}

.timeline-alt .timeline-item {
    position: relative;
}

.timeline-alt:not(:last-child) .timeline-item::before {
    position: relative;
    background-color: #f1f3fa;
    bottom: 0;
    content: "";
    left: 9px;
    position: absolute;
    top: 20px;
    width: 2px;
    z-index: 0;
}

.timeline-alt .timeline-item .timeline-icon {
    float: left;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
}

.timeline-alt .timeline-item .timeline-item-info {
    margin-left: 30px;
}

/* ACCORDION */

.accordion {
    --bs-accordion-color: #6c757d !important;
    --bs-accordion-active-color: #727cf5 !important;
    --bs-accordion-active-bg: rgba(114, 124, 245, 0.1) !important;
}

.accordion-faq {
    --bs-accordion-color: #6c757d !important;
    --bs-accordion-active-color: #39afd1 !important;
    --bs-accordion-active-bg: rgba(193, 73, 52, 0.1) !important;
    --bs-accordion-border-width: 0px !important;
    --bs-accordion-border-radius: 0px !important;
    --bs-accordion-inner-border-radius: 0px !important;
}

.accordion h2 button {
    font-size: .9rem !important;
}

.accordion-faq .accordion-item {
    border: none;
}

.accordion-faq .accordion-item .accordion-body {
    background-color: rgba(255, 255, 255, .1);
}

.accordion-faq .accordion-button {
    padding: 16px !important;
}

.accordion-faq .accordion-button::after {
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E") !important;
}

.accordion-faq .accordion-item .accordion-header button {
    background-color: #39afd1 !important;
    color: #fff !important;
}

/* TODO-APP */

ul.todo-list {
    height: 100%;
}

ul.todo-list li {
    padding-left: 0 !important;
}

/* PAGE ARCHIVES */

.page-aside-left {
    width: 240px;
    float: left;
    padding: 0 20px 20px 10px;
    position: relative;
}

.page-aside-right {
    margin: -1.5rem 0 -1.5rem 250px;
    border-left: 5px solid #fafbfe;
    padding: 1.5rem 0 1.5rem 25px;
    min-height: 440px;
}

.page-archives-left {
    width: 240px;
    float: left;
    padding: 0 20px 20px 10px;
    position: relative;
}

.page-archives-left:before {
    content: "";
    background-color: #fafbfe;
    width: 5px;
    position: absolute;
    right: -15px;
    height: 100%;
    bottom: -1.5rem;
}

.page-archives-right {
    margin: -1rem 0 -1rem 250px;
    border-left: 5px solid #fafbfe;
    padding: 1.5rem 0 1.5rem 25px;
}

/* CALENDAR WIDGET */

.calendar-widget .datepicker-inline,
.calendar-widget table {
    width: 100%;
}
.calendar-widget .datepicker-inline tr th.dow, td.day{
    color: #6c757d !important;
}
.calendar-widget .datepicker-inline tr td.old, td.new{
    color: #bbc2c8 !important;
}
.calendar-widget .datepicker-inline tr td,
.calendar-widget .datepicker-inline tr td.active.day,
.calendar-widget .datepicker-inline tr td.today.day,
.calendar-widget .datepicker-inline tr th,
.calendar-widget table tr td,
.calendar-widget table tr td.active.day,
.calendar-widget table tr td.today.day,
.calendar-widget table tr th {
    background-color: transparent !important;
    background-image: none !important;
}
.calendar-widget .datepicker-inline tr td.active.day,
.calendar-widget .datepicker-inline tr td.today.day,
.calendar-widget table tr td.active.day,
.calendar-widget table tr td.today.day {
    color: #fa5c7c !important;
    text-shadow: none;
    font-weight: 700;
}
.calendar-widget .datepicker-inline tr td.active.day:hover,
.calendar-widget .datepicker-inline tr td.today.day:hover,
.calendar-widget table tr td.active.day:hover,
.calendar-widget table tr td.today.day:hover {
    background-color: transparent !important;
}
.calendar-widget .datepicker-inline td,
.calendar-widget .datepicker-inline th,
.calendar-widget table td,
.calendar-widget table th {
    height: 45px;
}
.calendar-widget .datepicker-inline .datepicker-switch,
.calendar-widget .datepicker-inline .next,
.calendar-widget .datepicker-inline .prev,
.calendar-widget table .datepicker-switch,
.calendar-widget table .next,
.calendar-widget table .prev {
    font-size: 1.1rem;
    background-color: rgba(114, 124, 245, 0.1) !important;
    border-radius: 0;
    color: #727cf5;
}


/* EMAIL MENU */

.email-menu-list a {
    color: #6c757d !important;
    padding: 12px 5px;
    display: block;
    font-size: 15px;
}

.email-menu-list a:hover {
    color: #343a40 !important;
    background-color: transparent !important;
}

/* VANILLA IMG GALLERY */

.gallery-main {
    column-count: 4;
    column-gap: 10px;
}

.gallery-img {
    max-width: 100%;
    display: block;
}

.gallery-main figure {
    margin: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    margin-bottom: 10px;
    break-inside: avoid;
}

.gallery-main figure > img {
    grid-row: 1 / -1;
    grid-column: 1;
    border-radius: .25rem;
}

.gallery-main figure a {
    color: black;
    text-decoration: none;
    width: auto;
}
  
.gallery-main figcaption {
    grid-row: 2;
    grid-column: 1;
    background-color: rgba(255,255,255,.8);
    padding: .3em .5em;
    width: fit-content;
}  

/* IMG GALLERY */

.grid {
    margin: 0 auto;
}

.grid:after {
    content: '';
    display: block;
    clear: both;
}

.stamp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.grid-item {
    position: relative;
    float: left;
    display: block;
    width: calc(50% - 16px);
    height: auto;
    margin-bottom: 16px;
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: .25rem;
}

.grid-item .menu {
    position: absolute;
    top: .5rem;
    left: .5rem;
    opacity:0;
}

.grid-item:hover .menu {
    opacity: 1;
}

.grid-item--gigante {
  width: calc(100% - 16px);
}

/* RIGHT-CLIC MENU */

.rc-menu-wrapper {
    position: fixed;
    visibility: hidden;
    width: 240px;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    border-radius: .25rem;
    font-size: .9rem !important;
    z-index: 9999;
    transform: translate(1px, 1px);
}

.rc-menu-wrapper .rc-menu {
    background-color: #fff;
    padding: 4px 0;
}

.rc-menu-wrapper .rc-menu h5 {
    padding: 7px 20px;
    margin-bottom: 4px;
    border-bottom: solid 1px rgba(108, 117, 125, .1);
}

.rc-menu-wrapper .rc-menu h6 {
    padding: 7px 20px;
    margin-bottom: 4px;
}

.rc-menu-wrapper .rc-menu .rc-menu-item {
    list-style-type: none;
}

.rc-menu-wrapper .rc-menu .rc-menu-item a {
    text-decoration: none;
    color: #6c757d;
    display: block;
    padding: 7px 20px;
}

.rc-menu-wrapper .rc-menu .rc-menu-item:hover {
    background-color: #f9f9fd;
}

/* MISC */

.faq-question-q-box {
    height: 30px;
    width: 30px;
    color: #727CF5;
    background-color: rgba(114, 124, 245, .25);
    -webkit-box-shadow: 0 0 45px 0 rgba(114, 124, 245, .2);
    box-shadow: 0 0 45px 0 rgba(114, 124, 245, .2);
    text-align: center;
    border-radius: 50%;
    float: left;
    font-weight: 700;
    line-height: 30px;
}

.card-img-top {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    object-fit: cover !important;
    height: 100% !important;
    width: auto !important;
}

.hidden-input-form {
    display: block;
    border: none;
    height: 1px;
    padding: 0px;
    resize: none;
    transform: translate(0px, 2px);
    cursor: default;
}

.hidden-input-form:focus-visible {
    outline: none !important;
}

div.ql-container {
    font-family: "Nunito" !important;
    border-bottom-left-radius: .15rem !important;
    border-bottom-right-radius: .15rem !important;
    border: 1px solid #dee2e6 !important;
}

div.ql-container div.ql-editor {
    min-height: 160px !important;
}

div.ql-toolbar {
    border-top-left-radius: .15rem !important;
    border-top-right-radius: .15rem !important;
    border: 1px solid #dee2e6 !important;
    border-bottom: none !important;
}

.text-vertical {
    writing-mode: tb-rl;
    transform: rotate(-180deg);
    text-orientation: sideways;
}

.dtsp-name {
    color: #6c757d !important;
}

#dossiersTable > tbody > tr[data-dt-row] > td {
    padding: 0 !important;
}

.loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: initial;
    display: none;
}

.loading-wrapper > div{
    right: calc(50%);
    position: absolute;
    top: 15%;
    transform: translateX(50%);
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    background-color: #fff;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15) !important;
    z-index: 99;
    border-radius: .25rem !important;
    font-weight: 700;
}

.bi.fw-700::before {
    font-weight: 700 !important;
}

.form-control-lg {
    min-height: calc(2.5rem + 4px) !important;
    font-size: 1.2rem !important;
}

.input-number-no-ctrl::-webkit-outer-spin-button, .input-number-no-ctrl::-webkit-inner-spin-button {
    display: none;
}

.CodeMirror, .CodeMirror-scroll {
    min-height: 190px !important;
}

.tox-tinymce {
    border-radius: .15rem !important;
    border: 1px solid #dee2e6 !important;
}

.tox.tox-edit-focus .tox-edit-area::before {
    opacity: 0 !important;
}

.vh-70 {
    height: 70vh;
}

.tableScrollable {
    overflow-y: auto;
    /* height: 100%; */
}

.tableScrollable thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.overflow-y-scroll {
    overflow-y: scroll;
}

.readonly {
    pointer-events: none;
}

.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
} 

.w-35 {
    width: 35% !important;
} 

.w-33 {
    width: 33% !important;
} 

.h-fill {
    height: calc(100vh - (70px + 75px + 84px));
}

.vh-25 {
    height: 25vh;
}

#searchPanelForm {
    padding-top: 32.6px !important;
    padding-bottom: 32.6px !important;
}

.illu-icon {
    position: absolute;
    left: -10px;
    bottom: -25px;
    font-size: 4rem;
    opacity: .4;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    color: #fff;
    opacity: .2;
}

.facture-embed-buttons {
    display: none;
}

.facture-embed:hover + .facture-embed-buttons, .facture-embed-buttons:hover {
    display: block;
}

.waiting-filter {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(249, 249, 253, .6);
    z-index: 9999;
    display: none;
}

.waiting-filter div {
    opacity: 1;
}

.error-filter {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(249, 249, 253, .6);
    z-index: 9999;
    display: none;
}

.error-filter div {
    opacity: 1;
}

.loading-modal {
    filter: blur(4px);
}

.hover-grey-main:hover {
    background-color: #eef2f7 !important;
}

.img-card-main {
    width:  100%;
    height: 220px;
    object-fit: cover;
    /* filter: blur(2px); */
}

.img-card-horizontal-main {
    width:  100%;
    height: 150px;
    object-fit: cover;
    /* filter: blur(2px); */
}

.table-fixed-header {
    overflow: auto;
    max-height: 411px;
}

.table-fixed-header thead th {
    position: sticky;
    top: 0;
    background-color: #fff !important;
}

.isDisabled {
    pointer-events: none;
    opacity: 0.80 !important;
    box-shadow: none !important;
}

.isBlur {
    filter: blur(3px) !important;
    cursor: not-allowed !important;
}

.isBlur div {
    pointer-events: none !important;
}

.position-alert-refus {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(calc(-50% + 120px));
}

@media only screen and (max-width : 767px) {
    .position-alert-refus {
        transform: translateX(-50%);
    }
}

@media only screen and (min-width : 768px) {
    .position-alert-refus {
        transform: translateX(calc(-50% + 120px));
    }
}

.view-contrat {
    height: calc(100vh - (70px + 60px + 75px + 24px + 24px + 46px));
}

.view-contrat iframe {
    height: calc(100% - 48px) !important;
}

.btn-link.link-purple-main:focus {
    box-shadow: none !important;
}

.border-end-white {
    border-right-color: rgba(255, 255, 255, 1) !important;
}

.live-input-form-control {
    border: none;
    font-size: .9rem !important;
    width: 100%;
    color: #6c757d !important;
}

.live-input-form-control:focus-visible {
    border: none;
    outline: none;
}

input.live-input-form-control::-webkit-outer-spin-button,
input.live-input-form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input.live-input-form-control[type=number] {
  -moz-appearance: textfield;
}

.simple-wrapper {
    overflow: scroll;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

.file-item {
    background-color: #fff;
}

.file-item:hover {
    background-color: #eef2f7;
}

.img-illustration {
    height: 30px;
    width: auto;
}

.nav-pills a {
    color: #6c757d;
}

.accordion-button:focus {
    border-color: initial;
    box-shadow: initial;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.page-title {
    color: #6c757d;
    line-height: 75px;
    font-size: 18px;
}

.panel-title {
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .02rem;
    font-size: .9rem !important;
    font-weight: 700;
    line-height: 1.1;
}

.no-decoration {
    text-decoration: none !important;
}

.card.border-none {
    border: none !important;
}

.alert-success {
    color: #fff !important;
    background-color: #0ac58f !important;
    border-color: #0ac58f !important;
}

.alert-danger {
    color: #fff !important;
    background-color: #fa5c7c !important;
    border-color: #fa5c7c !important;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-none-event {
    pointer-events: none;
}

/* hr:not([size]) {
    height: 1px;
    color: rgba(49,58,70,.25) !important;
    background-color: rgba(49,58,70,.50) !important;
    border: none;
} */

.vr:not([size]) {
    width: 2px;
    color: rgba(49,58,70,.25) !important;
    /* background-color: rgba(49,58,70,1) !important; */
}

.fs-small {
    font-size: .75rem;
    font-weight: 300;
}

.fs-main {
    font-size: 0.9rem;
    font-weight: 500;
}

.fs-tall {
    font-size: 1.25rem;
    font-weight: 500;
}

.fs-table {
    font-size: 0.8rem;
}

.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-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-32 {
    font-size: 32px !important;
}

.fs-48 {
    font-size: 48px !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-100 {
    font-weight: 100 !important;
}

.lh-17 {
    line-height: 17px !important;
}

/* .tab-content > .active {
    display: inline-block !important;
} */

.py-11 {
    padding-top: 8.6px !important;
    padding-bottom: 8.6px !important;
}

.py-form-table {
    padding-top: 0.51rem !important;
    padding-bottom: 0.51rem !important;
}

.dropdown-toggle::after {
    vertical-align: middle !important;
    margin-left: 12px !important;
}

.dropdown-menu {
    border: 1px solid #e7ebf0;
    box-shadow: var(--box-shadow);
    padding: 4px 0;
    min-width: 260px;
}

.card {
    border: 1px solid #e7ebf0;
}

.dropdown-menu-custom .dropdown-item {
    padding: 7px 20px;
    font-weight: 400;
    font-size: .9rem;
    color: #6c757d;
    display: block;
}

.dropdown-menu-custom .dropdown-item i {
    font-size: .9rem;
    margin-right: 8px;
}

.dropdown-menu-custom .dropdown-item:hover {
    background-color: #f4f6fb !important;
}

.dropdown-menu.dropdown-menu-embed {
    width: 100% !important;
    height: calc(100% - 64px) !important;
    padding: 0 !important;
    transform: translate3d(0px, 64px, 0px) !important;
}

.dropdown-item.active, .dropdown-item:active {
    color: initial !important;
    background-color: #fff !important;
}

.hovering:hover {
    background-color: #f9f9fd !important;
}

.hovering.displayButtons a {
    display: none;
}

.hovering.displayButtons:hover a {
    display: inline;
}

.bg-danger-lighten.hovering:hover {
    background-color: rgba(218,94,94,.08) !important;
}

.top-20px {
    top: 20px;
}

.top-43 {
    top: 43%;
}

.start-20px {
    left: 20px;
}

/* BREADCRUMBS */

.mobile-breadcrumbs {
    width: 100%;
    overflow: hidden;
}

.mobile-breadcrumbs ol.breadcrumb {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-breadcrumbs ol.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb-item {
    display: inline-block;
    font-size: .9rem !important;
}

.breadcrumb-item.active {
    color: #98a6ad !important;
}

.social-link {
    height: 2rem;
    width: 2rem;
    line-height: calc(2rem - 2px);
    display: block;
    border: 2px solid #a1a9b1;
    border-radius: 50%;
    color: #a1a9b1;
    text-align: center;
}

.card-content {
    border: none;
    box-shadow: var(--box-shadow);
    background-color: var(--bg-navbar-color);
    border-radius: .25rem;
}

.card-content .card-content-body {
    padding: 1rem;
}

.card-title {
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: .9rem;
    color: #6c757d !important;
}

.form-title {
    color: #6c757d !important;
    font-size: 18px;
}

.circle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
}

.circle-icon span {
    vertical-align: middle;
}

.circle-icon span i {
    vertical-align: sub;
}

.row-no-gutter-x {
    --bs-gutter-x: 0 !important;
}

.border-10 {
    --bs-border-width: 10px;
}

/* FORM */

.form-label, .form-check-label {
    color: #6c757d !important;
    font-weight: 600;
}

.form-control, .form-select {
    /* padding: .45rem .9rem !important; */
    border: 1px solid #dee2e6;
    border-radius: .15rem !important;
    font-size: .9rem;
    color: #6c757d !important;
}

.form-control-light {
    background-color: #eef2f7 !important;
    border-width: 0px;
    border-style: solid;
    border-color: #dee2e6;
}

.form-control.unbordered:focus {
    box-shadow: none !important;
    border-color: #727CF5 !important;
}

.form-control.unbordered {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    background-color: transparent !important;
}

.form-control.nobordered:focus {
    box-shadow: none !important;
}

.form-control.nobordered {
    border: none !important;
}

.form-select.unbordered:focus {
    box-shadow: none !important;
    border-color: #727CF5 !important;
}

.form-select.unbordered {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.form-select.nobordered:focus {
    box-shadow: none !important;
}

.form-select.nobordered {
    border: none !important;
}

.form-control.noFocus:focus {
    box-shadow: none !important;
}

.was-validated .form-control:valid, .form-control.is-valid {
    border-color: #0acf97 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%230acf97' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") !important;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: #fa5c7c !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23fa5c7c' stroke='none'/%3e%3c/svg%3e") !important;
}

input:not([type='file']).form-control:read-only {
    background-color: #e9ecef;
}

/* .form-select {
    padding: .45rem 2.7rem .45rem .9rem !important;
    border: 1px solid #dee2e6;
    border-radius: .15rem !important;
    font-size: .9rem !important;
    color: #6c757d !important;
} */

legend {
    display: block;
    width: auto;
    padding: 0 5px;
    margin-bottom: 0;
    font-size: inherit;
    line-height: inherit;
    border: auto;
    border-bottom: none;
    color: #6c757d !important;
    font-weight: 600;
    float: none;
}

fieldset {
    border: 1px solid #dee2e6;
    padding: 1rem;
    border-radius: .15rem !important;
}


















.user-logo {
    border-radius: 50%;
    border: 1px solid #dee2e6;
    padding: 0.25rem;
    height: 5.5rem;
    width: 5.5rem;
}

.text-title {
    font-size: 1rem;
    color: #6c757d !important;;
}

.rounded-main {
    border-radius: .25rem !important;
}

.rounded-end-main {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
}

.rounded-start-main {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
}

.rounded-top-start {
    border-top-left-radius: .15rem !important;
}

.rounded-top-end {
    border-top-right-radius: .15rem !important;
}

.border-main {
    border: 1px solid rgba(49,58,70,.1);
}

.border-grey-main {
    border-color: rgba(49,58,70,.1) !important;
}

.border-light-main {
    border-color: #f6f7fb !important;
}

.border-purple-main {
    border-color: rgba(114,124,245, .5) !important;
}

.border-purple-lighten-main {
    border-color: rgba(114,124,245, .25) !important;
}

.border-white-main {
    border-color: #ffffff !important;
}

.border-white-lg-main {
    border: 3px solid #ffffff !important;
}

/* RIBBON */

.ribbon-box {
    position: relative;
}

.ribbon-box .ribbon {
    position: absolute;
    padding: 5px 12px;
    box-shadow: 2px 5px 10px rgb(49 58 70 / 15%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    top: 16px;
    right: 16px;
}

.ribbon-box .ribbon:before {
    content: " ";
    border-style: solid;
    border-width: 10px;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    margin-bottom: -10px;
    z-index: -1;
}

.ribbon-box .ribbon.float-end {
    margin-right: -22px;
    border-radius: 3px 0 0 3px;
}

.ribbon-box .ribbon.float-end:before {
    right: 0;
}

.ribbon-box .ribbon-purple {
    background: #727cf5;
}

.ribbon-box .ribbon-info {
    background: #39afd1;
}

.ribbon-box .ribbon-danger {
    background: #fa5c7c;
}

.ribbon-box .ribbon-purple:before {
    border-color: #727cf5 transparent transparent;
}

.ribbon-box .ribbon-info:before {
    border-color: #2da2c3 transparent transparent;
}

.ribbon-box .ribbon-danger:before {
    border-color: #fa5c7c transparent transparent;
}

.ribbon-box .ribbon-content {
    clear: both;
}

















a.stretched-link-main {
    display: inline-block;
    width: 100%;
}

.search-bar {
    background-color: #f1f3fa !important;
    border-color: #f1f3fa !important;
    border-radius: .15rem !important;
}

.popover {
    font-family: var(--font-family) !important;
    max-width: 100% !important;
    border-radius: .15rem !important;
    border-color: #dee2e6 !important;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15) !important;
}

.popover .popover-header {
    font-size: .9rem !important;
    color: #6c757d !important;
    border-top-right-radius: .15rem !important;
    border-top-left-radius: .15rem !important;
}

.popover .popover-body {
    padding: .5rem .75rem !important;
}

[hidden] {
    display: none !important;
}

.table-success-main {
    background-color: rgba(10,207,151,.25);
}

.table-warning-main {
    background-color: rgba(255,188,0,.25);
}

.table-muted-main {
    background-color: rgba(108,117,125,.05);
}

.table-responsive {
    -webkit-overflow-scrolling: touch;
}

.table-responsive::-webkit-scrollbar {
    display: none;
}

.td-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 0;
}


.pill {
    display: inline-block !important;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
}

.pill-lg {
    display: inline-block !important;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
}

.pill-xl {
    display: inline-block !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.pill-md {
    display: inline-block !important;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
}

.pill-sm {
    display: inline-block !important;
    border-radius: 50%;
    width: .8rem;
    height: .8rem;
    line-height: 1rem;
}

.pill-progress {
    display: inline-block !important;
    border-radius: 50%;
    margin-top: 10px;
    width: 1rem;
    height: 1rem;
    border: solid 2px #F1F1F7;
}

.pill-forme {
    border-radius: 50%;
    text-align: center;
    width: 3rem;
    height: 3rem;
}












/* HORIZONTAL STEP */

.horizontal-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.horizontal-steps:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: .2em;
    background-color: #eef2f7;
}

.horizontal-steps .horizontal-steps-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.horizontal-steps .horizontal-steps-content .step-item {
    display: block;
    position: relative;
    bottom: calc(100% + 1em);
    height: 8px;
    width: 8px;
    margin: 0 2em;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    color: #727cf5;
    background-color: currentColor;
    border: .25em solid #fafbfe;
    border-radius: 50%;
    z-index: 5;
}

.horizontal-steps .horizontal-steps-content .step-item:first-child {
    margin-left: 0;
}

.horizontal-steps .horizontal-steps-content .step-item:last-child {
    margin-right: 0;
    color: #0acf97;
}

.horizontal-steps .horizontal-steps-content .step-item.red-item {
    margin-right: 0;
    color: #da5e5e !important;
}

.horizontal-steps .horizontal-steps-content .step-item span {
    position: absolute;
    top: calc(100% + 1em);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    color: #adb5bd;
}

.horizontal-steps .horizontal-steps-content .step-item.current span {
    color: #727cf5!important;
}

.horizontal-steps .horizontal-steps-content .step-item.current:before {
    content: "";
    display: block;
    position: absolute;
    top: 47.5%;
    left: 51%;
    padding: 1em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    -webkit-animation-name: animation-steps-current;
    animation-name: animation-steps-current;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes animation-steps-current {
    from {
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes animation-steps-current {
    from {
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.horizontal-steps .process-line {
    display: block;
    position: absolute;
    width: 50%;
    height: .2em;
    background-color: #727cf5;
}










.card-second-title {
    font-size: .9375rem;
}

.indice-main {
    line-height: 1.1;
    font-size: calc(1.275rem + .3vw);
    font-weight: 700 !important;
    color: #6c757d !important;
}

/* FAQ */

.faq-question-q-box {
    height: 30px;
    width: 30px;
    color: #727CF5;
    background-color: rgba(114, 124, 245,.25);
    -webkit-box-shadow: 0 0 45px 0 rgba(0,0,0,.12);
    box-shadow: 0 0 45px 0 rgba(0,0,0,.12);
    text-align: center;
    border-radius: 50%;
    float: left;
    font-weight: 700;
    line-height: 30px;
}

.faq-question {
    margin-top: 0;
    margin-left: 50px;
    font-weight: 600;
    font-size: 16px !important;
    color: #313a46;
}

.faq-answer {
    margin-left: 50px;
}

/* AVATAR */

.avatar-table {
    width: 28px;
    height: 28px;
}

.avatar-sm {
    height: 2.8rem;
    width: 2.8rem;
}

.avatar-md {
    height: 3.8rem !important;
    width: 3.8rem !important;
}

.avatar-lg {
    height: 6rem !important;
    width: 6rem !important;
}

.avatar-xl {
    height: 10rem !important;
    width: 10rem !important;
}

.avatar-title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;
    justify-content: center;
}

.notify-icon {
    float: left;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
}

.notify-icon i {
    line-height: 36px;
}

/* AVATAR CIRCLE */

.avatar-circle {
    height: 1.8rem;
    width: 1.8rem;
    border-radius: 50%;
    display: inline-block;
}

.avatar-circle span {
    line-height: 1.8rem;
    display: flex;
    align-self: baseline;
    justify-content: center;
}

.avatar-circle-lg {
    height: 3.2rem;
    width: 3.2rem;
    border-radius: 50%;
    display: inline-block;
}

.avatar-circle-lg span {
    line-height: 3.2rem;
    font-size: 1.8rem;
    display: flex;
    align-self: baseline;
    justify-content: center;
}

.table-accent {
    background-color: #f1f3fa94 !important;
}

/* MODALS */

/* @media only screen and (max-width : 767px) {
    .modal-dialog-centered, .modal-dialog-aligned {
        transform: translateX(0px);
    }
}

@media only screen and (min-width : 768px) {
    .modal-dialog-centered, .modal-dialog-aligned {
        transform: translateX(135px) !important;
    }
} */

.modal-header {
    padding: 1rem !important;
}

.modal-content {
    border-radius: .15rem !important;
}

.modal-content.rounded-modal-search {
    border-radius: .25rem !important;
}

.modal-title-main {
    color: #6c757d !important;
    font-size: 18px;
    margin-bottom: 0;
}

.modal-colored-header {
    border-top-left-radius: .10rem !important;
    border-top-right-radius: .10rem !important;
}

.modal-filled, .modal-filled .modal-title {
    color: #fff !important;
}

.modal-filled .modal-header, .modal-filled .modal-footer {
    border: none !important;
}

.modal-filled .modal-header {
    background-color: rgba(255,255,255,.1) !important;
}

/* TEXT COLORS */

.text-purple-main {
    color: #727CF5 !important;
}

.text-success-main {
    color: #0acf97 !important;
}

.text-info-main {
    color: #39afd1 !important;
}

.text-danger-main {
    color: #fa5c7c !important;
}

.text-warning-main {
    color: #ffbc00 !important;
}

.text-muted-main {
    color: #98a6ad !important;
}

.text-muted-main::placeholder {
    color: #98a6ad !important;
}

.text-grey-main {
    color: #6c757d !important;
}

.text-dark-main {
    color: #6c757d;
    text-decoration: none;
}

.text-black-main {
    color: #212529 !important;
}

.text-white-main {
    color: #fff !important;
}

.text-light-main {
    color: #b7c1c6 !important;
}

/* TEXT SIZES */

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

h4 {
    font-size: 1.125rem !important;
}

h5 {
    font-size: .9375rem !important;
}

h6 {
    font-size: 0.75rem !important;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

.title-main {
    color: #6c757d;
}

/* BORDER COLORS */

/* .border-purple-main {
    border-color: #727cf5 !important;
} */

.badge.border.border-grey-main {
    -webkit-box-shadow:inset 0px 0px 0px 1px rgba(49,58,70,.1) !important;
    -moz-box-shadow:inset 0px 0px 0px 1px rgba(49,58,70,.1) !important;
    box-shadow:inset 0px 0px 0px 1px rgba(49,58,70,.1) !important;
    border: none !important;
}

.border-danger-main {
    border-color: #fa5c7c !important;
}

.border-info-main {
    border-color: #39afd1 !important;
}

.border-success-main {
    border-color: #0acf97 !important;
}

.border-warning-main {
    border-color: #ffbc00 !important;
}

.border-darkgrey-main {
    border-color: #6c757d !important;
}

.border-danger-lighten {
    border-width: 1px;
    border: rgba(218,94,94,1) !important;
}

.border-dashed-top {
    border-top: 1px dashed;
}

/* LINK COLORS */

.link-select2 {
    color: #313a46 !important;
    text-decoration: none !important;
    cursor: pointer;
}

.link-success-main {
    color: #0acf97 !important;
    text-decoration: none !important;
}

.link-dark-main {
    color: rgb(49,58,70) !important;
    text-decoration: none;
}

.link-dark-main:hover {
    color: rgb(49,58,70);
}

.link-success-main:hover {
    color: #0a926b !important;
}

.link-danger-main {
    color: #da5e5e !important;
    text-decoration: none !important;
}

.link-danger-main:hover {
    color: #9b2d2d !important;
}

.link-warning-main {
    color: #ffbc00 !important;
    text-decoration: none !important;
}

.link-warning-main:hover {
    color: #be8c02;
}

.link-info-main {
    color: #39afd1 !important;
    text-decoration: none;
}

.link-info-main:hover {
    color: #3095b2 !important;
}

.link-purple-main {
    color: #727CF5;
    text-decoration: none;
}

.link-purple-main:hover {
    color: #5a63c8;
}

.link-purple-main-dashboard {
    color: #727CF5;
    text-decoration: none;
}

.link-purple-main-dashboard:first-child {
    border-top-left-radius: .25rem;
}

.link-purple-main-dashboard:last-child {
    border-top-right-radius: .25rem;
}

.link-purple-main-dashboard:hover {
    color: #fff;
    background-color: #727CF5;
}

.link-grey-main {
    color: #98a6ad;
    text-decoration: none;
}

.link-grey-main:hover {
    color: #565f67;
}

.link-muted-main {
    color: #6c757d;
    text-decoration: none;
}

.link-muted-main:hover {
    color: #5a6168;
}

.link-lightgrey-main {
    color: #98a6ad;
    text-decoration: none;
}

.link-lightgrey-main:hover {
    color: #98a6ad;
}

.link-white-main {
    color: #fff;
    text-decoration: none;
}

.link-white-under-main:hover, .link-white-main:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.link-white-under-main {
    color: #fff;
}

a.isDisabled {
    cursor: default;
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
}

.notif-link-main {
    display: flex;
    text-decoration: none;
}

.notif-link-main div.action {
    display: none;
}

.notif-link-main:hover {
    background-color: #ededf6 !important;
}

.notif-link-main:hover div.action {
    display: flex;
}

.link-file-main {
    display: block;
    color: #727CF5;
    text-decoration: none;
    padding: .5rem;
    width: 100%;
}

.link-file-main:hover {
    color: #5a63c8;
    background-color: #eef2f7;
}

.link-quill-main {
    text-decoration: none !important;
    color: #000;
    padding: 0 4px !important;
    font-size: 14.4px !important;
}

.link-quill-main:hover {
    color: #727CF5 !important;
}

.link-quill-main:focus {
    color: #727CF5 !important;
}

/* .link-white-main:active {
    color: #fff !important;
} */

/* BUTTONS */

.btn-main {
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    font-size: .9rem;
    padding: 0.45rem 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.btn-circle-main {
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    font-size: 1.2rem;
    width: 52px;
    height: 52px;
    text-decoration: none;
    border-radius: 50%;
}

.btn-circle-min-main {
    font-size: 8px;
    line-height: 16px;
    margin-bottom: 3px;
    text-align: center;
    vertical-align: middle;
    /* width: 20px;
    height: 20px; */
    text-decoration: none;
    border-radius: 50%;
}

button:not(.dt-button):disabled {
    pointer-events: none !important;
    opacity: 0.80 !important;
    box-shadow: none !important;
}

.btn-main:disabled {
    pointer-events: none !important;
    opacity: 0.80 !important;
    box-shadow: none !important;
}

.btn-main-sm {
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    padding: 0.28rem 0.8rem;
    font-size: .875rem;
    text-decoration: none;
}

.btn-main-sm.disabled {
    pointer-events: none;
    opacity: 0.80;
    box-shadow: none !important;
}

.btn-main-lg {
    font-size: 1.251rem;
    padding: .5rem 1rem;
}

.btn-widget {
    border-radius: 50% !important;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    font-size: 2.4rem;
    width: 100px;
    height: 100px;
    /* color: #6c757d;
    background-color: #fff; */
    border: none;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
}

.btn-widget:hover {
    border: solid #6c757d 1px;
}

button.link-purple-main:active {
    color: #727CF3 !important;
}

button.link-purple-main:focus {
    color: #727CF3 !important;
}

.btn-warning-main {
    background-color: #ffbc00;
    border: 1px solid #ffbc00;
    color: #fff;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(255 188 0 / 50%);
}

.btn-warning-main:hover {
    background-color: #d9a64d;
    border-color: #d9a64d;
    color: #fff;
}

.btn-white-main {
    background-color: #fff;
    border: 1px solid #fff;
    color: #6c757d;
}

.btn-close-info {
    filter: invert(57%) sepia(64%) saturate(465%) hue-rotate(147deg) brightness(94%) contrast(88%) !important;
}

.btn-info-main {
    background-color: #39afd1;
    color: #fff !important;
    border: 1px solid #39afd1;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(57 175 209 / 50%);
}

.btn-info-main:hover {
    background-color: #3095b2;
    border-color: #3095b2;
    color: #ffffff;
}

.btn-info-main:active {
    background-color: #2e8ca7;
    box-shadow: none;
}

.btn-outline-info-main {
    color: #39afd1;
    background-color: #ffffff;
    border: 1px solid #39afd1;
    box-shadow: 0 2px 6px 0 rgb(57 175 209 / 50%);
}

.btn-outline-info-main:hover {
    background-color: #39afd1;
    border-color: #39afd1;
    color: #ffffff;
}

.btn-outline-info-main:active {
    background-color: #2e8ca7;
    box-shadow: none;
}

.btn-danger-main {
    background-color: #fa5c7c;
    color: #ffffff;
    border: 1px solid #fa5c7c;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(218 94 94 / 50%);
}

.btn-danger-main:hover {
    background-color: #d54e69 !important;
    border-color: #d54e69 !important;
    color: #ffffff !important;
}

.btn-danger-main:active {
    background-color: #d54e69 !important;
    border-color: #d54e69 !important;
    box-shadow: none;
    color: #fff;
}

.btn-danger-main:focus {
    background-color: #ba3e57 !important;
    border-color: #ba3e57 !important;
    box-shadow: none;
    color: #fff;
}

.btn-danger-main:disabled {
    color: #fff;
    pointer-events: none;
    background-color: #fa5c7c;
    border-color: #fa5c7c;
    opacity: .65;
}

.btn-dark-main {
    color: #fff;
    border-radius: .15rem;
    background-color: #6c757d;
    border: none;
    box-shadow: 0 2px 6px 0 rgb(108 117 125 / 50%);
}

.btn-dark-main:hover {
    background-color: #555e65;
    color: #fff;
}

.btn-dark-main:active {
    background-color: #555e65;
    box-shadow: none;
}

.btn-success-main {
    background-color: #0acf97;
    color: #fff;
    border: 1px solid #0acf97;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(10 207 151 / 50%);
}

.btn-success-main:hover {
    background-color: #09b080;
    border-color: #09b080;
    color: #ffffff;
}

.btn-success-main:active {
    background-color: #099870;
    border-color: #099870;
    box-shadow: none;
    color: #ffffff;
}

.btn-success-main:focus {
    background-color: #099870;
    border-color: #099870;
    box-shadow: none;
    color: #ffffff;
}

.btn-outline-success-main {
    background-color: transparent;
    color: #0acf97;
    border: 1px solid #0acf97;
    box-shadow: 0 2px 6px 0 rgb(10 207 151 / 50%);
}

.btn-outline-success-main:hover {
    background-color: #0acf97;
    border-color: #0acf97;
    color: #ffffff;
}

.btn-outline-success-main:active {
    background-color: #099870;
    border-color: #0acf97;
    box-shadow: none;
}

.btn-grey-main {
    background-color: #eef2f7;
    color: #313a46;
    border: 1px solid #eef2f7;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(238 242 247 / 50%);
}

.btn-grey-main:hover {
    background-color: #eef2f7;
    color: #313a46 !important;
    border: 1px solid #eef2f7;
}

.btn-grey-main:active {
    box-shadow: none;
    background-color: #e8ecf1;
}

.btn-outline-warning-main {
    background-color: transparent;
    color: #ffbc00;
    border: 1px solid #ffbc00;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(255 188 0 / 50%);
}

.btn-outline-warning-main:hover {
    background-color: #ffbc00;
    border-color: #ffbc00;
    color: #ffffff;
}

.btn-outline-warning-main:active {
    background-color: #ad7f00;
    border-color: #ffbc00;
    box-shadow: none;
}

.btn-outline-danger-main {
    background-color: transparent;
    color: #fa5c7c;
    border: 1px solid #fa5c7c;
    box-shadow: 0 2px 6px 0 rgb(218 94 94 / 50%);
}

.btn-outline-danger-main:hover {
    background-color: #fa5c7c;
    border-color: #fa5c7c;
    color: #ffffff;
}

.btn-outline-danger-main:active {
    background-color: #fa5c7c;
    border-color: #fa5c7c;
    box-shadow: none;
}

.btn-purple-main {
    background-color: #727CF3;
    color: #ffffff !important;
    border: 1px solid #727CF3;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(114 124 243 / 50%);
}

.btn-purple-main:hover {
    background-color: #6169d0;
    color: #ffffff;
}

.btn-purple-main:active {
    background-color: #5a63c8;
    box-shadow: none;
}

.btn-purple-main:focus {
    background-color: #5a63c8;
    box-shadow: none;
    border-color: #5a63c8;
}

.btn-outline-purple-main {
    background-color: transparent;
    color: #727cf3;
    border: 1px solid #727CF3;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(114 124 243 / 50%);
    text-decoration-line: none;
}

.btn-outline-purple-main:hover {
    background-color: #727CF3;
    border-color: #727CF3;
    color: #ffffff;
    /* border: none; */
}

.btn-outline-purple-main:active {
    background-color: #727CF3;
    border-color: #727CF3;
    color: #ffffff;
    /* border: none; */
}

.btn-outline-purple-main:checked {
    background-color: #727CF3;
    border-color: #727CF3;
    color: #ffffff;
    /* border: none; */
}

.btn-check:checked {
    background-color: #727CF3;
    color: #ffffff;
}

.btn-link-main {
    color: #727cf5;
    border: transparent;
    background-color: transparent;
}

.btn-outline-light-main {
    background-color: transparent;
    color: #313a46;
    border: 1px solid #eef2f7;
    border-radius: 50%;
    box-shadow: none;
    vertical-align: middle;
}

.btn-outline-light-main:hover {
    background-color: #eef2f7;
    border-color: #eef2f7;
    color: #313a46;
}

.btn-light-main {
    color: #313a46;
    background-color: #eef2f7;
    border: 1px solid #eef2f7;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(238 242 247 / 50%);
}

.btn-light-main:hover {
    color: #313a46;
    background-color: #eef2f7;
    border: 1px solid #eef2f7;
}

.btn-light-main:active {
    color: #fff !important;
    background-color: #bec2c6 !important;
    border-color: #bec2c6 !important;
}

.btn-light-main.disabled {
    cursor: default;
    color: #98a6ad !important;
    pointer-events: none !important;
}

.btn-transparent-main {
    color: #313a46;
    box-shadow: none;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .15rem;
}

.btn-transparent-main:active {
    border-color: #bec2c6;
}

.btn-muted-main {
    color: #fff;
    background-color: #6c757d;
    border: 1px solid #6c757d;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(108 117 125 / 50%);
}

.btn-muted-main:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
}

.btn-outline-muted-main {
    color: #6c757d;
    background-color: #fff;
    border: 1px solid #6c757d;
    border-radius: .15rem;
}

.btn-outline-muted-main:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-muted-main:active {
    color: #fff;
    background-color: #565e64;
    border-color: #565e64;
}

.btn-group .btn {
    border-radius: .15rem;
    font-size: .9rem;
    padding: 0.45rem 0.9rem;
}

.btn-group .btn-outline-primary {
    background-color: #fff;
    color: #727cf5;
    border-color: #727cf5;
}

.btn-group .btn-outline-primary:hover {
    background-color: #727cf5;
    color: #fff;
    border-color: #727cf5;
}

.btn-group .btn-outline-primary:active {
    background-color: #727cf5;
    color: #fff;
    border-color: #727cf5;
}

.btn-group .btn-outline-primary:focus {
    background-color: #727cf5;
    color: #fff;
    border-color: #727cf5;
}

.btn-group .btn-check:hover {
    background-color: #727cf5;
    color: #fff;
    border-color: #727cf5;
}

.btn-group .btn-check:active {
    background-color: #727cf5;
    color: #fff;
    border-color: #727cf5;
}

.btn-group .btn-check:focus {
    background-color: #727cf5;
    color: #fff;
    border-color: #727cf5;
}

.btn-check:checked + .btn {
    background-color: #727cf5;
    color: #fff;
    border-color: #727cf5;
}

.btn-group .btn:focus {
    box-shadow: none;
}

.btn-vertical-main {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    transform: rotate(180deg) translateX(100%);
    padding: 16px 12px;
    background-color: #fff;
    color: #6c757d;
    border: 1px solid #fff;
    border-bottom-right-radius: .15rem;
    border-top-right-radius: .15rem;
    font-weight: 700;
}

.btn-link:focus {
    color: inherit !important;
    box-shadow: none !important;
}

/* BACKGROUNDS */

.bg-purple-main {
    background-color: #727CF5 !important;
}

.bg-purple-lighten {
    background-color: rgba(114,124,243,.15) !important;
}

.bg-purple-less-lighten {
    background-color: rgba(114,124,243,.8) !important;
}

.bg-info-main {
    background-color: #39afd1 !important;
}

.bg-info-lighten {
    background-color: rgba(57,175,209,.15) !important;
}

.bg-warning-main {
    background-color: #ffbc00 !important;
}

.bg-warning-lighten {
    background-color: rgba(255,188,0,.15) !important;
}

.bg-success-main {
    background-color: #0acf97 !important;
}

.bg-success-lighten {
    background-color: rgba(10,207,151,.15) !important;
}

.bg-success-less-lighten {
    background-color: rgba(10,207,151,.8) !important;
}

.bg-danger-main {
    background-color: #fa5c7c !important;
}

.bg-danger-lighten {
    background-color: rgba(218,94,94,.15) !important;
}

.bg-danger-less-lighten {
    background-color: rgba(218,94,94,.8) !important;
}

.bg-notif-unread {
    background-color: #f3f5fb !important;
}

.bg-dark-main {
    /* background-color: rgba(49,58,70,1) !important; */
}

.bg-dark-lighten {
    background-color: rgba(49,58,70,.25) !important;
}

.bg-muted-lighten {
    background-color: rgba(108,117,125,.15);
}

.bg-muted-main {
    background-color: #6c757d;
}

.bg-nav-pills {
    background-color: #eef2f7;
}

.bg-light-main {
    background-color: #f9f9fd !important;
}

.bg-white-main {
    background-color: #fff;
}

.bg-grey-main {
    background-color: #eef2f7 !important;
}

.bg-grey-lighten {
    background-color: rgba(238, 242, 247, .5) !important;
}

.bg-black-main {
    background-color: #313a46 !important;
}

.bg-lightblue-main {
    background-color: rgba(248, 249, 253, 0.703) !important;
}

.border-color-danger-main {
    border-color: #fa5c7c;
}

table.table-success-main {
    background-color: #0acf97;
    border-color: #fff;
    color: #fff !important;
}

/* BADGE */

.badge:not(.rounded-pill) {
    border-radius: .15rem;
}

.badge-warning-lighten {
    color: #ffbc00 !important;
    background-color: rgba(255,188,0,.15);
}

.badge-success-lighten {
    color: #0acf97 !important;
    background-color: rgba(10,207,151,.15);
}

.badge-danger-lighten {
    color: #da5e5e !important;
    background-color: rgba(218,94,94,.15);
}

.badge-info-lighten {
    color: #39afd1 !important;
    background-color: rgba(57,175,209,.15) !important;
}

.badge-light-lighten {
    color: #6c757d !important;
    background-color: #eef2f7 !important;
}

.badge-warning {
    color: #ffffff !important;
    background-color: rgba(255,188,0);
}

.badge-success {
    color: #ffffff !important;
    background-color: rgba(10,207,151);
}

.badge-danger-main {
    color: #ffffff !important;
    background-color: rgba(218,94,94);
}

.badge-info {
    color: #ffffff !important;
    background-color: rgba(57,175,209) !important;
}

.badge-light {
    color: #ffffff !important;
    background-color: #6c757d !important;
}

/* NAV */

.nav-tabs.nav-bordered {
    border-bottom: 2px solid rgba(152,166,173,.2);
}

.nav-tabs.nav-bordered .nav-item {
    margin-bottom: -1px;
}

.nav-tabs.nav-bordered li a {
    border-top: none;
    border-left: none;
    border-right: none;
}

.nav-tabs.nav-bordered li a:hover:not(.active) {
    color: #727cf5;
}

.nav-tabs.nav-bordered li a.active {
    border-bottom: 2px solid #727cf5;
}

.nav-pills {
    --bs-nav-pills-link-active-color: #fff !important;
    --bs-nav-pills-link-active-bg : #727cf5 !important;
}

.nav-nobordered {
    border: none !important;
}

.nav-nobordered .nav-link {
    border: none !important;
}

.nav-nobordered .nav-link.active {
    box-shadow: 0px 0px 10px 0px rgba(154, 161, 171, 0.15) !important;
    position: relative;
}

.nav-nobordered a.active::after {
    background-color: #fff;
    height: 10px;
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    right: 0px; 
}

/* .nav-nobordered > .nav-link:not(:first-child):not(:last-child).active::after {
    background-color: #fff;
    height: 10px;
    content: "";
    position: absolute;
    bottom: -10px;
    left: -15px;
    right: -15px; 
}

.nav-nobordered > .nav-link:last-child.active::after {
    background-color: #fff;
    height: 10px;
    content: "";
    position: absolute;
    bottom: -10px;
    left: -15px;
    right: 0px; 
} */

.nav-tabs .nav-link {
    margin-bottom: 0 !important;
}

.nav-tabs > li > .nav-link.active {
    color: #727CF5;
    font-weight: 700;
}

.nav-tabs:not(.facturesTabs) > li > .nav-link:not(.active) {
    color: #6c757d !important;
    font-weight: 400;
    /* box-shadow: inset 0px 0px 15px rgba(154, 161, 171, 0.15) !important; */
}

.nav-link-main:not(.active) {
    color: #727cf5 !important;
}

.nav-pills .nav-item .nav-link:not(.active) {
    background-color: #eef2f7 !important;
}

.nav-pills >li > a, .nav-tabs > li > a {
    color: #6c757d;
    font-weight: 600;
}

.nav-link:not(.active):hover {
    color: #727CF5 !important;
}

.nav-pills .nav-link.acive, .nav-pills .show > .nav-link {
    color: #ffffff !important;
    background-color: #727cf5 !important;
}

/* FORMS */

input[type=range]::-webkit-slider-thumb {
    background: #727CF5 !important;
}

input[type=range]::-moz-range-thumb {
    background: #727CF5 !important;
}

input[type=range]::-ms-thumb {
    background: #727CF5 !important;
}

input[type=range]:disabled::-webkit-slider-thumb {
    background: #eef2f7 !important;
}

input[type=range]:disabled::-moz-range-thumb {
    background: #eef2f7 !important;
}

input[type=range]:disabled::-ms-thumb {
    background: #eef2f7 !important;
}

select.empty {
    color: #a1a9b1 !important;
}

select:disabled {
    color: #a1a9b1 !important;
}

.form-check-purple.form-check-input-main[type="checkbox"]:checked {
    background-color: #727CF3;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-warning.form-check-input-main[type="checkbox"]:checked {
    background-color: #ffbc00;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-success.form-check-input-main[type="checkbox"]:checked {
    background-color: #0acf97;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-danger.form-check-input-main[type="checkbox"]:checked {
    background-color: #da5e5e;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-info.form-check-input-main[type="checkbox"]:checked {
    background-color: #39afd1;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-muted.form-check-input-main[type="checkbox"]:checked {
    background-color: #6c757d;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-white.form-check-input-main[type="checkbox"]:checked {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: #727CF3;
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: #727CF3;
}

input {
    border-radius: .15rem;
    border-color: rgba(49,58,70,.15);
    font-size: .9rem !important;
    color: #6c757d !important;
}

.form-floating input, .form-floating select, .form-input input, .form-input label, .form-floating textarea, textarea {
    border-radius: .15rem !important;
    border-color: rgba(49,58,70,.15) !important;
    font-size: .9rem !important;
    color: #6c757d !important;
}

.form-floating label {
    font-size: .9rem !important;
    color: #6c757d !important;
}

.form-check-main {
    min-height: 1.35rem;
    padding-left: .5rem;
    margin-bottom: 0;
}

.form-check-main-inline {
    display: inline-block;
    margin-right: 1rem;
}

.form-check-input-main[type=checkbox] {
    border-radius: 0.25em !important;
}

.form-check-main .form-check-input-main {
    float: left;
    /* margin-left: -1.612em; */
}

.form-check-input-main {
    width: 1.112em;
    height: 1.112em;
    margin-top: 0.194em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #dee2e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    -webkit-transition: background-color .15s ease-in-out,background-position .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,background-position .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,background-position .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,background-position .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.form-check-label-main {
    display: inline-block;
    color: #6c757d !important;
    font-weight: 600;
}

.form-control:not(.no-focus):focus {
    box-shadow: inset 0 0 0 0.25rem rgba(114, 124, 245, 0.25) !important;
}

.form-control.no-focus:focus {
    box-shadow: none !important;
}

.input-group .form-control-light {
    border-radius: .25rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    font-size: .9rem !important;
    color: #6c757d !important;
    background-color: #f1f3fa !important;
    border-color: #f1f3fa !important;
}

/* .input-group .input-group-text {
    border-radius: .15rem !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    font-size: .875rem !important;
} */

.form-control[type=file] {
    font-size: .9rem;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
}

.input-group-text-main {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

/* .input-group-text {
    border-radius: 0 .25rem .25rem 0 !important;
    border: 1px solid #dee2e6 !important;
} */

.input-group > input:not(.rounded-0) {
    border-top-left-radius: .15rem !important;
    border-bottom-left-radius: .15rem !important;
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-right: 1px solid #dee2e6;
}

select option[value=""] {
    color: #a1a9b1 !important;
}

select:invalid {
    color: #a1a9b1 !important;
}

/* ALERTES */

@keyframes defilement-rtl {
    0% {
      transform: translate3d(0,0,0);
    }
    100% {
      transform: translate3d(-100%,0,0);
    }
}

.general-alert {
    position: fixed;
    top: 70px;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: .15rem !important;
    border-bottom-right-radius: .15rem !important;
    border: none !important;
    left: 50%;
    margin: auto;
    z-index: 98;
    transform: translate(-50%, 0);
    max-width: 30vw;
    overflow: hidden;
    white-space: nowrap;
}

.general-alert p {
    font-weight: 700;
    font-size: 1rem;
}

@media only screen and (max-width : 767px) {
    .general-alert {
        left: 50%;
    }
}

@media only screen and (min-width : 768px) {
    .general-alert {
        left: calc(50% + 120px);
    }
}

.notif-alert {
    width: 400px;
    max-width: calc(100% - 24px);
    position: fixed !important;
    border-radius: .25rem !important;
    bottom: 60px;
    right: 12px;
    z-index: 1090;
}

.alert-info-main {
    color:  rgba(57,175,209,1) !important;
    background-color: rgba(57,175,209,.25) !important;
    border: rgba(57,175,209,1) !important;
}

.event-alert {
    position: absolute;
    bottom: 60px;
    left: 270px;
    right: 0px;
    border-radius: 0;
}

.event-alert-notif {
    position: absolute;
    top: 69px;
    left: calc(50% + 120px);
    transform: translateX(-50%);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}



/* DATATABLE */

/* v2 */

table.dataTable > thead > tr > th.dt-orderable-none, table.dataTable > thead > tr > td.dt-orderable-none {
    padding-right: 0.95rem !important;
}

table.dataTable > tbody > tr.selected {
    background-color: #ECEEFD;
}

th.dt-orderable-asc, th.dt-orderable-desc {
    position: relative;
    padding-right: 36px !important;
}

th.dt-orderable-asc span.dt-column-order, th.dt-orderable-desc span.dt-column-order {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    width: 12px;
}

th:not(.dt-orderable-none).dt-orderable-asc.dt-ordering-asc span.dt-column-order::before, th:not(.dt-orderable-none).dt-orderable-desc.dt-ordering-asc span.dt-column-order::before {
    opacity: 0.6;
}

th:not(.dt-orderable-none).dt-orderable-asc.dt-ordering-desc span.dt-column-order::after, th:not(.dt-orderable-none).dt-orderable-desc.dt-ordering-desc span.dt-column-order::after {
    opacity: 0.6;
}

.dt-layout-table thead  > tr th:not(.dt-orderable-none) span.dt-column-order::before {
    position: absolute;
    display: block;
    bottom: 50%;
    content: "▲" / "";
    line-height: 12px;
    font-size: 0.8em;
    left: 0;
    opacity: 0.125;
}

.dt-layout-table thead  > tr th:not(.dt-orderable-none) span.dt-column-order::after {
    position: absolute;
    display: block;
    top: 50%;
    content: "▼" / "";
    line-height: 12px;
    font-size: 0.8em;
    left: 0;
    opacity: 0.125;
}

@media only screen and (max-width : 426px) {
    .dt-layout-row:not(.dt-layout-table) {
        padding: 1rem 1rem 0 1rem !important;
        display: flex;
        flex-direction: column;
        clear: both;
        width: 100%;
    }

    .dt-end {
        text-align: left;
    }

    .dt-length select {
        border: 1px solid #dee2e6 !important;
        border-radius: 0.15rem !important;
        color: #6c757d !important;
        padding: 0.375rem 2.25rem 0.375rem 0.75rem !important;
        font-size: .9rem !important;
        font-weight: 400;
        line-height: 1.5;
        background-color: #fff;
        background-clip: padding-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        margin: 12px 6px 0 0;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 16px 12px;
    }

    .dt-info {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 12px;
    }

    .dt-paging {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

@media only screen and (min-width : 427px) {
    .dt-layout-row:not(.dt-layout-table) {
        padding: 1rem 1rem 0 1rem !important;
        display: flex;
        clear: both;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .dt-end {
        text-align: right;
    }

    .dt-length select {
        border: 1px solid #dee2e6 !important;
        border-radius: 0.15rem !important;
        color: #6c757d !important;
        padding: 0.375rem 2.25rem 0.375rem 0.75rem !important;
        font-size: .9rem !important;
        font-weight: 400;
        line-height: 1.5;
        background-color: #fff;
        background-clip: padding-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        margin: 0 6px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 16px 12px;
    }
}

div.dt-scroll-body {
	thead,
	tfoot {
		tr {
			height: 0;

			th, td {
				height: 0 !important;
				padding-top: 0px !important;
				padding-bottom: 0px !important;
				border-top-width: 0px !important;
				border-bottom-width: 0px !important;

				div.dt-scroll-sizing {
					height: 0 !important;
					overflow: hidden !important;
				}
			}

            .dt-column-order {
                display: none !important;
            }
		}
	}
}

.dt-scroll-headInner {
    width: 100% !important;
}

.dt-layout-row {
    padding: 1rem 0 0 0;
    display: block;
    clear: both;
    width: 100%;
}

.dt-layout-row .dt-full {
    width: 100%;
}

.dt-layout-table .dt-layout-cell {
    padding: 0 !important;
}

.dt-start {
    text-align: left;
    display: table-cell;
    vertical-align: middle;
}

.dt-end .dt-buttons {
    display: block;
}
.dt-end .dt-buttons button {
    margin-left: 1rem !important;
}

.dt-search label, .dt-length label, .dt-range label  {
    color: #6c757d;
    font-weight: 600;
}

.dt-search > input[type=search] {
    outline-offset: 0px !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 0.15rem !important;
    color: #6c757d !important;
    padding: 0.375rem 0.75rem !important;
    font-size: .9rem !important;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0 6px;
    min-width: 221px;
}

.dt-range input {
    border: 1px solid #dee2e6 !important;
    border-radius: 0.15rem !important;
    color: #6c757d !important;
    padding: 0.375rem 0.75rem !important;
    font-size: .9rem !important;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    min-width: 196px;
    margin-left: 6px;
}

.dtsp-titleRow {
    display: flex;
    gap: 1rem;
}

.dtsp-titleRow .dtsp-title {
    padding: 0;
}

.dtsp-title {
    color: #98a6ad !important;
}

.dtsp-titleRow button {
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    font-size: .9rem;
    padding: 0.45rem 0.9rem;
    text-decoration: none;
    display: inline-block;
    color: #313a46 !important;
    background-color: #eef2f7 !important;
    border: 1px solid #eef2f7 !important;
    border-radius: .15rem !important;
    box-shadow: 0 2px 6px 0 rgb(238 242 247 / 50%) !important;
}

.dtsp-titleRow button.dtsp-disabledButton {
    cursor: none;
    color: #98a6ad !important;
}

.dtsp-panesContainer {
    margin-bottom: 0 !important;
}

.dtsp-nameCont .dtsp-name span {
    color: #6c757d;
}

div.dt-info {
    color: #98a6ad;
}

div.dt-paging button {
    background-color: #fff;
    border: none;
    color: #6c757d;
    padding: 6px 5px;
    border-radius: 50%;
    line-height: 24px;
    width: 36px;
    margin-left: 2px;
    margin-right: 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

div.dt-paging button:not(.current):hover {
    background-color: #C6CAFB;
    color: #fff;
}

div.dt-paging button.current {
    background-color: #727CF5;
    color: #fff;
}

div.dt-paging button.next {
    margin-left: 12px;
}

div.dt-paging button.previous {
    margin-right: 12px;
}

div.dt-paging span.ellipsis {
    line-height: 24px;
    width: 34px;
    padding: 6px 12px;
}

div.dt-processing {
    left: calc(50%);
    position: fixed;
    top: 15%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    background-color: #fff;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15) !important;
    z-index: 99;
    border-radius: .25rem !important;
    font-weight: 700;
}

td.dt-control {
    cursor: pointer;
}

tr.dt-hasChild td.dt-control:before {
    border-top: 10px solid rgba(0, 0, 0, 0.5);
    border-left: 5px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 5px solid transparent;
}

td.dt-control:before {
    display: inline-block;
    box-sizing: border-box;
    content: "";
    border-top: 5px solid transparent;
    border-left: 10px solid rgba(0, 0, 0, 0.2);
    border-bottom: 5px solid transparent;
    border-right: 0px solid transparent;
}

tr[data-dt-row] {
    box-shadow: inset 0px 0px 15px rgba(154, 161, 171, 0.15) !important;
}

    /* Context-menu */

    .context-menu-item.text-danger-main::before {
        color: #fa5c7c !important;
    }

    .context-menu-item.context-menu-hover {
        background-color: #f4f6fb !important;
    }

    .context-menu-list {
        box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15) !important;
        border-radius: .25rem !important;
        font-size: .9rem !important;
        border: 1px solid #dee2e6 !important;
        background-color: #fff !important;
        padding: 4px 0 !important;
    }

    .context-menu-item {
        padding: 7px 20px !important;
    }

    .context-menu-separator {
        padding: 0 !important;
    }

/* v1 */

.app-search .dataTables_info {
    display: none;
}

.dataTables_processing.card {
    border: none !important;
}

a.buttons-columnVisibility {
    background-color: transparent;
    color: #727cf3;
    border: 1px solid #727CF3;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(114 124 243 / 50%);
    text-decoration-line: none;
}

a.buttons-columnVisibility.active {
    background-color: #727CF3;
    color: #ffffff !important;
    border: 1px solid #727CF3;
    border-radius: .15rem;
    box-shadow: 0 2px 6px 0 rgb(114 124 243 / 50%);
}

table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3 {
    background-color: #f6f7fb;
}

table.dataTable > thead .sorting:before, table.dataTable > thead .sorting:after, table.dataTable > thead .sorting_asc:before, table.dataTable > thead .sorting_asc:after, table.dataTable > thead .sorting_desc:before, table.dataTable > thead .sorting_desc:after, table.dataTable > thead .sorting_asc_disabled:before, table.dataTable > thead .sorting_asc_disabled:after, table.dataTable > thead .sorting_desc_disabled:before, table.dataTable > thead .sorting_desc_disabled:after {
    bottom: 16px !important;
}

.dataTables_info {
    color: #6c757d;
}

.pagination-rounded .page-link {
    border-radius: 30px !important;
    margin: 0 3px !important;
    border: none;
    font-size: 13px !important;
}

.page-link {
    color: #313a46 !important;
}

.page-item.disabled .page-link {
    color: #ced4da !important;
}

.active>.page-link {
    color: #fff !important;
    background-color: #727cf5 !important;
}

/* .dataTables_length, .dataTables_filter {
    margin-bottom: .7rem !important;
} */

.dataTables_length select {
    width: 100%;
    min-width: 85px;
}

.dataTables_paginate {
    margin-top: .8rem !important;
}

.dataTables_info {
    align-self: center;
}

ul.dtr-details {
    width: 100%;
}

/* PAGINATION JS */

.paginationjs {
    display: flex;
    justify-content: center;
    font-size: 13px !important;
    align-items: center;
}

.paginationjs ul {
    list-style-type: none;
    padding: 0;
    margin: 8px 0;
}

.paginationjs ul li {
    display: inline;
}

.paginationjs .paginationjs-pages li>a {
    border-radius: 30px !important;
    margin: 0 3px !important;
    border: none;
    font-size: 13px !important;
    cursor: pointer;
    padding: 7px 12px;
}

.paginationjs .paginationjs-pages li:not(.disabled)>a:hover {
    background-color: #e9ecef;
}

.paginationjs .paginationjs-pages li.active>a {
    color: #fff !important;
    background-color: #727CF5 !important;
}

.paginationjs .paginationjs-pages li.disabled>a {
    color: #ced4da !important;
}

/* CHAT */

.mobile-conversation {
    width: 100%;
    overflow: auto;
}

.mobile-conversation-list {
    white-space: nowrap;
}

.mobile-conversation-list a {
    display: inline-block !important;
    height: 4.3rem !important;
    width: 4.3rem !important;
    text-decoration: none;
}

.mobile-conversation-list a span {
    display: block;
    text-align: center;
    line-height: 3.7rem;
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 50%;
    color: #fff;
    margin: auto;
    margin-top: .3rem;
    font-size: 20px;
    background-color: #727CF5;
}

.conversation-list {
    list-style: none;
    padding: 0;
}

.conversation-list li {
    margin-bottom: 20px;
}

.conversation-list .conversation-text {
    float: left;
    font-size: 13px;
    margin-left: 12px;
    width: 100%;
}

.conversation-list .ctext-wrap {
    background-color: #eef2f7;
    border-radius: 3px;
    display: inline-block;
    padding: 12px;
    position: relative;
}

.conversation-list .ctext-wrap i {
    display: block;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    position: relative;
    color: #6c757d;
}

.conversation-list .ctext-wrap p {
    margin: 0;
    padding-top: 3px;
    color: #6c757d;
}

.conversation-list small {
    margin-top: 6px;
    margin-left: 12px;
    color: #98a6ad;
}

.conversation-list .ctext-wrap::after {
    left: -11px;
    top: 0;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: #eef2f7;
    border-right-color: #eef2f7;
    border-width: 6px;
    margin-right: -1px;
}

.conversation-list .odd .conversation-text {
    float: right !important;
    margin-right: 12px;
    text-align: right;
    width: 100% !important;
}

.conversation-list .odd .ctext-wrap {
    background-color: #727CF5;
}

.conversation-list .odd .ctext-wrap i {
    color: #fff;
}

.conversation-list .odd .ctext-wrap p {
    color: #fff;
}

.conversation-list .odd small {
    margin-top: 6px;
    margin-right: 12px;
    float: right;
    color: #98a6ad;
}

.conversation-list .odd .ctext-wrap::after {
    border-color: transparent;
    border-top-color: #727CF5;
    border-left-color: #727CF5;
    right: -10px;
    left: auto;
}

/* CHART.JS */

.chart-container {
    position: relative;
    margin: auto;
    height: 30vh;
    width: 85vw;
}

/* FULLCALENDAR */

.fc-toolbar-chunk {
    display: flex;
    align-items: center;
    margin: 24px 0;
    gap: 12px !important;

    button {
        font-weight: 400 !important;
        line-height: 1.5 !important;
        text-align: center !important;
        vertical-align: middle !important;
        font-size: .9rem !important;
        padding: 0.45rem 0.9rem !important;
        text-decoration: none !important;
        display: inline-block !important;
        background-color: #727CF3 !important;
        color: #ffffff !important !important;
        border: 1px solid #727CF3 !important;
        border-radius: .15rem !important;
        box-shadow: 0 2px 6px 0 rgb(114 124 243 / 50%) !important;
        margin-left: 0px !important;
    }

    button:hover {
        background-color: #6169d0 !important;
        color: #ffffff !important;
    }

    h2 {
        color: #6c757d !important;
        margin-left: 0px !important;
    }
}

.fc-daygrid-event {
    border-radius: 12px;
}

.fc-header-toolbar.fc-toolbar {
    margin: 0 !important;
}

.fc-multiMonthYear-view {
    border: 0 !important;
}

.fc-multimonth-month {
    margin-bottom: 6rem !important;
}

.fc-theme-standard td {
    border: 1px solid rgba(49,58,70,.1) !important;
}

.fc-multimonth-title {
    color: #6c757d !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: left !important;
    padding-left: 1rem !important;
    padding-bottom: 0 !important;
}

.fc-col-header-cell {
    border: 1px solid rgba(49,58,70,.1) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    text-align: left !important;
}

.fc-scrollgrid-sync-inner {
    padding: 1rem !important;
}

.fc-col-header-cell-cushion {
    text-decoration: none !important;
    color: #6c757d !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
}

.fc-day-disabled {
    background-color: rgba(49,58,70,.1) !important;
}

.fc-daygrid-day-top {
    flex-direction: row !important;
}

.fc-daygrid-day-number {
    text-decoration: none;
    color: #98a6ad !important;
}

.fc-multimonth-daygrid-table {
    border-bottom: 1px solid rgba(49,58,70,.1) !important;
}

.fc-day-today {
    background-color: rgba(255,188,0,.15) !important;
}

.fc-daygrid-day-frame {
    min-height: 1em !important;
}

.fc-daygrid-block-event .fc-event-time, .fc-daygrid-block-event .fc-event-title {
    padding: 3px !important;
}

.fc-h-event {
    opacity: .8 !important;
}

/* .fc-toolbar {
    background-color: #727CF5 !important;
    color: #fff;   
    margin-bottom: 0px !important;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.fc-toolbar .fc-toolbar-title {
    font-size: 1.1rem;
    text-transform: capitalize;
}

.fc-toolbar .fc-next-button, .fc-toolbar .fc-prev-button {
    border: none;
    font-size: 1.1rem;
    background-color: transparent;
    color: #fff;
}

.fc-toolbar .fc-next-button:hover, .fc-toolbar .fc-prev-button:hover {
    border: none;
    background-color: transparent;
    color: #fff;
}

.fc-toolbar .fc-next-button:active, .fc-toolbar .fc-prev-button:active {
    border: none;
    background-color: transparent !important;
    color: #fff !important;
}

.fc-toolbar .fc-next-button:focus, .fc-toolbar .fc-prev-button:focus {
    border: none;
    background-color: transparent;
    color: #fff;
    box-shadow: none !important;
}

.fc-toolbar table tr:last-child {
    background-color: #000;
}

a.fc-event {
    cursor: pointer;
}

.fc-col-header > thead > tr th a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}

.fc-col-header > thead > tr th {
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: #727CF5;
}

.fc-col-header > thead > tr th:first-child {
    border-bottom-left-radius: .25rem;
}

.fc-col-header > thead > tr th:last-child {
    border-bottom-right-radius: .25rem;
}

.fc .fc-daygrid-day-top {
    display: block !important;
}

.fc .fc-daygrid-day-top a {
    color: #727CF5;
    text-decoration: none;
    font-weight: 700;
}

.fc-daygrid-day-frame {
    padding: 6px !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 3px solid #fa5c7c;

    -webkit-box-shadow:inset 0px 0px 0px 3px #fa5c7c;
    -moz-box-shadow:inset 0px 0px 0px 3px #fa5c7c;
    box-shadow:inset 0px 0px 0px 3px #fa5c7c;
    border-radius: .25rem;
}

.fc-theme-standard td, .fc-theme-standard th {
    border: none !important;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-top a {
    color: #fff;
    background-color: #fa5c7c;
    border-radius: 50%;
    padding: 3px 8px;
}

.fc-daygrid-day-frame:hover {
    background-color: #727CF5;
    border-radius: .25rem;
}

.fc-daygrid-day-frame:hover > .fc-daygrid-day-top a, .fc-daygrid-day-frame:hover > .fc-daygrid-day-events a {
    color: #fff;
}

.fc-daygrid-body table > tbody > tr td:not(.fc-day-today), .fc-scrollgrid > thead > tr th, .fc-scrollgrid, .fc-scrollgrid > tbody > tr td:not(.fc-day-today) {
    border: none !important;
}

.fc-daygrid-body table > tbody > tr:nth-child(even) {
    background-color: rgba(114,124,243,.15);
}

.fc-daygrid-body table > tbody > tr > td:first-child {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
}

.fc-daygrid-body table > tbody > tr > td:last-child {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
}

.fc-popover {
    border-radius: .25rem;
}

.fc-popover .fc-popover-header {
    padding: 5px 6px;
    background-color: #727CF5;
    color: #fff;
    font-weight: 700;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.fc-popover .fc-popover-body a .fc-event-title {
    color: #727CF5;
}

.fc-daygrid-more-link {
    color: #39afd1;
    text-decoration: none;
} */

/* .fc-daygrid-body table > tbody > tr:last-child > td:first-child {
    background-color: #008FFB;
    border: none;
    border-bottom-left-radius: .25rem !important;
}

.fc-daygrid-body table > tbody > tr:last-child > td:last-child {
    background-color: #008FFB;
    border: none;
    border-bottom-right-radius: .25rem !important;
} */

/* .fc-toolbar h2 {
    font-size: 1.25rem !important;
    line-height: 1.875rem;
    text-transform: uppercase;
    color: #6c757d !important;
} */

/* .fc-toolbar .fc-next-button {
    font-weight: 400 !important;
    line-height: 1.5 !important;
    font-size: .875rem !important;
    border-radius: .15rem !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding: .28rem, .8rem !important;
    background-color: #727cf5 !important;
    border: 1px solid #727cf5 !important;
    box-shadow: 0 2px 6px 0 rgb(114 124 243 / 50%) !important;
}

.fc-toolbar .fc-prev-button {
    font-weight: 400 !important;
    line-height: 1.5 !important;
    font-size: .875rem !important;
    border-radius: .15rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    padding: .28rem, .8rem !important;
    background-color: #727cf5 !important;
    border: 1px solid #727cf5 !important;
    box-shadow: 0 2px 6px 0 rgb(114 124 243 / 50%) !important;
} */

/* .fc-view-harness-active {
    background-color: #fff !important;
    box-shadow: 0 2px 6px 0 rgba(224, 229, 234, 0.5) !important;
} */

/* .fc .fc-multimonth {
    border-radius: .15rem !important;
} */

/* .fc-daygrid-day-number {
    float: right;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    font-size: 11px;
    padding: 0 !important;
    background-color: #f6f7fb;
    text-decoration: none;
    color: rgb(108, 117, 125);
    margin: 5px;
} */

/* .fc-day-today {
    background-color: rgba(225,220,50,.15) !important;
} */

/* .fc-button-primary {
    border-radius: .15rem !important;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
} */

/* .fc-col-header-cell-cushion {
    text-decoration: none !important;
    color: rgb(108, 117, 125) !important;
    text-transform: capitalize !important;
}

.fc-daygrid-more-link {
    color: #727cf5;
    text-decoration: none;
}

.fc-daygrid-more-link:hover {
    color: #727cf5 !important;
}

.fc-daygrid-dot-event {
    color: #727cf5;
    cursor: pointer;
}

.fc-daygrid-event-dot {
    border-color: #727cf5;
}

.fc-daygrid-event {
    font-size: 10px !important;
} */

/* .fc-h-event {
    border-color: none !important;
    background: rgba(114,124,245,1) !important;
}

.fc-v-event {
    background-color: #727cf5 !important;
    border-color: #727cf5 !important;
} */



/* JQUERY DATEPICKER */

#ui-datepicker-div {
	display: none;
	background-color: #fff;
	box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.1);
	margin-top: 0.25rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
    max-width: 270px;
}
table.ui-datepicker-calendar {
	border-collapse: collapse;
	border-spacing: 0;
}
.ui-datepicker-calendar thead th {
	padding: 0.25rem 0;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 400;
	color: #78909C;
}
.ui-datepicker-calendar tbody td {
	width: 2.5rem;
	text-align: center;
	padding: 0;
}
.ui-datepicker-calendar tbody td a {
	display: block;
	border-radius: 0.25rem;
	line-height: 2rem;
	transition: 0.3s all;
	color: #546E7A;
	font-size: 0.875rem;
	text-decoration: none;
}
.ui-datepicker-calendar tbody td a:hover {
	background-color: #E0F2F1;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
	background-color: #727cf5;
	color: white;
}
.ui-datepicker-header a.ui-corner-all {
	cursor: pointer;
	position: absolute;
	top: 0;
	width: 2rem;
	height: 2rem;
	margin: 0.5rem;
	border-radius: 0.25rem;
	transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
	background-color: #ECEFF1;
}
.ui-datepicker-header a.ui-datepicker-prev {
	left: 0;
	background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
	background-repeat: no-repeat;
	background-size: 0.5rem;
	background-position: 50%;
	transform: rotate(180deg);
}
.ui-datepicker-header a.ui-datepicker-next {
	right: 0;
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: 50%;
}
.ui-datepicker-header a>span {
	display: none;
}
.ui-datepicker-title {
	text-align: center;
	line-height: 2rem;
	margin-bottom: 0.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	padding-bottom: 0.25rem;
}
.ui-datepicker-week-col {
	color: #78909C;
	font-weight: 400;
	font-size: 0.75rem;
}

.daterangepicker .ranges li.active {
    background-color: #727cf5 !important;
}

.daterangepicker .drp-calendar td.active {
    background-color: #727cf5 !important;
}

.daterangepicker .cancelBtn {
    background-color: #fa5c7c !important;
    color: #fff !important;
    border-radius: .15rem !important;
    border: 1px solid #fa5c7c !important;
}

.daterangepicker .cancelBtn:hover {
    background-color: #d54e69 !important;
    border-color: #d54e69 !important;
    color: #ffffff !important;
}

.daterangepicker .applyBtn {
    background-color: #727CF3 !important;
    color: #fff !important;
    border-radius: .15rem;
    border: 1px solid #727CF3 !important;
}

.daterangepicker .applyBtn:hover {
    background-color: #6169d0 !important;
    border-color: #6169d0 !important;
    color: #ffffff;
}

/* FULL CALENDAR */

/* .fc button.btn-primary {
    font-weight: 400 !important;
    line-height: 1.5 !important;
    text-align: center !important;
    vertical-align: middle !important;
    padding: 0.28rem 0.8rem !important;
    font-size: .875rem !important;
    text-decoration: none !important;
    background-color: #727CF3 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: .15rem !important;
    box-shadow: 0 2px 6px 0 rgb(114 124 243 / 50%) !important;
}

.fc button.btn-primary:hover {
    background-color: #727CF3 !important;
    color: #ffffff !important;
}

.fc button.btn-primary:active {
    background-color: #5a63c8 !important;
    box-shadow: none !important;
}

.fc .fc-toolbar-title {
    text-transform: uppercase !important;
    font-size: .9rem !important;

} */

/* APEX CHARTS */

.apexcharts-legend-series {
    padding: 4px 12px;
}

.apexcharts-canvas {
    position: relative;
    user-select: none;
    /* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */
  }


  /* scrollbar is not visible by default for legend, hence forcing the visibility */
  .apexcharts-canvas ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px;
  }

  .apexcharts-canvas ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  }


  .apexcharts-inner {
    position: relative;
  }

  /* .apexcharts-inner text tspan {
    fill: #adb5bd;
  } */

  .legend-mouseover-inactive {
    transition: 0.15s ease all;
    opacity: 0.20;
  }

  .apexcharts-series-collapsed {
    opacity: 0;
  }

  .apexcharts-tooltip {
    border-radius: 5px;
    box-shadow: 2px 2px 6px -4px #999;
    cursor: default;
    font-size: 14px;
    left: 62px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    white-space: nowrap;
    z-index: 12;
    transition: 0.15s ease all;
  }

  .apexcharts-tooltip.apexcharts-active {
    opacity: 1;
    transition: 0.15s ease all;
  }

  .apexcharts-tooltip.apexcharts-theme-light {
    border: 1px solid #e3e3e3;
    background: rgba(255, 255, 255, 0.96);
  }

  .apexcharts-tooltip.apexcharts-theme-dark {
    color: #fff;
    background: rgba(30, 30, 30, 0.8);
  }

  .apexcharts-tooltip * {
    font-family: inherit;
  }


  .apexcharts-tooltip-title {
    padding: 6px;
    font-size: 15px;
    margin-bottom: 4px;
  }

  .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
    background: #ECEFF1;
    border-bottom: 1px solid #ddd;
  }

  .apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title {
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #333;
  }

  .apexcharts-tooltip-text-y-value,
  .apexcharts-tooltip-text-goals-value,
  .apexcharts-tooltip-text-z-value {
    display: inline-block;
    font-weight: 600;
    margin-left: 5px;
  }

  .apexcharts-tooltip-text-y-label:empty,
  .apexcharts-tooltip-text-y-value:empty,
  .apexcharts-tooltip-text-goals-label:empty,
  .apexcharts-tooltip-text-goals-value:empty,
  .apexcharts-tooltip-text-z-value:empty {
    display: none;
  }

  .apexcharts-tooltip-text-y-value,
  .apexcharts-tooltip-text-goals-value,
  .apexcharts-tooltip-text-z-value {
    font-weight: 600;
  }

  .apexcharts-tooltip-text-goals-label,
  .apexcharts-tooltip-text-goals-value {
    padding: 6px 0 5px;
  }

  .apexcharts-tooltip-goals-group,
  .apexcharts-tooltip-text-goals-label,
  .apexcharts-tooltip-text-goals-value {
    display: flex;
  }
  .apexcharts-tooltip-text-goals-label:not(:empty),
  .apexcharts-tooltip-text-goals-value:not(:empty) {
    margin-top: -6px;
  }

  .apexcharts-tooltip-marker {
    width: 12px;
    height: 12px;
    position: relative;
    top: 0px;
    margin-right: 10px;
    border-radius: 50%;
  }

  .apexcharts-tooltip-series-group {
    padding: 0 10px;
    display: none;
    text-align: left;
    justify-content: left;
    align-items: center;
  }

  .apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker {
    opacity: 1;
  }

  .apexcharts-tooltip-series-group.apexcharts-active,
  .apexcharts-tooltip-series-group:last-child {
    padding-bottom: 4px;
  }

  .apexcharts-tooltip-series-group-hidden {
    opacity: 0;
    height: 0;
    line-height: 0;
    padding: 0 !important;
  }

  .apexcharts-tooltip-y-group {
    padding: 6px 0 5px;
  }

  .apexcharts-tooltip-box, .apexcharts-custom-tooltip {
    padding: 4px 8px;
  }

  .apexcharts-tooltip-boxPlot {
    display: flex;
    flex-direction: column-reverse;
  }

  .apexcharts-tooltip-box>div {
    margin: 4px 0;
  }

  .apexcharts-tooltip-box span.value {
    font-weight: bold;
  }

  .apexcharts-tooltip-rangebar {
    padding: 5px 8px;
  }

  .apexcharts-tooltip-rangebar .category {
    font-weight: 600;
    color: #777;
  }

  .apexcharts-tooltip-rangebar .series-name {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }

  .apexcharts-xaxistooltip {
    opacity: 0;
    padding: 9px 10px;
    pointer-events: none;
    color: #373d3f;
    font-size: 13px;
    text-align: center;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
    background: #ECEFF1;
    border: 1px solid #90A4AE;
    transition: 0.15s ease all;
  }

  .apexcharts-xaxistooltip.apexcharts-theme-dark {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: #fff;
  }

  .apexcharts-xaxistooltip:after,
  .apexcharts-xaxistooltip:before {
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  .apexcharts-xaxistooltip:after {
    border-color: rgba(236, 239, 241, 0);
    border-width: 6px;
    margin-left: -6px;
  }

  .apexcharts-xaxistooltip:before {
    border-color: rgba(144, 164, 174, 0);
    border-width: 7px;
    margin-left: -7px;
  }

  .apexcharts-xaxistooltip-bottom:after,
  .apexcharts-xaxistooltip-bottom:before {
    bottom: 100%;
  }

  .apexcharts-xaxistooltip-top:after,
  .apexcharts-xaxistooltip-top:before {
    top: 100%;
  }

  .apexcharts-xaxistooltip-bottom:after {
    border-bottom-color: #ECEFF1;
  }

  .apexcharts-xaxistooltip-bottom:before {
    border-bottom-color: #90A4AE;
  }

  .apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after {
    border-bottom-color: rgba(0, 0, 0, 0.5);
  }

  .apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before {
    border-bottom-color: rgba(0, 0, 0, 0.5);
  }

  .apexcharts-xaxistooltip-top:after {
    border-top-color: #ECEFF1
  }

  .apexcharts-xaxistooltip-top:before {
    border-top-color: #90A4AE;
  }

  .apexcharts-xaxistooltip-top.apexcharts-theme-dark:after {
    border-top-color: rgba(0, 0, 0, 0.5);
  }

  .apexcharts-xaxistooltip-top.apexcharts-theme-dark:before {
    border-top-color: rgba(0, 0, 0, 0.5);
  }

  .apexcharts-xaxistooltip.apexcharts-active {
    opacity: 1;
    transition: 0.15s ease all;
  }

  .apexcharts-yaxistooltip {
    opacity: 0;
    padding: 4px 10px;
    pointer-events: none;
    color: #373d3f;
    font-size: 13px;
    text-align: center;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
    background: #ECEFF1;
    border: 1px solid #90A4AE;
  }

  .apexcharts-yaxistooltip.apexcharts-theme-dark {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: #fff;
  }

  .apexcharts-yaxistooltip:after,
  .apexcharts-yaxistooltip:before {
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  .apexcharts-yaxistooltip:after {
    border-color: rgba(236, 239, 241, 0);
    border-width: 6px;
    margin-top: -6px;
  }

  .apexcharts-yaxistooltip:before {
    border-color: rgba(144, 164, 174, 0);
    border-width: 7px;
    margin-top: -7px;
  }

  .apexcharts-yaxistooltip-left:after,
  .apexcharts-yaxistooltip-left:before {
    left: 100%;
  }

  .apexcharts-yaxistooltip-right:after,
  .apexcharts-yaxistooltip-right:before {
    right: 100%;
  }

  .apexcharts-yaxistooltip-left:after {
    border-left-color: #ECEFF1;
  }

  .apexcharts-yaxistooltip-left:before {
    border-left-color: #90A4AE;
  }

  .apexcharts-yaxistooltip-left.apexcharts-theme-dark:after {
    border-left-color: rgba(0, 0, 0, 0.5);
  }

  .apexcharts-yaxistooltip-left.apexcharts-theme-dark:before {
    border-left-color: rgba(0, 0, 0, 0.5);
  }

  .apexcharts-yaxistooltip-right:after {
    border-right-color: #ECEFF1;
  }

  .apexcharts-yaxistooltip-right:before {
    border-right-color: #90A4AE;
  }

  .apexcharts-yaxistooltip-right.apexcharts-theme-dark:after {
    border-right-color: rgba(0, 0, 0, 0.5);
  }

  .apexcharts-yaxistooltip-right.apexcharts-theme-dark:before {
    border-right-color: rgba(0, 0, 0, 0.5);
  }

  .apexcharts-yaxistooltip.apexcharts-active {
    opacity: 1;
  }

  .apexcharts-yaxistooltip-hidden {
    display: none;
  }

  .apexcharts-xcrosshairs,
  .apexcharts-ycrosshairs {
    pointer-events: none;
    opacity: 0;
    transition: 0.15s ease all;
  }

  .apexcharts-xcrosshairs.apexcharts-active,
  .apexcharts-ycrosshairs.apexcharts-active {
    opacity: 1;
    transition: 0.15s ease all;
  }

  .apexcharts-ycrosshairs-hidden {
    opacity: 0;
  }

  .apexcharts-selection-rect {
    cursor: move;
  }

  .svg_select_boundingRect, .svg_select_points_rot {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
  .apexcharts-selection-rect + g .svg_select_boundingRect,
  .apexcharts-selection-rect + g .svg_select_points_rot {
    opacity: 0;
    visibility: hidden;
  }

  .apexcharts-selection-rect + g .svg_select_points_l,
  .apexcharts-selection-rect + g .svg_select_points_r {
    cursor: ew-resize;
    opacity: 1;
    visibility: visible;
  }

  .svg_select_points {
    fill: #efefef;
    stroke: #333;
    rx: 2;
  }

  .apexcharts-svg.apexcharts-zoomable.hovering-zoom {
    cursor: crosshair
  }

  .apexcharts-svg.apexcharts-zoomable.hovering-pan {
    cursor: move
  }

  .apexcharts-zoom-icon,
  .apexcharts-zoomin-icon,
  .apexcharts-zoomout-icon,
  .apexcharts-reset-icon,
  .apexcharts-pan-icon,
  .apexcharts-selection-icon,
  .apexcharts-menu-icon,
  .apexcharts-toolbar-custom-icon {
    cursor: pointer;
    width: 20px;
    height: 20px;
    line-height: 24px;
    color: #6E8192;
    text-align: center;
  }

  .apexcharts-zoom-icon svg,
  .apexcharts-zoomin-icon svg,
  .apexcharts-zoomout-icon svg,
  .apexcharts-reset-icon svg,
  .apexcharts-menu-icon svg {
    fill: #6E8192;
  }

  .apexcharts-selection-icon svg {
    fill: #444;
    transform: scale(0.76)
  }

  .apexcharts-theme-dark .apexcharts-zoom-icon svg,
  .apexcharts-theme-dark .apexcharts-zoomin-icon svg,
  .apexcharts-theme-dark .apexcharts-zoomout-icon svg,
  .apexcharts-theme-dark .apexcharts-reset-icon svg,
  .apexcharts-theme-dark .apexcharts-pan-icon svg,
  .apexcharts-theme-dark .apexcharts-selection-icon svg,
  .apexcharts-theme-dark .apexcharts-menu-icon svg,
  .apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg {
    fill: #f3f4f5;
  }

  .apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg,
  .apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,
  .apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg {
    fill: #008FFB;
  }

  .apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,
  .apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,
  .apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,
  .apexcharts-theme-light .apexcharts-zoomout-icon:hover svg,
  .apexcharts-theme-light .apexcharts-reset-icon:hover svg,
  .apexcharts-theme-light .apexcharts-menu-icon:hover svg {
    fill: #333;
  }

  .apexcharts-selection-icon,
  .apexcharts-menu-icon {
    position: relative;
  }

  .apexcharts-reset-icon {
    margin-left: 5px;
  }

  .apexcharts-zoom-icon,
  .apexcharts-reset-icon,
  .apexcharts-menu-icon {
    transform: scale(0.85);
  }

  .apexcharts-zoomin-icon,
  .apexcharts-zoomout-icon {
    transform: scale(0.7)
  }

  .apexcharts-zoomout-icon {
    margin-right: 3px;
  }

  .apexcharts-pan-icon {
    transform: scale(0.62);
    position: relative;
    left: 1px;
    top: 0px;
  }

  .apexcharts-pan-icon svg {
    fill: #fff;
    stroke: #6E8192;
    stroke-width: 2;
  }

  .apexcharts-pan-icon.apexcharts-selected svg {
    stroke: #008FFB;
  }

  .apexcharts-pan-icon:not(.apexcharts-selected):hover svg {
    stroke: #333;
  }

  .apexcharts-toolbar {
    position: absolute;
    z-index: 11;
    max-width: 176px;
    text-align: right;
    border-radius: 3px;
    padding: 0px 6px 2px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .apexcharts-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 3px;
    right: 10px;
    opacity: 0;
    min-width: 110px;
    transition: 0.15s ease all;
    pointer-events: none;
  }

  .apexcharts-menu.apexcharts-menu-open {
    opacity: 1;
    pointer-events: all;
    transition: 0.15s ease all;
  }

  .apexcharts-menu-item {
    padding: 6px 7px;
    font-size: 12px;
    cursor: pointer;
  }

  .apexcharts-theme-light .apexcharts-menu-item:hover {
    background: #eee;
  }

  .apexcharts-theme-dark .apexcharts-menu {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
  }

  @media screen and (min-width: 768px) {
    .apexcharts-canvas:hover .apexcharts-toolbar {
      opacity: 1;
    }
  }

  .apexcharts-datalabel.apexcharts-element-hidden {
    opacity: 0;
  }

  .apexcharts-pie-label,
  .apexcharts-datalabels,
  .apexcharts-datalabel,
  .apexcharts-datalabel-label,
  .apexcharts-datalabel-value {
    cursor: default;
    pointer-events: none;
  }

  .apexcharts-pie-label-delay {
    opacity: 0;
    animation-name: opaque;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
  }

  .apexcharts-canvas .apexcharts-element-hidden {
    opacity: 0;
  }

  .apexcharts-hide .apexcharts-series-points {
    opacity: 0;
  }

  .apexcharts-gridline,
  .apexcharts-annotation-rect,
  .apexcharts-tooltip .apexcharts-marker,
  .apexcharts-area-series .apexcharts-area,
  .apexcharts-line,
  .apexcharts-zoom-rect,
  .apexcharts-toolbar svg,
  .apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,
  .apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,
  .apexcharts-radar-series path,
  .apexcharts-radar-series polygon {
    pointer-events: none;
  }


  /* markers */

  .apexcharts-marker {
    transition: 0.15s ease all;
  }

  @keyframes opaque {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }


  /* Resize generated styles */

  @keyframes resizeanim {
    from {
      opacity: 0;
    }
    to {
      opacity: 0;
    }
  }

  .resize-triggers {
    animation: 1ms resizeanim;
    visibility: hidden;
    opacity: 0;
  }

  .resize-triggers,
  .resize-triggers>div,
  .contract-trigger:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  .resize-triggers>div {
    background: #eee;
    overflow: auto;
  }

  .contract-trigger:before {
    width: 200%;
    height: 200%;
  }

  .custom-switch {
    transform: scale(1.2);
  }



/* SELECT2 */
.select2.select2-container.select2-container--default{
    width: 100% !important;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e9ecef !important;
}
.select2-container .select2-selection--single {
    border: 1px solid #dee2e6;
    background-color: #fff;
    outline: 0;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    height: auto !important;
    border-radius: .15rem !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    padding-left: 0px;
    color: #6c757d;
}

.select2-container--default .select2-selection--single .select2-selection__rendered[title*="Choisir"] {
    color: #98a6ad !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 34px;
    width: 34px;
    right: 3px;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
    border-color: #ced4da transparent transparent transparent;
    border-width: 6px 6px 0 6px;
}
.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #ced4da transparent !important;
    border-width: 0 6px 6px 6px !important;
}
.select2-results__option {
    padding: 6px 12px;
    font-weight: 400 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.select2-dropdown {
    border: 1px solid #dee2e6;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    background-color: #fff;
    z-index: 1056;
    width: 100%;
}
.select2-results__options::-webkit-scrollbar {
    -webkit-appearance: none;
}
.select2-results__options::-webkit-scrollbar:vertical {
    width: 5px;
    margin-right: 5px;
}
.select2-results__options::-webkit-scrollbar:horizontal {
    height: 5px;
}
.select2-results__options::-webkit-scrollbar-thumb {
    background-color: rgba(49,58,70, 0.2);
    border-radius: 10px;
    margin-right: 5px;
    border: none;
}
.select2-results__options::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}
.select2-results__options::-webkit-scrollbar-corner {
    background-color: transparent;
}
.select2-container--default .select2-results__option--selected {
    background-color: #eef2f7;
}
.select2-container--default .select2-search--dropdown {
    padding: 10px;
    background-color: #fff;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: 0;
    border: 1px solid #dee2e6;
    background-color: #fff;
    color: #6c757d;
    border-radius: 0.25rem;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(114, 124, 245, .1);
}

.select2-results__option--highlighted {
    color: rgb(33, 37, 41) !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #fff;
    color: #313a46;
}
.select2-container--default .select2-results__option[aria-selected="true"]:hover {
    background-color: rgba(114, 124, 245, .1);
    color: #fff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 36px;
    padding-right: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 1px;
    left: auto;
}
.select2-container .select2-selection--multiple {
    min-height: calc(1.5em + 0.9rem + 2px);
    border: 1px solid #dee2e6 !important;
    background-color: #fff;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding: 1px 4px;
}
.select2-container .select2-selection--multiple .select2-search__field {
    border: 0;
    color: #6c757d;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #727CF3!important;
    border: none;
    color: #fff!important;
    border-radius: 3px;
    padding: 0 7px 0 0;
    margin-top: 6px;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff!important;
    margin-right: 7px;
    border-color: #8089f6!important;
    padding: 0 8px;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
    background-color: #727CF3!important;
}
.select2-container .select2-search--inline .select2-search__field {
    margin-top: 7px;
    font-family: "Nunito";
}
.select2-container .select2-search textarea::-webkit-input-placeholder {
    color: #a1a9b1;
}
.select2-container .select2-search textarea::-moz-placeholder {
    color: #a1a9b1;
}
.select2-container .select2-search textarea:-ms-input-placeholder {
    color: #a1a9b1;
}
.select2-container .select2-search textarea::-ms-input-placeholder {
    color: #a1a9b1;
}
.select2-container .select2-search textarea::placeholder {
    color: #a1a9b1;
}
[dir="rtl"] .select2-container--open .select2-dropdown {
    left: auto;
    right: 0;
}
.select2-container--default .select2-results>.select2-results__options {
    max-height: 50vh !important;
}

.select2-search__field::-webkit-input-placeholder, .select2-search__field::placeholder {
    color: #98a6ad !important;
}

.select2-selection__arrow {
    display: none !important;
}

input.select2-search__field {
    padding: 0.375rem 0.75rem !important;
}
.select2-results__option.select2-results__message {
    padding: 6px 12px !important;
    cursor: pointer;
}

.select2-results__option.select2-results__message:hover {
    background-color: rgba(114, 124, 245, .1) !important;
}

/* .select2-results__option.select2-results__message:hover a {
    color: #fff !important;
} */

.select2-results__option a {
    text-decoration: none;
    color: #6c757d;
}

.select2-container--open .select2-dropdown {
    left: -1px !important;
}

button.select2-selection__clear {
    margin: 0 !important;
    height: auto !important;
}

button.select2-selection__clear span {
    line-height: 1 !important;
    font-size: 20px !important;
}

        /*  Etats des lieux - edl   */
.edl-title {
    color: #6c757d;
    margin: 1vh 0;
}

.edl-head {
    font-size: 12px;
}

.edl-body {
    font-size: 11px;
}

.edl-footer {
    font-size: 10px;
}

.edl-shrink {
    max-width: 2vw !important;
    text-align: center;
}

.edl-data-chevron {
    font-size: 12px;
}

.edl-ovf {
    max-width: 5vw;
}

.edl-chalet {
    max-width: 1vw;
}


.dropdown-menu > li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
    }

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

/* DROPZONE */

.dropzone {
    border-radius: .25rem !important;
    cursor: pointer !important;
    border: 2px dashed #dee2e6 !important;
    min-height: 150px !important;
    padding: 20px !important;
}

.dropzone.border-0 {
    border-radius: .25rem !important;
    cursor: pointer !important;
    border: none !important;
    min-height: 150px !important;
    padding: 20px !important;
}

.dropzone .dz-message {
    text-align: center !important;
    margin: 2rem 0 !important;
    font-family: var(--font-family) !important;
    color: #6c757d !important;
    font-weight: 700 !important;
}

/* GUEST GESTION GOBELET */

.bottombar-link {
    font-size: 24px;
    color: #6c757d;
    line-height: 38px;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    vertical-align: middle;
    text-align: center;
}

.bottombar-link.active {
    color: #fff;
    background-color: #727CF5;
}

.custombadge {
    color: #778891;
    font-weight: bold;
    
    background-color: rgba(119, 136, 145, .1);
    border-style: solid;
    border-width: 1px;
    border-color: rgba(119, 136, 145, .3);
    border-radius: .25rem;
    
    padding: .25rem .50rem;
}
.custombadge-decline {
    color: rgb(220, 53, 69);
    font-weight: bold;

    background-color: rgba(220, 53, 69, .1);
    border-style: solid;
    border-width: 1px;
    border-color: rgba(220, 53, 69, .3);
    border-radius: .25rem;
    
    padding: .25rem .50rem;
}
.custombadge-success {
    color: rgb(25, 135, 84);
    font-weight: bold;

    background-color: rgba(25, 135, 84, .1);
    border-style: solid;
    border-width: 1px;
    border-color: rgba(25, 135, 84, .3);
    border-radius: .25rem;
    
    padding: .25rem .50rem;
}

/* INTEL TEL INPUT */

.iti {
    display: block !important;
  }


/* ICON INPUT FORM */
.pl-10{padding-left: 2.5rem}
.icon-input{
    color: rgb(156 163 175);
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    top: 50%;
    left: 0.75rem;
    position: absolute;
}

.icon-input.small{
    width: 1rem;
    height: 1rem;
}