/*
 * CSS 
 */

@font-face {
    font-family: Ubuntu-Regular;
    src: url("../fonts/ubuntu/Ubuntu-Regular.ttf");
}

@font-face {
    font-family: Ubuntu-Bold;
    src: url("../fonts/ubuntu/Ubuntu-Bold.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    overflow-x: hidden;
    height: 100%;
    background: rgb(247, 247, 247);
    font-family: Ubuntu-Regular, sans-serif;
    font-size: 14px;
    padding-top: 56px;
    margin-bottom: 100px;
}

h2 {
    margin-top: 25px;
}

h3 {
    margin-top: 15px;
}

/* Link & button
=================================================== */

a {
    font-size: 14px;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    -moz-transition: 0.1s all ease-in-out;
    -o-transition: 0.1s all ease-in-out;
    -webkit-transition: 0.1s all ease-in-out;
    transition: 0.1s all ease-in-out;
}

button,
button:focus,
button:active,
button:visited {
    outline: none !important;
    box-shadow: none !important;
}

.container-fluid {
    padding: 0;
}

.flex {
    display: flex;
    align-items: center;
}

.btn {
    transition: 0.3s;
    font-family: Ubuntu-Bold;
    border-width: 2px;
}

.btn-primary {
    background-color: #08c1b8;
    border-color: #09aaaa;
}

.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary:focus,
.btn-primary:hover:disabled,
.btn-primary:active {
    background-color: #07a8a0;
    border-color: #07a8a0;
}

.btn-light.btn-primary {
    transition: 0.5s;
    background-color: transparent;
    border-color: #07a8a0;
    color: #07a8a0;
}

.btn-light.btn-primary:hover,
.btn-light.btn-primary:active:focus,
.btn-light.btn-primary:focus,
.btn-light.btn-primary:hover:disabled,
.btn-light.btn-primary:active {
    background-color: #07a8a0;
    border-color: #07a8a0;
    color: #fff;
}

.btn-dark {
    color: #fcfcfc;
    background-color: #000000;
    border-color: #000000;
}

.btn-dark:hover,
.btn-dark:active:focus,
.btn-dark:focus {
    color: #fcfcfc;
    background-color: #000000;
    border-color: #000000;
}

.dropdown-menu > .active > a {
    background-color: #08c1b8;
}

.bootgrid-header .actionBar .btn-group > .btn-group .dropdown-menu .dropdown-item {
    transition: ease 0.2s;
}

.bootgrid-header .actionBar .btn-group > .btn-group .dropdown-menu .dropdown-item:hover {
    background-color: #07a8a0;
    color: white;
}

/* Table
=================================================== */

.table {
    border-radius: 5px;
    box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
}

.table > tbody > tr.out > td,
.table > tbody > tr.out > th,
.table > tbody > tr > td.out,
.table > tbody > tr > th.out,
.table > tfoot > tr.out > td,
.table > tfoot > tr.out > th,
.table > tfoot > tr > td.out,
.table > tfoot > tr > th.out,
.table > thead > tr.out > td,
.table > thead > tr.out > th,
.table > thead > tr > td.out,
.table > thead > tr > th.out {
    background-color: lightgray;
}

.table > tbody > tr.aomi > td,
.table > tbody > tr.aomi > th,
.table > tbody > tr > td.aomi,
.table > tbody > tr > th.aomi,
.table > tfoot > tr.aomi > td,
.table > tfoot > tr.aomi > th,
.table > tfoot > tr > td.aomi,
.table > tfoot > tr > th.aomi,
.table > thead > tr.aomi > td,
.table > thead > tr.aomi > th,
.table > thead > tr > td.aomi,
.table > thead > tr > th.aomi {
    background-color: lightgreen;
}

.table-condensed > tbody > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > thead > tr > th {
    padding: 5px 8px;
}

.box .table > tbody > tr > td {
    vertical-align: top !important;
    line-height: 20px;
}

.table-striped > tbody > tr {
    height: 42px;
    background-color: #ffffff;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    /* background-color: #e9e9e9; */
}

.table thead {
    background-color: #08c1b8;
    font-family: Ubuntu-Bold;
}

.table thead > tr {
    height: 42px;
}

.table > thead:first-child > tr:first-child > th:first-child {
    border-top-left-radius: 5px;
}

.table > thead:first-child > tr:first-child > th:last-child {
    border-top-right-radius: 5px;
}

.table > tbody > tr:last-child > td:first-child {
    border-bottom-left-radius: 5px;
}

.table > tbody > tr:last-child > td:last-child {
    border-bottom-right-radius: 5px;
}

.table-hover thead > tr > th:hover {
    background-color: #07a8a0;
}

.table .text,
.table .glyphicon {
    color: #fcfcfc;
}

.table > thead > tr > th,
.table tbody > tr > td {
    border: none;
}

.table tr:hover td {
    cursor: pointer;
    background-color: rgba(8, 193, 184, 0.314);
}

.table > tbody > tr.out:hover > td,
.table > tbody > tr.out:hover > th,
.table > tbody > tr:hover > td.out,
.table > tbody > tr:hover > th.out,
.table > tfoot > tr.out:hover > td,
.table > tfoot > tr.out:hover > th,
.table > tfoot > tr:hover > td.out,
.table > tfoot > tr:hover > th.out,
.table > thead > tr.out:hover > td,
.table > thead > tr.out:hover > th,
.table > thead > tr:hover > td.out,
.table > thead > tr:hover > th.out {
    background-color: rgba(7, 122, 117, 0.573);
}

.table > tbody > tr.aomi:hover > td,
.table > tbody > tr.aomi:hover > th,
.table > tbody > tr:hover > td.aomi,
.table > tbody > tr:hover > th.aomi,
.table > tfoot > tr.aomi:hover > td,
.table > tfoot > tr.aomi:hover > th,
.table > tfoot > tr:hover > td.aomi,
.table > tfoot > tr:hover > th.aomi,
.table > thead > tr.aomi:hover > td,
.table > thead > tr.aomi:hover > th,
.table > thead > tr:hover > td.aomi,
.table > thead > tr:hover > th.aomi {
    background-color: rgb(104, 250, 104);
}

.table > tbody > tr.hrcv:hover > td,
.table > tbody > tr.hrcv:hover > th,
.table > tbody > tr:hover > td.hrcv,
.table > tbody > tr:hover > th.hrcv,
.table > tfoot > tr.hrcv:hover > td,
.table > tfoot > tr.hrcv:hover > th,
.table > tfoot > tr:hover > td.hrcv,
.table > tfoot > tr:hover > th.hrcv,
.table > thead > tr.hrcv:hover > td,
.table > thead > tr.hrcv:hover > th,
.table > thead > tr:hover > td.hrcv,
.table > thead > tr:hover > th.hrcv {
    background-color: gold;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    vertical-align: middle;
    color: #767676;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    width: auto;
}

#rdv-grid > tbody > tr > td:last-child {
    overflow: initial;
}

/* Pagination
=================================================== */

.pagination {
    cursor: pointer;
}

.pagination > li > a,
.pagination > li > span {
    padding: 1px 8px;
}

.pagination .last a,
.pagination .next a,
.pagination .prev a,
.pagination .first a {
    background-color: #08c1b8;
    color: #fcfcfc;
    border-color: #07a8a0;
}

.pagination .last a:hover,
.pagination .next a:hover,
.pagination .prev a:hover,
.pagination .first a:hover {
    background-color: #fcfcfc;
    color: #08c1b8;
    border-color: #07a8a0;
}

.pagination li a {
    color: #000000;
    background-color: #fcfcfc;
    border-color: #07a8a0;
}

.pagination li a:hover {
    color: #000000;
    background-color: rgba(8, 193, 184, 0.314);
    border-color: #07a8a0;
}

.pagination > .active > a {
    color: #ffffff;
    background-color: #08c1b8;
    border-color: #07a8a0;
}

.pagination > .active > a:hover {
    color: #000000;
    background-color: #08c1b8;
    border-color: #07a8a0;
}

.pagination .disabled a {
    background-color: rgba(7, 190, 181, 0.314);
    border-color: rgba(8, 193, 184, 0.314);
}

.pagination .disabled a:hover {
    background-color: rgba(8, 193, 184, 0.314);
    border-color: rgba(8, 193, 184, 0.314);
    color: #fcfcfc;
}

.datepicker table tr td.today {
    background-color: rgba(7, 190, 181, 0.314);
    border-color: #07a8a0;
}

.datepicker table tr td.today:hover {
    background-color: #067a7a;
    color: #fff;
}

.datepicker table tr td.active.active {
    background-color: #07a8a0;
    border-color: #08c1b8;
}

.datepicker table tr td.active.active:hover {
    background-color: #067a7a;
}

.datepicker table tr td.disabled {
    cursor: not-allowed !important;
    background-color: #ccc;
    border-radius: 0;
}

.datepicker table tr td.disabled:hover {
    background-color: #ccc;
}

/*
.datepicker table tr td.highlight:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    background-color: #08c1b8;
}
*/

/* Form
=================================================== */

.form-control {
    color: black;
}

.is-invalid {
    border-color: red;
    margin-bottom: 5px;
}

.form-error-message {
    color: red;
}

.badge {
    background-color: red;
}

.error-msg {
    display: none;
    color: red;
    margin-bottom: 15px;
}

.form-group textarea {
    min-height: 100px;
    resize: none;
}

/* Menu
=================================================== */

.barMenu {
    display: flex;
}

.barMenu a:hover,
.barMenu a:active,
.barMenu a:focus {
    color: #fcfcfc;
}

.colorchange {
    color: #ccc;
    background-image: -webkit-linear-gradient(92deg, #08c1b8, #127aeb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hue 10s infinite linear alternate;
}

@keyframes hue {
    from {
        -webkit-filter: hue-rotate(45deg);
    }

    to {
        -webkit-filter: hue-rotate(-45deg);
    }
}

nav {
    z-index: 10;
    position: fixed;
    background: #202020;
    box-shadow: 0 1px 5px #4e646b;
    height: 56px;
    top: 0;
    left: 0;
    width: 100%;
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.title {
    text-transform: none;
    font-size: 26px;
    color: #ccc;
    padding: 0 15px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 100%;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #424242;
    height: 100%;
    cursor: pointer;
    background-color: #202020;
    transition: ease 0.2s;
}

.menu-item:hover,
.menu-item.active {
    background-color: #424242;
}

.menu-item:hover .user-link {
    color: #fff;
}

.menu .menu-item:last-child {
    border-right: none;
}

.menu .menu-content {
    display: none;
    position: absolute;
    z-index: 1;
    top: 56px;
    right: -1px;
    min-width: calc(100% + 2px);
}

.menu .menu-content .menu-item {
    white-space: nowrap;
    justify-content: left;
}

.menu .menu-item:hover > .menu-content {
    display: block;
}

.user-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    position: relative;
    color: #ccc;
    padding: 0 15px;
    height: 56px;
    border: none;
    background-color: transparent;
}

.user-link > span {
    color: #07a8a0;
    font-size: 16px;
    margin-bottom: 3px;
}

.user-link.user-alone > span {
    margin-right: 0;
}

/* Separator 
=================================================== */

.separator {
    margin: 30px 0 20px 0;
    border-top: 2px solid #cccccc;
    position: relative;
}

.separator-text {
    display: block;
    position: absolute;
    top: -18px;
    left: 0;
    padding: 0 15px 0 0;
    background: rgb(247, 247, 247);
    color: #8a8a8a;
    font-size: 22px;
}

.events-content .separator {
    padding: 5px 0;
}

/* Nav bar
==================================================== */

.nav-bar {
    text-align: center;
    margin: 35px 0;
}

.btn-nav {
    z-index: 8;
}

.btn-nav .glyphicon {
    margin-right: 5px;
}

.nav-bar div.btn-group {
    margin: 0 auto;
    text-align: center;
    display: inline-block;
}

.nav-bar .btn-group a {
    float: left;
}

.sticky {
    z-index: 10;
    width: 100%;
    position: fixed;
    left: 0;
    margin: 0;
    top: 11px;
}

.sticky + .content {
    padding-top: 80px;
}

@media only screen and (max-width: 1400px) {
    #page-title,
    #userLink {
        display: none;
    }
}

/* Top scroll
==================================================== */

.toolbar {
    position: fixed;
    z-index: 999;
    bottom: 60px;
    right: 15px;
    display: flex;
    flex-direction: column;
}

.toolbar .cd {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border: none;
    opacity: 0.5;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s,
    background-color 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, background-color 0.3s 0s;
}

.cd > span {
    color: white;
    font-size: 24px;
    margin-left: 2px;
    margin-bottom: 2px;
}

.cd-top {
    background: rgba(8, 193, 184, 0.8);
    visibility: hidden;
    opacity: 0;
}

.cd-top:hover {
    background-color: #07a8a0;
    opacity: 1;
}

.cd-save {
    background: rgba(40, 167, 69, 0.8);
}

.cd-save:hover {
    background-color: #28a745;
    opacity: 1;
}

.cd-back {
    background: rgba(204, 204, 204, 0.8);
}

.cd-back:hover {
    background: #ccc;
    opacity: 1;
}

.cd.cd-top--show,
.cd-top:hover {
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s,
    background-color 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s, background-color 0.3s 0s;
}

.cd.cd-top--show {
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-width: 1250px) {
    .toolbar {
        flex-direction: row;
        bottom: 38px;
        right: 20px;
    }
}

/* permanent banner
==================================================== */
.banner {
    display: none;
    z-index: 20;
    position: fixed;
    width: 500px;
    padding: 10px 16px;
    border: 1px solid #8c8c8c;
    border-radius: 4px;
    bottom: 24px;
    left: calc(50% - 250px);
    font-size: 11px;
    text-align: center;
    background: #ffffff20;
    backdrop-filter: blur(8px);
}

.banner span {
    font-weight: bold;
}

.banner button {
    position: absolute;
    right: 6px;
    top: 6px;
    background-color: transparent;
    padding: 2px;
    border: none;
    border-radius: 50%;
}

/* footer minimal
==================================================== */

.bas {
    z-index: 5;
    width: 100%;
    top: 100%;
    margin: -30px auto 0 auto;
}

#footer.footer-minimal {
    display: flex;
    align-items: center;
    height: 30px;
    padding: 5px 0;
}

#footer a.glyphicon {
    float: right;
    margin-right: 20px;
    margin-top: -42px;
    text-decoration: none;
}

#footer a {
    font-size: 12px;
    color: #08c1b8;
}

#footer a:hover {
    color: #fcfcfc;
}

/* footer dark
=================================================== */

#footer.footer-dark {
    background-color: #121212;
    color: #ccc;
}

#footer.footer-dark .btn-default {
    color: #ddd;
    background-color: rgba(189, 189, 189, 0.13);
}

#footer.footer-dark .btn-default:hover {
    background-color: rgba(189, 189, 189, 0.35);
    color: #fff;
}

#footer.footer-dark .footer-bottom {
    background-color: #0a0a0a;
    border-top-color: rgba(128, 128, 128, 0.08);
}

/* footer copyright
=================================================== */

.footer-flex {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-copyright {
    font-size: 12px;
    color: #888;
}

.footer-copyright p {
    margin-bottom: 0;
}

.footer-copyright a {
    color: #08c1b8;
}

.footer-copyright a:hover {
    opacity: 0.8;
}

/* Modal
=================================================== */

.modal-header,
.modal h4,
.modal .close {
    background-color: #08c1b8;
    color: white !important;
    text-align: center;
    font-size: 30px;
}

.modal-header {
    padding: 35px 50px;
}

.modal-lg {
    width: 85%;
}

.modal-md {
    width: 70%;
}

.modal-footer {
    background-color: #f9f9f9;
}

.modal-footer,
.modal-header {
    border-radius: 5px;
}

.modal .btn-block-md {
    width: 49.5%;
}

.modal p {
    font-size: 18px;
}

/* Accueil
=================================================== */

.wrapper {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
    padding: 0 20px 50px;
}

.date-wrapper {
    margin: 0 auto;
}

.dp-selected {
    color: black !important;
}

.accueil-wrapper {
    margin-top: 25px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.accueil-wrapper .sortable {
    cursor: pointer;
    transition: 0.2s ease;
}

.accueil-wrapper .sortable:hover {
    background-color: #d0d0d0;
}

.box {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
    /* box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.3); */
}

.box-header {
    font-family: Ubuntu-bold;
    color: #09aaaa;
    font-size: 16px;
    padding: 2px 15px;
    margin: 15px 0;
    border-left: 3px solid #09aaaa;
}

.box-header > div {
    margin-bottom: -5px;
}

.box-header > span {
    color: #bbb;
    font-size: 14px;
}

.box .table {
    table-layout: fixed;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

.box .table tr {
    background-color: #e0e0e0;
}

.box .table > thead:first-child > tr:first-child > th:first-child,
.box .table > thead:first-child > tr:first-child > th:last-child {
    border-radius: 0;
}

.box tr th:nth-child(1),
.box tr th:nth-child(2),
.box tr th:nth-child(3),
.box tr th:nth-child(4) {
    /* cursor: pointer; */
}

.box .table tr td {
    cursor: default;
    padding: 10px;
    transition: 0.2s ease-in-out;
}

.box .table > thead {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.box .table > tbody tr {
    background-color: #ffffff;
}

.box .table-condensed > thead > tr > th {
    padding: 5px 10px;
}

.box-sm {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fcfcfc;
    border: #e0e0e0 1px solid;
    width: calc(25% - 14px);
    margin: 7px;
    /* box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3); */
}

.box-sm .glyphicon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    margin-right: 15px;
    border-radius: 50%;
    font-size: 18px;
    color: white;
}

.box-sm .stats {
    display: flex;
    flex-direction: column;
}

.box-sm h1 {
    font-family: Ubuntu-bold;
    font-size: 16px;
    margin: 0 0 5px;
}

.box-sm p {
    margin: 0;
    color: #8a8a8a;
}

.box-sm .glyphicon-leaf {
    color: yellowgreen;
    border: 2px solid yellowgreen;
}

.box-sm .glyphicon-fire {
    color: red;
    border: 2px solid red;
}

.box-sm .glyphicon-tint {
    color: blue;
    border: 2px solid blue;
}

.box-sm .glyphicon-user {
    color: violet;
    border: 2px solid violet;
}

.box-sm .glyphicon-grain {
    color: lightsalmon;
    border: 2px solid lightsalmon;
}

.box-sm .glyphicon-apple {
    color: goldenrod;
    border: 2px solid goldenrod;
}

@media (max-width: 950px) {
    .box-sm {
        flex: 45%;
    }
}

.well {
    background-color: #f8f8f8;
}

.type-list > li:not(:last-child) {
    margin-bottom: 5px;
}

.user-list {
    display: flex;
    flex-direction: column;
}

.type-list {
    margin: 0;
}

.actions-list {
    display: flex;
    flex-direction: column;
}

.user-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-label:not(:last-child) {
    margin-bottom: 5px;
}

.user-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-name.theraflow {
    color: deeppink;
}

.user-name.progetp {
    color: seagreen;
}

.actions-list .user-send:not(:last-child) {
    margin-bottom: 5px;
}

.actions-list button,
.user-list button {
    position: relative;
    background-color: #ccc;
    border: 1px solid #ccc;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    transition: 0.2s ease;
}

.actions-list button:hover,
.user-list button:hover {
    border: 1px solid #000;
}

.actions-list button .glyphicon,
.user-list button .glyphicon {
    color: #121212;
    transition: 0.2s ease;
    font-size: 12px;
    position: absolute;
    top: 3px;
    left: 3px;
}

.actions-list button.js-removePatient {
    background-color: red;
}

.actions-list button.js-removePatient .glyphicon {
    margin-top: 1px;
    color: #fff;
}

.actions-list button.js-redirect .glyphicon, .actions-list button.js-comment .glyphicon {
    margin-top: 1px;
}

.actions-list .pastille {
    /* margin-right: 8px; */
    margin-top: 0 !important;
    cursor: default;
}

.actions .btn-group {
    z-index: 1;
}

.user-list button.js-addPatient {
    background-color: #07a8a0;
    margin-right: 8px;
    /* margin-bottom: 5px; */
}

.user-list button.js-addPatient .glyphicon {
    color: #fff;
    left: 3px;
    font-size: 12px;
}

.user-send {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    gap: 8px
}

.user-send label.cbx {
    margin: 0;
    padding: 10px;
}

.user-send .inp-cbx:not(:checked) + label::before,
.user-send .inp-cbx:checked + label::before {
    left: 1px;
    top: 1px;
}

.user-send .inp-cbx:not(:checked) + label::after,
.user-send .inp-cbx:checked + label::after {
    top: 10px;
    left: 4px;
}

.legende {
    display: flex;
}

.legende__type {
    display: flex;
    margin-right: 15px;
}

.legende__color {
    width: 25px;
    margin-right: 5px;
}

/* Login
=================================================== */

.panel {
    width: 500px;
    margin: 5% auto 0 auto;
    padding: 30px 50px;
    border: 1px solid #ccc;
}

.login-header {
    padding: 35px 50px;
    margin-top: -80px;
    background-color: #08c1b8;
    color: white !important;
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    border-radius: 3px;
}

.login-header h1 {
    margin: 0;
    font-family: Ubuntu-Bold;
}

.form-check {
    margin-bottom: 10px;
}

.alert-msg {
    margin-top: -30px;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 30px;
}

/* ScrollBar
=================================================== */

/*
.scrollbar {
    scrollbar-base-color: #07a8a0;
    scrollbar-face-color: #08c1b8;
    // scrollbar-3dlight-color: #cc0000;
    // scrollbar-highlight-color: #cc0000;
    scrollbar-track-color: #F5F5F5;
    scrollbar-arrow-color: #08c1b8;
    // scrollbar-shadow-color: rgba(0, 0, 0, 0.08);
}

.scrollbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #08c1b8;
}
*/

/* Action/Date
=================================================== */

.activity-wrapper {
    margin: 20px 25%;
}

.list-wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 600px;
}

.list-content {
    display: flex;
    flex-direction: column;
    overflow: visible;
    box-sizing: border-box;
}

.card {
    padding: 10px 20px;
    background-color: #fcfcfc;
    color: #000000;
    border: 1px solid #cccccc;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    text-align: center;
    margin-bottom: 10px;
}

.card-add {
    color: #08c1b8;
    padding: 5px 0;
    /* margin-bottom: 20px; */
}

.card-add:hover {
    color: #fcfcfc;
    background-color: #08c1b8;
    -moz-transition: 0.1s all ease-in-out;
    -o-transition: 0.1s all ease-in-out;
    -webkit-transition: 0.1s all ease-in-out;
    transition: 0.1s all ease-in-out;
}

.card .form-group {
    text-align: left;
}

.card-content .glyphicon {
    font-size: 18px;
}

/* Alert / Flashbag
=================================================== */

.alert {
    padding: 20px;
    opacity: 0.9;
    transition: opacity 0.7s;
    position: fixed;
    right: 0;
    z-index: 10;
    margin: 10px;
}

.closebtn {
    margin-left: 15px;
    color: inherit;
    font-family: Ubuntu-Bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

/* Radio button block
=================================================== */

.radio-block {
    margin-top: 14px;
}

.radio-block input[type="radio"] {
    position: absolute;
    visibility: hidden;
    display: none;
}

.radio-block label {
    color: #ffffff;
    background-color: #202020;
    display: inline-block;
    cursor: pointer;
    font-family: Ubuntu-Regular;
    font-weight: normal;
    padding: 7px 20px;
    margin: 0 -2px;
    transition: ease 0.2s;
}

.radio-block label:hover {
    background: #424242;
}

.radio-block input[type="radio"]:checked + label {
    color: #fff;
    background: #424242;
}

.radio-block .radio-group {
    z-index: 1;
    /* position: absolute; */
    display: inline-block;
    /* margin-top: 2px; */
    border-radius: 5px;
    overflow: hidden;
}

/* */

.cntr .radio > input {
    display: none;
}

.cntr .radio {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    font-size: 14px;
    margin: 10px;
    font-weight: normal;
}

.cntr .radio .label {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
    width: 19px;
    height: 19px;
    border: 2px solid #c8ccd4;
    border-radius: 100%;
    -webkit-tap-highlight-color: transparent;
}

.cntr .radio .label:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #07a8a0;
    transform: scale(0);
    transition: all 0.2s ease;
    opacity: 0.08;
    pointer-events: none;
}

.cntr .radio:hover .label:after {
    transform: scale(3.6);
}

.cntr input[type="radio"]:checked + .label {
    border-color: #07a8a0;
}

.cntr input[type="radio"]:checked + .label:after {
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
    opacity: 1;
}

/* Checkbox
========================================================================== */
.radio-row [type="checkbox"]:not(:checked),
.radio-row [type="checkbox"]:checked {
    position: absolute;
    left: 0;
    opacity: 0.01;
}

.radio-row [type="checkbox"]:not(:checked) + label,
.radio-row [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 1.9em;
    cursor: pointer;
    /* background-color: #e6e6e6; */
}

.radio-row [type="checkbox"]:not(:checked) + label:before,
.radio-row [type="checkbox"]:checked + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.4em;
    height: 1.4em;
    border: 1px solid #aaa;
    background: #fff;
    border-radius: 0.2em;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1),
    0 0 0 rgba(203, 34, 237, 0.2);
    transition: all 0.275s;
}

.radio-row [type="checkbox"]:not(:checked) + label:after,
.radio-row [type="checkbox"]:checked + label:after {
    content: "✓";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.2em;
    font-size: 1.2em;
    color: #08c1b8;
    line-height: 0;
    transition: all 0.2s;
}

.radio-row [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0) rotate(45deg);
}

.radio-row [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.radio-row {
    display: flex;
    position: relative;
    flex-flow: row wrap;
    gap: 5px 15px;
    height: auto;
}

.radio-container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    /* background-color: #e6e6e6; */
    height: 42px;
    line-height: 42px;
}

/* RDV
=================================================== */

.white {
    background-color: white;
}

.hotpink {
    background-color: hotpink;
}

.cd-h-timeline__date--selected.hotpink-after:after {
    border-color: hotpink !important;
    background-color: hotpink !important;
}

.cd-h-timeline__date--older-event.hotpink-after:after {
    border-color: hotpink !important;
}

.hotpink-after:hover:after {
    border-color: hotpink !important;
    background-color: hotpink !important;
}

.gold {
    background-color: gold;
}

.cd-h-timeline__date--selected.gold-after:after {
    border-color: gold !important;
    background-color: gold !important;
}

.cd-h-timeline__date--older-event.gold-after:after {
    border-color: gold !important;
}

.gold-after:hover:after {
    border-color: gold !important;
    background-color: gold !important;
}

.rebeccapurple {
    background-color: rebeccapurple !important;
    color: white;
}

.chocolate {
    background-color: chocolate !important;
    color: white;
}

.seagreen {
    background-color: seagreen !important;
    color: white;
}

.royalblue {
    background-color: royalblue !important;
    color: white;
}

.goldenrod {
    background-color: goldenrod !important;
    color: white;
}

#slot_categorie option:hover {
    background-color: #cccccc50;
}

/* Semaine
=================================================== */

.settings {
    margin-left: auto;
    margin-right: auto;
    /* max-width: 1080px; */
    padding-bottom: 25px;
    padding-top: 5px;
}

.settings .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    margin-top: 0;
    padding-bottom: 5px;
}

.settings .nav-bar .btn {
    display: flex;
    align-items: baseline;
    font-size: 16px;
}

.settings .nav-bar .btn.btn-round {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    border-radius: 50%;
    height: 35px;
    width: 35px;
}

.settings .nav-bar .btn-nav .btn > span {
    margin-right: 10px;
}

.semaine-wrapper {
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    padding-right: 25px;
    padding-left: 15px;
}

.semaine {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    background-color: #fcfcfc;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
}

.semaine:hover {
    transform: scale(1.02);
}

.semaine.open:hover {
    transform: scale(1);
}

.semaine__header {
    cursor: pointer;
    display: flex;
}

.semaine__header .semaine__date-info {
    width: 45%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px 40px;
    color: #fff;
    background-color: #07a8a0;
    border-bottom: 1px solid #07a8a0;
    font-family: Ubuntu-Bold;
    transition: 0.2s ease-in-out;
}

.semaine__header .semaine__date-info button {
    position: absolute;
    display: none;
    transform: rotate(-90deg);
    padding: 9px 10px;
    top: 25px;
    left: -26px;
    border: none;
    border-radius: 0 10px 0 0;
    transition: 0.2s ease-in-out;
}

.semaine__header .semaine__date-info h2 {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 0;
}

.semaine__header .semaine__date-info .semaine__date-range {
    display: flex;
    font-size: 20px;
}

.arrow-separator {
    margin: 0 10px;
}

#semaine__date-error {
    display: none;
    color: red;
    margin-bottom: 10px;
}

.modal-title.duplicate,
#semaine_duplicate {
    display: none;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0 10px;
}

.divider .line {
    background-color: #07a8a0;
    height: 3px;
    width: 40px;
    margin-right: 10px;
}

.divider .year {
    margin: 0;
    font-weight: bold;
}

.semaine__header .semaine__general-info {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: 0.2s ease-in-out;
}

.semaine__header .semaine__general-info .semaine__open-icon,
.semaine__header .semaine__general-info .semaine__duplicate {
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-size: 16px;
    height: 100%;
}

.semaine__header .semaine__general-info .semaine__duplicate {
    display: none;
}

.semaine .semaine__body {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 0.2s ease-out;
}

.semaine.open .semaine__body {
    max-height: 100vh;
    overflow-y: visible;
    transition: max-height 0.2s ease-out;
}

.semaine.open .semaine__header .semaine__general-info {
    flex: 0;
    width: 0;
    transition-delay: 0s;
    color: #fff;
}

.semaine.open .semaine__header .semaine__date-info {
    width: 100%;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    padding-left: 78px;
}

.semaine.open .semaine__header .semaine__date-info button {
    display: block;
}

.semaine.open .semaine__header .semaine__general-info .semaine__duplicate {
    display: flex;
}

.semaine__body .semaine__full {
    overflow: auto;
    display: flex;
}

.semaine__body .semaine__full .hour-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding-top: 50px;
}

.semaine__body .semaine__full .hour-list .hour-indicator {
    margin-bottom: 15px;
}

.semaine__body .semaine__full .hour-list .hour-indicator:last-child {
    display: none;
}

.semaine__body .semaine__full .jour {
    user-select: none;
    display: none;
    cursor: pointer;
    flex: 1;
    position: relative;
    max-width: calc((100% / 7));
    min-width: 300px;
    min-height: 200px;
    padding: 20px 0;
    transition: 0.2s ease-in-out;
}

.semaine__body .semaine__full .jour:hover {
    background-color: #ddd;
    /* min-width: 500px; */
}

.semaine__body .semaine__full .jour h3 {
    text-align: center;
    font-size: 14px;
    margin-top: 0;
    font-family: Ubuntu-bold;
}

.semaine__body .semaine__full .slot {
    position: absolute;
    width: 99%;
    display: flex;
    flex-direction: column;
    background-color: white;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 11px;
    transition: 0.1s ease-in-out;
}

.semaine__body .semaine__full .slot:hover {
    padding: 5px 24px 5px 5px;
}

.semaine__body .semaine__full .slot:hover .duplicate-btn,
.semaine__body .semaine__full .slot:hover .delete-btn {
    display: block;
}

.semaine__body .semaine__full .slot > div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.semaine__body .semaine__full .slot .delete-btn {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
}

.semaine__body .semaine__full .slot .duplicate-btn {
    display: none;
    position: absolute;
    top: 28px;
    right: 8px;
}

.semaine__body .semaine__full .slot .horaire {
}

.semaine__body .semaine__full .slot .details {
    display: flex;
}

.semaine__body .semaine__full .slot .patient,
.semaine__body .semaine__full .slot .details span {
    font-family: Ubuntu-bold;
    color: white;
}

.semaine__body .semaine__full .slot .form {
    flex: 1;
}

.semaine__body .semaine__full .slot .form .form-group:last-child {
    margin-bottom: 0;
}

.semaine__body .semaine__full .slot .remove-tag {
    width: 25px;
    display: flex;
    justify-content: flex-end;
    padding-right: 5px;
}

.semaine__body .semaine__full .slot .remove-tag a {
    padding: 0;
    width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.2s ease-in-out;
}

.semaine__body .semaine__full .slot .remove-tag:hover a {
    width: 15px;
}

.semaine__body .semaine__full .slot .form-group > *:not(:last-child) {
    margin-right: 10px;
}

.separator-hour {
    margin: 0 15px;
}

#slot__error {
    display: none;
    color: red;
    margin-bottom: 10px;
}

/* Soignant
=================================================== */

.soignant__wrapper {
    display: flex;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
    padding: 0 20px 50px;
}

.list-soignant {
    flex: 1;
    background-color: #ddd;
    padding: 10px 20px 20px;
    border-radius: 10px;
}

.list-soignant ul {
    margin-top: 15px;
}

.soignant {
    cursor: pointer;
    position: relative;
    padding: 5px 10px;
    background-color: #fcfcfc;
    border-radius: 5px;
    transition: 0.2s ease-in-out;
}

.soignant.selected {
    background-color: #07a8a0;
    color: white;
}

.list-soignant .soignant:not(:last-child) {
    margin-bottom: 5px;
}

.soignant button {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    height: 100%;
    padding: 0 10px;
    border: none;
    background-color: transparent;
    transition: 0.1s ease-in-out;
}

.soignant .remove-btn {
    right: 0;
}

.soignant .moveup-btn {
    right: 25px;
}

.soignant button:hover {
    color: #07a8a0;
}

.soignant.selected button:hover {
    color: black;
}

.soignant__btn-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.soignant__btn-bar button {
    border: 1px solid #ddd;
}

.soignant__btn-bar button.active {
    background-color: #09aaaa;
    color: #fcfcfc;
}

.soignant__btn-bar button:first-child {
    margin-bottom: 10px;
}

/* TODO
=================================================== */

.todo__container {
    display: none;
    z-index: 9;
    position: fixed;
    width: 100%;
    background-color: #fefefe;
    padding: 15px 20px;
    height: auto;
    border-bottom: 1px solid #ccc;
}

.todo__content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
}

.todo__content .close {
    background-color: transparent;
    color: #121212 !important;
    display: flex;
    justify-content: flex-end;
    font-size: 28px;
    font-weight: bold;
    transition: 0.2s ease;
}

.todo__content .close:hover,
.todo__content .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.todo__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.todo__title h3 {
    color: #07a8a0;
    font-size: 24px;
    margin-bottom: 5px;
    margin-top: 0;
}

.todo__title .todo__flex {
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.todo__column {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
}

.todo__date {
    text-transform: capitalize;
}

.todo__task-count {
    text-align: right;
}

.todo__tasks {
    padding-top: 5px;
    height: auto;
    background-color: #fefefe;
}

.input__flex {
    display: flex;
    gap: 15px;
}

.todo__input {
    flex: 1;
    display: flex;
    align-items: center;
    color: #888;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.todo__input .glyphicon {
    cursor: pointer;
    top: 0;
    font-size: 16px;
    transition: 0.2s ease;
}

.todo__input .glyphicon:hover {
    color: black;
}

.todo__input .form-control {
    border: none;
    box-shadow: none;
    padding-left: 15px;
    font-family: Ubuntu-Regular, sans-serif;
}

.todo__input input.form-control:focus {
    outline: none;
}

ul.todo__list {
    overflow: auto;
    max-height: 200px;
    margin-bottom: 0;
}

ul.todo__list li {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 3px 10px 3px 0;
    transition: 0.2s ease;
    border-radius: 5px;
}

ul.todo__list li:hover {
    background-color: rgba(0, 119, 255, 0.06);
}

ul.todo__list li .form-check {
    display: flex;
    align-items: center;
    margin: 0;
}

ul.todo__list li .cbx {
    margin: 0;
    display: flex;
}

.todo__button-bar {
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.todo__delete {
    opacity: 0;
    visibility: hidden;
    margin-top: 1px;
    color: red;
    cursor: pointer;
    padding-left: 15px;
    transition: 0.2s ease;
}

.todo__delete:hover {
    color: darkred;
}

ul.todo__list li:hover .todo__delete {
    opacity: 1;
    visibility: visible;
}

.todo__action {
    flex: 1;
    margin-left: 10px;
    padding: 5px 5px;
}

[contenteditable="true"]:active,
[contenteditable="true"]:focus {
    border: 1px solid #07a8a0;
    border-radius: 3px;
    outline: none;
    padding: 4px 4px;
}

.form-check input:checked ~ .todo__action {
    font-weight: normal;
    text-decoration: line-through;
}

.todo__time {
    color: #888;
    white-space: nowrap;
}

.todo__notification {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    font-size: 10px;
    background-color: red;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Calendar
=================================================== */

.calendar {
    padding: 30px 20px;
    overflow: hidden;
}

.calendar .calendar-header {
    border: none;
}

.calendar .months-container .month-container {
    margin-bottom: 20px;
}

.calendar table.month th.day-header {
    color: #07a8a0;
}

/* Select2
=================================================== */

.select2 {
    min-height: 34px;
    width: 100% !important;
}

.select2 .select2-selection {
    min-height: 34px;
    border: 1px solid #ccc;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    min-height: 34px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #000 transparent transparent transparent;
    border-width: 5px 5px 0 5px;
    margin-top: -4px;
}

.select2-container *:focus {
    outline: none;
}

/* Autres
=================================================== */

.actionBar .glyphicon-search,
.actionBar .glyphicon-refresh {
    -webkit-text-stroke: 0.75px black;
}

.btn-group .glyphicon-search {
    -webkit-text-stroke: 0.75px white;
}

.pastille {
    background-color: red;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid white;
}

.pastille.white {
    border: 1px solid gray;
    background-color: white;
}

.pastille.gold {
    background-color: gold;
}

.pastille.hotpink {
    background-color: hotpink;
}

.glyphicon-star {
    top: 2px;
    color: black !important;
    font-size: 18px;
}

/* Checkbox
=================================================== */

.cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.cbx:not(:last-child) {
    margin-right: 6px;
}

.cbx:hover {
    background: rgba(0, 119, 255, 0.06);
}

.cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.inp-cbx {
    position: absolute;
    left: 0;
    opacity: 0.01;
    animation: wave 0.4s ease;
}

.inp-cbx + label {
    position: relative;
    padding-left: 1.5em;
    font-size: 1.05em;
    line-height: 1.7;
    cursor: pointer;
}

.todo__list .inp-cbx + label {
    min-height: 30px;
}

.inp-cbx:not(:checked) + label::before,
.inp-cbx:checked + label::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 18px;
    height: 18px;
    border: 1px solid #aaa;
    background: #fff;
    border-radius: 0.2em;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1),
    0 0 0 rgba(203, 34, 237, 0.2);
    transition: all 0.275s;
}

.inp-cbx:checked + label::before {
    border-color: #07a8a0;
}

.inp-cbx:not(:checked) + label::after,
.inp-cbx:checked + label::after {
    content: "✓";
    position: absolute;
    top: 15px;
    left: 9px;
    font-size: 16px;
    color: #07a8a0;
    line-height: 0;
    transition: all 0.2s;
}

.inp-cbx:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0);
}

.inp-cbx:checked + label::after {
    opacity: 1;
    transform: scale(1);
}

.cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
}

.cbx:hover span:first-child {
    border-color: #07a8a0;
}

.inp-cbx {
    position: absolute;
    visibility: hidden;
}

.inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
}

@-moz-keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

@-webkit-keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

@-o-keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

/* Checkbox round
=================================================== */

.filter {
    display: flex;
}

.filter p {
    margin-right: 15px;
}

#rdv-grid-header {
    height: 75px;
}

#rdv-grid-header .actionBar {
    text-align: left;
    margin-left: 270px;
}

#patient-grid-header .actionBar {
    text-align: left;
}

.table#rdv-grid > tbody > tr > td {
    padding-top: 8px;
    vertical-align: middle;
}

.table#rdv-grid .pastille {
    margin-top: 2px;
}

.lnb-item {
    z-index: 1;
    margin-top: 1px;
    position: absolute;
    display: flex;
    flex-direction: column;
}

.input-daterange {
    width: 250px;
}

.lnb-item .input-daterange {
    margin-bottom: 15px;
}

.input-group-addon {
    width: 30px;
}

.lnb-item label {
    cursor: pointer;
    margin-bottom: 0;
    user-select: none;
}

.lnb-item label:not(:last-child) {
    margin-right: 15px;
}

input[type="checkbox"].checkbox-round {
    display: none;
}

input[type="checkbox"].checkbox-round + span {
    display: inline-block;
    cursor: pointer;
    width: 14px;
    height: 14px;
    line-height: 14px;
    vertical-align: middle;
    margin-right: 2px;
    border-radius: 8px;
    border: solid 2px;
    background: transparent;
}

/* Tooltip
=================================================== */

.tooltip2[data-tooltip].top:before,
.tooltip2[data-tooltip].top:after {
    transform: translateY(10px);
}

.tooltip2[data-tooltip].top:hover:after,
.tooltip2[data-tooltip].top:hover:before {
    transform: translateY(0px);
}

.tooltip2[data-tooltip].right:before,
.tooltip2[data-tooltip].right:after {
    transform: translateX(0px);
}

.tooltip2[data-tooltip].right:hover:after,
.tooltip2[data-tooltip].right:hover:before {
    transform: translateX(10px);
}

.tooltip2[data-tooltip].bottom:before,
.tooltip2[data-tooltip].bottom:after {
    transform: translateY(-10px);
}

.tooltip2[data-tooltip].bottom:hover:after,
.tooltip2[data-tooltip].bottom:hover:before {
    transform: translateY(0px);
}

.tooltip2[data-tooltip].left:before,
.tooltip2[data-tooltip].left:after {
    transform: translateX(0px);
}

.tooltip2[data-tooltip].left:hover:after,
.tooltip2[data-tooltip].left:hover:before {
    transform: translateX(-10px);
}

.tooltip2[data-tooltip] {
    position: relative;
}

.tooltip2[data-tooltip]:after,
.tooltip2[data-tooltip]:before {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: transform 200ms ease, opacity 200ms;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.tooltip2[data-tooltip]:before {
    content: attr(data-tooltip);
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    min-width: 700px;
    white-space: break-spaces;
    text-align: left;
}

.tooltip2[data-tooltip]:after {
    width: 0;
    height: 0;
    border: 6px solid transparent;
    content: "";
}

.tooltip2[data-tooltip]:hover:after,
.tooltip2[data-tooltip]:hover:before {
    visibility: visible;
    opacity: 0.85;
    transform: translateY(0px);
}

.tooltip2[data-tooltip][data-position="top"]:before {
    bottom: 100%;
    right: -130%;
    margin-bottom: 10px;
}

.tooltip2[data-tooltip][data-position="top"]:after {
    border-top-color: #000;
    border-bottom: none;
    bottom: 101%;
    left: calc(50% - 6px);
    margin-bottom: 4px;
}

.tooltip2[data-tooltip][data-position="left"]:before {
    top: -12%;
    right: 100%;
    margin-right: 10px;
}

.tooltip2[data-tooltip][data-position="left"]:after {
    border-left-color: #000;
    border-right: none;
    top: calc(50% - 3px);
    right: 100%;
    margin-top: -6px;
    margin-right: 4px;
}

.tooltip2[data-tooltip][data-position="right"]:before {
    top: -5%;
    left: 100%;
    margin-left: 10px;
}

.tooltip2[data-tooltip][data-position="right"]:after {
    border-right-color: #000;
    border-left: none;
    top: calc(50% - 6px);
    left: calc(100% + 4px);
}

.tooltip2[data-tooltip][data-position="bottom"]:before {
    top: 100%;
    right: -130%;
    margin-top: 10px;
}

.tooltip2[data-tooltip][data-position="bottom"]:after {
    border-bottom-color: #000;
    border-top: none;
    top: 100%;
    left: 5px;
    margin-top: 4px;
}

/* Statistique
=================================================== */

.btn-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.aspect-wrapper {
    margin: 25px 0 0;
}

.aspect-wrapper * {
    box-sizing: border-box;
}

.aspect-tab {
    position: relative;
    width: 100%;
    margin: 0 0 10px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 0 1px #ececec;
    opacity: 1;
    transition: box-shadow 0.2s, opacity 0.4s;
}

.aspect-tab:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.11);
}

.aspect-input {
    display: none;
}

.aspect-input:checked ~ .aspect-content + .aspect-tab-content {
    max-height: 3000px;
}

.aspect-input:checked ~ .aspect-content:after {
    transform: rotate(0);
}

.aspect-label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-height: 80px;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
    z-index: 1;
    cursor: pointer;
}

.aspect-label:hover ~ .aspect-content:after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTI0IDI0SDBWMGgyNHoiIG9wYWNpdHk9Ii44NyIvPgogICAgICAgIDxwYXRoIGZpbGw9IiM1NTZBRUEiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTE1Ljg4IDE1LjI5TDEyIDExLjQxbC0zLjg4IDMuODhhLjk5Ni45OTYgMCAxIDEtMS40MS0xLjQxbDQuNTktNC41OWEuOTk2Ljk5NiAwIDAgMSAxLjQxIDBsNC41OSA0LjU5Yy4zOS4zOS4zOSAxLjAyIDAgMS40MS0uMzkuMzgtMS4wMy4zOS0xLjQyIDB6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=");
}

.aspect-content {
    position: relative;
    display: block;
    height: 80px;
    margin: 0;
    padding: 0 87px 0 30px;
    font-size: 0;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}

.aspect-content:before,
.aspect-content:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
}

.aspect-content:before {
    height: 100%;
}

.aspect-content:after {
    position: absolute;
    width: 24px;
    height: 100%;
    right: 30px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTI0IDI0SDBWMGgyNHoiIG9wYWNpdHk9Ii44NyIvPgogICAgICAgIDxwYXRoIGZpbGw9IiNBOUFDQUYiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTE1Ljg4IDE1LjI5TDEyIDExLjQxbC0zLjg4IDMuODhhLjk5Ni45OTYgMCAxIDEtMS40MS0xLjQxbDQuNTktNC41OWEuOTk2Ljk5NiAwIDAgMSAxLjQxIDBsNC41OSA0LjU5Yy4zOS4zOS4zOSAxLjAyIDAgMS40MS0uMzkuMzgtMS4wMy4zOS0xLjQyIDB6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=");
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

.aspect-name {
    display: inline-block;
    font-family: Ubuntu-bold;
    color: #09aaaa;
    font-size: 16px;
    margin-left: 16px;
    font-weight: 500;
    white-space: normal;
    text-align: left;
    vertical-align: middle;
}

.aspect-content + .aspect-tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.aspect-content > div,
.aspect-stat > div {
    display: inline-block;
}

.aspect-content > div {
    vertical-align: middle;
}

.aspect-info {
    width: 60%;
    white-space: nowrap;
    font-size: 0;
}

.aspect-info:before {
    content: "";
    display: inline-block;
    height: 44px;
    vertical-align: middle;
}

.aspect-tab-content {
    background-color: #f9f9f9;
    font-size: 0;
    text-align: justify;
}

.stats-wrapper {
    display: flex;
    flex-flow: wrap;
    padding: 24px 30px 30px;
}

.stats-wrapper > .stats {
    width: calc(100% / 3);
    box-sizing: border-box;
    vertical-align: top;
    cursor: default;
    padding: 5px;
}

.stats-wrapper > .stats > div {
    width: 100%;
    padding: 16px 24px 20px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #ececec;
    text-align: left;
    height: 100%;
}

.stats-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    color: #363636;
}

.stats-number {
    margin-top: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #363636;
}

@media screen and (max-width: 800px) {
    .aspect-label {
        max-height: 102px;
    }

    .aspect-content {
        height: auto;
        padding: 10px 87px 10px 30px;
    }

    .aspect-content:before {
        display: none;
    }

    .aspect-content:after {
        top: 0;
    }

    .aspect-content > div {
        display: block;
        width: 100%;
    }

    .aspect-stat {
        margin-top: 10px;
        text-align: left;
    }
}

@media screen and (max-width: 750px) {
    .stats-wrapper > div {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .stats-wrapper > div:not(:first-child) {
        margin-top: 10px;
    }
}

@media screen and (max-width: 500px) {
    .aspect-label {
        max-height: 140px;
    }

    .aspect-stat > div {
        display: block;
        width: 100%;
    }

    .all-opinions {
        margin-bottom: 10px;
    }

    .all-opinions + div > span:first-child {
        margin: 0;
    }
}

/* Diagnostic
=================================================== */

.rapatrier__container {
    display: flex;
}

.rapatrier__container .form-group {
    flex: 1;
    padding-left: 10px;
}

.rapatrier__container label {
    user-select: none;
}

.rapatrier__container .switch {
    margin-top: 3px;
}

.switch {
    display: inline-block;
    width: 30px;
    height: 17px;
    position: relative;
}

.toggle-thumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F87171;
    border-radius: 40px;
    cursor: pointer;
    overflow: hidden;
}

.toggle-thumb:before {
    content: "";
    height: 13px;
    width: 13px;
    position: absolute;
    left: 2px;
    bottom: 2px;
    border-radius: 50%;
    background-color: #e2e8f0;
    transition: 0.4s all ease;
}

.switch .checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .checkbox:checked + .toggle-thumb:before {
    transform: translateX(13px);
}

.switch svg {
    transition: 0.4s all ease;
}

.switch svg:nth-child(1) {
    position: relative;
    left: -13px;
}

.switch .checkbox:checked + .toggle-thumb {
    background-color: #08c1b8;
}

.switch .checkbox:checked + .toggle-thumb > svg {
    transform: translateX(13px);
}
