@keyframes swing {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(10deg);
    }
    30% {
        transform: rotate(0deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    60% {
        transform: rotate(5deg);
    }
    70% {
        transform: rotate(0deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes sonar {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

body {
    font-size: 0.9rem !important;
}


.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand>a,
.sidebar-wrapper .sidebar-dropdown>a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/*----------------page-wrapper----------------*/

.page-wrapper {
    height: 117vh;
}

.page-wrapper .theme {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 4px;
    margin: 2px;
}

.page-wrapper .theme.chiller-theme {
    background: #1e2229;
}


/*----------------toggeled sidebar----------------*/

.page-wrapper.toggled .sidebar-wrapper {
    left: 0px;
}

@media screen and (min-width: 768px) {
    .page-wrapper.toggled .page-content {
        padding-left: 260px;
    }
}


/*----------------show sidebar button----------------*/

#show-sidebar {
    position: fixed;
    right: 0;
    top: 0px;
    border-radius: 0px !important;
    width: auto;
    transition-delay: 0.3s;
    font-size: 30px;
    padding: 9px 20px;
    z-index: 999;
}

.page-wrapper.toggled #show-sidebar {
    top: -80px;
}


/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
    width: 260px;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 999;
}

.sidebar-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-wrapper a {
    text-decoration: none;
}


/*----------------sidebar-content----------------*/

.sidebar-content {
    max-height: calc(100% - 5px);
    height: calc(100% - 5px);
    /*max-height: calc(100% - 30px);
  height: calc(100% - 30px);*/
    overflow-y: auto;
    position: relative;
}

.sidebar-content.desktop {
    overflow-y: hidden;
}


/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-brand {
    padding: 10px 10px;
    display: flex;
    align-items: center;
}

.sidebar-wrapper .sidebar-brand>a {
    text-transform: uppercase;
    font-weight: bold;
    flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
    cursor: pointer;
    font-size: 30px;
}


/*--------------------sidebar-header----------------------*/

.sidebar-wrapper .sidebar-header {
    padding: 10px;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic {
    float: left;
    width: 60px;
    padding: 2px;
    border-radius: 12px;
    margin-right: 15px;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info {
    float: left;
}

.sidebar-wrapper .sidebar-header .user-info>span {
    display: block;
}

.sidebar-wrapper .sidebar-header .user-info .user-role {
    font-size: 12px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
    font-size: 11px;
    margin-top: 4px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i {
    font-size: 8px;
    margin-right: 4px;
    color: #5cb85c;
}


/*-----------------------sidebar-search------------------------*/

.sidebar-wrapper .sidebar-search>div {
    padding: 10px 20px;
}


/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
    padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
    font-weight: bold;
    font-size: 14px;
    padding: 15px 20px 5px 20px;
    display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding: 8px 30px 8px 20px;
}

.sidebar-wrapper .sidebar-menu ul li a i {
    margin-right: 10px;
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu ul li a:hover>i::before {
    display: inline-block;
    animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown>a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-style: normal;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 15px;
    top: 14px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
    padding: 5px 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
    padding-left: 25px;
    font-size: 13px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 8px;
}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
    float: right;
    margin-top: 8px;
    margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
    float: right;
    margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
    display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a:after {
    transform: rotate(90deg);
    right: 17px;
}


/*--------------------------side-footer------------------------------*/

.sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
}

.sidebar-footer>a {
    flex-grow: 1;
    text-align: center;
    height: 30px;
    line-height: 30px;
    position: relative;
}

.sidebar-footer>a .notification {
    position: absolute;
    top: 0;
}

.badge-sonar {
    display: inline-block;
    background: #980303;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 0;
}

.badge-sonar:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #980303;
    opacity: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: sonar 1.5s infinite;
}


/*--------------------------page-content-----------------------------*/

.page-wrapper .page-content {
    display: inline-block;
    width: 100%;
    padding-left: 0px;
    padding-top: 0px;
}

.page-wrapper .page-content>div {
    padding: 20px 20px;
}

.page-wrapper .page-content {
    overflow-x: hidden;
}


/*------scroll bar---------------------*/

::-webkit-scrollbar {
    width: 5px;
    height: 7px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #525965;
    border: 0px none #ffffff;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: #525965;
}

::-webkit-scrollbar-thumb:active {
    background: #525965;
}

::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
    background: transparent;
}

::-webkit-scrollbar-track:active {
    background: transparent;
}

::-webkit-scrollbar-corner {
    background: transparent;
}


/*-----------------------------chiller-theme-------------------------------------------------*/

.chiller-theme .sidebar-wrapper {
    background: #31353D;
}

.chiller-theme .sidebar-wrapper .sidebar-header,
.chiller-theme .sidebar-wrapper .sidebar-search,
.chiller-theme .sidebar-wrapper .sidebar-menu {
    border-top: 1px solid #061a42;
}

.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
    border-color: transparent;
    box-shadow: none;
}

.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
.chiller-theme .sidebar-wrapper .sidebar-brand>a,
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
.chiller-theme .sidebar-footer>a {
    color: #ffffff;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover>a,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info,
.chiller-theme .sidebar-wrapper .sidebar-brand>a:hover,
.chiller-theme .sidebar-footer>a:hover i {
    color: #b8bfce;
}

.page-wrapper.chiller-theme.toggled #close-sidebar {
    color: #bdbdbd;
    margin-left: 10px;
}

.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
    color: #31353D;
}

.chiller-theme .sidebar-wrapper ul li:hover a i,
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus+span,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
    color: #16c7ff;
    text-shadow: 0px 0px 10px rgba(22, 199, 255, 0.5);
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
    background: #8e8e91;
}

.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
    color: #adadad;
}

.chiller-theme .sidebar-footer {
    background: #3a3f48;
    box-shadow: 0px -1px 5px #282c33;
    border-top: 1px solid #464a52;
}

.chiller-theme .sidebar-footer>a:first-child {
    border-left: none;
}

.chiller-theme .sidebar-footer>a:last-child {
    border-right: none;
}

.sidebar-wrapper .sidebar-brand {
    background: #FFF;
    position: fixed;
    width: 15.8rem;
    z-index: 999;
}

main,
.page-wrapper {
    background: #fbfbfb;
}

.table th {
    padding: .4rem !important;
}

.table td {
    padding: .2rem .4rem !important;
}

.table .thead-dark th {
    color: #eee;
    background-color: #31353D;
    border-color: #696c70;
    font-weight: 500;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid rgba(105, 108, 112, 0.51);
    vertical-align: middle !important;
}

.a-dark {
    color: #31353D;
}

.a-dark:hover {
    color: #555;
}

.a-light {
    color: #eee;
}

.a-light:hover {
    color: #ddd;
}

.a-danger {
    color: #961212;
}

.a-danger:hover {
    color: #ec1c1c;
}

.alert {
    padding: .3rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.2rem;
}

.alert-dismissible .close {
    padding: .3rem .5rem;
    font-size: medium;
}

.form-control {
    border-radius: 0px;
    padding: .3rem .5rem;
    font-size: .9rem;
}

.modal-content {
    border-radius: .2rem;
}

.card-header {
    padding: .1rem .2rem;
}

.text-center {
    text-align: center !important;
}

.modal-header {
    padding: .4rem 1rem;
    background: #31353D;
    color: #FFF;
    border-radius: 2px 2px 0 0;
    margin-top: -1px;
}

.modal-body {
    background: #FFF;
}

.modal-footer {
    padding: .4rem 1rem;
}

.table-full-height {
    height: 85vh !important;
}

.card-header-black {
    background: #3a3f48;
}

select.form-control:not([size]):not([multiple]) {
    /* height: calc(1.9rem + 2px); */
}

.form-group {
    margin-bottom: .4rem;
}

.form-group label {
    margin-bottom: .2rem;
}

.card-body {
    padding: .5rem .9rem;
}

.grid {
    width: 100%;
    height: calc(100vh - 120px);
}

.modal-body .grid {
     width: 100%;
     height: calc(100vh - 200px);
 }

.ui-grid-header-cell-primary-focus {
    background: #31353D;
    color: #eee;
    font-weight: 500;
}

.ui-grid-column-menu-button .ui-grid-icon-angle-down {
    color: #eee;
}

.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:last-child {
    background: #31353D;
    color: #eee;
}

.ui-grid-selection-row-header-buttons {
    margin-top: 3px;
}

.ui-grid-menu-button {
    background: #31353D !important;
    color: #eee;
}


.btn-group-xsm>.btn,
.btn-xsm {
    padding: .1rem .3rem;
    font-size: .875rem;
    line-height: 1.3;
    border-radius: .2rem;
}

.ui-grid-filter-container {
    padding: 4px 4px !important;
    background: #31353D;
    border-top: solid 1px #cccccc;
}

input[type="text"].ui-grid-filter-input {
    background: #eee;
    border-radius: 2px;
}

.ui-grid-header-cell-wrapper {
    background: #31353D;
}

.ui-grid-top-panel {
    background-color: #8e8e91;
}

hr {
    margin-bottom: .3rem;
}

.showLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 100vh;
    background: #eeeeee96;
    z-index: 999;
}

.showLoader img {
    width: 150px;
}

.ui-grid-pager-row-count-picker select {
    padding: 3px 10px !important;
}

.btn-light {
    background: #eee;
}

.select2-dropdown {
    border-radius: 2px;
}

.select2-container--default .select2-selection--single {
    border-radius: 0px;
}

.select2-container .select2-selection--single {
    height: 33.5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 31px;
}

.ui-grid-filter-container .ui-grid-filter-button {
    color: #333;
}

.bg-white {
    background: #FFF;
}

.text-underline {
    text-decoration: underline;
}

.tab-content {
    padding-top: 0px;
    padding-bottom: 10px;
}

.nav-pills .nav-link {
    cursor: pointer;
    border-radius: 0px !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #31353D !important;
    cursor: pointer;
    border-radius: 3px !important;
}

.btn-dark {
    background-color: #31353D;
    border-color: #31353D;
}

.btn-dark:hover {
    background-color: #7d7d7d;
}

.close {
    color: #fff;
}

.trix-button-row {
    overflow-x: hidden;
}

.background-red {
    background: #dc3545 !important;
}

.background-default {
    background: #31353D !important;
}

.sidebar-wrapper .sidebar-menu ul li a:hover {
    color: #cfcfcf !important;
}

.vuetable th.sortable:hover,
.sidebar-wrapper .sidebar-menu ul li a:hover i {
    color: #cfcfcf !important;
}

.all-content {
    padding: 0px 0px 20px 0px !important;
}

.all-content .navbar {
    border-bottom: solid 2px #f9f9f9;
    margin-bottom: 10px;
}

.navbar {
    padding: .7rem 1rem;
}

.container-fluid {
    min-height: calc(100vh - 76px);
}

.bg-custom {
    background-color: #fbfbfb !important;
}

a {
    color: #af6114;
}

a:hover {
    color: #31353D;
}

.dropdown-menu {
    padding: 0px;
    font-size: 0.9rem;
    max-height: calc(100vh - 120px) !important;
    overflow-y: auto;
}

.list-group-item {
    padding: .5rem .5rem;
}

.color-newrest-gris {
    color: #31353D !important;
}

.color-newrest-gris:hover {
    color: #af6114 !important;
}

.color-newrest-chocolat {
    color: #af6114 !important;
}

.color-newrest-chocolat:hover {
    color: #31353D !important;
}

.color-newrest-gris.dropdown-toggle::after,
.color-newrest-chocolat.dropdown-toggle::after {
    display: none;
}

.list-group-item.active,
.list-group-item:hover {
    background-color: #f1f1f1;
    border-color: #f1f1f1;
    transition: 0.3s;
}

.notification .dropdown-menu {
    max-height: calc(100vh - 71px);
    overflow-y: auto;
    border-radius: 0px;
}

.list-group-item:first-child {
    border-radius: 0;
    margin-top: -1px;
}

.list-group-item:last-child {
    border-radius: 0;
}

.navbar-toggle {
    display: block !important;
}

.dropdown-item {
    padding: .25rem .75rem;
}

#scheduler .scheduler_default_cellparent,
.scheduler_default_cell.scheduler_default_cell_business.scheduler_default_cellparent {
    background: #f3f3f3;
}

div.scheduler_default_corner div:last-child {
    display: none;
}

h6.checkin-title {
    text-transform: uppercase;
    border-bottom: solid 1.2px #af6114;
    padding-bottom: 3px;
    color: #af6114;
}

.select2-container--default .select2-selection--multiple {
    border-radius: 0px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #ccc 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #af6114;
    margin-right: 5px;
    font-size: 16px;
    border-right: solid 1px #aaa;
    padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 0px;
    font-weight: 500;
    color: #af6114;
}

.scheduler_default_event_bar_inner {
    /*background-color: #6c757d !important;*/
}

.resident-search-result {
    margin: 5px;
    margin-top: 20px;
    border: solid 1px #eee;
    border-radius: 5px;
    padding: 10px;
    background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(238, 238, 238));
    cursor: pointer;
}

.resident-search-result:hover {
    background: #EEE;
}

.resident-search-result-content {
    padding: 5px;
}

.btn-planning {
    border-radius: 3px !important;
    padding: 5px 10px;
    margin-left: 5px;
}

.btn-planning.btn-orange {
    background: #fcad03 !important;
    border-color: #e68b15;
    color: white !important;
}

.btn-planning.btn-jaune {
    background: #fff757 !important;
    border-color: #e8df23;
    color: #555 !important;
}

.btn-planning.btn-violet {
    background: #b300cf !important;
    border-color: #9403ab;
    color: #FFF !important;
}

.scheduler_default_event {
    /*border-radius: 3px;*/
}

.redxxx {
    background: #000;
}


/*
.lit-booking{
    background-color: darkviolet !important;
    color: white;
    text-align: center;
}
.lit-vacation{
    background-color: yellow !important;
    color: black;
    text-align: center;
}
.lit-busy{
    background-color: orange !important;
    color: white;
    text-align: center;
}*/

.lit-booking {
    background-color: #f6a1ff !important;
    color: #841a8f !important;
    text-align: center;
}

.lit-vacation {
    background-color: yellow !important;
    color: #585806 !important;
    text-align: center;
}

.lit-busy {
    background-color: #ffdf8f !important;
    color: #a17405 !important;
    text-align: center;
}

.free {
    background-color: #4ef975 !important;
    text-align: center;
}

.lit-unavailable {
    background-color: grey !important;
    color: black;
    text-align: center;
}

.chambre-stock {
    background-color: pink !important;
    color: white;
    text-align: center;
}

.chambre-office {
    background-color: red !important;
    color: white;
    text-align: center;
}

.chambre-booking {
    background-color: #7aafff !important;
    color: white;
    text-align: center;
}

.lit-booking,
.lit-vacation,
.lit-busy,
.free,
.lit-unavailable,
.chambre-stock,
.chambre-office,
.chambre-booking {
    border-bottom: solid 1px #FFF;
    font-weight: 600;
    text-transform: uppercase !important;
}

th.lit-booking,
th.lit-vacation,
th.lit-busy,
th.free,
th.lit-unavailable,
th.chambre-stock,
th.chambre-office,
th.chambre-booking,
dashboard-table .table-bordered td,
dashboard-table .table-bordered th {
    font-weight: 500 !important;
}

.bg-newrest {
    background-color: #31353D !important;
}

.dashboard-pull-right {
    float: right;
}

.dashboard-card {
    padding: 20px;
}

.active-notification {
    background: #efefef;
}

.notifications {
    height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 2px;
}

.notifications-blink {
    animation: blink 1s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    25% {
        opacity: .5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.notification-active {
    background: #495057 !important;
    color: white !important;
}

.notifcation-send-mail-title {
    border-bottom: solid 1px #CCC;
    padding: 10px
}

.text-bold {
    font-weight: 600;
}

.planning-form .form-control {
    font-weight: 500 !important;
}

.scheduler_default_cell {
    background: white;
}

#scheduler .scheduler_default_cellparent {
    background: #f9f9f9;
}

.scheduler_default_event_inner {
    border: none;
}


/**
* Scrollbar
**/

::-webkit-scrollbar {
    width: 0.5em;
}

::-webkit-scrollbar-track,
.sidebar-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #6C6B6F;
}

::-webkit-scrollbar-thumb,
.sidebar-content::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    border-radius: 5px;
}


/**
* END Scrollbar
**/

.sidebar-content.desktop {
    overflow-y: hidden;
}

.datetimepicker table tr td span.disabled {
    display: none;
}

.scheduler_default_scrollable::-webkit-scrollbar {
    width: 0.7em !important;
}

.scheduler_default_scrollable::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #6C6B6F;
}

.scheduler_default_scrollable::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    border-radius: 5px
}

.border-busy-out {
    border-left-color: #48bb56;
    border-left-style: solid;
    border-left-width: 20px;
}

.border-booking {
    border-left-color: #f6a1ff;
    border-left-style: solid;
    border-left-width: 20px;
}

.border-vacation {
    border-left-color: yellow;
    border-left-style: solid;
    border-left-width: 20px;
}

.border-busy {
    border-left-color: #ffdf8f;
    border-left-style: solid;
    border-left-width: 20px;
}

@media (min-width: 768px) {
    .modal-xl {
        width: 90%;
        max-width: 1200px;
    }
}

@media (max-width: 420px) {
    .page-wrapper.toggled #show-sidebar {
        top: -80px;
        left: 0px;
    }
    .page-wrapper.toggled .sidebar-wrapper {
        width: 100%;
    }
    .page-wrapper.toggled .sidebar-wrapper .sidebar-brand {
        width: 100%;
    }
    .page-wrapper.toggled .sidebar-wrapper .sidebar-brand img {
        height: 60px !important;
        width: auto !important;
    }
    #show-sidebar {
        padding: 8px 20px;
    }
}

.dropdown-menu {
    margin: .85rem 0 0;
}

.sidebar-menu li a span {
    padding-left: 10px;
}

header .navbar-nav .nav-item {
    padding-left: 2px !important;
    padding-right: 2px !important;
    color: #31353D !important;
}

header .navbar-nav .nav-item > a {
    color: #31353D !important;
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px;
    background: #31353D;
    color: white;
    font-weight: 500;
}

.table-bordered thead td:hover,
.table-bordered thead th:hover {
    color: #CCC;
}

td.vuetable-slot {
    padding: 0px 5px !important;
}

td.vuetable-slot .btn-sm {
    padding: .1rem .5rem;
    border-radius: .1rem;
    margin-top: 2px;
    margin-bottom: 1px;
}

.dna-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 100vh;
    height: 150vh;
    background: #fffffffa;
    /* background: rgb(255,149,126);
    background: linear-gradient(180deg, rgba(255,149,126,0.7878501742493873) 0%, rgba(254,254,254,1) 35%, rgba(255,255,255,0.981127485173757) 69%, rgba(179,255,165,0.6365896700477065) 100%); */
    z-index: 999;
}

.dna-loader img {
    width: 150px;
}

.form-control {
    border-radius: 0px !important;
}

.modal-xlg {
    max-width: 100% !important;
    margin: 0px !important;
    height: calc(125vh);
}

.modal-xlg>div,
.modal-xlg>div>div {
    height: inherit !important;
    margin: 0px !important;
}

.absolute-bottom {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: calc(99vw);
}

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


/*
.table-scroll table {
    display: block;
    overflow-x: auto;
    width: 100% !important;
    max-height: calc(100vh - 190px);
}

.table-scroll table tbody,
.table-scroll table thead {
    display: block;
    width: 100% !important;
    display: table;
}

.table-scroll table table {
    display: table;
    width: 100% !important;
}
*/

@media (min-width: 576px) {
    #myCustomModal .modal-dialog-centered {
        min-height: 117vh !important;
    }
}

#myCustomModal .modal-footer {
    position: fixed;
    bottom: 0;
    left:0!important;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    background: #FFF;
}

#myCustomModal .modal-body {
    padding-bottom: 70px;
}

.tableFixHead {
    max-height: calc(100vh - 270px);
    overflow-y: auto;
}

.tableFixHead table tr:first-child td {
    border-top: solid 1px #737373;
}

.tableFixHead table td {
    border-bottom: solid 1px #737373;
}

button.no-arrow:focus {
    outline: 0 !important;
}

.inherit {
    height: inherit !important;
}


/******* Dual list config **********/

#dualListModal .modal-body {
    padding: 0px;
}

#dualListModal .list-item.active {
    background-color: #6C757D;
    color: white;
}

#dualListModal .btn-action {
    background-color: #343A40;
    border-color: #343A40;
    border-radius: 3px;
    color: white;
}

#dualListModal .select-all {
    background-color: #6C757D;
}

#dualListModal .deselect-all {
    background-color: #6C757D;
}

#dualListModal .bulk-action {
    display: none;
}

.selected-row {
    /*background-color: #04A2F6 !important;*/
    background-color: #6C757D !important;
    color: #08146b;
}

.cursor-hand td {
    cursor: pointer;
}

.sortable svg {
    top: 5px !important;
}

.dashboard .card-title {
    margin-bottom: 0px !important;
}
/***********************************/
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #e2efff7a !important;
}

.text-theme-color {
    color: #31353D !important;
}

/**
    Nouveau css pour ny sekoliko
**/


.vue-form-wizard.md .wizard-nav-pills>li>a .wizard-icon,
.vue-form-wizard.md .wizard-nav-pills>li.active>a .wizard-icon {
    margin-top: 20px;
}

.vue-form-wizard .wizard-icon-circle.checked {
    background-color: #656a73 !important;
    color: white !important;
}


nav .dropdown > a {
    font-weight: 500;
    color: #adadad !important;
}
nav .dropdown .indice {
    float: right;
}
nav .dropdown ul li a {
    padding-left: 30px !important;
}
nav .dropdown > ul {
    border-left: solid #adadad 1px;
}
nav .dropdown ul li ul {
    border-left: none;
}
nav .dropdown ul li ul{
    /* display: none; */
}
nav .dropdown ul li > a {
    font-weight: normal !important;
    color: white !important;
}
nav .dropdown ul li ul a {
    padding-left: 45px !important;
    /* background-color: rebeccapurple; */
}

.text-bold {
    font-weight: 600 !important;
}

.modal-content {
    border: none !important;
}

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


.sidebar-wrapper .sidebar-header .user-info>span {
    display: block;
}

.modal-body .vs__dropdown-toggle {
    border: none !important;
}

.router-link-exact-active{
    background: #adadad!important;
    color: rgba(0, 0, 0, 0.3)!important;
}
.bg-active{
    background-color: #33ceaa47!important;
}

.bg-active td:nth-of-type(10){
    background-color: #fbfbfb;!important;
}

.vuetable-body-wrapper{
    overflow: auto!important;
}
#filtrer___BV_modal_content_{
    overflow: inherit !important;
}
#filtrer___BV_modal_body_{
    overflow-y: inherit!important;
}

.fixed-sticky{
    position: sticky!important;
    right: 0!important;
    border-left: 1px solid whitesmoke !important;
}
.element-sticky{
    background-color: #eff5fd!important;
}

.tab_footer{

    background-color:#31353D!important;
    color: white !important;
    font-weight: bold !important;
}
.tab_footer td {
    background-color:#31353D!important;
    color: white !important;
    font-weight: bold !important;
    border:none!important;
}

.message_nouveau{
    position: fixed!important;
    bottom: 5px!important;
    right: 19px!important;
    z-index: 999!important;
    background: #31353d!important;
    color: white!important;
    border-radius: 50px!important;
    padding-top: 12px!important;
    padding-left: 16px!important;
    width: 50px!important;
    height: 50px!important;
}

.new_msg{
    position: fixed!important;
    bottom: 5px!important;
    right: 19px!important;
    z-index: 999!important;
    background: #13781b !important;
    color: white!important;
    border-radius: 50px!important;
    padding-top: 12px!important;
    padding-left: 16px!important;
    width: 50px!important;
    height: 50px!important;
    animation: blinkingBackground 2s infinite;
}
@keyframes blinkingBackground {
    0%, 49% {
        background-color: #b0f5a7 !important;
        color: #363434 !important;
    }
    50%, 100%{
        background-color: #13781b !important;
        color: white !important;
    }
}

nav .dropdown>a {
    font-weight: 500;
    color: #adadad !important;
    box-shadow: 0px 0px 1px #999ca3;
}

nav .dropdown .indice {
    float: right;
}

nav .dropdown ul li a {
    padding-left: 30px !important;
}

nav .dropdown>ul {
    border-left: solid #adadad 1px;
    background: #4c4c4c;
}

nav .dropdown ul li ul {
    border-left: none;
}

/*nav .dropdown ul li ul {*/
/*    display: none;*/
/*}*/

nav .dropdown ul li>a {
    font-weight: normal !important;
    color: white !important;
}

.modal-backdrop {
    width: 100% !important;
    height: 100% !important;
}
.dropdown-menu {
    font-size: .85rem !important;
}

#myCustomModal{
    padding-left: 0!important;
}
#myCustomModal .modal-dialog-centered {
    min-height: 117vh !important;
}

.vs__dropdown-toggle{
    padding: 0 !important;
}
.a_jeter td{
    background-color: #f37373 !important;
    color: white!important;
}

.no-checked td.checker input{
    display: none!important;
}
.btn, button, .input-group-prepend, .inputGroup-sizing-sm{
    border-radius: 0!important;
}
