@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
}


:root {
    --bg-site: #F8F8F8;
    --color-orange-clair: #ef9e5c;
    --color-orange: #ec6805;
    --color-orange-hover: #d2430e;
    --color-orange-text-hover: #FFFFFF;
    --color-bleu: #1fa9be;
    --color-bleu-hover: #16808f;
    --color-danger: #CC0000;
    /*--color-jaune: #f1b258;*/
    /*--color-jaune: #fdd501;*/
    --color-jaune: #ffe271;
    --color-jaune-clair: #fff3ac;
}

body {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 29px;
    padding: 0;
    margin: 0;
    color: #333333;
    background: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a {
    color: var(--color-orange);
    font-weight: bold;
}

.bg-grisclair {
    background: #EEEEEE;
}

.bg-gristresclair {
    background: #fbfbfb;
}

.bg-propo1 {
    background: var(--color-jaune);
}

.bg-propo2 {
    background: var(--color-jaune-clair);
}


.cadre {
    font-size: 14px;
    background: #e9ecef;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
}

.home-section {
    position: relative;
    background: #fff;
    /*min-height: 100vh;*/
    top: 0;
    transition: all 0.5s ease;
    /*z-index: 2;*/
    left: 200px;
    width: calc(100% - 200px);
    /*padding-left: 1%;*/
    padding-top: 20px;
    margin-bottom: 100px;
}

.home-section .text {
    display: inline-block;
    color: #676E8A;
    font-size: 25px;
    font-weight: 500;
    margin: 18px
}

#LienMenuMobile {
 display: none;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    padding: 6px 14px;
    z-index: 99;
    transition: all 0.5s ease;
    box-shadow: 0px 16px 15px 0px rgb(0 0 0 / 7%);
    width: 200px;
    overflow-y: auto;
}
.sidebar .logo-details {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}
.sidebar .logo-details img {
    max-width: 80%;
    max-height: 60px;
}

.sidebar li {
    position: relative;
    list-style: none;
}

.sidebar li .accordion-body {
    padding: 0;
}

.sidebar li li {
    position: relative;
    margin-left: 20px;
    list-style: none;
}


.sidebar li a {
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    align-items: center;
    text-decoration: none;
    background: #fff;
    color: #676E8A;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
}

.sidebar li a:hover,
.sidebar li a:focus,
.sidebar li a.active {
    background: #FFF;
    color: #FF7E41;
}

.sidebar i {
    height: 50px;
    min-width: 40px;
    font-size: 25px;
    text-align: center;
    line-height: 50px;
}

.sidebar li li i {
    height: 30px;
    min-width: 20px;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
}
@media (max-width: 1000px) {
    .home-section {
        left: 0;
        width: 100%;
    }
    #LienMenuMobile {
        display: block;
        position: absolute;
        top: 10px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    #LienMenuMobile:before,
    #LienMenuMobile:after,
    #LienMenuMobile span {
        content: "";
        display: block;
        position: absolute;
        top: 22px;
        left: 5px;
        right: 5px;
        width: 50px;
        height: 6px;
        background: #000000;
    }
    #LienMenuMobile:before {
        top: 5px;
    }
    #LienMenuMobile:after {
        top: 40px;
    }
    .open #LienMenuMobile:before,
    .open #LienMenuMobile:after,
    .open #LienMenuMobile span {
        top: 22px;
        transform: rotate(45deg);
    }
    .open #LienMenuMobile:after {
        top: 22px;
        transform: rotate(-45deg);
    }

    .sidebar {
        position: relative;
        left: auto;
        top: auto;
        height: 70px;
        width: 100%;
        overflow-y: visible;
    }
    .sidebar #accordionSidebar {
        display: none;
        position: absolute;
        right: 0;
        top: 70px;
        width: 230px;
        padding: 0 10px;
        background: #FFFFFF;
        border: solid 1px #999999;
        /*border-top: 0;*/
        /*border-right: 0;*/
        border-radius: 0 0 10px 10px;
    }
    .sidebar.open #accordionSidebar {
        display: block;
    }
    .sidebar i {
         height: 40px;
         min-width: 40px;
         font-size: 20px;
         line-height: 40px;
     }
}
/*

.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name {
    opacity: 1;
}

.sidebar .logo-details #btn {
    color: #676E8A;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 22px;
    transition: all 0.4s ease;
    font-size: 23px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.sidebar.open .logo-details #btn {
    text-align: right;
}

.sidebar .accordion-button::after {
    display: none;
}

.sidebar.open .accordion-button::after {
    display: block;
}

.sidebar svg {
    color: #676E8A;
    height: 25px;
    min-width: 50px;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
}

.sidebar .nav-list {
    margin-top: 20px;
    height: 100%;
}

.sidebar li .tooltip {
    position: absolute;
    top: -20px;
    left: calc(100% + 15px);
    z-index: 3;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: 0s;
}

.sidebar li:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar.open li .tooltip {
    display: none;
}

.sidebar input {
    font-size: 15px;
    color: #676E8A;
    font-weight: 400;
    outline: none;
    height: 50px;
    width: 100%;
    width: 50px;
    border: none;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: #fff;
}

.sidebar.open input {
    padding: 0 20px 0 50px;
    width: 100%;
}

.sidebar .bx-search {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 22px;
    background: #1d1b31;
    color: #FFF;
}

.sidebar.open .bx-search:hover {
    background: #1d1b31;
    color: #FF7E41;
}

.sidebar .bx-search:hover {
    background: #FFF;
    color: #FF7E41;
}

.sidebar li a {
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    background: #fff;
}

.sidebar li a {
    color: #676E8A;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    transition: 0.4s;
}

.sidebar li a:hover,
.sidebar li a:focus,
.sidebar li a.active {
    background: #FFF;
    color: #FF7E41;
}

.sidebar li a .links_name {
    display: none;
}

.sidebar.open li a .links_name {
    display: block;
}


.sidebar.open li a .accordion {
    padding-left: 10%;
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i {
    transition: all 0.5s ease;
    color: #FF7E41;
}

.sidebar li a:hover i {
    transition: all 0.5s ease;
    color: #FF7E41;
}

.dropdown-toggle:hover,
.nav-link svg:hover {
    transition: all 0.5s ease;
    color: #FF7E41;
}

.dropdown-item:hover,
.dropdown-item svg:hover {
    transition: all 0.5s ease;
    color: #FF7E41;
}

.sidebar li.profile {
    position: fixed;
    height: 60px;
    width: 78px;
    left: 0;
    bottom: -8px;
    padding: 10px 14px;
    background: #fff;
    transition: all 0.5s ease;
    overflow: hidden;
}

.sidebar.open li.profile {
    width: 250px;
}

.sidebar li .profile-details {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.sidebar li img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.sidebar li.profile .name,
.sidebar li.profile .job {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}


.sidebar li.profile .job {
    font-size: 12px;
}

.sidebar .profile #log_out {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 60px;
    line-height: 60px;
    border-radius: 0px;
    transition: all 0.5s ease;
    width: 50px;
    background: none;
}*/

thead input {
    width: 100%;
}

.table-striped > tbody > tr > * {
    background-color: var(--color-jaune-clair);
 }
.table-striped > tbody > tr:nth-of-type(2n+1) > * {
    background-color: var(--color-jaune);
 }

ol, ul {
    padding-left: 0;
}

.table-responsive {
    margin-right: 1%;
}

#Action {
    display: none
}

.donnee_tableau {
    color: black;
}

.donnee_tableau:hover {
    color: #EC6338;
}

.bg-white {
    color: #212529 !important;
    background-color: #fff !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: both;
    border-collapse: separate;
    border-spacing: 0;
    border-bottom: 1px solid #DCDFE8 !important;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    color: #110A57;
}

.table tr > td {
    font-size: 13px;
    padding: 1px 5px;
}

.table tr.bg-success > td,
.table tr.bg-warning > td,
.table tr.bg-danger > td {
    background: none;
}

.table tr > th {
    font-size: 16px;
    font-weight: bold;
    padding: 1px 5px;
}

.table .ligth {
    white-space: nowrap;
}

h4 {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    margin: 0px;
    line-height: 1;
    color: #110A57;
    font-size: 1.44em;
}

.dataTables_wrapper .dataTables_filter input {
    border-color: #DCDFE8;
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

tr {
    background-color: #ebf0ff;
}

.data-table .badge {
    font-size: 16px;
    padding: 8px 10px;
}

.badge {
    padding: 0.3em 0.6em;
    line-height: 1.3;
    text-transform: capitalize;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.bg-success {
    background-color: #78c091 !important;
}

.bg-success:hover {
    opacity: 1
}

.badge-index {
    font-size: 90%;
}


.bg-danger {
    color: #fff !important;
    background-color: #F53A3A !important;
}

.bg-warning {
    color: #fff !important;
    background-color: #ff9770 !important;
}

.btn-success {
    background-color: #EC6338 !important;
    border: 1px solid #EC6338 !important;
    border-radius: 10px !important;
}

.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn-success:visited {
    background-color: #EC6338 !important;
    border: 1px solid #EC6338 !important;
    border-radius: 10px !important;
}

.btn-primary {
    background-color: var(--color-orange-clair);
    border: 1px solid var(--color-orange-clair);
    border-radius: 10px;
    font-weight: bold;
    color: black;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:visited {
    background-color: var(--color-orange-clair);
    border: 1px solid #EC6338;
    border-radius: 10px;
}

.btn-secondary {
    background-color: #808A94;
    border: 1px solid #808A94;
    border-radius: 10px;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:visited {
    background-color: #808A94;
    border: 1px solid #808A94;
    border-radius: 10px;
}

.btn-danger {
    background-color: #CC0000;
    border: 1px solid #CC0000;
    border-radius: 10px;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: #CC0000;
    border: 1px solid #CC0000;
    border-radius: 10px;
}

.btn-dl-interne {
    background-color: var(--color-jaune-clair);
    border: 1px solid var(--color-jaune-clair);
    border-radius: 10px;
    font-weight: bold;
    color: black;
}

.btn-dl-interne:hover,
.btn-dl-interne:focus {
    background-color: var(--color-jaune-clair);
    border: 1px solid var(--color-jaune-clair);
    border-radius: 10px;
    font-weight: bold;
    color: white;
}

.retour {
    background-color: #78c091 !important;
    border: 1px solid #78c091 !important;
    border-radius: 10px !important;
}

.dataTables_length {
    padding-right: 5%;
    margin-top: 0.5%;
}

button.dt-button, div.dt-button, a.dt-button, input.dt-button {
    color: #fff;
    opacity: 0.5;
    background-color: #65676E;
    border: 1px solid #65676E;
    border-radius: 10px;
}

.button.dt-button:hover, div.dt-button:hover, a.dt-button:hover, input.dt-button:hover,
.button.dt-button:active, div.dt-button:active, a.dt-button:active, input.dt-button:active,
.button.dt-button:focus, div.dt-button:focus, a.dt-button:focus, input.dt-button:focus,
.button.dt-button:visited, div.dt-button:visited, a.dt-button:visited, input.dt-button:visited {
    transition: 0.5s;
    opacity: 1 !important;
    background-color: #65676E;
    border: 1px solid #65676E;
}

.profile-menu .dropdown-menu {
    right: 0;
    left: unset;
}

.fa-fw {
    margin-right: 10px;
    right: 0;
    left: unset;
}

.fa-plus,
.fa-check-circle {
    color: #00ae00;
}

.fa-minus {
    color: #ef0c0c;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #676E8A;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.navbar {
    /*position: fixed;*/
    /*left: 0;*/
    /*top: 0;*/
    /*height: 100%;*/
    /*width: 78px;*/
    background: #fff;
    /*padding: 6px 14px;*/
    z-index: 99;
    transition: all 0.5s ease;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 7%);
}

.login-content {
    position: relative;
    height: 100vh;
< div class = "col-6" > z-index: 99;
}

.auth-card {
    border: 2px solid #DCDFE8;
    border-radius: 5px;
}

.blocPropo {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #DCDFE8;
    box-shadow: none;
}

.blocSouhait {
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid #DCDFE8;
    box-shadow: none;
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.card {
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #DCDFE8;
    box-shadow: none;
}

.card .card-header {
    background: var(--color-orange-clair);
    border-radius: 0;
    padding: 20px 20px;
    margin-bottom: 0;
    -ms-flex-align: center !important;
    align-items: center !important;
    border: 0;
    border-bottom: 1px solid #DCDFE8;
    font-weight: bold;
}

.card .card-header-interne {
    background: var(--color-jaune-clair);
    border-radius: 0;
    padding: 20px 20px;
    margin-bottom: 0;
    -ms-flex-align: center !important;
    align-items: center !important;
    border: 0;
    border-bottom: 1px solid #DCDFE8;
    font-weight: bold;
}

.listDocumentation > .col-12:nth-child(2n) {
    background: #DDDDDD;
}

.login-form {
    width: 350px;
    margin: 0 auto;
    padding: 30px 0;
}

.login-form form {
    color: #434343;
    border-radius: 1px;
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #f3f3f3;
    box-shadow: 0px 16px 15px 0px rgb(0 0 0 / 7%);
    padding: 30px;
}

.login-form h4 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.login-form .avatar {
    color: #fff;
    margin: 0 auto 30px;
    text-align: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 9;
    background: var(--color-orange) !important;
    padding: 15px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.login-form .avatar i {
    font-size: 62px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-control, .login-form .btn {
    min-height: 40px;
    border: 1px solid var(--color-orange);
    border-radius: 10px;
    transition: all 300ms;
}

.login-form .close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.btn-block {
    background: var(--color-orange);
    text-align: center;
    margin: auto;
    display: block;
    opacity: 1;
}

.btn-block:hover,
.btn-block:focus {
    background: var(--color-orange-clair);
}


.login-form .checkbox-inline {
    float: left;
}

.login-form input[type="checkbox"] {
    margin-top: 2px;
}

.login-form .forgot-link {
    float: right;
}

.login-form .small {
    font-size: 13px;
}


.form-error {
    color: #ba3939;
    /*background: #ffe0e0;*/
    /*border: 1px solid #a33a3a;*/
}

.form-control:disabled, .form-control[readonly] {
    background-color: transparent;
}

button.dt-button:hover:not(.disabled), div.dt-button:hover:not(.disabled), a.dt-button:hover:not(.disabled), input.dt-button:hover:not(.disabled) {
    color: #fff;
    opacity: 0.5;
    background-color: #65676E;
    border: 1px solid #65676E;
    border-radius: 10px;
}

.form-inline .form-control {
    display: inline-block;
    width: auto;
}

.form-group ul {
    padding-left: 2.5%;
}

.form-group ul li {
    color: #ff9770 !important;
}

.row_accueil {
    margin-right: 0;
}

#accordionSidebar .accordion-item {
    border: none;
}

#accordionSidebar .accordion-button:not(.collapsed) {
    padding: 0;
    margin: 0;
    background-color: #fff;
    box-shadow: none;
    color: #FF7E41;
}

#accordionSidebar .accordion-button {
    padding: 0;
    margin: 0;
    background-color: #fff;
    box-shadow: none;
}

#accordionSidebar .accordion-button:focus {
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

/*.newArticle {*/
/*    border-color: rgba(126, 239, 104, 0.8);*/
/*    box-shadow: 0 1px 1px rgb(0 0 0 / 8%) inset, 0 0 8px #32bdea;*/
/*}*/
.dataTables_filter {
    float: left !important;
    margin-bottom: 10px;
}

div.dt-buttons {
    float: right;
    margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_length {
    float: right;
}

/*.btn-password{*/
/*    background-color: red;*/
/*}*/

.link-fiche {
    color: #676E8A;
    transition: 0.8s;
}

.link-fiche:hover {
    color: #FF7E41;
}


.form-control {
    border: 1px solid #ced4da;
}

.form-control:focus {
    border: 1px solid #EC6338;
    outline: 0;
    box-shadow: 0 0 0 0;
}

.form-select:focus {
    border: 1px solid #EC6338;
    outline: 0;
    box-shadow: 0 0 0 0;
}

.inputPrice {
    position: relative;
}

.inputPrice::after {
    position: absolute;
    right: 0;
    top: 4px;
    content: "€";
    display: block;
    width: 25px;
    line-height: 31px;
    height: 31px;
    color: #9D9D9D;
}

.text_has_stock {
    font-size: 16px;
    color: #CC0000;
}

.text_has_stock i {
    font-size: 50px;
    color: #CC0000;
}


.blocContactMessage {
    max-width: 80%;
    width: auto;
    background: #c1c1c1;
    padding: 20px;
    float: right;
    border-radius: 10px;
    margin-bottom: 10px;
}

.blocContactMessage.messageInterne {
    background: #eca790;
}

.blocContactMessage.messageLocataire {
    float: left;
    background: #8ad5df;
}

.blocContactMessage .messageDate,
.blocContactMessage .messageAuthor,
.blocContactMessage .messageContent {
    margin: 0;
}

.blocContactMessage .messageDate,
.blocContactMessage .messageAuthor {
    font-weight: bold;
}

.blocDemandeContactAction {
    background: #AAAAAA;
    color: #000000;
    padding: 20px;
    border-radius: 10px;
}


.detailDemande.open {
    display: flex !important;
}

.detailPropo.open {
    display: flex !important;
}

.detailSouhait.open {
    display: flex !important;
}

.detailContact.open {
    display: flex !important;
}


.detailDemande > .row,
.detailSouhait > .row,
.detailContact > .row,
.detailPropo > .row {
    border-top: 1px solid #666666;
    margin-top: 5px;
    padding-top: 8px;
}

#accordionThemeHome .accordion-collapse {
    border: solid 1px #000000;
    border-radius: 0 0 10px 10px;
    margin-bottom: 10px
}

#accordionThemeHome .accordion-button {
    background-color: var(--color-orange-clair);
    font-size: 20px;
    font-weight: bold;
}
