html {
    min-height: 100vh;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    font-size: 1rem !important;
    word-break: break-word;
}

a {
    color: #006db1;
    text-decoration: none;
}

pre {
    font-size: 1em;
    white-space: inherit;
}

footer {
    min-height: 50px;
}

h1.background-title {
    margin-top: .7em !important;
    margin-bottom: .5em !important;
}

h1 {
    margin: .5em 0 .5em 0 !important;
    font-size: 1.7em !important;
    text-transform: uppercase;
    color: #1e5577;
    font-weight: normal;
    font-weight: 300;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-nowrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

h2 {
    font-size: 1.2em !important;
}

.form-content a {
    cursor: pointer !important;
}

.hlink {
    cursor: pointer !important;
    margin: .5em 0;
    display: inline-block;
}

.wait {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 9999999;
}

.wait .wait-message {
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 50%;
    width: 600px;
    text-align: center;
    margin-left: -300px;
    top: 40%;
}

.wait::after {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #59488b;
    opacity: 0.7;
    z-index: -1;
}

.page-container {
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
    border: #ffffff solid 1px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, .99);
}

.page-container > div.alert {
    border-radius: 0;
    margin: 0;
}

.page-container-content {
    padding: 1.5em;
}

.form-container, .bloc-container, .background-container {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    border: #ffffff solid 1px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, .99);
    border-radius: 2px;
}

.box-container {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    border: #ffffff solid 1px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, .99);
    border-radius: 5px;
    margin-bottom: 1em;
}

.box-container .box-icon {
    background: #f9fafb;
    color: #808080;
    padding: 2em;
}

.box-container .box-content {
    padding: 1.2em 2em;
}

.box-container .box-content label {
    margin: 0px;
    color: #444;
    font-size: .9em;
    font-weight: 500;
    margin-left: .5em;
}

.tab-content {
    border-radius: 0px 3px 3px 3px !important;
}

.form-container, .bloc-container {
    padding: 1.5em;
}

.bloc-w-padding {
    padding-left: 1.5em;
    padding-right: 1.5em;
    position: relative;
}

.bloc-h-padding {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    position: relative;
}

.bloc-padding {
    padding: 1.2em;
    position: relative;
}

/*coffee cup*/
.coffee_cup {
    width: 20px;
    height: 24px;
    border: 1px rgba(255, 255, 255, 1) solid;
    border-radius: 0px 0px 5px 5px;
    position: relative;
    margin: 36px auto;
}

.coffee_cup:after, .coffee_cup:before {
    position: absolute;
    content: "";
}

.coffee_cup:after {
    width: 5px;
    height: 12px;
    border: 1px #fff solid;
    border-left: none;
    border-radius: 0px 20px 20px 0px;
    left: 20px;
}

.coffee_cup:before {
    width: 1px;
    height: 6px;
    background-color: rgba(255, 255, 255, 1);
    top: -10px;
    left: 4px;
    box-shadow: 5px 0px 0px 0px rgba(255, 255, 255, 1), 5px -5px 0px 0px rgba(255, 255, 255, 1), 10px 0px 0px 0px rgba(255, 255, 255, 1);
    -webkit-animation: steam 1s linear infinite alternate;
    -moz-animation: steam 1s linear infinite alternate;
    animation: steam 1s linear infinite alternate;
}

@-webkit-keyframes steam {
    0% {
        height: 0px;
    }

    100% {
        height: 6px;
    }
}

@-moz-keyframes steam {

    0% {
        height: 0px;
    }

    100% {
        height: 6px;
    }
}

@keyframes steam {
    0% {
        height: 0px
    }

    100% {
        height: 6px;
    }
}

.body-container {
    padding: 1em;
}

@media screen and (min-width: 1100px) {
    .body-container {
        position: relative;
        left: 50%;
        margin-left: -550px;
        width: 1100px;
        padding: 1em;
    }

    .body-small {
        margin-left: -380px;
        width: 760px;
    }

    .form-login {
        position: relative;
        width: 500px;
        margin-left: -250px;
        left: 50%;
    }

}

.full-width {
    width: 100%;
}

@media screen and (min-width: 766px) {

    .visible-xs {
        display: none !important;
    }

}

@media screen and (max-width: 765px) {
    .full-width-xs {
        width: 100%;
    }

    .hidden-xs {
        display: none !important;
    }

    .body-container {
        padding: .4em;
    }

    h1.background-title {
        padding-left: .5em;
    }
}

@media screen and (min-width: 1301px) {
    .visible-md {
        display: none !important;
    }
}

@media screen and (max-width: 1300px) {
    .full-width-md {
        width: 100%;
    }

    .hidden-md {
        display: none !important;
    }
}

/* -- FIN -- Barre TOP de connexion */


/***************
 * Message BOX *
 ***************/

.error ul, ul.error {
    list-style: none;
    padding: 0;
    border: 1px solid #f44336;
    border-radius: 2px;
    margin-top: 0.1em !important;
    display: inline-block;
}

.maj_ok ul, .maj_ok li, .error li {
    list-style: none;
    padding: .1em .5em;
    font-size: .95em;
    color: #f44336;
    display: inline-block;
}

.maj_ok {
    color: #4F8A10;
}

div.error:not(:empty) {
    color: #f44336;
    font-size: .9em;
}

.with-resume {
    padding-left: 300px;
}

#resume {
    background: #3C455B;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    color: #fff;
    width: 290px;
    min-height: 100vh;
    font-size: 1em;
    padding: 1em;
}

/* popups */
.popup {
    display: none;
}

/* FIN popups */
.img_aide {
    cursor: pointer;
}

/* FIN Bulle d'aide' */

/** ui Dialog */
.ui-dialog {
    background-color: #fff;
    min-width: 500px;
    border: 1px solid #efefef;
}

.ui-widget-overlay {
    background-color: #444;
    opacity: .1;
}

.ui-dialog-titlebar-close {
    border: 0px;
    background: transparent;
    color: #ddd;
}

/** Bootstrap */
h4, .h4 {
    font-size: 1em;
}

.tr_hachure td {
    background: url('../images/fond_hachure.png') transparent repeat !important;
    color: #aaaaaa !important;
}

.tr_hachure:hover td {
    color: #777777 !important;
}

.tr_hachure .td_statut {
    color: #ce1630 !important;
}

.btn, .btn:disabled {
    font-weight: 400;
    letter-spacing: 1.5;
    border-radius: 4px;
    /*box-shadow : 0px 1px 3px rgba(0, 0, 0, 0.2);*/
    /*background-color: rgba(255, 255,255, .8);*/
    background: transparent;
    border: 1px solid #ddd;
    color: #444;
    padding: .7em 1em;
    font-size: .9em;
    font-weight: 500;
    border-radius: 3px;
}

.btn:hover {
    border-color: #444 !important;
}

.btn-sm {
    padding: .5em 1em;
    font-size: .7em;
}

.btn-danger:hover {
    background-color: #E53935;
    color: #fff !important;
    background-color: #E53935;
    background: linear-gradient(60deg, #ef5350, #e53935);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .14), 0 7px 5px -5px rgba(244, 67, 54, .4);
    border-color: transparent !important;
}

.btn-success:hover {
    background: linear-gradient(60deg, #66bb6a, #43a047);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .14), 0 7px 5px -5px rgba(76, 175, 80, .4);
    border-color: transparent !important;
}

.btn-light-blue {
    color: #1e5577;
    border-color: #1e5577;
    /* background-color: #1e5577 !important; */
    padding: .5em .7em;
    font-size: .9em !important;
    text-transform: initial;
    border-radius: 2px;
}

.btn-light-blue:hover {
    color: #fff !important;
    background-color: #258FD1 !important;
}

.btn-blank {
    border: 0;
}

.btn-blank:hover {
    background-color: #efefef !important;
}

.btn-blue {
    background-color: #25384a !important;
    border-radius: 5px;
    color: #fff !important;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .14), 0 7px 5px -5px rgba(18, 22, 23, 0.4);
    border-color: transparent !important;
}

.btn-blue:hover {
    color: #25384a !important;
    background-color: #fff !important;
}

.top-right {
    position: absolute;
    right: -5px;
    top: -5px;
}

.modal-full {
    width: 95%;
    max-width: none;
}

.modal-content {
    border-radius: 5px;
    /*border: 7px solid rgba(30, 85, 119, .4);*/
    background-color: rgba(255, 255, 255, .99);
}

.modal-header {
    border-radius: 0;
    border: 0;
    padding: .8em 1em;
    border-bottom: 1px solid #ddd;
    font-weight: 900 !important;
}

.modal-content > div.alert {
    border-radius: 0;
}

.modal-content div.alert {
    margin: 0;
}

.modal-body iframe {
    width: 100%;
    height: 70vh;
    border: 0;
}

.modal-footer {
    padding: .7em;
}

.popover ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hidden {
    display: none;
}

.color-success {
    color: #4CAF50;
}


/* IziToast */

.iziToast-capsule {
    font-size: 1em;
}

.iziToast > .iziToast-body {
    margin: 0;
    padding: 0;
    margin: .5em;
}

.iziToast.iziToast-theme-notice {
    background-color: #258FD1;
    border-color: #565c70;
    font-family: inherit;
    padding: .3em 1em;
}

.iziToast.iziToast-color-red {
    background-color: #fff;
}

.iziToast.iziToast-color-red .iziToast-message {
    color: #ff1100;
}

.iziToast.iziToast-color-red .iziToast-title {

}

.iziToast.iziToast-color-red .iziToast-icon {
    color: #ff1100 !important;
}

.iziToast.iziToast-color-green {
    background-color: #fff;
}

.iziToast.iziToast-color-green .iziToast-message {
    color: darkgreen;
}

.iziToast.iziToast-color-green .iziToast-title {

}

.iziToast.iziToast-color-green .iziToast-icon {
    color: #4CAF50 !important;
}

.iziToast.iziToast-color-blue {
    background-color: #fff;
}

.iziToast.iziToast-color-blue .iziToast-message {
    color: #111;
}

.iziToast.iziToast-color-blue .iziToast-title {

}

.iziToast.iziToast-color-blue .iziToast-icon {
    color: darkblue !important;
}

.iziToast-message {

}

.iziToast.iziToast-theme-notice .iziToast-title {
    color: inherit;
    float: none;
    display: block;
    font-size: .9em;
    font-weight: 600;
    margin-bottom: .3em;
}

.iziToast.iziToast-theme-notice .iziToast-message {
    font-weight: 600;
    font-size: 1em;
    line-height: 1em;
}

.iziToast.iziToast-theme-notice .iziToast-close {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADdcAAA3XAUIom3gAAAAHdElNRQfgCR4OIQIPSao6AAAAwElEQVRIx72VUQ6EIAwFmz2XB+AConhjzqTJ7JeGKhLYlyx/BGdoBVpjIpMJNjgIZDKTkQHYmYfwmR2AfAqGFBcO2QjXZCd24bEggvd1KBx+xlwoDpYmvnBUUy68DYXD77ESr8WDtYqvxRex7a8oHP4Wo1Mkt5I68Mc+qYqv1h5OsZmZsQ3gj/02h6cO/KEYx29hu3R+VTTwz6D3TymIP1E8RvEiiVdZfEzicxYLiljSxKIqlnW5seitTW6uYnv/Aqh4whX3mEUrAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA5LTMwVDE0OjMzOjAyKzAyOjAwl6RMVgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wOS0zMFQxNDozMzowMiswMjowMOb59OoAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC") no-repeat 50% 50%;
    background-size: 8px;
}

.iziToast.iziToast-theme-notice .iziToast-icon {
    color: #444;
    top: 1em;
}

.iziToast.iziToast-theme-notice .iziToast-texts {
    margin: 0.5em;
    border-left: 1px solid #ddd;
    padding: 0em 0em 0em 1.5em;
}

.iziToast-body {
    max-width: 350px;
    min-width: 200px;
}

.iziToast.iziToast-theme-notice .iziToast-buttons > a,
.iziToast.iziToast-theme-notice .iziToast-buttons > button,
.iziToast.iziToast-theme-notice .iziToast-buttons > input {
    color: #444;
    background: rgba(255, 255, 255, 0.1);
}

.iziToast.iziToast-theme-notice .iziToast-buttons > a:hover,
.iziToast.iziToast-theme-notice .iziToast-buttons > button:hover,
.iziToast.iziToast-theme-notice .iziToast-buttons > input:hover {
    background: rgba(255, 255, 255, 0.2);
}

.iziToast.iziToast-theme-notice .iziToast-buttons > a:focus,
.iziToast.iziToast-theme-notice .iziToast-buttons > button:focus,
.iziToast.iziToast-theme-notice .iziToast-buttons > input:focus {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* Spinner ring */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.is-loading .is-loading-target,
.in-progress .in-progress-target,
button.is-loading,
.btn.is-loading,
.is-loading button[type="submit"],
.is-loading button[data-role="submit"],
button.in-progress,
.btn.in-progress,
.in-progress button[type="submit"],
.is-loading-animate {
    position: relative;
    z-index: 1;
    pointer-events: none;
    min-width: 25px;
    min-height: 25px;
}

.is-loading .is-loading-target::before,
button.is-loading::before,
.btn.is-loading::before,
.is-loading button[data-role="submit"]::before,
.is-loading button[type="submit"]::before {
    content: '';
    display: block;
    position: absolute;
    background-color: #fff;
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    z-index: 1;
    opacity: .9;
}

.is-loading .is-loading-target::after,
button.is-loading::after,
.btn.is-loading::after,
.is-loading button[data-role="submit"]::after,
.is-loading button[type="submit"]::after,
.is-loading-animate::after {
    content: '';
    background-image: url('../images/is-loading.svg');
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: center;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
}

.is-loading-transparent::after,
.is-loading-animate::after {
    background-color: transparent !important;
}

@keyframes borderSlide {

    0% {
        left: 0px;
    }

    50% {
        left: 90%;
    }

    100% {
        left: 0px;
    }
}

.in-progress .in-progress-target::before,
button.in-progress::before,
.in-progress button[data-role="submit"]::before,
.in-progress button[type="submit"]::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 10%;
    left: 0px;
    height: 4px;
    bottom: 0px;
    background-color: #258FD1;
    animation: borderSlide 2s linear infinite;
}

/**
 * Extracted from: SweetAlert
 * Modified by: Istiak Tridip
 */
.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, 0.5);
}

.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: inherit;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}


.tooltipster-sidetip .tooltipster-box {
    background: #444;
    font-size: .9em;
    border: 1px solid #444;
    border-radius: 2px;
}

.tooltipster-arrow-border {
    border: 0px !important;

}

.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #444 !important;
}

.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #444 !important;
}

.text-sublime {
    color: #4ab2f2;
}

.text-smaller {
    font-size: .9em !important;
    line-height: 1.1em !important;
}

.text-bigger {
    font-size: 1.1em !important;
    line-height: 1.2em !important;
}

b, strong, .text-strongify {
    font-weight: 500;
}

.text-strong {
    font-weight: bold;
}

.text-stronger {
    font-weight: bolder;
}

.text-strongest {
    font-weight: 900;
}

.text-highlight {
    color: #1e5476;
    font-weight: 500;
}

.datepicker {
    font-size: .9em;
}

.timeline {
    list-style: none;
    padding: 0em;
    margin: 0em;
    position: relative;
    font-size: .91em;
}

.timeline::after {
    position: absolute;
    left: calc(50% - 1px);
    width: 2px;
    top: 1em;
    bottom: 1em;
    display: block;
    content: '';
    background: #ddd;
}

.timeline li {
    padding: .5em 1em;
    position: relative;
}

.timeline li .bg-info {
    background-color: #1B68AF;
}

.timeline li:before {
    z-index: 1;
}

.timeline li {
    width: 50%;
    text-align: right;
}

.timeline li:before {
    display: block;
    position: absolute;
    top: .8em;
    right: -5px;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 15px;
    background: #ddd;
}

.timeline li.time-item-right {
    width: 50%;
    position: relative;
    left: 50%;
    text-align: left;
}

.timeline li.time-item-right:before {
    position: absolute;
    left: -5px;
    top: .8em;
    display: block;
    content: '';
    background: #ddd;
    width: 10px;
    height: 10px;
    border-radius: 15px;
    background: #ddd;
}

.timeline li.time-success-step:before {
    background: #8BC34A;
}

.timeline li.time-fail-step:before {
    background: #f44336;
    font-weight: bold;
}

.timeline li.time-current-step {
    font-weight: bold;
}

.timeline li.time-current-step:before {
    background: #fff;
    border: 2px solid #f44336;
}

.time-step-description {
    padding: .1em;
    font-style: italic;
    display: block;
}

.alert {
    font-size: .9em;
    padding: .8em;
    border-radius: 2px;
    border: 0;
    margin: .1em;
}

.alert-light {
    color: #57616B;
    background-color: #fff;
    border-left: 3px solid #FDD835;
}

.alert-big {
    font-size: 1em;
    margin: 1em 0;
}

.alert-big .row .col:first-child {
    padding-right: 0;
}

.alert-big p {
    padding: .2em 0;
}

.alert-danger button,
.alert-warning button,
.alert-success button {
    color: #fff;
}

.alert-danger {
    margin: .7em 0em !important;
    background: #FFECEC;
    color: #57616B;
    border-radius: 0px !important;
    padding: 1em 1.5em;
    border: 0;
    border-left: 3px solid #C02526 !important;
    font-weight: 500;
}

.alert-danger .fas {
    color: #C02526;
    font-size: 1.3em;
    vertical-align: middle;
    margin-right: 4px;
}

.alert-warning {
    margin: .7em 0em !important;
    background: #FEF6E7;
    color: #57616B;
    border-radius: 0px !important;
    padding: 1em 1.5em;
    border: 0;
    border-left: 3px solid #F7A328 !important;
    font-weight: 500;
}

.alert-warning .fas {
    color: #F7A328;
    font-size: 1.3em;
    vertical-align: middle;
    margin-right: 4px;
}

.alert-success {
    margin: .7em 0em !important;
    background: #EDF7E9;
    color: #57616B;
    border-radius: 0px;
    padding: 1em 1.5em;
    border: 0;
    border-left: 3px solid #30800C;
    font-weight: 500;
}

.alert-success .far {
    color: #30800C;
    font-size: 1.5em;
    vertical-align: middle;
    margin-right: 4px;
}

.alert-success a {
    color: #4caf50;
}

.alert-info {
    margin: .7em 0em !important;
    background: #F3F7FB;
    color: #57616B;
    border-radius: 0px;
    padding: 1em 1.5em;
    border: 0;
    border-left: 3px solid #1B68AF;
    font-weight: 500;
}

.alert-form {
    background: inherit;
    padding: 0.7em;
    font-weight: 400;
}

.badge {
    font-weight: 300;
}

.bg-info {
    background-color: #1B68AF !important
}

.bg-warning {
    color: #111;
}

.bg-secondary {
    background-color: #57616B !important;
}

.text-info {
    color: #1B68AF;
}

.alert-info a {
    color: #005796 !important;
}

.alert-info .fas {
    color: #005796;
    font-size: 1.5em;
    vertical-align: middle;
    margin-right: 4px;
}


.pastille {
    vertical-align: middle;
    margin-bottom: 3px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    display: inline-block;
}

a[onclick], .clickable {
    cursor: pointer;
}

.unclickable {
    pointer-events: none;
}

.fa, .fas, .far {

}

.bookmark {
    background: #fff;
    padding: 0.3em 0.9em;
    border-radius: 5px 5px 0 0;
    display: inline-block;
    box-shadow: 1px 0 2px rgba(0, 0, 0, .1);
    position: relative;
    bottom: 0;
    z-index: 1;
    margin-left: 0;
    margin-right: 0.2em;
}

.bookmark.active {
    background: #1e5476;
    color: #fff;
}

.bookmark.small {
    padding: .2em .5em;
}

.text-normal {
    font-size: .8em;
    font-weight: 400;
    text-transform: initial;
}

.text-orange {
    color: #ff9800;
}

.exception-title {
    font-size: 9em !important;
    text-align: center;
    font-weight: 500;
    color: #9caebb;
    margin-top: .5em !important;
    margin-bottom: 0em !important;
}

.exception-descr {
    margin-top: 1em;
    text-align: center;
    font-weight: 900;
    color: #959ea5;
    font-size: 1.3em;
    margin-bottom: 5em;
}

.blue {
    color: #00acc1 !important;
}

.green {
    color: #43a047 !important;
}

.orange {
    color: #fb8c00 !important;
}

.red {
    color: #e53935 !important;
}

.purple {
    color: #8e24aa !important;
}

.row.areas {

}

.row.areas > div {
    background-color: #fefefe;
    border-bottom: 1px solid #eee;
    display: grid;
}

.row.areas div.alert, .row.areas div.alert-light {
    background-color: transparent !important;
    border: 0px !important;
    border-left: 1px solid #ddd !important;
    margin: 1em;
    padding: 0 1em;
}

.row.areas > div:first-child div.alert {
    border-left: 0px !important;
}

.bg-gestionnaire {
    background-size: cover;
    background-position: center;
}

.bg-gestionnaire .back-container {
    padding-top: 20vh;
}

.bg-locataire::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-locataire-hd::after {
    content: '';
    position: fixed;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: auto 101%;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

.logo-bailleur {
    height: 25px;
    border-radius: 3px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
    max-width: 50px;
}

.alert-secondary {
    background: rgba(0, 0, 0, .5);
    border: 0px solid #000;
    border-radius: 5px;
    margin-bottom: .5em;
    font-size: .85em !important;
    padding: .7em;
    color: #fff;
    font-weight: 100;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .1);
}

.pre-inscrit-message {
    padding: 1em 2em;
    border-radius: 5px;
    margin: 1em 0;
    color: #fff;
    font-weight: 300;
    background: #00000055;
    margin-bottom: 2em;
    box-shadow: 0 0 6px rgb(0 0 0 / 10%);
}

.pre-inscrit-message a {
    color: #df9629;
    font-weight: 500;
}

.pre-launched-message {
    padding: 1em 2em;
    border-radius: 5px;
    margin: 1em 0;
    color: #fff;
    font-weight: 300;
    background: #00000055;
    margin-bottom: 2em;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 10%);
}

.liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden-page-load {
    visibility: hidden;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
}

.tooltipster-base {
    max-width: 350px;
    height: auto;
}

.accordion-button {
    font-size: 1em;
    padding: 1em 1em;
}

.sticky-top {
    top: 70px;
}

#menu_top_connexion {
    padding-right: 20px;
}

*::-webkit-scrollbar-track {

}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(43, 42, 42, .33);
    border-radius: 10px;
    border: 1px solid #ddd;
}

*::-webkit-resizer, *::-webkit-scrollbar-corner {
    background: transparent;
}

[data-bs-toggle="dropdown"] .fa-angle-up {
    display: none;
}

[data-bs-toggle="dropdown"].show .fa-angle-down {
    display: none;
}

[data-bs-toggle="dropdown"].show .fa-angle-up {
    display: inherit;
}

.user-select-none {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.cookie-bar {
    max-width: 400px;
}

.badge-gestionnaire {
    font-size: .9em;
    background: #fefefe;
    color: #57616B;
    padding: .3em .1em;
    display: block;
    line-height: 1.1em;
}

.badge-gestionnaire .gestionnaire-nom {
    color: #1D1B20;
    font-size: 1em;
}

.badge-gestionnaire .fa-user {
    font-size: 1.2em;
    background: #F2F2F2;
    border-radius: 100%;
    padding: .5em .6em;
}

.data-area {
    background: #F2F2F2;
    color: #57616B;
    font-weight: 400;
    padding: .7em;
    border-radius: 3px;
    height: 100%;
}

.data-area strong {
    color: #1D1B20;
    font-weight: 600;
}

.data-area .badge {
    font-size: .9em;
    font-weight: 300;
    letter-spacing: 1px;
}

ul.custom-style {
    list-style: none;
}

ul.custom-style > li {
    padding-left: 5px;
    position: relative;
}

ul.custom-style > li span.icon {
    position: absolute;
    left: -20px;
    top: 3px;
}

.bg-how ul.custom-style > li span.icon {
    color: #fff;
}

.info-tip {
    position: absolute;
    font-size: .6em;
    right: -3px;
    top: -2px;
    color: #F44336;
}

#bel_bo #header .dropdown-menu {
    max-width: 400px;
    min-width: 200px;
}

.scroll-tip {
    display: none;
}

.has-scroll {
    position: relative;
}

.has-scroll .scroll-tip {
    position: sticky;
    bottom: 0;
    right: 0;
    float: right;
    display: block;
}

.scroll-end .scroll-tip {
    display: none !important;
}

.citation {
    font-style: italic;
    line-height: 1.2em;
    display: flex;
    font-size: 0.9em;
    color: #444;
    max-height: 100px;
    overflow: auto;
}

.citation::before {
    content: '«';
    display: inline-block;
    vertical-align: middle;
    margin-right: .2em;
}

.citation::after {
    content: '»';
    display: inline-block;
    vertical-align: middle;
    margin-left: .2em;
}

.col-r-background {

}

*::after {
    pointer-events: none;
}