﻿@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap');

/**********************************************
    LA FABRIK A ID - ID RENT

    Auteurs :

    Vivien LIMACHER - Directeur
    Sébastien FLICK – Lead Développeur
    Chloé DIETRICH – Data Engineer
    Jess VACHET - Développeur Back End
    Damien BOURNAC – Développeur Back End
    Gautier RUMPLER – Développeur Front End
    ***********************************************/

html, body {
    font-family: 'Rubik', sans-serif;
}

b, strong, th {
    font-weight: 500;
}

h5,
h2 {
    font-family: "Rubik", serif;
    color: #0e0c23;
    position: relative;
    padding-bottom: 5px;
    margin: 1rem 5px 20px 0;
}

    h5::after {
        content: '';
        position: absolute;
        width: calc(var(--hauteur-menu) - 10px);
        height: 2px;
        background-color: var(--bs-primary);
        left: 0;
        bottom: 0px;
        opacity: 1;
        transition: .5s;
    }
:root {
    --bs-primary: #00adeb;
    --bs-success: #4fd27d;
    --bs-dark: #212529;
    --color-grey: #c3c3c3;
    --color-light: #f5f5ff;
    --hauteur-menu: 60px;
    --border-color: #eceff7;
    --shadow-md: 0 .5rem 1rem rgb(0 0 0 / 10%);
    --sidebar-width: 343px;
    --planning-item: 210px;
    --bleu-light: #e7f1ff;
    --bleu-primary: #0c63e4;
}

*:focus-visible {
    outline: 1px solid transparent !important;
}

*:focus {
    box-shadow: none !important;
}

select {
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.pointer-events-none {
    pointer-events: none;
}
.opacity-5 {
    opacity: .5;
}
.rounded-5 {
    border-radius: .5rem;
}

.text-success {
    color: #15cc15 !important;
}

.bg-blue {
    background-color: var(--bleu-primary) !important;
    color: white !important;
}
.bg-blueflash {
    background-color: var(--bleu-light) !important;
    color: var(--bleu-primary) !important;
}
.bg-bluelight {
    background-color: var(--bleu-light);
}

.border-success {
    border-color: #15cc15 !important;
}

.border-blue {
    border-color: #00ADEF !important;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #D5DFE8;
    border-radius: 5px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #999;
    }

.modal-backdrop.show {
    opacity: 0.2;
}

/***************************** NAVIGATION *********************************/
.topbar {
    display: flex;
    background-color: transparent;
    height: var(--hauteur-menu);
    color: var(--bs-dark);
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #ececec;
}



    .topbar .bloc-id {
        width: var(--hauteur-menu);
        height: var(--hauteur-menu);
        font-size: 35px;
        font-weight: 600;
        background-color: transparent;
        color: var(--bs-dark);
        text-align: center;
        line-height: var(--hauteur-menu);
        border-bottom: 1px solid #ececec;
        border-right: 1px solid #ececec;
    }
        .topbar .bloc-id:hover {
            background-color: #00adeb;
            color: white;
        }


.sidenav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: var(--hauteur-menu);
    background-color: white;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    padding-top: var(--hauteur-menu);
    z-index: 999;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ececec;
}

    .sidenav.active {
        width: 260px;
    }

        .sidenav.active .nav-titre-text {
            visibility: visible;
            opacity: 1;
            transition: opacity 0.3s ease-in-out 0.1s;
        }

        .sidenav.active .list-group {
            visibility: visible;
            opacity: 1;
            transition: opacity 0.3s ease-in-out 0.1s;
        }

    .sidenav #menu_part {
        height: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .sidenav #support_part {
        height: 10%;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }


.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #00adef;
    background-color: #f5f5ff;
    border-color: #dee2e6 #dee2e6 #f5f5ff #dee2e6;
    border-radius: 0;
}

    .nav-tabs .nav-link.active.bgwhite {
        color: #00adef;
        background-color: white;
        border-color: #dee2e6 #dee2e6 #f5f5ff #dee2e6;
        border-radius: 0;
        border-bottom: none;
    }

.nav-link {
    border: 1px solid #dee2e6;
    border-radius: 0;
    color: #444;
}

.nav-tabs {
    padding: 0 15px;
}

.nav-left,
.nav-right .bi {
    font-size: 20px;
}

.nav-right {
    font-size: 16px;
    background-color: white;
    border-radius: 50px;
    padding: .5rem;
    gap: 1rem;
}

.nav-left,
.nav-mid,
.nav-right {
    display: flex;
    align-self: stretch;
    cursor: pointer;
}

.nav-list-item {
    height: 28px;
}
.nav-item-wrapper {
    padding: 0 10px;
}
.nav-item {
    text-align: center;
    align-self: stretch;
    user-select: none;
    display: flex;
    align-items: center;
}

    .nav-item.active,
    .nav-item.active:hover {
        background-color: #F5F5FF;
        color: var(--bs-dark);
    }

.nav-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    display: block;
    color: #888888;
    line-height: 25px;
    padding: 10px 0;
    margin: 5px 0;
    border-radius: 10px;
}

    .nav-title > i {
        font-size: 20px;
        margin-left: 10px;
    }

.nav-titre-text {
    visibility: hidden;
    opacity: 0;
    transition: none;
    position: absolute;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px;
    padding-top: 2px;
}



.user {
    background-color: #e7f1ff;
    color: #0c63e4;
    min-width: 44px;
    display: inline-block;
    height: 44px;
    line-height: 44px;
    border-radius: 50Px;
    font-size: 12px;
    padding: 0 1rem;
}

.user-wrapper {
    position: fixed;
    top: 40px;
    right: 10px;
    min-width: 250px;
    background-color: #fff;
    z-index: 500;
    border-radius: 8px;
    color: #2f2d2d;
    padding: 50px 5px 25px 25px;
    box-shadow: 0 5px 10px #22222417;
}



.list-group > .nav-list-item:hover,
.nav-title:hover {
    background-color: #f5f5ff;
}



/***************************************************** FIN NAVIGATION ************************************************/



.accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: white;
}
    .accordion-button:not(.collapsed):hover,
    .accordion-button:hover {
        background-color: var(--bleu-light);
    }





#add_driver {
    color: white;
    font-size: 16px;
    position: relative;
    top: 2px;
    background-color: #00adef;
    border-radius: 50px;
    height: 18px;
    width: 18px;
    text-align: right;
    line-height: 20px;
    display: inline-block;
    cursor: pointer;
}

.add-image {
    background-color: white;
    padding-top: 10px;
    height: 75px;
    width: 75px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    cursor: pointer;
    border-radius: 10px;
    color: #6c757d !important;
    transition: 0.4s;
    transform: scale(100%)
}

.added-image {
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    cursor: pointer;
    border-radius: 10px;
    height: 75px;
    width: 75px;
    transition: 0.4s;
    transform: scale(100%)
}

    .add-image:hover, .added-image:hover {
        box-shadow: 0 0 15px 2px rgb(0 0 0 / 20%);
        transition: 0.4s;
        transform: scale(105%)
    }

button {
    font-size: 12px;
    padding: 8px 20px;
    font-weight: 500;
    border: none;
}

.badge {
    font-weight: 500;
}

.btn-action {
    border-radius: 50px;
    background-color: white;
    width: 30px;
    height: 30px;
    line-height: 1;
    text-align: center;
    padding: 0;
    border: 1px solid #dee2e6;
}

    .btn-action:hover {
        background-color: #f5f5ff;
    }

.btn-checkbox {
    border: 1px solid #ced4da;
    display: flex;
    padding: 0;
    align-items: center;
    background-color: #f5f5ff;
}

    .btn-checkbox > div {
        padding: 15px 18px 15px 18px;
    }

    .btn-checkbox > span {
        padding-top: 18px;
        padding-bottom: 18px;
        border-left: 1px solid #ced4da;
        border-right: 1px solid #ced4da;
        font-size: 12px;
    }

.bg-success {
    background: #4fd27d !important;
}


.data-item.bg-white.vertical.bg-img.parc .data-bg-img,
.data-item.bg-white.vertical.bg-img.start .data-bg-img,
.data-item.bg-white.vertical.bg-img.end .data-bg-img {
    height: 100%;
    width: 100%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 50%;
    top: -20px;
    transition: .2s;
}

.data-item.bg-white.vertical.bg-img.parc .data-bg-img {
    background-image: url(/img/parc.jpg);
    background-size: 60%;
    right: -15%;
    left: initial;
    top: -30px;
}
.data-item.bg-white.vertical.bg-img.start .data-bg-img {
    background-image: url(/img/miniglc.png);
}

.data-item.bg-white.vertical.bg-img.start:hover .data-bg-img {
    left: 45%;
    top: -15px;
}

.data-item.bg-white.vertical.bg-img.end .data-bg-img {
    background-image: url(/img/miniglcdroite.png);
}

.data-item.bg-white.vertical.bg-img.end:hover .data-bg-img {
    left: 55%;
    top: -15px;
}

.btn-green {
    background-color: #4fd27d;
    text-transform: uppercase;
    border-color: #4fd27d;
    color: white;
}
.btn-red {
    background-color: #ff5656;
    text-transform: uppercase;
    border-color: #ff5656;
    color: white;
}

.btn-blue {
    background-color: #0dcaf0;
    text-transform: uppercase;
    /*border-color: #4fd27d;*/
    color: white;
}

    .btn-blue:hover {
        background-color: #1bb7d7;
        /*border-color: #4fd27d;*/
        color: white;
    }

.btn-blue-light {
    background-color: white !important;
    text-transform: uppercase;
    border: 1px solid #00ADEF;
    color: #00ADEF !important;
}

.btn-blue-light:hover {
    background-color: #00ADEF !important;
    border: 1px solid #00ADEF;
    color: white !important;
}

.btn-green input {
    background-color: #129b42 !important;
    text-transform: uppercase;
    border-color: #129b42 !important;
}

.btn-green:hover {
    background-color: #47bd70;
    border-color: #47bd70;
    color: white;
}

.btn-delete {
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    margin-right: 5px;
    padding-left: 4px;
    color: white;
    background-color: #ff71a1;
}

    .btn-delete > i {
        position: relative;
        right: 2px;
    }

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

.bg-danger {
    background: #ff678d !important;
}

.mono,
.brique-titre {
    font-family: 'Rubik', sans-serif;
}

.alert-step-invalid {
    position: fixed;
    top: 65px;
    font-size: 12px;
    background-color: rgba(255, 255, 255, .95);
    width: 420px;
    right: 0px;
    z-index: 50;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px 0 0 50px;
    border-bottom: 2px solid #ff6f93;
}

    .alert-step-invalid > span {
        display: flex;
        align-items: center;
        padding: 10px;
    }

.alert-step-valid {
    position: fixed;
    top: 65px;
    font-size: 12px;
    background-color: rgba(255, 255, 255, .95);
    width: 420px;
    right: 10px;
    z-index: 50;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px 0 0 50px;
    border-bottom: 2px solid #00d41c;
}

    .alert-step-valid > span {
        display: flex;
        align-items: center;
        padding: 10px;
    }

.brique {
    place-self: center;
}

.brique-titre {
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    padding: 15px 0 20px 0;
}

.brique-icon {
    font-size: 36px;
    text-align: center;
}

.brique-chiffre {
    text-align: center;
    font-size: 10px;
    border-radius: 50px;
}

    .brique-chiffre > i {
        font-size: 18px;
    }

.brique-chiffre-diag {
    padding: 10px calc(var(--bs-gutter-x)/ 2) 0 calc(var(--bs-gutter-x)/ 2);
    font-size: 48px;
    text-align: center;
    font-weight: 500;
    margin: 20px 0 0 0;
}

.brique-chiffre-diag {
    color: #222222;
    position: relative;
}

    .brique-chiffre-diag:nth-of-type(2):after {
        content: '';
        position: absolute;
        width: 2px;
        height: 100%;
        background-color: gold;
        transform: rotate(40deg);
        left: 100%;
        top: 0;
    }

.brique-icon.blue {
    color: #0dcaf0;
}

.brique-icon.white {
    color: white;
}

.btn-round {
    background-color: white;
    color: var(--bs-dark);
    width: 35px;
    height: 35px;
    border-radius: 50px;
    text-align: center;
    line-height: 25px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    transition: .2s;
}

.btn-round:hover {
    background-color: #ff678D;
    color: white;
}

.btn-round-lg {
    width: 55px;
    height: 55px;
}

.btn-round-blue {
    border-color: #00ADEF;
    color: #00ADEF;
}

.btn-round-blue:hover {
    background-color: #00ADEF;
    color: white;
}

.btn-mb {
    background-color: #00ADEF;
    color: white;
    transition: .2s;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 7px 20px;
    border-radius: 0;
}

.btn-mb--secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    transition: .2s;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 7px 20px;
    border-radius: 0;
}

.btn-mb:hover {
    background-color: #00a0de;
    color: white;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

.text-blue {
    color: var(--bs-primary);
}

.text-blue--light {
    color: #a8c4e0;
}

.bg-blue {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

body {
    background-color: #f5f5ff;
}

[class^='tooltip'] {
    font-size: 12px;
}

.brique-crea {
    background-color: #0dcaf0 !important;
    color: white;
}

.brique .bi-plus-circle-fill {
    font-size: 48px;
    color: #f5f5ff;
}


/******************************************************/
/******************************************************/
/*********************** TABLEAUX** *******************/
/******************************************************/
/******************************************************/

.table-wrapper-responsive {
    overflow: auto;
    font-size: 13px;
    max-height: calc(100vh - (259px + var(--hauteur-menu)));
}

    .table-wrapper-responsive.no-tabs {
        max-height: calc(100vh - (196px + var(--hauteur-menu)));
    }

.table-custom-dynamique thead tr, .table-custom-dynamique tbody tr {
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    align-items: stretch;
}

.table-custom-dynamique.fluid th:first-of-type,
.table-custom-dynamique.fluid td:first-of-type,
.table-custom-dynamique.fluid th,
.table-custom-dynamique.fluid td {
    flex: 1;
    /*    width: initial;
    max-width: initial;
*/
}



.table-custom-dynamique thead tr > *,
.table-custom-dynamique tbody tr > * {
    padding: 0 10px;
    border-right: 1px solid var(--border-color);
}

    .table-custom-dynamique thead tr > *:last-of-type,
    .table-custom-dynamique tbody tr > *:last-of-type {
        border-right: none;
    }

.table-custom-dynamique th {
    line-height: 45px;
    cursor: pointer;
    border-bottom: 1px solid #e4e4e4;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible !important;
    font-weight: 500;
}

.table-custom-dynamique input[type='checkbox']:not(.check-task) {
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.table-custom-dynamique tbody tr {
    min-height: 35px;
    background-color: white;
    line-height: 35px;
    border-bottom: 1px solid #f1f1f1;
}

    .table-custom-dynamique tbody tr.active {
        background-color: var(--color-light);
    }

    .table-custom-dynamique tbody tr:hover {
        background-color: var(--color-light);
    }

.table-custom-dynamique th,
.table-custom-dynamique td {
    flex: 340 0 auto;
    width: 340px;
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.table-custom-dynamique th.tight,
.table-custom-dynamique td.tight {
    flex: 200 0 auto;
    width: 200px;
    max-width: 200px;
}

.table-custom-dynamique th:hover,
.table-custom-dynamique td:hover {
    background-color: var(--color-light);
}

.table-custom-dynamique .width-handle {
    position: absolute;
    background-color: transparent;
    width: 10px;
    height: 46px;
    right: -5px;
    z-index: 500000;
    cursor: w-resize;
}

    .table-custom-dynamique .width-handle:hover {
        background-color: var(--border-color);
    }

th.width-xs,
td.width-xs {
    max-width: 105px;
}



/******************************************************/
/******************************************************/
/*********************** DATA ITEMS *******************/
/******************************************************/
/******************************************************/

.data-item {
    display: flex;
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
    bottom: 0;
    transition: .2s;
    width: 100%;
    overflow: hidden;
}

.data-item-sm {
    padding: 10px 25px 10px 25px;
    border-radius: 15px;
    position: relative;
    bottom: 0;
    transition: .2s;
}

a.data-item:hover,
a.data-item-sm:hover {
    bottom: 5px;
    box-shadow: var(--shadow-md);
}

.data-item-sm p {
    margin: 0;
}

.data-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    margin-top: .75rem;
}

.data-item.horizontal,
.data-item-sm.horizontal {
    flex: 0 0 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

    .data-item.horizontal > .data-header {
        font-size: 32px;
    }

    .data-item.horizontal > .data-body {
        line-height: 26px;
        font-size: 16px;
    }

        .data-item.horizontal > .data-body > span {
            font-size: 36px;
        }

.data-item.vertical {
    flex-direction: column;
}

    .data-item.vertical > .data-header {
        font-size: 32px;
    }

    .data-item.vertical > .data-body {
        font-size: 48px;
    }

        .data-item.vertical > .data-body span:first-of-type {
            min-width: 82px;
            display: inline-block;
        }

        .data-item.vertical > .data-body span:nth-child(2n) {
            font-size: 12px;
        }

    .data-item.vertical > .data-footer {
        display: flex;
        align-items: flex-end;
    }

        .data-item.vertical > .data-footer > span {
            flex: 1;
            line-height: 26px;
            font-size: 16px;
        }

        .data-item.vertical > .data-footer > i {
            flex: .5;
            text-align: end;
        }

.data-item .data-footer .bi,
.data-item-sm .data-footer .bi {
    position: relative;
    right: 0;
    -webkit-transition: all 0.5s 0s cubic-bezier(0, 1, 0.43, 1);
    -moz-transition: all 0.5s 0s cubic-bezier(0, 1, 0.43, 1);
    -o-transition: all 0.5s 0s cubic-bezier(0, 1, 0.43, 1);
    transition: all 0.5s 0s cubic-bezier(0, 1, 0.43, 1);
}

.data-item:hover .data-footer .bi,
.data-item-sm:hover .data-footer .bi {
    right: 15px !important;
}

.carre {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    cursor: pointer;
    transform: scale(100%);
    transition: 0.4s;
}

    .carre.no-hover-effect {
        cursor: initial;
    }

    .carre:not(.no-hover-effect):hover {
        transform: scale(105%);
        box-shadow: 0 0 15px 2px rgb(0 0 0 / 5%);
    }

    .carre::before {
        display: block;
        padding-top: var(--bs-aspect-ratio);
        content: "";
    }

.canvas-sign {
    border: 1px solid #ced4da;
}

.dgt-item {
    display: flex;
    background-color: #f5f5ff;
    font-size: 12px;
    justify-content: space-between;
    padding: 10px 10px 10px 20px;
    align-items: center;
    border-radius: 50px;
    margin-bottom: 5px;
}

    .dgt-item > .bi {
        font-size: 20px;
        margin: 0 20px 0 2px;
    }

.dgt-info > .bi {
    padding: 5px;
    font-size: 20px;
    background-color: white;
    border-radius: 50px;
    margin-right: 5px;
}

.dgt-description {
    pointer-events: none;
    flex: 2;
}

.disabled {
    opacity: .5;
}

.dossier {
    cursor: pointer;
}

    .dossier:hover {
        background-color: #e7f0ff;
    }

    .dossier.active {
        background-color: #00adef;
        color: white;
    }

.document-item {
    width: 100%;
    background-color: white;
    margin-bottom: 15px;
}

.document-header {
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    border: 1px solid #ced4da;
    cursor: pointer;
}

    .document-header i {
        padding: 10.5px 11px;
        border-right: 1px solid #ced4da;
    }

    .document-header > div > span {
        font-size: 12px;
        text-transform: uppercase;
        padding-left: 8px;
    }

.document-footer {
    display: flex;
    justify-content: space-between;
    align-content: center;
    border-bottom: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
}

.document-header > div:last-of-type {
    padding: 8px 9px;
    border-left: 1px solid #ced4da;
}

.document-body .input-group > * {
    border: none;
}

.document-body .input-group {
    border-bottom: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
}

.dropdown-toggle::after {
    font-family: bootstrap-icons !important;
    border: none;
    content: "\f22c";
    position: absolute;
}

.btn:disabled {
    opacity: .3;
    cursor: not-allowed;
    pointer-events: all !important;
    filter: grayscale(1);
}

div#ui-datepicker-div {
    font-family: 'Rubik', sans-serif !important;
    font-weight: 400 !important;
    z-index: 9999999 !important;
    padding: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    border-radius: 5px;
}

.ui-datepicker td span, .ui-datepicker td a {
    border: 1px solid transparent !important;
    background-color: #f5f5ff !important;
    border-radius: 5px;
    text-align: center !important;
}

.ui-datepicker td a:hover {
    background-color: #00adeb !important;
    color: white;
}

.ui-datepicker th {
    font-size: 12px;
}

.ui-datepicker table {
    margin: 0 !important;
}

.ui-widget-header {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #f5f5ff !important;
    border-radius: 0 !important;
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
    top: 2px !important;
    background-color: #f5f5ff !important;
    border: none !important;
    cursor: pointer;
    border-radius: 5px;
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 2px !important;
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 2px !important;
}

.ui-datepicker-month {
    font-weight: 500 !important;
}

.ui-datepicker-year {
    color: #a8c4e0;
    width: auto !important;
    border: transparent;
    font-size: 14px !important;
}

.encart-reglement-details {
    background-color: #0dcaf0;
    color: white;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    border-radius: 5px;
}

.encart-reglement-details__header {
    display: flex;
    justify-content: center;
    margin: 0 10px;
    border-bottom: 1px solid #ced4da;
    align-items: baseline;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.encart-reglement-details__body {
    padding: 10px;
    font-style: italic;
    font-size: 16px;
    text-align: center;
}

.encart-reglement-details__header--table {
    display: table-row;
    margin: 0 10px;
    border-bottom: 1px solid #ced4da;
    align-items: baseline;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enquete-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-bottom: 1px solid #ced4da;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

    .enquete-header:hover {
        background-color: #f8f8ff;
    }

.enquete-body {
    padding: 10px 10px 0 10px;
    border-radius: 0 0 5px 5px;
}

    .enquete-body .wrapper-note .tiny {
        padding-top: 20px;
        border-top: 1px solid #ced4da;
        border-radius: 0;
    }

    .enquete-body > i {
        font-size: 12px;
        color: #555555;
    }

.enquete-note {
    border-top: 1Px solid #ced4da;
    padding-top: 15px;
    margin-top: 15px;
}

.form-check-input:checked {
    background-color: #00adeb;
    border-color: #00adeb;
}

.form-double-switch .form-check-input {
    float: none;
    margin-left: 0;
}

    .form-double-switch .form-check-input:focus {
        box-shadow: none;
    }

    .form-double-switch .form-check-input:checked {
        background-color: #4FD27D !important;
        border-color: #4FD27D !important;
    }

    .form-double-switch .form-check-input:not(:checked) {
        background-color: #0dcaf0 !important;
        border-color: #0dcaf0 !important;
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255,255,255,1)'/></svg>");
    }

.form-switch .form-check-input:checked {
    background-color: #4FD27D;
    border-color: #4FD27D;
}

.form-switch .form-check-input:not(:checked) {
    border-color: #D6376D;
}

.form-control:disabled,
.form-control[readonly] {
    color: #a2a8ad;
    background-color: #f0f2f4;
}

.form-select:disabled {
    background-image: none;
}

.form-label {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #a8c4e0;
}

.form-check-label.retour-constat, .form-check-label.depart-constat {
    border-radius: 50px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    text-align: center;
    padding: 0 8px 0 5px;
    font-size: 12px;
    border: 1px solid #ced4da;
    user-select: none;
}

    .form-check-label.retour-constat:hover, .form-check-label.depart-constat:hover {
        background-color: #f5f5ff;
        cursor: pointer;
    }

    .form-check-label.retour-constat.notok.active, .form-check-label.depart-constat.notok.active {
        color: white;
        background-color: #ff678d;
        border-color: #ff678d;
    }

    .form-check-label.retour-constat.ok.active, .form-check-label.depart-constat.ok.active {
        color: white;
        background-color: #15cc15;
        border-color: #15cc15;
    }

.funnel {
    display: flex;
    background-color: white;
    height: 50px;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
}

.funnel-number {
    font-size: 10px;
    border-radius: 50px;
    font-weight: 500;
    margin-right: 5px;
    border: 1px dashed black;
    padding: 1px 6px;
    z-index: 5;
}

.funnel-name {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 5;
    font-family: 'Rubik', monospace;
}

[class^='funnel-step'].active::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    left: -25px;
    border-right: 25px solid #00adef;
    border-left: 25px solid white;
    border-top: 25px solid white;
    border-bottom: 25px solid #00adef;
}

[class^='funnel-step'].active::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    border-right: 25px solid #ffffff;
    border-left: 25px solid #00adef;
    border-top: 25px solid #00adef;
    border-bottom: 25px solid #ffffff;
}

[class^='funnel-step'] {
    flex: 1;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

    [class^='funnel-step']:not(.active):hover {
        opacity: 1;
    }

    [class^='funnel-step']:not(.active) {
        opacity: .5;
    }

    [class^='funnel-step'].active {
        background-color: #00adef;
        color: white;
    }

        [class^='funnel-step'].active .funnel-number {
            border: 2px solid white;
        }

    [class^='funnel-step']:first-of-type::before {
        content: '';
        position: absolute;
        left: 0;
        border: none;
    }

    [class^='funnel-step']:last-of-type::after {
        content: '';
        position: absolute;
        right: 0;
        border: none;
    }

/* .col-lg-2:nth-child(2n) {
    background-color: #ececec;
} */


.grade .stars {
    font-size: 20px;
    /* overflow: hidden; */
    line-height: 25px;
    display: inline-block;
    z-index: 1;
    margin-left: 20px;
}

    .grade .stars,
    .grade .stars:before {
        /* width: 100px; */
        height: 25px;
        position: relative;
    }

        .grade .stars:before {
            content: "★★★★★";
            display: block;
            color: #c9d0d6;
        }

        .grade .stars span {
            position: absolute;
            display: block;
            overflow: hidden;
            top: 0;
            height: 25px;
        }

            .grade .stars span:before {
                content: "★★★★★";
                position: relative;
                width: 100px;
                height: 25px;
                display: block;
                color: gold;
            }

.hr {
    font-family: 'Rubik', sans-serif;
    text-align: center;
    letter-spacing: 2px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: #b2d2f3;
    position: relative;
    margin: 15px 0;
}

    .hr.bgwhite > span {
        background-color: white;
    }

    .hr > span {
        background-color: #F5F5FF;
        position: relative;
        z-index: 20;
        padding: 0 15px;
    }

    .hr::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        top: 7px;
        left: 0;
        background-color: #ececec;
        z-index: 20;
    }

.hr14 {
    font-family: 'Rubik', sans-serif;
    text-align: center;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #b2d2f3;
    position: relative;
    margin: 15px 0;
}

    .hr14.bgwhite > span {
        background-color: white;
    }

    .hr14 > span {
        background-color: #F5F5FF;
        position: relative;
        z-index: 20;
        padding: 0 15px;
    }

    .hr14::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        top: 10px;
        left: 0;
        background-color: #ececec;
        z-index: 20;
    }

.input-group-text {
    background-color: #f5f5ff;
}

.input-group {
    z-index: 10;
}

.immat {
    font-size: 10px;
    background-color: white;
    color: black;
    padding: 0 3px;
    font-weight: 500;
    position: relative;
    bottom: 1px;
    margin: 0 12px;
}

    .immat.absolute {
        position: absolute;
        bottom: 10px;
        left: 3px;
    }

    .immat::before,
    .immat::after {
        position: absolute;
        color: white;
        font-size: 6px;
        font-weight: 100;
        padding: 0 3px;
        background-color: #2c4fe6;
        height: 15px;
        line-height: 15px;
    }

    .immat::before {
        content: 'F';
        left: -9px;
        top: 0;
        border-radius: 4px 0 0 4px;
    }

    .immat::after {
        content: '67';
        right: -12px;
        top: 0;
        border-radius: 0 4px 4px 0;
    }

.label-emoji {
    font-size: 36px;
    cursor: pointer;
    min-width: 150px;
}

.link {
    border-bottom: 2px solid #91e1ff;
    margin-bottom: 2px;
    padding-bottom: 2px;
}

    .link:hover {
        border-bottom: 3px solid #0dcaf0;
        margin-bottom: 1px;
    }

.logo {
    width: 180px;
}

.load-vehicules {
    padding: 15px 0 0 0;
    border-left: 1px solid;
    border-bottom: 1px solid;
    border-right: 1px solid;
    position: relative;
    top: -15px;
    border-color: #ced4da;
    max-height: 260px;
    overflow: auto;
}

.list-details-veh > i {
    min-width: 20px;
    display: inline-block;
    color: #00adef;
    font-size: 16px;
    line-height: 1;
    padding: 5px 0;
}

.list-group-item.active {
    background-color: #00adef;
    border-color: #00adef;
}

.list-group.list-group-flush {
    visibility: hidden;
    opacity: 0;
    transition: none;
}

.list-group > .nav-list-item > a {
    padding: 5px 0 5px 48px;
    font-size: 12px;
    width: 100%;
    display: block;
}


.list-menu-client {
    display: flex;
    background-color: white;
    list-style: none;
    margin-top: calc(var(--bs-gutter-x)/ 2);
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    cursor: pointer;
    align-items: center;
    transform: scale(100%);
    transition: 0.4s;
}

    .list-menu-client:hover {
        transform: scale(105%);
        box-shadow: 0 0 15px 0px rgb(0 0 0 / 13%);
    }

    .list-menu-client.active {
        background-color: #00ADEF;
        color: white;
    }

    .list-menu-client > i {
        text-align: center;
        font-size: 22px;
        padding: 8px 13px;
        border-right: 1px solid #ced4da;
    }

    .list-menu-client > span {
        padding: 0 15px;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 500;
    }

.list-veh-parc a {
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 100px;
    padding: 0 1rem;
    position: relative;
    transition: .2s;
    bottom: 0;
    margin-bottom: 5px;
    gap: 1rem;
}
.list-veh-parc a:hover {
    bottom: 2px;
    box-shadow: 0 5px 10px #ececec;
}
.list-veh-parc a>div {
    flex: 1;
}
    .list-veh-parc a > div:first-of-type {
        max-width: 100px;
    }

.multiselect-parent {
    position: relative;
    cursor: default;
}

.multiselect {
    max-height: 140px;
    overflow: auto;
    position: absolute;
    bottom: -137px;
    background-color: white;
    border: 1px solid #ced4da;
    left: -1px;
    width: calc(100% + 2px);
    user-select: none;
    z-index: 40;
}

    .multiselect > .form-check {
        padding: 0 0 0 2em;
        border-bottom: 1px solid #ced4da;
        margin-bottom: 0;
        cursor: pointer;
    }

        .multiselect > .form-check > input {
            margin: 10px 0px 10px -1.5em;
        }

        .multiselect > .form-check:hover {
            background-color: #f5f5ff;
        }

        .multiselect > .form-check.btn-green:hover {
            background-color: #47bd70;
        }

        .multiselect > .form-check:last-of-type {
            border-bottom: none;
        }

        .multiselect > .form-check > label {
            width: 100%;
            padding: 7px 5px 5px 0;
            cursor: pointer;
        }

.form-contrat {
    background-color: #f5f5ff;
    position: relative;
    z-index: 100;
}

.contrat .modal-body {
    min-height: calc(100vh - 192px);
}

/*.contrat .integration-pdf*/
#modal_sign_contrat_iframe_container,
.contrat .container-fluid {
    width: 100% !important;
    height: calc(100vh - 587px) !important;
    overflow: auto !important;
    transition: all ease-in 0.3s;
}

    #modal_sign_contrat_iframe_container.clos, .container-fluid.clos {
        height: calc(100vh - 257px) !important;
    }

    .contrat .container-fluid.clos {
        height: calc(100vh - 237px);
    }

.modal-body {
    background-color: #F5F5FF;
}

    .modal-body > iframe {
        width: 100%;
        height: calc(100% - 10px);
    }

.main {
    width: calc(100% - var(--hauteur-menu));
    float: right;
    position: relative;
    margin-top: var(--hauteur-menu);
}

#pending {
    position: relative;
    z-index: 90;
    height: 31px;
    background-color: #f5f5ff;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid #e0e9f1;
    border-top: 0;
}

    #pending.active {
        height: 304px;
    }

.pending-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pending-resa {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
    margin: 0 32px;
}

    .pending-resa > img {
        height: 150px;
        width: auto;
    }

.pending-nav-before,
.pending-nav-after {
    position: absolute;
    top: 38px;
    height: 80px;
    background-color: white;
    z-index: 150;
    line-height: 80px;
    font-size: 26px;
    padding: 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

    .pending-nav-before:hover,
    .pending-nav-after:hover {
        background-color: #f5f5ff;
    }

.pending-nav-before {
    left: 0;
    border-radius: 0 5px 5px 0;
    border-right: 1px solid #dee2e6;
}

.pending-nav-after {
    right: -1px;
    border-radius: 5px 0 0 5px;
    border-left: 1px solid #dee2e6;
}

.preview-resa {
    border-top: 1px solid #e0e9f1;
    position: relative;
    flex: 0 101px;
}

    .preview-resa .veh-resa {
        background-color: #f5f5ff;
        border-bottom: none;
    }

    .preview-resa > .mininav {
        display: inline-block;
        position: absolute;
        right: 5px;
        top: -15px;
        z-index: 150;
        transition: .2s;
        opacity: 0;
        visibility: hidden;
    }

    .preview-resa:hover > .mininav {
        visibility: visible;
        opacity: 1;
        top: 5px;
    }

.pending-footer {
    flex: 0 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    cursor: pointer;
    font-size: 26px;
    border-top: 1px solid #e0e9f1;
    background-color: #e0e9f1;
    user-select: none;
}

    .pending-footer:hover {
        background-color: #d5dfe8;
    }

    .pending-footer > span {
        font-size: 10px;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: .2px;
    }

.pending-item {
    background-color: white;
    height: calc(100% - 15px);
    border-radius: 5px;
    width: 350px;
    margin: 7px 7px 7px 0;
    position: relative;
    align-items: center;
    display: flex;
    cursor: pointer;
    border: 2px solid transparent;
    user-select: none;
    left: 0;
    transition: 0.5s ease all;
}

    .pending-item:hover {
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    }

    .pending-item.active {
        border: 2px solid #0dcaf0;
    }

    .pending-item .resa-info {
        max-width: 200px;
    }

    .pending-item > input {
        position: absolute;
        z-index: 100;
        left: 10px;
        top: 6px;
    }

    .pending-item > label {
        display: flex;
        cursor: pointer;
        align-items: flex-end;
        flex: 1;
    }

.range-fuel {
    flex: 1;
    place-self: center;
    padding: 18px 10px;
    border: 1px solid #ced4da;
}

.rightbar-close-btn {
    position: fixed;
    border: 1px solid #ced4da;
    width: 49px;
    height: 50px;
    top: calc(50% - 28px);
    background-color: #f5f5ff;
    border-right: 0;
    box-shadow: -8px 0px 10px -4px rgb(0 0 0 / 18%);
    font-size: 20px;
    padding: 0;
    line-height: 1;
}

    .rightbar-close-btn.btn-print {
        top: calc(50% + 21px);
        background-color: #0dcaf0;
        color: white;
        z-index: 51;
    }

    .rightbar-close-btn .print-icon {
        text-align: center;
        line-height: 50px;
        cursor: pointer;
    }

    .rightbar-close-btn .print-wrapper {
        position: absolute;
        left: 48px;
        top: -1px;
        border-top: 1px solid #ced4da;
        background-color: #44c1f3;
        overflow-y: auto;
        max-height: 48vh;
    }

        .rightbar-close-btn .print-wrapper > button {
            padding: 18px;
            min-width: 180px;
            border-top: 1px solid #ced4da;
        }

        .rightbar-close-btn .print-wrapper > .print-libelle {
            border-top: 1px solid #ced4da;
            border-left: 1px solid #ced4da;
        }

.rightbar-container {
    margin-left: 60px;
    height: 100vh;
    padding-left: 0;
}

    .rightbar-container > .row {
        background-color: #f5f5ff;
        border-left: 1px solid #ced4da;
    }

        .rightbar-container > .row:last-of-type {
            min-height: calc(100% - 56px);
        }

.rightbar {
    position: fixed;
    top: var(--hauteur-menu);
    right: -76%;
    width: calc(75% - 28px);
    height: calc(100% - var(--hauteur-menu));
    display: flex;
    z-index: 1050;
    transition: all .6s cubic-bezier(0.22, 0.61, 0.36, 1);
    overflow: auto;
}

    .rightbar.active {
        right: 0;
    }

.table-responsive thead td {
    min-width: 110px;
}




.select2-selection__choice {
    background-color: #00ADEF !important;
    color: white !important;
    border-color: #00ADEF !important;
}

.select2-selection__choice__remove {
    color: white !important;
    border-color: #00ADEF !important;
}

.select2-selection__choice__remove:hover {
    background-color: #0a58ca4f !important;
}

.select2-selection__choice__display {
    font-size: 14px !important;
}

.select2-selection--multiple {
    border: 1px solid #ced4da !important;
}

.select2-search__field {
    font-size: 14px !important;
}

.select2-container--big .select2-selection {
    height: 38px !important;
}

.select2-container--big .select2-search__field {
    width: auto;
}

.search-wrapper {
    position: relative
}
    .search-wrapper input {
        height: 50px;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 0 3rem 0 1rem;
        min-width: 200px;
        z-index: 100;
        position: relative;
        width: 100%;
    }

    .search-wrapper #delete_search_query {
        background-color: transparent;
        position: absolute;
        z-index: 101;
        right: 10px;
        top: 10px;
        padding: 0;
        border-radius: 50px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .search-wrapper #delete_search_query:hover {
        background-color: var(--bleu-light);
    }

    .search-wrapper #search_results {
        position: absolute;
        top: 50px;
        right: 0;
        min-width: 200px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 10px 25px #11111121;
        z-index: 50;
        max-height: 400px;
        overflow: auto;
        width: 100%;
    }

.search-result {
    padding: .5rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}

    .search-result .circle-type {
        min-width: 40px;
        height: 40px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border-color);
        color: var(--bs-dark);
        background-color: white;
    }

    .search-result:last-of-type {
        border-bottom: none;
    }

.search-result:hover {
    cursor: pointer;
    background-color: var(--bleu-light);
}

.switch-wrapper {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: #fff;
    padding: .25rem;
    gap: .25rem;
}

.switch-label {
    border-radius: 50px;
    padding: 5px 15px;
    opacity: .5;
    cursor: pointer;
}
.switch-label:hover {
    background-color: white;
    opacity: 1;
}
input:checked + .switch-label {
    background-color: #e7f1ff;
    opacity: 1;
    color: #0c63e4;
    font-weight: 500;
}

sup {
    top: -16px;
    font-size: 10px;
    margin-left: 5px;
}

.stars {
    color: gold;
    display: block;
}

.sticky-print {
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    overflow: hidden;
}

    .sticky-print .bi-chevron-up,
    .sticky-print .bi-chevron-down {
        display: none;
    }

    .sticky-print .list-group-item {
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #ececec;
    }

        .sticky-print .list-group-item:last-of-type {
            border-bottom: none;
        }

.signature-pad-body {
    padding-left: 30px;
    border-left: 1px solid #ececec;
    padding-right: 30px;
    border-right: 1px solid #ececec;
    position: relative;
}

    .signature-pad-body > canvas {
        cursor: crosshair;
    }

    .signature-pad-body > button {
        position: absolute;
        right: 30px;
        border: none;
        padding: 5px 20px;
        font-size: 10px;
        background-color: #d6e5f9;
        color: #252525;
        border-radius: 0 0 0 5px;
    }

        .signature-pad-body > button:hover {
            background-color: #f5f5ff;
        }


.step-body {
    display: flex;
    background-color: white;
    flex-wrap: wrap;
}

.step-desc {
    display: flex;
    flex-direction: column;
}

    .step-desc > span {
        font-size: 12px;
        color: #ececec;
    }

.step-header {
    background-color: #00ADEF;
    color: white;
    display: flex;
    align-items: center;
    transition: .2s;
}

    .step-header:hover {
        cursor: pointer;
        background-color: #00a0de;
    }

.step-icon {
    width: 40px;
    border: 1px solid white;
    height: 40px;
    border-radius: 5px;
    margin: 20px;
    padding: 5px;
    font-size: 20px;
    text-align: center;
}

.step-footer {
    border-top: 1px solid #ced4da;
    background-color: white;
    padding: 20px;
}

.step-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered, .select2--big .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}

.step-wrapper .select2-container--default .select2-selection--single .select2-selection__clear, .select2--big .select2-container--default .select2-selection--single .select2-selection__clear {
    position: relative;
    top: 10px !important;
}

.step-wrapper {
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    margin: 30px 0 40px 0;
    position: relative;
    border-radius: 0 0 10px 10px;
}

    .step-wrapper .step-header {
        border-radius: 10px;
    }

    .step-wrapper::after {
        content: "\f128";
        width: 20px;
        text-align: center;
        height: 40px;
        position: absolute;
        bottom: -40px;
        padding-top: 5px;
        background-color: #ffffff;
        left: calc(50% - 15px);
        font-family: bootstrap-icons !important;
        box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
        border-radius: 0 0 50px 50px;
    }

    .step-wrapper:last-of-type::after {
        display: none;
    }

    .step-wrapper.active .step-header {
        border-radius: 10px 10px 0 0;
    }

    .step-wrapper.active .step-footer {
        border-radius: 0 0 10px 10px;
    }

table.choix-conducteur {
    cursor: pointer;
}

    table.choix-conducteur tr.active {
        background-color: #efefff;
    }

.table > :not(caption) > * > * {
    vertical-align: middle;
}

.table-small {
    font-size: 12px;
}

    .table-small .dropdown-menu {
        font-size: 12px;
    }

    .table-small .input-group-text {
        font-size: 10px;
        padding: 2px 6px;
    }

    .table-small .form-control {
        line-height: 0;
        font-size: 12px;
    }

    .table-small .form-select {
        font-size: 12px;
    }

    .table-small > tbody.content > tr > td:nth-of-type(1) {
        min-width: 400px;
    }

    .table-small > tbody.content > tr > td:nth-of-type(2) {
        width: 80px;
    }

    .table-small > tbody.content > tr > td:nth-of-type(3) {
        width: 80px;
    }

    .table-small > tbody.content > tr > td:nth-of-type(4) {
        width: 130px;
    }

    .table-small > tbody.content > tr > td:nth-of-type(5),
    .table-small > tbody.content > tr > td:nth-of-type(6),
    .table-small > tbody.content > tr > td:nth-of-type(8) {
        width: 60px;
    }

.table > thead {
    font-weight: 500;
    line-height: 3;
    background-color: white;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
}

.tablet {
    display: none;
}



.timepicker[readonly] {
    background-color: white;
    color: black;
    cursor: pointer;
}

.ui-timepicker {
    position: absolute;
    background-color: white;
    border-radius: 5px !important;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
    z-index: 1000000;
    padding: 10px;
    overflow: auto;
    max-height: 272.66px;
}

.ui-timepicker-heure {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    flex-wrap: nowrap;
}

    .ui-timepicker-heure > span {
        padding: 5px 15px;
        background-color: #f5f5ff;
        margin: 1px;
        border-radius: 5px;
    }

        .ui-timepicker-heure > span:hover,
        .ui-timepicker-heure > span.active {
            background-color: #00adef;
            color: white;
            cursor: pointer;
        }

.tiny {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 10px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #00adef !important;
    background: #00adef !important;
    font-weight: normal;
    color: #ffffff;
}

.ui-state-default,
.ui-droppable-hover {
    border: none !important;
    background-color: #e2ffe3 !important;
}

.ui-datepicker .est-avant-aujourdhui > a:not(.ui-state-active):not(.ui-state-hover) {
    color: #bdbdbd !important;
}

.ui-state-highlight:not(.ui-state-active) {
    color: #00adeb !important;
}

.ui-state-highlight:is(.ui-state-active) {
    color: white !important;
}

.ui-state-highlight:hover {
    color: white !important;
}

.ui-widget-content {
    border: none !important;
}

.ui-datepicker-trigger {
    border-top: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-radius: 0 .25rem .25rem 0;
    padding: 0 10px;
    border-color: #ced4da;
    background-color: #f5f5ff;
}

.vehicule-item {
    display: flex;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid #ced4da;
    user-select: none;
}

    .vehicule-item:last-of-type {
        border: none;
    }

    .vehicule-item:not(.disabled):hover {
        background-color: #f5f5ff;
        cursor: pointer;
    }

.vehicule-img {
    position: relative;
    height: 63px;
}

.vehicule-desc {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    padding: 5px;
}

[class^='wrapper-client-'] {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    overflow: hidden;
    margin-bottom: 25px;
}

.wrapper-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    padding: 5px;
    min-width: 160px;
}

.wrapper-driver {
    background-color: white;
    padding: 15px;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

.wrapper-driver-doc {
    display: flex;
}

.wrapper-enquete {
    background-color: white;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    margin-bottom: 15px;
}

.wrapper-statut-veh {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
}

.wrapper-header {
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
    border-bottom: 1px solid #ced4da;
    align-items: baseline;
}

.wrapper-body {
    padding: 10px;
}

    .wrapper-body > .body-info > i {
        font-size: 16px;
        margin-right: 10px;
    }

.wrapper-compte .wrapper-header {
    width: fit-content;
}

.body-carte {
    font-size: 26px;
}

.wrapper-compte {
    background-position: bottom;
    background-repeat: no-repeat;
    background-position-x: right;
    position: relative;
    z-index: 15;
}

    .wrapper-compte.black {
        background-color: #000000;
        background-image: url(../img/etoile.png), linear-gradient(33deg, #000000 0%, #383131 74%);
        color: #ececec;
    }

    .wrapper-compte.silver {
        background-color: #b3b3b3;
        background-image: url(../img/etoile.png), linear-gradient(33deg, #ebebeb 0%, #b3b3b3 74%);
        color: black;
    }

    .wrapper-compte.gold {
        background-color: #e0b421;
        background-image: url(../img/etoile.png), linear-gradient(33deg, #e0b421 0%, #f7df5a 74%);
        color: white;
    }


.wrapper-carte > .wrapper-header {
    border-color: #777777;
}

.wrapper-satisfaction {
    background-color: #f5f5ff;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

    .wrapper-satisfaction .rate {
        color: gold;
        font-size: 16px;
    }

    .wrapper-satisfaction .commentaire {
        font-style: italic;
        font-size: 16px;
    }

.wrapper-header > .header-text {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wrapper-header > .header-icon {
    font-size: 26px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.wrapper-statut-veh .bi {
    font-size: 20px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 50px 0 0 50px;
    border-left: 1px solid #ced4da;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
}

.wrapper-statut-veh .list-group {
    position: absolute;
    right: 0;
    top: 41px;
    min-width: 235px;
    z-index: 50;
    font-size: 12px;
}

.wrapper-statut-veh .infos-veh {
    background-color: white;
    border: 1px solid #ced4da;
    line-height: 40px;
    padding: 0 15px;
}

    .wrapper-statut-veh .infos-veh:hover {
        background-color: #edf4f7;
    }


/* <!-- CSS DES VUES ECLATEES --> */
.st1 {
    fill: #FFFFFF;
}

.st0 {
    fill: #FFFFFF;
    stroke: #666666;
    stroke-miterlimit: 10;
}

    .st0:not(.do-nothing):hover,
    .st0:not(.do-nothing).active {
        cursor: pointer;
        fill: #FF678D;
    }


.current_tva_devis_td, .current_tva_facturation_td {
    width: auto;
    white-space: nowrap;
}



/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************** TABLEAU DE BORD *****************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/

/*['#0c63e4', '#e7f1ff', '#ffc107', '#FEE347', '#2c82c9', '#FDB813', '#b7d7e8', '#e7f1ff', '#F4A05B']*/

.badge-apexchart-cake:nth-of-type(1) {
    background-color: #0c63e4;
    color: white;
}
.badge-apexchart-cake:nth-of-type(2) {
    background-color: #e7f1ff;
    color: var(--bleu-primary);
}
.badge-apexchart-cake:nth-of-type(3) {
    background-color: #ffc107;
    color: var(--bs-dark);
}
.badge-apexchart-cake:nth-of-type(4) {
    background-color: #FEE347;
    color: var(--bs-dark);
}
.badge-apexchart-cake:nth-of-type(5) {
    background-color: #2c82c9;
    color: white;
}
.badge-apexchart-cake:nth-of-type(6) {
    background-color: #FDB813;
    color: var(--bs-dark);
}
.badge-apexchart-cake:nth-of-type(7) {
    background-color: #7fa8d2;
    color: white;
}
.badge-apexchart-cake:nth-of-type(8) {
    background-color: #e7f1ff;
    color: var(--bleu-primary);
}
.badge-apexchart-cake:nth-of-type(9) {
    background-color: #F4A05B;
    color: white;
}

.progress {
    height: .5rem;
}

.index-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    grid-gap: 2rem;
    background-color: var(--color-light);
    min-height: calc(100vh - 135px);
}

.grid-item {
    background-color: white;
    display: flex;
    flex-direction: column;
}

.grid-item,
.grid-placeholder {
    min-height: 450px;
    border-radius: 5px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

    .grid-item[data-span="1"],
    .grid-placeholder[data-span="1"] {
        grid-column-start: span 1;
    }

    .grid-item[data-span="2"],
    .grid-placeholder[data-span="2"] {
        grid-column-start: span 2;
    }

    .grid-item[data-span="3"],
    .grid-placeholder[data-span="3"] {
        grid-column-start: span 3;
    }

    .grid-item[data-span="4"],
    .grid-placeholder[data-span="4"] {
        grid-column-start: span 4;
    }

    .grid-item[data-span="5"],
    .grid-placeholder[data-span="5"] {
        grid-column-start: span 5;
    }

    .grid-item[data-span="6"],
    .grid-placeholder[data-span="6"] {
        grid-column-start: span 6;
    }

.grid-placeholder {
    border: 2px dashed var(--bleu-fonce);
    background-color: var(--color-light);
}

.grid-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    height: var(--hauteur-menu);
}

.grid-filtres,
.grid-layout {
    color: var(--bs-gray-500);
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}

.grid-filtres {
    padding: 5px 15px 5px 5px;
}

.grid-layout {
    padding: 5px 5px 5px 10px;
}

.grid-handle {
    font-size: 24px;
    color: var(--bleu-flash);
    padding: 10px;
    display: block;
}

.grid-title {
    flex: 1;
    font-size: 10px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.grid-handle:hover {
    color: var(--bleu-fonce);
    cursor: grab;
}

.grid-body {
    padding: 1rem;
    overflow: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}



/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/*************************** PLANNING *****************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/

.planning-trie {
    font-size: 10px;
    color: #999999;
    border: none;
}
.planning-trie select {
    font-size: 10px;
    color: #999999;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.main-wrapper.cache > .filtres-vehicules {
    height: 50px;
    width: 60px;
    overflow: hidden;
    transition: ease-out all .3s, width .3s ease-out .2s;
}
.main-wrapper.cache > .planning-wrapper {
    left: 75px;
    width: calc(100% - 84px);
    transition: all .3s ease-out .2s;
}
.main-wrapper.cache .resa-wrapper, .main-wrapper.cache .table-row, .main-wrapper.cache .table-preview {
    width: 100%;
}

.filtres-vehicules {
    order: 1;
    margin: 0 4px 8px 8px;
    user-select: none;
    width: 250px;
    position: fixed;
    z-index: 90;
    overflow: auto;
    height: calc(100vh - 70px);
    transition: ease-in all .3s, height .3s ease-in .2s;
}

[class^=filtres-sidebar] {
    padding: 10px 0 0 0;
    border: 2px solid #f5f5ff;
    position: relative;
}

    [class^=filtres-sidebar] .form-label {
        position: absolute;
        top: -10px;
        left: -5px;
        background-color: white;
        padding: 0 10px 0 5px;
    }

    [class^=filtres-sidebar] .form-check-label {
        display: flex;
        align-items: center;
        border-top: 2px solid #f5f5ff;
        font-size: 10px;
        text-transform: uppercase;
    }

        [class^=filtres-sidebar] .form-check-label:hover {
            opacity: .9;
            cursor: pointer;
            background-color: #F5F5FF;
        }

        [class^=filtres-sidebar] .form-check-label > i {
            font-size: 20px;
            padding: 0 5px;
            border-right: 1px solid #f5f5ff;
            margin-right: 10px;
        }

    [class^=filtres-sidebar] .filtres {
        display: none;
    }

.filtres-form {
    background-color: white;
    padding: 14px 20px 20px 20px;
}

.page-item.active .page-link {
    background-color: #00adef;
    border-color: #00adef;
}

.page-link:hover,
.page-link {
    color: #00adef;
}

.pastille {
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50px;
    margin: 0 auto;
}

    .pastille.prospect {
        border: 1px solid #dee2e6;
    }

.planning-wrapper {
    line-height: 100%;
    width: calc(100% - 275px);
    height: calc(100% - 16px);
    background: white;
    margin: 8px 8px 8px 0;
    position: relative;
    left: 266px;
    overflow: hidden;
    transition: all .3s ease-in;
}

.resa-wrapper td::after {
    border-right: 2px dashed #f1f1f1;
    content: '';
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 50%;
}

#resa .veh-resa:hover .btn-indisponibilite-vh {
    display: block;
}
.btn-indisponibilite-vh {
    display: none;
    position: absolute;
    top: 7px;
    right: 7px;
    color: #a8c4e0;
}
.btn-indisponibilite-vh:hover {
    color: #0dcaf0;
}

.planning-div-jour--btn-container:hover > button {
    display: block !important;
}

.btn-date {
    border: 1px solid #f5f5ff;
    padding: 6px 20px 6px 13Px;
    border-radius: 50px;
    background-color: #f5f5ff;
    font-size: 12px;
    margin-left: 10px;
}

    .btn-date:hover {
        background-color: #eaeaf5;
    }

    .btn-date > i {
        margin-right: 6px;
    }

    .btn-date.active {
        background-color: #00ADEF;
        color: white;
    }

#dates {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    padding: 0 15px;
    user-select: none;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #00adef;
}

.date {
    font-size: 24px;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-today {
    flex: 1;
    text-align: start;
}

.date-boutons {
    flex: 1;
    text-align: end;
    display: flex;
    justify-content: flex-end;
}

#jours {
    display: flex;
    height: 30px;
    align-items: center;
    box-shadow: 0px 5px 5px 0 rgb(0 0 0 / 2%);
    border-bottom: 1px solid #f5f5ff;
}

.jour {
    flex: 1;
    font-size: 10px;
    color: #999999;
    text-align: center;
}

    .jour.active {
        color: #00ADEF;
        font-size: 14px;
        font-weight: 500;
    }

    .jour:first-of-type {
        margin-left: 150px;
    }

#row_dates {
    display: flex;
    padding: 10px;
    font-size: 12px;
}
/*
#resa {
    overflow-y: auto;
    overflow-x: hidden;
}

    #resa.active {
        height: calc(100vh - 456px);
    }*/

#planning-semaines #resa > table {
    table-layout: fixed;
    width: 100%;
    position: relative;
}

    #planning-semaines #resa > table tr {
        position: relative;
    }

    #planning-semaines #resa > table > tbody > tr > td:first-of-type {
        width: 150px;
    }

.veh-resa {
    text-align: center;
    font-size: 14px;
    height: 100px;
    width: 150px;
    border-bottom: 1px solid #e0e9f1;
    z-index: 1040;
    position: relative;
    background-color: white;
}

    .veh-resa > img {
        max-width: 80px;
    }

#resa > .placeholder-div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

.resa-wrapper {
    width: calc(100vw - 493px);
    position: relative;
    height: 100px;
}

.resa-item {
    min-width: 0;
    width: 0;
    position: absolute;
    font-size: 12px;
    border-radius: 0 5px 5px 0;
    display: flex;
    z-index: 1039;
    user-select: none;
    padding: 16.5px 0;
    transition: .2s cubic-bezier(0, 0.73, 0.25, 1);
}

    .resa-item:hover {
        min-width: 200px;
        transition: .5s;
        z-index: 9999;
    }

.resa-info {
    display: flex;
    flex-direction: column;
    padding: 5px 10px 5px 5px;
    font-size: 10px;
    flex: 1;
    border-radius: 0 5px 5px 0;
}

    .resa-info,
    .resa-info > * {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.resa-statut {
    writing-mode: vertical-lr;
    transform: rotateZ(180deg);
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 0 5px 5px 0;
    padding: 5px;
    flex: 0 0 26px;
}

.resa-item:hover .resa-minicon {
    visibility: visible;
}

.resa-minicon {
    visibility: hidden;
    position: absolute;
    right: 7px;
    top: 23px;
    display: flex;
    flex-direction: column;
}

    .resa-minicon.left {
        left: 31px;
        right: inherit;
    }

    .resa-minicon > button {
        padding: 0;
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 25px;
        border-radius: 5px;
        font-size: 16px;
        margin-bottom: 5px;
    }

        .resa-minicon > button:hover {
            background-blend-mode: lighten;
        }

.resa-depart {
    border-top: 1px solid rgb(255 255 255 / 48%);
    margin-top: 5px;
    padding-top: 3px;
}

.resa-item.pending .resa-statut {
    background-color: #969696;
    color: white;
}

.resa-item.pending .resa-info,
.form-check-label.pending {
    background-color: #b7b7b7 !important;
    color: white;
}


.resa-item.online .resa-statut,
.resa-item.online .resa-minicon > button {
    background-color: #0093cc;
    color: white;
}

.resa-item.online .resa-info,
.form-check-label.online {
    background-color: #00adef !important;
    color: white;
}

.resa-item.revenu .resa-statut,
.resa-item.revenu .resa-minicon > button {
    background-color: #ec7870;
    color: white;
}

.resa-item.revenu .resa-info,
.form-check-label.revenu {
    background-color: #ff928a !important;
    color: white;
}

.resa-item.facture .resa-statut,
.resa-item.facture .resa-minicon > button {
    background-color: #ea4343;
    color: white;
}

.resa-item.facture .resa-info,
.form-check-label.facture {
    background-color: #ff5656 !important;
    color: white;
}

.resa-item.resa .resa-statut,
.resa-item.resa .resa-minicon > button {
    background-color: #00adef;
    color: white;
}

.resa-item.resa .resa-info,
.form-check-label.resa {
    background-color: #00adef !important;
    color: white;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 3rem 3rem;
}

.resa-item.indispo .resa-statut,
.resa-item.indispo .resa-minicon > button {
    background-color: #999999 !important;
    color: white;
}

.resa-item.indispo .resa-info,
.form-check-label.indispo {
    background-color: #aaa !important;
    color: white;
}

.resa-item.parti .resa-statut,
.resa-item.parti .resa-minicon > button {
    background-color: #39a05d;
    color: white;
}

.resa-item.parti .resa-info,
.form-check-label.parti {
    background-color: #47bd70 !important;
    color: white;
}

.table-row,
.table-preview {
    width: calc(100vw - 493px);
    height: 100px;
    table-layout: fixed;
}

    .table-row td {
        border-left: 1px solid #e0e9f1;
        border-bottom: 1px solid #e0e9f1;
        position: relative;
    }

    .table-preview td {
        border-left: 1px solid #e0e9f1;
        position: relative;
    }

    .table-row td:hover,
    .table-row td.today {
/*        background-color: #f5f5ff;
*/        cursor: pointer;
    }

.resa-client {
    text-transform: uppercase;
    font-weight: 500;
}

.sticky-print-wrapper {
    position: fixed;
    top: 135px;
    width: calc(15% + 10px);
}

/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/*************************** DOSSIERS *****************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/

.triable {
    cursor: pointer
}



/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/***************************** AGENDA *****************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/




.agenda-rdv.show-calendar {
    opacity: .5;
    filter: grayscale(50);
}

.agenda-rdv-horaire {
    font-weight: 500;
    margin: 1px 0;
}

    .agenda-rdv-horaire > i {
        font-size: 17px;
    }

.agenda-plus {
    font-size: 34px !important;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    position: absolute;
    line-height: 40px;
    bottom: 10px;
    right: 10px;
}

.agenda-rdv {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    margin-top: 5px;
    border: none;
    text-align: left;
    border-radius: 10px;
    padding: 10px 10px 10px 30px;
    width: 100%;
    background: white;
    -webkit-transition: all .1s cubic-bezier(0.18, 0.89, 0.98, 1.01);
    -moz-transition: all .1s cubic-bezier(0.18, 0.89, 0.98, 1.01);
    -o-transition: all .1s cubic-bezier(0.18, 0.89, 0.98, 1.01);
    -ms-transition: all .1s cubic-bezier(0.18, 0.89, 0.98, 1.01);
    transition: all .1s cubic-bezier(0.18, 0.89, 0.98, 1.01);
}

    .agenda-rdv::before {
        content: '';
        position: absolute;
        left: 10px;
        width: 10px;
        height: 10px;
        border-radius: 50px;
        top: 19px;
    }

    .agenda-rdv.entree::before,
    .agenda-event.entree,
    .date-event-entree,
    .agenda-event-jour.entree {
        background-color: #00adeb;
    }

    .agenda-rdv.sortie::before,
    .agenda-event.sortie,
    .date-event-sortie,
    .agenda-event-jour.sortie {
        background-color: #eb5600;
    }

.agenda-header {
    padding-bottom: 10px;
}

.btn-agenda {
    border: none;
    width: auto;
    background-color: white;
    margin-top: 15px;
    margin-right: 5px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
    border-radius: 50px;
    height: 40px;
    min-width: 40px;
    font-size: 12px;
}

.tui-full-calendar-dayname-name {
    font-weight: 400 !important;
}

.icon-calendar {
    font-size: 24px;
    position: relative;
    top: 13px;
}

.info-veh {
    display: flex;
    position: relative;
    height: 63px;
    font-weight: 400;
}

/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/********************* SWITCH TABLETTE/MOBILE *********************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/


/* SI LA LARGEUR DE L'ECRAN EST ENTRE 1200px et 1600px JE FAIS > */
@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .wrapper-driver-doc {
        flex-direction: column;
    }
}




@media screen and (max-width: 1400px) {

    .sticky-print-wrapper {
        position: fixed;
        top: calc(100% - 58px);
        left: 50px;
        bottom: initial;
        width: calc(100% - 100px);
        z-index: 500;
    }

    .sticky-print .bi-chevron-up,
    .sticky-print .bi-chevron-down {
        display: block;
        position: relative;
        bottom: 8px;
        right: 8px;
    }

    .sticky-print-wrapper.active {
        bottom: 0;
        top: initial;
    }

    .sticky-print {
        border-radius: 10px 10px 0 0;
    }
}

/* SI LA LARGEUR DE L'ECRAN EST ENTRE 1025px et 1400px JE FAIS > */
@media screen and (min-width: 992px) and (max-width: 1400px) {

    .carre {
        width: 100%;
    }

    .main {
        width: 100%;
    }

    .rightbar.active {
        width: calc(95% - 9px);
    }

    .sidenav {
        left: -56px;
    }

        .sidenav.active {
            left: 0;
        }

    .tablet {
        display: block;
    }
    #icon-menu {
        width: var(--hauteur-menu);
        height: var(--hauteur-menu);
        line-height: var(--hauteur-menu);
    }

    .topbar {
        width: 100%;
        background-color: white;
    }

    .nav-right {
        top: 0;
        right: 0;
    }

        .nav-right a.nav-item span {
            display: none;
        }
    .table-row,
    .table-preview {
        width: calc(100vw - 436px);
    }

}

/* SI LA LARGEUR DE L'ECRAN EST INFERIEURE à 1024px */


@media screen and (max-width: 1024px) {
    .main {
        width: 100%;
    }

    .rightbar.active {
        width: 100%;
    }

    .sidenav {
        left: -56px;
    }

        .sidenav.active {
            left: 0;
        }

    .tablet {
        display: block;
    }

    .enquete-header {
        flex-direction: column;
    }

    #icon-menu {
        width: var(--hauteur-menu);
        height: var(--hauteur-menu);
        line-height: var(--hauteur-menu);
    }

    .topbar {
        width: 100%;
        background-color: white;
    }

        .nav-right {
        top: 0;
        right: 0;
    }
    .nav-right a.nav-item span {
        display: none;
    }


    .index-grid {
        grid-template-columns: 1fr;
        grid-gap: 10px;
        padding: 10px;
    }

    .grid-body {
        padding: 0;
    }

    .grid-item[data-span="1"],
    .grid-placeholder[data-span="1"],
    .grid-item[data-span="2"],
    .grid-placeholder[data-span="2"],
    .grid-item[data-span="3"],
    .grid-placeholder[data-span="3"],
    .grid-item[data-span="4"],
    .grid-placeholder[data-span="4"],
    .grid-item[data-span="5"],
    .grid-placeholder[data-span="5"],
    .grid-item[data-span="6"],
    .grid-placeholder[data-span="6"] {
        grid-column-start: span 1;
        width: calc(100vw -  4rem);
    }

    .grid-layout {
        display: none;
    }
}


/* SI LA LARGEUR DE L'ECRAN EST INFERIEURE à 992px */

@media screen and (max-width: 992px) {

    .step-body,
    .wrapper-driver-doc {
        flex-direction: column;
    }

    .main-wrapper {
        flex-direction: column;
    }

    .table-row,
    .table-preview {
        width: calc(100vw - 166px);
    }

    .brique-chiffre {
        display: none;
    }

    .brique-titre {
        padding: initial;
    }

    
}



/* SI LA LARGEUR DE L'ECRAN EST INFERIEURE à 768px */

@media screen and (max-width: 768px) {

    .brique-chiffre-diag {
        padding: 0 calc(var(--bs-gutter-x)/ 2);
        font-size: 32px;
        margin: 10px 0 0 0;
    }

    .list-veh-parc a {
        flex-direction: column;
        height: auto;
        width: 100%;
        align-items: baseline;
        padding: 1rem;   
    }

        .list-veh-parc a > div {
            width: 100%;
        }
}





.btn--close {
    position: absolute;
    right: 0;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #ff6767;
    opacity: .5;
    height: 20px;
    width: 20px;
}

    .btn--close:hover {
        opacity: 1;
        cursor: pointer
    }

    .btn--close:before {
        content: "×";
        left: 4px;
        bottom: 3px;
        position: relative;
        color: #ff6767;
    }


.sticky-print button {
    font-size: 1rem !important;
    text-transform: initial;
    font-weight: 400 !important;
}







/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************* HELPER ****************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
/******************************************************************/
.w-8 {
    width: 8% !important;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

.cursor-not-allowed--on-hover:hover {
    cursor: not-allowed !important;
}

.disabled-all {
    opacity: .4;
    pointer-events: none;
    user-select: none;
}