html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

a {
    outline: 0;
}

th {
    font-size: 0.9rem;
}

/** ===============================================
    ================== NAVIGATION =================
    =============================================== */

.navbar-nav {
    width: 100%;
}

/* .nav-link {
    margin: 0;
    padding: 0;
} */

.navbar-nav a {
    color: var(--menu-primary-color);
    border: 1px solid transparent;
    border-radius: 3px;
    text-decoration: none;
}

.navbar-nav a:hover:not(.logo-item):not(.dropdown-item):not(.selected) {
    border: 1px solid var(--menu-border-color-hover);
    border-radius: 3px;
    background-color: var(--menu-background-color);
    text-decoration: none;
}

.navbar-nav a:not(.logo-item).selected {
    border: 1px solid var(--menu-border-color-selected);
    border-radius: 3px;
    background-color: var(--menu-background-color);
    text-decoration: none;
    cursor: default;
}

.nav-item:hover {
    cursor: pointer;
}

a:hover .nav-item {
    cursor: pointer;
}

a:hover .nav-item i {
    cursor: pointer;
}

.dropdown-item i {
    margin-right: 0.5em;
}

/** ===============================================
    ============= MULTI-LVL DROPDOWN ==============
    =============================================== */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    /* left: 100%; */
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/** ===============================================
    ==================== TABLES ===================
    =============================================== */

table select {
    min-width: 150px;
}

@media screen and (max-width: 500px) {
    table select {
        max-width: 100px;
    }
}

table i:not(.static) {
    opacity: .8;
}

table i:not(.static):hover {
    opacity: 1;
    cursor: pointer;
}

i[disabled] {
    opacity: .5;
}

i[disabled]:hover {
    opacity: .5;
    cursor: default;
}

td i[disabled] {
    opacity: .5;
}

td i[disabled]:hover {
    opacity: .5;
    cursor: default;
}

/** ===============================================
    ==================== ICONS ====================
    =============================================== */

.graph-icon {
    font-size: 3em;
    padding: 0em;
}

/** ===============================================
    ==================== COLORS ===================
    =============================================== */

.bg-custom-blue {
    background-color: #006da0;
}

.no-bg {
    background-color: transparent;
}

.bg-light-grey {
    background-color: rgb(218, 218, 218);
}

.bg-faded {
    background-color: rgb(243, 243, 243);
}

.bg-custom-green {
    background-color: #3ba048;
}

.switch-bg-blue:checked~.custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
}

.switch-bg-green:checked~.custom-control-label::before {
    color: #fff;
    border-color: #3ba048;
    background-color: #3ba048;
}

.text-blue {
    color: #007bff;
}

.sel-bg-success {
    background-color: rgb(130, 235, 130) !important;
}

.sel-bg-alm-success {
    background-color: rgba(130, 235, 130, 0.486) !important;
}

.sel-bg-alert {
    background-color: rgba(255, 251, 0, 0.747) !important;
}

.sel-bg-warning {
    background-color: rgba(255, 145, 0, 0.726) !important;
}

.sel-bg-danger {
    background-color: rgb(250, 161, 161) !important;
}

.light-card {
    border: 1px solid rgb(219, 219, 219);
    background-color: rgb(247, 247, 247);
}

.blue-border {
    border: 2px solid #007bff;
    border-radius: 3px;
}

.green-border {
    border: 2px solid #3ba048;
    border-radius: 3px;
}

/** ===============================================
    ==================== SIZES ====================
    =============================================== */

.miw-80 {
    min-width: 80px;
}

.mw-200 {
    max-width: 200px;
}

.mw-600 {
    max-width: 600px;
}

.mh-200 {
    height: 200px;
}

.max-height-200 {
    max-height: 200px;
}

.min-height-200 {
    min-height: 200px;
}

.max-height-500 {
    max-height: 500px;
}

.min-height-500 {
    min-height: 500px;
}

.max-width-750 {
    max-width: 750px;
}

.min-width-750 {
    min-width: 750px;
}

.scale-half {
    transform: scale(.9);
}

.img-big {
    height: 100%;
    width: 100%;
}

.h-c-50 {
    height: 40px;
    line-height: 20px;
    vertical-align: middle;
}

.h-120 {
    height: 120px;
}

.h-20 {
    height: 20px;
}

.h-40 {
    height: 40px;
}

.h-150 {
    height: 150px;
}

.h-80 {
    height: 80px;
}

.lh-80 {
    height: 80px;
    vertical-align: middle;
}

.h-200 {
    height: 200px;
}

.h-400 {
    height: 400px;
}

.mt-30 {
    margin-top: 20px;
}

.w-150 {
    width: 200px;
}

.mt-10 {
    margin-top: 10px;
}

/** ===============================================
    ============ ALIGNMENT / POSITION =============
    =============================================== */

.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 500px) {
    .vertical-center {
        display: block;
        clear: both;
    }
}

.relative {
    position: relative;
}

/** ===============================================
    ==================== MISC =====================
    =============================================== */

.custom-control {
    text-align: center;
}

.custom-control label:hover {
    cursor: pointer;
}

.breadcrumbs {
    color: white;
    font-size: 20px;
    padding: 10px;
    background-color: rgb(187, 197, 207);
    border: none;
    margin-bottom: 20px;
}

.iconed-btn {
    display: inline-block;
    height: 40px;
    vertical-align: middle;
    padding-right: 10px;
    text-decoration: none;
    margin-top: .3em;
    margin-bottom: 1em;
}

.iconed-btn:hover {
    opacity: 1;
}

.iconed-btn p {
    display: inline-block;
    margin: 0;
    margin-left: 5px;
    padding: 0;
    line-height: 33px;
    text-decoration: none;
    vertical-align: top;
}

a.nostyle-a {
    text-decoration: none;
    color: black;
}

.hoverable {
    opacity: .8;
}

.hoverable:hover {
    opacity: 1;
}

.clickable:hover {
    cursor: pointer;
}

.clickable *:hover {
    cursor: pointer;
}

.break-word {
    word-wrap: break-word;
    word-break: break-all;
}

.table-striped-3>tbody>tr:nth-child(4n+0) {
    background-color: rgba(0, 0, 0, .05);
}

.table-striped-3>tbody>table {
    background-color: rgba(0, 0, 0, 0);
}

.filter-row {
    background-color: rgba(0, 0, 0, .08);
}

.modal {
    overflow-y: auto !important;
}

.b-red {
    border: 1px solid red;
}

.clickable:hover {
    cursor: pointer;
}

.no-after::after {
    display: none;
}

.no-before::before {
    display: none;
}

.disabled {
    opacity: .5;
}

.disabled:hover {
    opacity: .5;
}

.disabled:active {
    opacity: .5;
}

td .blue-checked {
    margin: 0 auto;
    background-color: rgb(0, 110, 255);
    min-width: 40px;
    max-width: 75px;
    height: 25px;
    border-radius: 2px;
}

td .green-checked {
    margin: 0 auto;
    background-color: #3ba048;
    min-width: 40px;
    max-width: 75px;
    height: 25px;
    border-radius: 2px;
}

td .unchecked {
    margin: 0 auto;
    background-color: rgb(173, 173, 173);
    min-width: 40px;
    max-width: 75px;
    height: 25px;
    border-radius: 2px;
}

.table-unstriped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0);
}

.no-border {
    border: none;
}

.nofocus:focus {
    outline: none;
    box-shadow: none;
}

.react-autosuggest__suggestions-list {
    max-height: 200px;
    overflow-y: auto;
}

.truncate {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zoom-6 {
    zoom: .6;
}

.zoom-7 {
    zoom: .7;
}

.overflow-auto {
    border: 1px solid var(--secondary);
    height: 100px;
    overflow: auto
}

.overlay {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0), black);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay:hover {
    opacity: .1;
    cursor: pointer;
}

.split-title {
    position: absolute;
    bottom: 0;
    right: 0px;
    padding-right: 10px;
    padding-left: 30px;
    color: black;
    font-size: 26px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, .4), rgba(0, 0, 0, 0));
    opacity: .4;
}

.split-title:hover {
    text-decoration: none;
    color: black;
    opacity: .8;
}

.divSelected {
    background: rgb(236, 197, 228);
    border-bottom: 1px solid lightgrey;
    padding: 3px;
}

.small-font {
    font-size: .8em;
}

@media (min-width: 576px) {
    .modal-dialog-xl {
        max-width: none;
    }
}

.modal-dialog-xl {
    width: 100%;
    height: 100%;
    max-height: 100%;
    padding: 0;
    background: white;
}

.modal-content-xl {
    height: 100%;
    max-height: 100%;
}

.no-overflow {
    overflow-y: hidden !important;
}

.overflow-y {
    overflow-y: auto !important;
    height: 100%;
    max-height: 100%;
}

.dm-card .title {
    background-color: #7A7777;
    color: white;
    border-radius: 0.5em;
}

.dm-card .title.selected {
    background-color: #27a744;
}

.dm-card .img {
    text-align: center;
    margin: 0 auto;
    min-height: 100px;
    margin-bottom: 7px;
}

.room-card {
    border: 3px solid #ddd;
    border-radius: 5px;
}

.room-card.selected {
    border: 3px solid #27a744;
}

.room-card.selected>.card {
    background-color: rgb(205, 220, 57, 0.4);
}

.room-card.selected .alert {
    border-color: #fff;
}

.room-card .img {
    text-align: center;
    margin: 0 auto;
    min-height: 100px;
    margin-bottom: 7px;
}

.bg-pink {
    background-color: rgb(255, 255, 255);
}

.bg-light-grey-faded {
    background-color: rgba(248, 248, 248, 0.575);
}

.bg-light-white-faded {
    background-color: rgba(255, 255, 255);
}

.room-card .img img {
    width: 180px;
    height: 180px;
    background-size: cover;
}

.audit-room-title {
    text-align: center;
    width: 100%;
    color: #000;
    border-radius: 0.5em;
    border: 1px solid #777;
    background-color: #dfe5ad;
}

.audit-dm-name {
    display: inline-block;
    vertical-align: top;
    margin-left: 0.8em;
}

.audit-checkbox {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 7px;
    color: #fff !important;
    border-radius: 0;
    border: 1px solid #fff;
}

.audit-checkbox.checked {
    background: #fff;
    color: #00a757 !important;
}

.audit-background-checkbox-white {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 7px;
    color: #fff !important;
    border-radius: 0;
    border: 1px solid #fff;
    background: white;
}

.audit-dm-edit-btn {
    height: 60px;
    text-align: center;
    float: right;
    font-size: 28px;
}

.green-light {
    margin-top: 5px;
    margin-right: 7px;
    background-color: rgb(31, 177, 31);
    border: 1px solid rgb(152, 255, 152);
    width: 24px;
    height: 24px;
    border-radius: 24px;
}

.red-light {
    margin-top: 5px;
    margin-right: 7px;
    background-color: rgb(212, 62, 62);
    border: 1px solid rgb(255, 194, 194);
    width: 24px;
    height: 24px;
    border-radius: 24px;
}

.audit-conf-btn {
    background-color: var(--secondary) !important;
    /* padding: 22px 48px; */
    font-size: 18px;
    margin: 0 auto;
    color: white !important;
}

.audit-conf-btn:active,
.audit-conf-btn:hover {
    color: white;
}

.helpers-list {
    list-style: square;
}

.helpers-list li {
    margin-left: 30px;
}

.audit-concl {
    color: #ccc;
}

.pink-border {
    border: 2px solid var(--secondary) !important;
    border-radius: 3px;
}

.sketch-zone {
    border: 1px solid var(--secondary);
    border-radius: 3px;
    box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 1);
}

.audit-emails {
    min-width: 400px;
}

.audit-emails .title {
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 24px;
    margin-bottom: 7px;
    background-color: var(--secondary);
    font-weight: bold;
    color: white;
    min-width: 300px;
    margin-bottom: 14px;
}

.audit-emails .items {
    text-align: left;
    margin-bottom: 7px;
    background-color: var(--secondary);
    font-weight: bold;
    color: white;
    min-width: 300px;
    padding-top: 6px;
}

.audit-emails .disabled {
    opacity: .6;
}

#rgpd-scroll {
    height: 20em;
    overflow-y: auto;
    padding: 0 2em 0em 2em;
}

.required {
    color: #dc3545;
}

th.required .fa-asterisk {
    font-size: 0.5em;
    margin-left: 0.2em;
    position: absolute;
}

label.required {
    color: #dc3545;
}

label.required .fa-asterisk {
    font-size: 0.5em;
    margin-left: 0.2em;
    position: absolute;
}

input[type=radio] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    outline: none;
    content: none;
    margin-left: 5px;
}

input[type=radio]:checked:before {
    color: var(--secondary) !important;
}

input[type=radio]:before {
    font-family: "FontAwesome";
    content: "\f00c";
    font-size: 25px;
    color: transparent !important;
    background: #fff;
    width: 25px;
    height: 25px;
    border: 2px solid #d3d8dd;
    margin-right: 5px;
}

.bg-audit-title {
    background-color: var(--primary) !important;
}

.italic {
    font-style: italic;
}

.modal-content-xl.ongoing {
    background: rgb(233, 233, 233) !important;
}

/* Header */

.headercontainer {
    width: 100%;
    background-color: #fff;
    border-radius: 0px 0px 20px 20px;
    /* border: 1px solid #ccc; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    vertical-align: middle;
    /* align-content: baseline; */
    /* align-items: baseline;*/
    left: 0;
    top: 0;
    z-index: 1
}

.headertitlebar {
    /* padding-top: 8px; */
    vertical-align: middle;
    /* margin-top: Opx; */
    background-color: var(--primary);
}

.headertitle {
    padding: 10px;
    color: #FFF;
    font-weight: lighter;
    text-align: center;
    vertical-align: middle;
    font-size: 25px;
}

.headerlabel {
    color: rgba(0, 0, 0, 0.5);
}

.headerdetail {
    color: rgba(0, 0, 0, 0.8);
    font-style: bold;
}

.headerdate {
    align-content: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
    font-weight: normal;
    font-size: 15px;
    padding-top: 1px;
}

.headerlabeltitle {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2em;
}

.logo_refundable {
    height: auto;
    width: 60px;
}

/* Pictures*/

@media (max-width: 1280px),
screen and (orientation: landscape) {
    .room-card .img img {
        width: 180px;
        height: 180px;
        background-size: cover;
    }

    .modal-xl-patient {
        max-width: 900px !important;
    }
}

@media (max-width: 780px),
screen and (orientation: portrait) {
    .room-card .img img {
        width: 180px;
        height: 180px;
        background-size: cover;
    }

    .modal-xl-patient {
        max-width: 600px !important;
    }
}

/**
===============================================
==================== PDF PREVIEW ==============
===============================================
*/

.TitreAuditSetting35 {
    font-size: 14px;
    color: rgb(128, 136, 137);
}

.TitreAuditSetting25 {
    font-size: 17px;
    color: rgb(128, 136, 137);
}

.TitreAuditSetting15 {
    font-size: 21px;
    color: rgb(128, 136, 137);
}

.TitreAuditSetting0 {
    font-size: 25px;
    color: rgb(128, 136, 137);
}

.InfoEntetePDF40 {
    font-size: 18px;
    color: rgb(128, 136, 137);
}

.InfoEntetePDF20 {
    font-size: 21px;
    color: rgb(128, 136, 137);
}

.InfoEntetePDF0 {
    font-size: 25px;
    color: rgb(128, 136, 137);
}

.InfoEntetePDF {
    font-size: 20px;
    color: rgb(128, 136, 137);
}

.titleBar {
    position: absolute;
    background-color: var(--secondary);
    width: 100%;
    height: 60px;
    text-align: center;
    vertical-align: center;
}

.titleBarText {
    height: 60px;
    font-weight: bold;
    color: black;
}

/* Horizontal scrollbar */

div.scrollmenu {
    white-space: nowrap;
    overflow-x: auto;
}

.pdf-page {
    border: 1px solid black;
    background-color: white;
    box-shadow: 1px 1px 5px black;
}

/* /////////////////// */

/* Desk  */

/* /////////////////// */

/* Header */

.deskheadercontainer {
    background-color: #fff;
    /* height: 200px; */
    border-radius: 0px 0px 20px 20px;
    /* border: 1px solid #ccc; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 1em;
    vertical-align: middle;
    /* align-content: baseline; */
    /* align-items: baseline;*/
    /*
    top: 0;
    position: fixed;
    left: 0;
    z-index: 2;
    */
    padding-bottom: 1em;
}

.product-card.selected {
    opacity: 1;
}

.product-card.selected {
    opacity: 1 !important;
    /*0.6 !important;*/
}

.product-card.selected .title {
    background-color: var(--secondary) !important;
}

.product-card .title {
    line-height: 18px;
    vertical-align: middle;
    text-align: center;
    background-color: #7a7778;
    font-weight: bold;
    font-size: 16px;
    color: white;
}

.product-card .img {
    text-align: center;
    margin: 0 auto;
    height: 130px;
    margin-bottom: 5px;
}

.product-card .img img {
    max-width: 170px;
    width: auto;
    height: 80%;
    background-size: contain;
    padding: 0 !important;
}


.modalheadertitle {
    padding: 10px;
    padding-left: 30px;
    text-transform: uppercase;
    color: #FFF;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
    font-size: 20px;
    width: 1100px;
}

modal-button.close {
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.desk_breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
    border-radius: .25rem;
}

.header_audit {
    height: 140px;
    background-color: #fff;
}

/* Details */

.detailcard {
    max-width: 65%;
    padding: 10px;
    float: left;
    background-color: #fff;
}

.detailtitlebar {
    padding: 10px;
    width: 100%;
    background-color: #7a7778;
    vertical-align: middle;
}

.text_titlebar {
    font-size: 20px;
    line-height: 25px;
    vertical-align: auto;
    text-align: center;
    font-weight: bold;
    color: white;
}

.cardtitle {
    color: var(--secondary);
    text-align: left;
    font-style: italic;
    font-size: 17px;
    font-weight: bold;
}

.cardtext {
    color: #7a7778;
    text-align: left;
    font-style: normal;
    text-justify: auto;
    font-size: 15px;
}

.cardtext-green {
    color: var(--secondary);
    text-align: left;
    font-style: normal;
    text-justify: auto;
    font-size: 15px;
}

.btnactionaudit {
    background-color: var(--secondary) !important;
    color: white;
    /* border-color: #276a56!important; */
    min-width: 170px;
}

.btnactionaudit.disabled {
    background-color: #7a7778 !important;
}

.carroussel-card {
    height: auto;
}

.list_container {
    width: 100%;
    height: auto;
    background-color: rgb(233, 233, 233);
}

.list {
    vertical-align: middle;
    height: 50px;
    width: 100%;
    padding: 10px;
    margin-right: 0%;
    margin-left: 0%;
    background-color: #fff;
}

.modal-dialog div.list {
    width: 100% !important;
    display: block !important;
}

.modal-header.block-modal {
    background-color: var(--primary);
}

.carroussel_title {
    color: #7a7778;
    padding-top: 10px;
    vertical-align: middle;
    text-align: left;
    font-weight: bold;
    text-justify: center;
    font-size: 12px;
    max-width: 30px;
}

.sidecontainer {
    width: 100%;
    height: auto;
    background-color: rgb(233, 233, 233);
}

.detail-category {
    height: 300px;
}

.sidetitle {
    color: #7a7778;
    text-align: left;
    font-style: italic;
    margin-left: 10px;
    margin-bottom: -10px;
    font-size: 16px;
    line-height: 18px;
}

.scrollbar {
    overflow: scroll;
}

.scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 0px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

/* custom colors  */

.scrollbar-primary::-webkit-scrollbar {
    background-color: #F5F5F5;
}

.scrollbar-primary {
    scrollbar-color: #4248f4 #f5f5f5;
}

.scrollbar-primary::-webkit-scrollbar-thumb {
    border-radius: 0px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary);
}

.scrollTop {
    position: fixed;
    width: 100%;
    bottom: 20px;
    align-items: center;
    height: 20px;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    animation: fadeIn 0.3s;
    transition: opacity 0.4s;
    opacity: 0.5;
    background-color: #4248f4;
}

.scrollTop:hover {
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.5;
    }
}

.container_list {
    scroll-padding-top: 10px;
    height: 162px;
    scroll-behavior: smooth;
    overflow-y: auto;
    overflow-x: hidden;
}

.carroussel {
    height: 50px;
    vertical-align: middle;
    background-color: #fff;
}

.list_title {
    color: #7a7778;
    line-height: 12px;
    padding: 5px;
    vertical-align: middle;
    text-align: left;
    font-weight: bold;
    text-justify: center;
    font-size: 10px;
    max-width: 30px;
}

.desk_audit_page {
    width: 100%;
    background-color: rgb(233, 233, 233);
}

.detail-bread-content {
    height: 20px;
}

.detail-bread-txt {
    text-align: left;
    margin-left: 20px;
    font-weight: bold;
    color: #7a7778;
}

.detail-breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: none;
    border-radius: .25rem;
}

.button_bag {
    color: var(--secondary);
    color: #fff;
    background-color: var(--secondary);
}

.paniercontainer {
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
}

.panier_icones {
    color: var(--secondary)
}

.truncate-overflow {
    display: block !important;
    /* Fallback for non-webkit */
    display: -webkit-box !important;
    height: 2.3em !important;
    margin: 0 auto;
    line-height: 1.4em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bgwhite {
    width: 100%;
    background-color: #fff;
}

.bgfond {
    background-color: rgb(233, 233, 233);
}

.bg-desk {
    background-color: var(--secondary) !important;
}

.bg-desk .audit-dm-name {
    display: inline;
    margin-left: 16px;
}

p::first-letter {
    text-transform: uppercase;
}

.text-success-desk {
    color: var(--secondary);
    margin-top: 10px;
}

@media (max-width: 1280px),
screen and (orientation: landscape) {
    .product-card .title {
        padding: 5px;
        line-height: 22px;
        text-align: center !important;
        font-size: 20px;
        text-align: center !important;
        min-height: 50px;
        text-align: center !important;
        font-size: 16px;
        vertical-align: middle;
        height: 58px !important;
        width: 100% !important;
    }

    .list_title {
        vertical-align: middle;
        margin: 5px;
        line-height: 16px;
        padding: 5px;
        font-size: 16px;
        max-width: 100%;
    }

    .text_titlebar {
        font-size: 20px;
    }

    .modal-xl-block {
        position: relative;
        width: auto;
        margin: .5rem;
        pointer-events: none;
        padding-top: 150px;
        max-width: 800px;
    }

    .modalheadertitle {
        margin-top: 5px;
        white-space: nowrap
    }
}

@media (max-width: 780px),
screen and (orientation: portrait) {
    .product-card .title {
        padding: 5px;
        text-align: center !important;
        min-height: 50px;
        text-align: center !important;
        font-size: 16px;
        vertical-align: middle;
        height: 58px !important;
        width: 100% !important;
    }

    .list_title {
        margin: 5px;
        line-height: 12px;
        padding: 5px;
        font-size: 12px;
        max-width: 100%;
        vertical-align: middle;
    }

    .modalheadertitle {
        margin-top: 5px;
        font-size: 20px;
        line-height: 26px;
        width: 460px;
    }

    .modal-xl-block {
        padding-top: 400px;
        max-width: 600px;
    }
}

/* FILE EXPLORER DOCUMENTS DB */

.folder-icon .fa-folder-closed {
    color: #8e8e8e;
}

.folder-icon .fa-folder-open {
    color: var(--menu-primary-color);
}

.sidebar-content,
.main-content {
    overflow-y: auto;
    max-height: calc(100vh - 10em);
    min-height: 70vh;
    background-color: #ffffff;
    border: 1px solid gainsboro;
    -webkit-border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
}

.sidebar-content {
    margin-right: 0.5em;
}

.file-manager-item-folder .item-content {
    cursor: pointer;
}

.file-manager-item-folder .item-content-active {
    font-weight: bold;
    color: var(--menu-primary-color);
    cursor: pointer;
}

.main-file-content-item {
    border: 1px solid transparent;
    -webkit-border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
}

.main-file-content-item,
.main-file-content-item-active {
    height: 10em;
    width: 10em;
    cursor: pointer;
}

.main-file-content-item-active {
    background-color: lightyellow;
    border: 1px solid darkorange;
    -webkit-border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
}

.main-file-content-item:hover {
    background-color: lightcyan;
    border: 1px solid turquoise;
}

#main-file-icon {
    color: #8e8e8e;
    font-size: 4em;
}

.main-file-content-item:hover>#main-file-icon {
    color: darkturquoise;
}

.main-file-content-item-active>#main-file-icon {
    color: darkorange;
}

.file-explorer {
    user-select: none;
    /* standard syntax */
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
}