@font-face {
    font-family: "Avenir";
    src: url("../../fonts/app/avenir-roman.woff") format("woff");
    font-weight: 700;
}

@font-face {
    font-family: "Avenir";
    src: url("../../fonts/app/avenir-light.woff") format("woff");
}

@font-face {
    font-family: "Avenir Book";
    src: url("../../fonts/app/avenir-book.woff") format("woff");
}

@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    background: #EEE;
    color: #726d67;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: #726d67;
}

@media screen and (max-width: 769px) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }
}

.margin-top-3 {
    margin-top: 3px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-25 {
    margin-top: 25px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-top-35 {
    margin-top: 35px !important;
}

.margin-top-40 {
    margin-top: 40px !important;
}

.margin-top-45 {
    margin-top: 45px !important;
}

.margin-top-50 {
    margin-top: 50px !important;
}

.margin-top-100 {
    margin-top: 100px !important;
}

.header {
    background: #006699;
    height: 80px;
    box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.10) inset;
    position: sticky;
    top: 0;
    z-index: 10000;
}

@media screen and (max-width: 995px) {
    .header {
        height: 70px;
        min-width: 362px;
    }
}

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

.header .logo img {
    /*height: 35px;*/
    /*margin-top: 18px;*/
    /*margin-bottom: 22px;*/
    height: 40px;
    margin-top: 10px;
    margin-bottom: 30px;
}

@media screen and (max-width: 995px) {
    .header .logo img {
        height: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 995px) {
    .btn-block-responsive {
        display: block;
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 5px !important;
    }

    .btn-block-responsive + .btn-block-responsive {
        margin-left: 0px;
    }

    .menu-responsive {
        padding-left: 0px;
        padding-right: 0px;
    }
}

hr {
    border-bottom: solid 1px #ddd;
}

.header .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 995px) {
    .header .menu {
        display: none;
    }
}

.header .menu ul.primary {
    display: flex;
    justify-content: end;
    width: 80%;
    padding: 0;
    list-style: none;
    margin: 15px 0;
}

.header .menu ul.primary.disconnected {
    /*justify-content: space-between;*/
    justify-content: normal;
}

@media screen and (min-width: 1300px) {
    .header .menu ul.primary.disconnected {
        width: 75%;
    }
}

.header .menu ul.primary > li {
    display: inline-block;
    margin-left: 55px;
}

.header .menu ul.primary li a {
    position: relative;
    color: #FFF;
    font-size: 0.7rem;
    line-height: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.header .menu ul.primary li a.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 100%;
    height: 3px;
    background: #CCD844;
}

.header .menu ul.primary li a:hover {
    background: transparent;
    color: #fcc019;
    opacity: 1;
}

/*

.header .menu ul.primary li a.active:before {
    content: " ";
    position: absolute;
    left: 15px;
    background: #ffffff;
    width: 30px;
    height: 2px;
    bottom: 3px;
}
*/
.header .user-connect button, .header .user-connect a {
    font-size: 0.7rem;
    line-height: 0.7rem;
    color: #CCD844;
    font-weight: bold;
    text-transform: uppercase;
    background: none;
    border: none;
}

.header .user-connect img.icon {
    height: 30px;
    /*margin-right: 10px;*/
}

.header .user-connect .dropdown-menu {
    border: none;
    left: inherit;
    right: 50%;
    transform: translateX(50%);
}

.header .user-connect .dropdown-menu > li > a {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #000 !important;
    padding: 5px 15px !important;
    text-align: right;
}

.header .user-connect .dropdown-menu > li > a:hover {
    display: block !important;
    text-align: right !important;
    background-color: transparent !important;
}

.header #nav-burger-animated {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 50px;
    /*float: right;*/
    /*margin-top: 22px;*/
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 995px) {
    .header #nav-burger-animated {
        display: block;
        z-index: 1000;
    }

    .col-title .tabs a, .col-title .tabs:not(.current) {
        display: none;
        /*font-size: 0.85em!important;*/
    }
}

.header #nav-burger-animated span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFF;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.header #nav-burger-animated span:nth-child(1) {
    top: 2px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.header #nav-burger-animated span:nth-child(2) {
    top: 12px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.header #nav-burger-animated span:nth-child(3) {
    top: 22px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.header #nav-burger-animated.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 2px;
    left: 4px;
}

.header #nav-burger-animated.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.header #nav-burger-animated.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 23px;
    left: 4px;
}

.header .col-user {
    color: #FFF;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    margin-right: 50px;
}

@media screen and (max-width: 995px) {
    .header .col-user {
        display: none;
        /*width: 100%;*/
    }
}

.header .col-user .btn {
    margin-top: 10px;
}

.nav-responsive {
    left: -100%;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.nav-responsive.show {
    left: 0%;
}

.nav-responsive .logo {
    width: 85%;
    display: block;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 15px;
}

.nav-responsive .col-user {
    color: #333;
    background: #EEE;
    display: inline-block;
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

.nav-responsive .col-user .btn {
    margin-top: 10px;
}

.nav-responsive ul.nav {
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-bottom: 15px;
}

.nav-responsive ul.nav li {
    display: block;
    border-bottom: solid 1px #EEE;
}

.nav-responsive ul.nav li a {
    color: #006699;
    font-size: 0.7rem;
    line-height: 1.45rem;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.nav-responsive ul.nav li a:hover {
    background: transparent;
    color: #fcc019;
    opacity: 1;
}

.col-page {
    background: #FFF;
    /*    margin-top: -30px;*/
    border-radius: 2px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    padding-bottom: 30px;
}

.col-page.incident {
    padding-top: 15px;
}

.col-page.full-height {
    min-height: calc(100vh - 140px);
}

.height-100 {
    height: 100%;
}

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

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

.heigth-18 {
    height: 18px;
    min-height: 18px;
}

.height-18 {
    height: 1.1rem;
    min-height: 1.1rem;
}

.heigth-18 {
    height: 18px;
    min-height: 18px;
}

.heigth-20 {
    height: 24px;
    min-height: 24px;
}


/*
@media screen and (max-width: 995px) {
    .col-page {
        margin-top: 0px;
    }
}
*/

.col-copyright {
    font-size: 0.7rem;
    line-height: 0.7rem;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #555;
    text-align: center;
}

.col-title {
    /*text-transform: uppercase;*/
    font-weight: bold;
    font-size: 1rem;
    line-height: 1rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: solid 1px #EEE;
    position: relative;
    height: 42px;
}

.col-title .tabs {
    height: 40px;
    padding: 10px 20px 0px 10px;
}

.col-title:before {
    content: ' ';
    position: absolute;
    top: 40px;
    left: 0px;
    height: 4px;
    width: 63px;
    background: #726d67;
}

@media screen and (min-width: 996px) {
    .col-title.presentation:before {
        content: ' ';
        left: 83px;
        width: 104px;
        background: #726d67;
    }

    .col-title.inscription:before {
        content: ' ';
        left: 206px;
        width: 180px;
        background: #726d67;
    }

    .col-title.qui-sommes-nous:before {
        content: ' ';
        left: 405px;
        width: 150px;
        background: #726d67;
    }

    .col-title.offre-lancement:before {
        content: ' ';
        left: 573px;
        width: 170px;
        background: #726d67;
    }
}

.col-page .home {
}

.col-page .home img {
    margin-bottom: -30px;
}

.btn {
    font-size: 0.7rem;
    line-height: 0.7rem;
    font-weight: bold;
    border-radius: 90px;
}

.btn-success-filled {
    background: #00a896;
    color: #FFFFFF;
    border: 1px solid #00a896;
}

.btn-danger-filled {
    color: #FFFFFF;
    background: #eb5e55;
    border: 1px solid #eb5e55;
}

.btn, .btn-squared {
    border-radius: 5px;
}

.btn.btn-not-rounded {
    border-radius: 0;
}

@media screen and (max-width: 769px) {
    .btn {
        padding: 10px;
    }
}

.btn-no-radius {
    border-radius: 0px !important;
}

.btn-sm-radius {
    border-radius: 10px !important;
}

.btn-with-title {
    position: absolute;
    top: -84px;
    right: 30px;
}

.btn-tooltip:before {
    /*content: 'ⓘ';*/
    content: "\e085";
    font-family: 'Glyphicons Halflings';
    font-size: 15px;
    /*color: #006699;*/
    color: #b2b2b2;
    cursor: help;
    text-transform: none;
    font-weight: normal;
}
.btn-tooltip.dark:before {
    color: #726d67;
}

.alert-container-full-width {
    margin-bottom: 20px;
}

.alert-container-full-width .alert:not(:last-child) {
    margin-bottom: 15px;
}

.alert.custom-alert-info .ico-info {
    width: 30px;
}

.alert.custom-alert-info .ico-info:after {
    content: 'ⓘ';
    font-size: 16px;
    margin-right: 20px;
    color: #006699;
    text-transform: none;
    font-weight: normal;
}
/*.custom-alert-info-temp {*/
/*}*/

.tooltip {
    font-size: 0.8rem !important;
    z-index: 100000 !important;
    font-weight: bold;
}

.tooltip-inner {
    border: 1px solid #cccccc;
    color: #696969;
    /*border: 0px;*/
    opacity: 1;
    background: #e9eef2 !important;
    padding: 10px;
    line-height: 20px;
    max-width: 400px !important;
}

.text-grey {
    color: #7f7f7f !important;
}

.btn-grey {
    background: #eee;
    padding: 4px 10px;
}

.btn-xxs {
    font-size: 0.7rem;
    line-height: 0.7rem;
}

.padding {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
}

.padding-xs {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
}

.row-xs {
    margin-left: -5px;
    margin-right: -5px;
}

.label-required {
    width: 4px;
    height: 4px;
    color: red;
    display: inline-block;
    border-radius: 6px;
    position: relative;
    top: -2px;
    margin-left: 4px;
}

.label-required-legend {
    color: red;
    font-weight: bold;
    font-size: 0.7rem;
}

hr.sm {
    margin-top: 10px;
    margin-bottom: 10px;
}

.datetimepicker {
    padding: 4px;
    margin-top: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 4px;
    border: 1px solid #c4c4c4;
}

.datetimepicker thead {
    font-size: 0.7rem;
    line-height: 1.1rem;
    text-transform: uppercase;
}

.datetimepicker table tr td span {
    display: block;
    font-size: 0.7rem;
    height: 20px;
    line-height: 1.2rem;
    cursor: pointer;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active {
    background: #fcc019 !important;
    text-shadow: inherit;
    border-radius: 2px;
}

.datetimepicker td,
.datetimepicker th {
    font-size: 0.7rem;
    line-height: 1.1rem;
}

.datepicker {
    z-index: 1200 !important;
}

.normalcase {
    text-transform: none !important;
}

table .order-asc:after {
    font-family: Font Awesome\ 5 Free;
    content: " \f0de";
    color: #006699;
}

table .order-desc:after {
    font-family: Font Awesome\ 5 Free;
    content: " \f0dd";
    color: #006699;
}

table .order-none:after {
    font-family: Font Awesome\ 5 Free;
    content: " \f0dc";
    color: #006699;
}

.no-border {
    border: none !important;
}

#moteur-recherche-es {
    position: relative;
    /*margin-top: 30px;*/
    /*margin-bottom: 15px;*/
}

.icon-recherche-es {
    position: absolute;
    left: 8px;
    top: 0;
    margin-top: 5px;
    font-size: 1.1rem;
}

.input-recherche-es {
    position: relative;
}

.search-preview {
    background-color: #FFFFFF;
    position: absolute;
    z-index: 10;
}

.cursor-pointer {
    cursor: pointer;
}

.beta {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
}

.notepad-container {
    transition: all 360ms ease-in-out;
    background: url("../../img/app/notepad.png") repeat-y;
    position: absolute;
    /*top: calc(50% - 150px);*/
    /*right:0;*/
    width: 250px;
    min-height: 300px;
    padding: 5px 10px;
    z-index: 1000;
    bottom: 42px;
    right: 330px;
}

.notepad-container .title {
    transition: all 360ms ease-in-out;
    font-size: 1.3rem;
    text-align: left;
    line-height: 1.45rem;
    right: 0px;
    top: 0px;
    width: 320px;
    height: 25px;
    background-color: transparent;
    padding-top: 0px;
}

/*.notepad-container.closed .title {*/
/*transition: all 360ms ease-in-out;*/
/*!*transform: rotate(-90deg);*!*/
/*right: 50px;*/
/*top: 20px;*/
/*width: 150px;*/
/*height: 150px;*/
/*cursor: pointer;*/
/*background-color: #FCFCD4;*/
/*padding-top: 5px;*/
/*}*/

.notepad-container .text-notepad {
    padding-left: 5px;
    font-size: 0.7rem;
}

.notepad-container .close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.notepad-container .notepad {
    width: 100%;
    min-height: 220px;
    max-height: calc(50vh);
    background: none;
    border: none;
    font-size: 1rem;
    line-height: 1.45rem;
    padding-left: 5px;
    overflow: hidden;
    resize: none;
    margin-top: 5px;
}

.notepad-container #send-remarque {
    margin-top: 15px;
}

.notepad-container .notepad-icon-container {
    transition: all 360ms ease-in-out;
    cursor: pointer;
    position: absolute;
    /*left: -22px;*/
    /*top: -22px;*/
    left: -23px;
    top: 0;
    background-color: #fff;
    padding: 5px !important;
    z-index: 100 !important;
}

.notepad-container .notepad-icon-container i {
    transition: all 360ms ease-in-out;

    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}

.notepad-container .notepad-icon-container.notepad-close-container i {
    transition: all 360ms ease-in-out;

    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
}

.notepad-container.closed .notepad-icon-container {
    transition: all 360ms ease-in-out;
    left: -70px;
    background-color: #fff;
    padding: 15px !important;
    top: -17px;

    /*transform: rotate(180deg) ;*/
    /*-webkit-transform: rotate(180deg) ;*/
    /*-moz-transform: rotate(180deg) ;*/
    /*-o-transform: rotate(180deg) ;*/
    /*-ms-transform: rotate(180deg) ;*/
}

.notepad-container.closed {
    transition: all 360ms ease-in-out;
    /*right: -280px;*/
}

.notepad-container .fa {
    font-size: 1rem !important;
}

#terms-of-service {
    overflow: auto;
    max-height: 400px;
    /*height: 200px;*/
    border: 1px solid #e3e3e3;
    margin-bottom: 15px;
    padding: 5px;
    /*font-size: 12px;*/
}

.rules-password .text-rules {
    font-size: 0.9rem;
    padding: 10px;
}

.nav .dropdown.open > a, .nav dropdown.open > a:hover {
    background-color: transparent !important;
    border-color: #EEE !important;
}

.dropdown-menu {
    min-width: 80px !important;
}

.dropdown-menu > li > a {
    color: #006699 !important;
    padding: 5px 15px !important;
}

.dropdown-menu > li {
    display: block !important;
    text-align: left !important;
}

.dropdown-menu > li > a:hover {
    display: block !important;
    text-align: left !important;
    background-color: #006699 !important;
    color: #ffffff !important;
}

.dropdown .caret {
    color: #ffffff !important;
}

/* *** FILTER *** */
/*.filter-container {*/
.filter-container-flex {
    display: flex;
    align-items: center;
}

.filter-container select {
    height: 21px;
}

.filter-container button, .filter-container a.btn {
    padding: 4px 6px 5px 5px;
    /*border-radius: 0px;*/
}

i.icon-filter {
    cursor: pointer;
    /*position: relative;*/
    /*left: 20px;*/
    /*margin-right: -15px;*/
}

.has-filter th {
    vertical-align: top !important;
}

/* *** back to top ***/
.backtotop.is-active {
    bottom: 0;
}

.backtotop {
    position: fixed;
    z-index: 100;
    bottom: -58px;
    right: 50px;
    width: 58px;
    height: 54px;
    text-align: center;
    cursor: pointer;
    background-color: #ddd;
    transition: bottom .25s linear;
}

/* *** STATIC PAGE *** */
.mce-content-body, .mce-content-body table, .mce-content-body table thead tr th,
.static-page, .static-page table, .static-page table thead tr th {
    font-size: 1.1rem;
    line-height: 1.4rem;

}

.mce-container, .mce-container h1, .mce-container h2, .mce-container h3, .mce-container h4,
.mce-content-body, .mce-content-body h1, .mce-content-body h2, .mce-content-body h3, .mce-content-body h4,
.static-page, .static-page h1, .static-page h2, .static-page h3, .static-page h4 {
    color: #000000;
}

.mce-content-body table tbody tr td:first-child,
.static-page table tbody tr td:first-child {
    font-weight: bold;
    text-align: center;
}

.mce-content-body span.mandatory:after,
.static-page span.mandatory:after {
    content: "*";
    color: red;
    font-size: 1.2rem;
    position: absolute;
}

.mce-content-body .nav-tabs li.active > a,
.static-page .nav-tabs li.active > a {
    color: #000000;
}

.mce-content-body a:not(.btn):not([data-toggle=collapse]),
.static-page a:not(.btn):not([data-toggle=collapse]) {
    color: #006699;
    font-weight: bold;
}

/* *** STATIC PAGE AIDE *** */
/*.static-page h2:before {*/
/*content: ' ';*/
/*position: absolute;*/
/*bottom: -2px;*/
/*left: 0px;*/
/*height: 4px;*/
/*width: 350px;*/
/*background: #006699;*/
/*}*/
.mce-container h2,
.mce-content-body h2,
.static-page h2 {
    font-weight: bold;
}

.mce-container h3,
.mce-content-body h3,
.static-page h3 {
    font-weight: bold;
}

.mce-container h4,
.mce-content-body h4,
.static-page h4 {
    color: #006699;
    font-weight: bold;
}

.mce-container h5,
.mce-content-body h5,
.static-page h5 {
    text-decoration: underline;
}

.mce-content-body .table-droits th,
.static-page .table-droits th {
    text-transform: inherit;
}

.mce-content-body .table-droits td:first-child,
.static-page .table-droits td:first-child {
    text-align: left;
    font-weight: normal;
}

/* *** My accordion *** */
.my-accordion .my-accordion-content {
    padding: 10px;
    /*border: 1px solid #e4e4e4;*/
    border-top: 0;
    color: #000;
    display: none;
    /*height:0px;*/
}

.mce-content-body .my-accordion .my-accordion-content {
    display: block !important;
}

.my-accordion .my-accordion-content.active {
    display: block;
    /*height: 100%;*/
}

/*.my-accordion .my-accordion-content:not(.active) ~ .my-accordion-title:before {*/
/*content: ">";*/
/*}*/
/*.my-accordion .my-accordion-title:not(.active):after {*/
/*    position: absolute;*/
/*    right: 100px;*/
/*    margin-top: -20px;*/
/*    color: #006699;*/
/*    font-family: 'Glyphicons Halflings';*/
/*    content: "\e080";*/
/*}*/
.my-accordion .my-accordion-title * {
    /*color: #006699;*/
    font-weight: 300 !important;
}

/*.my-accordion .my-accordion-title.active:after {*/
/*    position: absolute;*/
/*    right: 100px;*/
/*    margin-top: -20px;*/
/*    color: #006699;*/
/*    font-family: 'Glyphicons Halflings';*/
/*    content: "\e114";*/
/*}*/

.my-accordion .my-accordion-title {
    /*background-color: #e4e4e4;*/
    /*height: 50px;*/
    width: 100%;
    padding: 10px 0;
    /*margin: 15px 0 0;*/
    margin: 0;
    cursor: pointer;

}

.my-accordion .my-accordion-title h4 {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

.input-padding {
    padding: 5px 2px !important;
}

.no-wrap {
    white-space: nowrap !important;
}


.dropdown-item {
    display: block;
    width: 100%;
    padding: .572rem 1.072rem;
    clear: both;
    font-weight: 300;
    color: #76838f;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
}

.dropdown-item:hover {
    background-color: #cecece;
    color: #000000;
}

@media screen and (max-width: 769px) {
    .table-responsive-fps {
        overflow-y: auto !important;
    }
}

.fps-tab {
    padding-bottom: 65px !important;
}

.badge-infraction {
    height: 20px;
    width: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
    padding-top: 5px;
}

.notif-infraction {
    position: absolute;
    height: 20px;
    width: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
    margin: 0px;
    padding: 3px 0px 0px 0px;
    font-size: 0.7rem;
    top: -10px;
    right: -22px;
}

#user_roles input, #user_roles label {
    margin-bottom: 5px;
}

.width-full {
    width: 100% !important;
}

.bold {
    font-weight: bold;
}

#form-modal-response-infraction.modal {
    overflow: hidden;
}

#form-modal-response-infraction .modal-dialog {
    margin-right: calc(50vw + 300px);
    margin-left: calc(50vw - 300px);
}

#user_roles input, #user_roles label,
#user_entites input, #user_entites label {

    margin-bottom: 5px;

}

.col-title-entite {
    font-size: 1.2rem !important;
}

/** Présentation */
.number-container {
    margin-bottom: 20px;
    height: 40px;
    /*line-height: 40px;*/

    display: inline-flex;
    justify-content: flex-start;
    align-items: stretch;
}

.number-container .number {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    /*height: 40px;*/
    /*line-height: normal;*/
    background-color: #006699;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    border: solid 2px #006699;
    /*display: inline-block;*/
    position: relative;
    font-size: 1.2rem;
    font-weight: bold;
    padding-top: 8px;
    z-index: 20;
    /*vertical-align: middle;*/
}

.number-container .text {
    width: 365px;
    min-width: 365px;
    max-width: 365px;
    /*height: 40px;*/
    /*line-height: normal;*/
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: solid 2px #EEE;
    border-left: none;
    display: inline-block;
    position: relative;
    font-size: 1rem;
    padding-left: 20px;
    margin-left: -10px;
    padding-top: 8px;
    z-index: 10;
    /*vertical-align: middle;*/
}

.number-container .description, .number-description {
    /*height: 40px;*/
    display: inline-block;
    position: relative;
    font-size: 1rem;
    font-weight: bold;
    margin-left: 20px;
    padding-top: 8px;
}

.col-responsive {
    display: none;
}

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

}

@media only screen and (max-width: 995px) {
    .col-responsive {
        display: block;
    }

    .number-container .description {
        display: none;
    }

    .number-container {
        margin-bottom: 5px;
    }

    .col-responsive.number-description {
        margin-bottom: 20px;
    }

    .number-container .text {
        width: 290px;
    }
}

.unmask-button-container {
    position: absolute;
    right: 5px;
    top: 25px;
}

.margin-5 {
    margin: 5px !important;
}

.margin-10 {
    margin: 10px !important;
}

.margin-15 {
    margin: 15px !important;
}

.margin-20 {
    margin: 20px !important;
}

.margin-right-5 {
    margin-right: 5px;
}

.margin-right-10 {
    margin-right: 10px;
}

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

.margin-right-20 {
    margin-right: 20px;
}

.margin-right-25 {
    margin-right: 25px;
}

.margin-right-30 {
    margin-right: 30px;
}

.margin-right-35 {
    margin-right: 35px;
}

.margin-right-40 {
    margin-right: 40px;
}

.margin-right-45 {
    margin-right: 45px;
}

.margin-right-50 {
    margin-right: 50px;
}

.margin-right-55 {
    margin-right: 55px;
}

.margin-right-60 {
    margin-right: 60px;
}

.margin-left-5 {
    margin-left: 5px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

.margin-left-15 {
    margin-left: 15px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-left-25 {
    margin-left: 25px;
}

.margin-left-30 {
    margin-left: 30px;
}

.margin-left-35 {
    margin-left: 35px;
}

.margin-left-40 {
    margin-left: 40px;
}

.margin-left-45 {
    margin-left: 45px;
}

.margin-left-50 {
    margin-left: 50px;
}

.margin-left-55 {
    margin-left: 55px;
}

.margin-left-60 {
    margin-left: 60px;
}

.margin-top-5 {
    margin-top: 5px;
}

.custom-btn-padding {
    padding: 1px 10px !important;
}

.padding-5 {
    padding: 5px !important;
}

.padding-left-5 {
    padding-left: 5px !important;
}

.padding-left-7 {
    padding-left: 7px !important;
}

.padding-left-15 {
    padding-left: 15px !important;
}

.padding-right-15 {
    padding-right: 15px !important;
}

.padding-top-2 {
    padding-top: 2px !important;
}

.padding-top-5 {
    padding-top: 5px !important
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-top-15 {
    padding-top: 15px !important;
}

.padding-top-20 {
    padding-top: 20px !important;
}

.padding-bottom-15 {
    padding-bottom: 15px !important;
}

.padding-bottom-10 {
    padding-bottom: 10px !important;
}

.vhs-transmis {
    color: #00B336;
}

.vhs-en-erreur {
    color: #FF4500FF;
}

.vhs-sorti {
    color: #E6A3FF;
}

@media (max-width: 1299px) {
    /*table resonsive custom*/
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        border: 1px solid #EEE;
        overflow-y: hidden;
        overflow-x: scroll;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        -webkit-overflow-scrolling: touch;
    }

    /* bouton responsive pour les listes affichées dans des tables*/
    /*.btn-responsive {*/
    /*    margin-top: 5px;*/
    /*}*/
    /*notif infraction menu */
    .menu-responsive {
        padding-left: 0px;
    }
}

/*icone filtre dans les thead*/
.thead-responsive {
    white-space: nowrap;
}

.btn-block + .btn-block {
    margin-left: 0px;
}

@media (min-width: 995px) {
    .pull-md-right {
        float: right;
    }
}

@media (min-width: 995px) {
    .pull-md-left {
        float: left;
    }
}

.text-bold {
    font-weight: bold;
}

.text-default {
    color: #726D67;
}

.badge {
    padding-top: 3px;
    padding-bottom: 5px;
    font-size: 0.7rem;
    border-radius: 1px;
}

.badge-success {
    color: #FFF;
    background-color: #00a896;
}

.badge-danger {
    color: #FFF;
    background-color: #eb5e55;
}

.badge-red {
    color: #FFF;
    background-color: #ff0000;
}

.badge-orange {
    color: #fff;
    background-color: #ed7d31;
}

.badge-info {
    color: #fff;
    background-color: #006699;
}

.badge-grey {
    color: #ffffff;
    background-color: #bfbfbf;
}

.badge-light-grey {
    color: #726d67;
    background-color: #e0e0e5;
}

.badge-radius {
    border-radius: 5px;
}

.badge-purple {
    color: #ffffff;
    background-color: #7030a0;
}

.badge-bluegrey {
    color: #ffffff;
    background-color: #78a9aa;
}

.badge-yellow {
    color: #000000;
    background-color: #d4fb00;
}

.badge-lightgreen {
    color: #ffffff;
    background-color: #70ad47;
}

.badge-rounded {
    width: 20px;
    height: 20px;
}

.page-qui-sommes-nous ul {
    padding-left: 15px;
}

#recherche-es::placeholder {
    color: #ccc;
}

#recherche-es {
    border: rgb(118, 118, 118) solid 1px;
    border-radius: 5px;
    padding-left: 10px;
    height: 33px;
}

.font-size-10 {
    font-size: 0.7rem;
}

.font-size-normal {
    font-size: 0.7rem !important;
}

.font-size-12 {
    font-size: 0.8rem;
}

.font-size-13 {
    font-size: 0.85rem;
}

.font-size-1rem {
    font-size: 1rem !important;
}

.banner-end-contract {
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    background-color: #fcc019;
    font-size: 1.7rem;
    padding: 15px;
    font-weight: bold;
}

.filter-entite-month .current {
    background-color: #01A860;
    color: #fff;
}

.no-contestation-reponse {
    background: url('../../img/app/no-response.png') no-repeat center center;
    background-color: #EB5E55;
    background-size: 18px;
    width: 32px;
    height: 22px;
    padding: 10px 15px !important;
    margin-left: 5px;
}

.data.text-danger {
    background-color: #eb5e55 !important;
    color: #ffffff !important;
}

.select-conducteur .select2-container {
    width: 100% !important;
}

.btn-info-dark {
    background-color: #006699 !important;
    color: #ffffff !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-bottom-40 {
    margin-bottom: 40px !important;
}

.margin-bottom-50 {
    margin-bottom: 50px !important;
}

/** ALERTES CUSTOM **/
.alert-container.alert-container-main {
    width: 520px;
}
.alert-container .alert {
    margin-bottom: 10px;
}
.alert {
    position: relative;
    font-size: 0.85rem;
    font-weight: bold;
    line-height: 1.1rem;
}

.alert .alert-icon-content {
    width: 40px;
    height: 25px;
    padding-right: 15px;
}

.alert.alert-warning {
    /*background: #f7eed7;*/
    background: #debc5f;
    /*background: #dab34b;*/
    border: none !important;
    border-left: 10px solid #d6ab37 !important;
    color: #fff;
}

/*.alert.alert-warning .btn-alert-understood {*/
/*    background-color: #d6ab37;*/
/*    color: #fff;*/
/*}*/

.alert.alert-success {
    /*background: #ccecea;*/
    background: #33b9ab;
    border: none !important;
    border-left: 10px solid #00a896 !important;
    color: #fff;
}

.alert.alert-danger {
    background: #ef7e77;
    border: none !important;
    border-left: 10px solid #eb5e55 !important;
    color: #fff;
}

/*.alert.alert-warning .btn-alert-understood {*/
/*    background-color: #00a896;*/
/*    color: #fff;*/
/*}*/

.alert.alert-info {
    /*background: #cce0eb;*/
    background: #3385ad;
    border: none !important;
    border-left: 10px solid #006699 !important;
    color: #fff;
}

/*.alert.alert-info .btn-alert-understood {*/
/*    background-color: #006699;*/
/*    color: #fff;*/
/*}*/

.alert .close {
    color: #fff;
}

.alert .btn-alert-understood {
    background-color: #eee;
    color: #595553;
    margin-left: 5px;
}
.alert .modal {
    color: #595553;
}

@media (min-width: 748px) {
    .container, .container-accueil-inner {
        width: 95%;
    }

    .alert-container {
        right: calc(2.5% + 2px);
    }
}

@media (min-width: 992px) {
    .container, .container-accueil-inner {
        width: 90%;
    }

    .alert-container {
        right: calc(5% + 5px);
    }
}

@media (min-width: 1300px) {
    .container, .container-accueil-inner {
        width: 80%;
    }

    .alert-container {
        right: calc(10% + 15px);
    }
}

@media (min-width: 1600px) {
    .container, .container-accueil-inner {
        width: 75%;
    }

    .alert-container {
        right: calc(12.5% + 15px);
    }
}

@media (min-width: 1920px) {
    .container {
        width: 1440px;
    }

    .container-accueil-inner {
        width: 1080px;
    }

    .alert-container {
        right: calc((100% - 1440px) / 2 + 15px);
    }
}

.alert-dismissible button.close {
    position: absolute;
    top: 5px;
    right: 10px;
}

.alert-container {
    position: fixed;
    top: 90px;
    z-index: 10000000;
}

body.incident .alert-container {
    top: 180px !important;
}

.alert-custom {
    position: relative;
    padding: 5px 15px !important;
    display: block;
    min-height: 50px;
    border-radius: 5px;
    margin-bottom: 5px;
}

/*.custom-alert-incident {*/
/*    background-color: rgba(251, 229, 214);*/
/*    text-align: left;*/
/*    border-radius: 5px;*/
/*}*/

.alert-custom .a-container {
    padding-right: 15px;
}

.alert-custom a,
.alert-custom .alert-custom-link {
    font-weight: bold;
    text-decoration: underline;
    color: inherit;
}

.no-contestation-reponse {
    background: url('../../img/app/no-response.png') no-repeat center center;
    background-color: #EB5E55;
    background-size: 18px;
    width: 32px;
    height: 22px;
    padding: 10px 15px !important;
    margin-left: 5px;
}

.data.text-danger {
    background-color: #eb5e55 !important;
    color: #ffffff !important;
}

.select-conducteur .select2-container {
    width: 100% !important;
}

.btn-info-dark {
    background-color: #006699 !important;
    color: #ffffff !important;
}

.font-size-15 {
    font-size: 0.95rem;
}

.error-disabled {
    width: 100%;
}

/**************** sommaire pages aide ***************/
@media (min-width: 1850px) {
    .aide-summary {
        position: fixed;
        left: 20px;
        top: 175px;
        border-radius: 3px;
        width: 250px;
        background-color: #f2f2f2;
        border: solid 1px #e2e2e2;
    }

    .aide-summary li {
        width: 100%;
    }
}

@media (max-width: 1850px) {
    .aide-summary {
        border: solid 1px #e2e2e2;
        width: auto;
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
        background-color: #f2f2f2;
        border-radius: 3px;
    }
}

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

.half-checked-checkbox:before {
    font-family: Font Awesome\ 5 Free;
    background: none !important;
    color: white;
    content: " \f068" !important;
    font-weight: 900;
    margin-left: 3px;
}

/** ACCUEIL */

.col-5 {
    width: 20%;
    float: left;
    padding: 0px 10px;
}

@media screen and (max-width: 992px) {
    .col-5 {
        width: 100%;
        padding-top: 20px;
    }
}

hr.hr-lg {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

hr.hr-blue {
    border-color: #006699;
}

hr.hr-small {
    width: 30%;
}

.mt-0 {
    margin-top: 0rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-2 {
    padding-left: 2rem !important;
}

.pr-2 {
    padding-right: 2rem !important;
}

.pl-8 {
    padding-left: 8rem !important;
}

.pr-8 {
    padding-right: 8rem !important;
}

.pl-12 {
    padding-left: 12rem !important;
}

.pr-12 {
    padding-right: 12rem !important;
}

.padding-bottom-18 {
    padding-bottom: 15px !important;
}

.hr-small-margin {
    margin-top: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 1299px) {
    .sm-no-padding {
        padding: 0px !important;
    }
}

.no-padding {
    padding: 0px !important;
}

.padding-left-10 {
    padding-left: 10px !important;
}

.accueil-container .btn-lg {
    font-size: 1rem;
    line-height: 1rem;
}

.accueil-container .accueil-title {
    margin-top: 0.4rem;
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: #069;
    font-weight: bold;
    font-family: 'Avenir';
}

.accueil-container .accueil-main-subtitle {
    font-size: 1.2rem;
    line-height: 1.7rem;
    color: #069;
    font-family: 'Avenir';
    max-width: 100vw;
}

.accueil-container .accueil-subtitle {
    font-size: 1.2rem;
    line-height: 1.7rem;
    color: #069;
    font-weight: bold;
    font-family: 'Avenir';
    max-width: 100vw;
}

.accueil-container .accueil-content {
    font-size: 1rem;
    line-height: 1.4rem;
    font-family: 'Avenir';
    color: #000;
    max-width: 100vw;
}

.accueil-container .accueil-content .title {
    font-weight: bold;
    font-size: 1.5rem;
}

.accueil-container img.main {
    width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.accueil-container img.essai {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.accueil-container img.big {
    width: 30rem;
}

.accueil-container .accueil-btn-container .btn-lg {
    font-size: 0.8rem;
    padding: 12px 30px;
}

.accueil-container .img-protection {
    width: 40px;
    margin-right: 30px;
}

.accueil-container .accueil-btn-container .btn-info-alt {
    background-color: #006699;
    color: #fff
}

.accueil-container ul li {
    color: #069;
    font-size: 1rem;
    line-height: 2rem;
    font-family: 'Avenir Book';
}

.accueil-container ul.black li {
    color: #000;
}

.accueil-container ul.cadre li,
.accueil-container ul.cadre-bordure li {
    color: #000;
    font-size: 0.8rem;
    line-height: 1.2rem;
}

.accueil-container ul.alt li {
    color: #000;
    font-size: 1rem;
    line-height: 1.4rem;
    font-family: 'Avenir';
}

.accueil-container .accueil-fonctionnement-container {
    color: #000;
}

.accueil-container .accueil-def {
    font-size: 0.7rem;
}

.accueil-container .accueil-fonctionnement-container img {
    width: 70px;
}

.accueil-container img.img-fonctionnement.small {
    width: 300px;
}

.accueil-container img.img-fonctionnement.xs {
    width: 150px;
}

.accueil-container .accueil-fonctionnement-container .titre {
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Avenir';
}

.accueil-container .accueil-fonctionnement-container .content {
    font-family: 'Avenir Book';
}

.accueil-container ul.classic {
    list-style: disclosure-closed;
}

.accueil-container ul.classic li {
    font-size: 1rem;
    line-height: 1.4rem;
    /*font-weight: bold;*/
    font-family: 'Avenir';
    color: #000;
}

.accueil-container .protection-container, .accueil-container .groupe-fa-container {
    display: flex;
}

.accueil-container .groupe-fa-container {
    justify-content: space-between;
}

.accueil-container .protection-container .protection-content,
.accueil-container .groupe-fa-container .groupe-fa-content {
    margin-right: 50px;
}

@media screen and (max-width: 1299px) {
    .accueil-container .protection-container .protection-content,
    .accueil-container .groupe-fa-container .groupe-fa-content {
        margin-right: 0px;
    }
}

/*.form-contact-container,*/
.form-contact-container .form-contact-row {
    display: flex;
}

.form-contact-container .form-contact-row {
    justify-content: center;
    margin-top: 10px;
}

.form-contact-container .form-contact-row label {
    width: 300px;
    color: #000;
    text-align: left;
    font-weight: normal;
    font-size: 1rem
}

.form-contact-container .form-contact-row select {
    padding: 5px 3px;
    font-family: "Avenir";
}

.text-outline-default {
    color: white;
    border: solid 2px #726D67;
    border-radius: 50%;
}

.text-underline {
    text-decoration: underline;
}

@media (max-device-height: 700px) {
    #form-modal-response-infraction .modal-dialog {
        max-height: 90vh;
        margin-top: 5vh;
    }
}

@media (min-device-height: 700px) {
    #form-modal-response-infraction .modal-dialog {
        max-height: 80vh;
        margin-top: 10vh;
        margin-bottom: 10vh;
    }
}

#form-modal-response-infraction .modal-dialog {
    overflow-y: auto;
}

.informations {
    font-size: 0.8rem;
}

span.collapse-information.collapsed:after {
    /*font-family: "Font Awesome 5 Pro";*/
    font-family: "Glyphicons Halflings";
    content: " \e259";
}

span.collapse-information:not(.collapsed):after {
    font-family: "Glyphicons Halflings";
    content: " \e260";
}

/*span.collapse-information.collapsed:after {*/
/*    !*font-family: "Font Awesome 5 Pro";*!*/
/*    font-family: Font Awesome\ 5 Free;*/
/*    content: " \f062";*/
/*    color: #3A3A3A;*/
/*}*/

/*span.collapse-information:not(.collapsed):after {*/
/*    font-family: Font Awesome\ 5 Free;*/
/*    content: " \f063";*/
/*    color: #3A3A3A;*/
/*}*/
.input-adresse {
    border-radius: 4px;
    border: 1px solid #c4c4c4;
}

.fire-form-response-infraction {
    white-space: nowrap;
}

#modal-validation-response-infraction {
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .col-sm-0 {
        display: none !important;
    }
}

.d-flex {
    display: flex !important;
}

.d-wrap {
    flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
    .no-d-flex-sm {
        display: block;
    }
}

.align-items-start {
    align-items: start;
}

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

.align-items-end {
    align-items: end;
}

.align-items-stretch {
    align-items: stretch;
}

.align-items-baseline {
    align-items: baseline;
}

.align-content-center {
    align-content: center;
}

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

.justify-content-center {
    justify-content: center;
}

.justify-content-space-around {
    justify-content: space-around;
}

.justify-content-space-between {
    justify-content: space-between;
}

.justify-content-space-evenly {
    justify-content: space-evenly;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-flex .btn + .btn {
    margin-left: 0;
}

.form-control.disabled {
    background-color: #eee;
    cursor: not-allowed;
}

.d-inline-block {
    display: inline-block;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.import-delete {
    border: 1px solid grey;
    padding: 10px;
    box-shadow: 1px 1px 1px lightgrey;
}

input[type="radio"]:checked {
    background: #ffffff !important;
}

input[type="radio"]:checked:before {
    background: #00a896 !important;
    height: 12px !important;
    width: 12px !important;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 18px !important;
}

.no-margin {
    margin: 0 !important;
}

.container-alert {
    position: absolute;
    right: 10px;
    left: 10px;
    top: 10px;
}

.table-list-user tr td {
    vertical-align: top !important;
    border-bottom: 1.5px solid #cdcdcd !important;
}

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

    .container-iframe iframe {
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
    }
}

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

    .container-iframe iframe {
        left: 16rem !important;
    }
}

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

    .container-iframe iframe {
        left: 10rem !important;
    }
}

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

    .container-iframe iframe {
        left: 0 !important;
    }
}

.container-iframe {
    position: relative;
    overflow: hidden;
    padding-top: 17rem;
}

.container-iframe iframe {
    position: absolute;
    top: 0;
    left: 15rem;
    width: 30rem;
    height: 17rem;
    border: 0;
}

.accueil-container .cadre,
.accueil-container .cadre-bordure {
    font-size: 0.8rem;
    margin-top: 0;
    padding-top: 1rem;
    padding-right: 0.5rem;
    color: #000;
    font-family: 'Avenir Book';
}

.accueil-container .cadre {
    background-color: rgba(0, 102, 153, 0.04);
    margin-bottom: 0;
}

.accueil-container .cadre-bordure {
    border: rgba(0, 102, 153, 0.04) 1px solid;
}

.accueil-container .cadre-secteur {
    background-color: #deebf7;
    margin-top: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    /*padding-right: 0.5rem;*/
    color: #000;
    border-radius: 3px;
    width: calc(25% - 30px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accueil-container .cadre-secteur:not(:last-child) {
    margin-right: 10px;
}

.accueil-container .cadre-secteur .cadre-secteur-title {
    font-weight: bold;
    color: #006699;
}

.accueil-container .cadre-metier {
    background-color: rgba(0, 102, 153, 0.04);
    margin-top: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 0.5rem;
    color: #000;
    border-radius: 3px;
}

.accueil-container .cadre-metier .title {
    font-weight: bold;
    color: #006699;
}

.accueil-container .cadre-metier .content {
    font-weight: 300;
}

/*.accueil-container .cadre-metier:not(:first-child) {*/
/*    margin-left: 25px;*/
/*}*/

.accueil-container .cadre b,
.accueil-container .cadre-bordure b {
    font-size: 1rem;
}

.accueil-container .cadre .verizon {
    width: auto !important;
}

.accueil-container .metier-solutions {
    font-size: 1rem;
}

.accueil-container .metier-solutions .title {
    font-weight: bold;
}

ul.cadre li {
    list-style: none;
}

ul.no-style li {
    list-style: none;
}

ul.ul-avantages li {
    line-height: 1.5rem !important;
}

ul.list-benefices {
    padding-left: 20px;
}

ul.list-benefices li {
    list-style: '✓ ';
}

.ul-fonctionnalites {
    padding-left: 20px;
}

.ul-fonctionnalites li {
    line-height: 1.5rem !important;
}

ul.ul-contraintes {
    padding-left: 20px;
}

ul.ul-contraintes li {
    line-height: 1rem;
}

ul.ul-editeurs {
    padding-left: 20px;
}

.accueil-container hr {
    /*border-bottom: solid 10px #eeeeee!important;*/
    border-bottom: solid 2px #dae3f3 !important;
}

.timeline-box {
    height: 130px !important;
}

.text-blue {
    color: #069 !important;
}

.text-black, a.text-black {
    color: #000 !important;
}

.convent-antai {
    font-size: 1rem;
    padding: 10px 15px;
    border: solid 1px #069;
    border-radius: 4px;
}

.container-faq {
    height: 80vh;
    overflow-y: scroll;
}

.static-page .container-faq {

}

.faq-title.active {
    /*color: #fff;*/
    /*background-color: #069;*/
    text-decoration: underline;
}

.faq-title {
    padding: 5px 15px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px !important;
    font-size: .8rem !important;

}

/**** Refonte modal réponse infraction ****/

table.reponse-infraction {
    font-size: 12px;
    /*padding-left: 5px;*/
}

table.reponse-infraction, #form-modal-response-infraction .modal-header, #form-modal-response-infraction .modal-footer {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

table.reponse-infraction .btn-tooltip {
    display: inline-block;
}

table.reponse-infraction th {
    white-space: nowrap;
}

table.reponse-infraction th, table.reponse-infraction td {
    padding: 5px 10px !important;
    text-align: left;
    margin-bottom: 10px;
    vertical-align: middle;
    height: 2rem;
}

table.reponse-infraction .badge {
    width: 18px;
    height: 18px;
    padding-bottom: 3px;
    text-align: center;
    vertical-align: center;
}

table.reponse-infraction label {
    font-size: 12px;
}

table.reponse-infraction tr.border-bottom th, table.reponse-infraction tr.border-bottom td {
    padding-bottom: 10px !important;
}

table.reponse-infraction tr.border-bottom + tr th,
table.reponse-infraction tr.border-bottom + tr td {
    padding-top: 10px !important;
}

#form-modal-response-infraction .alert-custom {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-right: 36px;
}

.modal-footer.text-center {
    text-align: center;
}

.rounded {
    border-radius: 50%;
}

#form-modal-response-infraction .modal-header h5 {
    font-size: 0.95rem;
}

#form-modal-response-infraction .modal-header {
    padding-left: 53px;
    padding-right: 10px;
}

#form-modal-response-infraction .modal-body .tab-content {
    padding: 8px 10px 2px 45px;
}

#form-modal-response-infraction .modal-dialog {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 748px) {
    #form-modal-response-infraction .modal-dialog {
        width: 98%;
    }
}

/**** Fin Refonte modal réponse infraction ****/

input[type=checkbox][disabled], input[type=radio][disabled] {
    background-color: #a7a2a2;
}

#choice_method_auth label,
#auth_code label {
    font-size: 0.8rem;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: currentcolor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
    width: 0.75rem;
    height: 0.75rem;
    border-width: .15em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes spinner-border {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.align-middle {
    vertical-align: middle;
}

.valign-top {
    vertical-align: top !important;
}

.font-size-35 {
    font-size: 2.1875rem;
}

.table-authorized_browsers tr td {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    line-height: 1.2;
}

.table-authorized_browsers tr td:first-child {
    font-size: 2.1875rem;
    text-align: center;
}

.table-authorized_browsers tr td:last-child {
    text-align: right;
}

.badge-help {
    background-color: #E4E2E2FF;
    color: #000000;
    width: 18px;
    height: 18px;
    padding-bottom: 3px;
    text-align: center;
    vertical-align: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

[data-toggle="collapse"] .icon-collapse {
    transition-duration: 200ms;
}

[data-toggle="collapse"]:not(.collapsed) .icon-collapse {
    transform: rotate(+90deg);
}

.collapsed[data-toggle="collapse"] .icon-collapse {
    transition-duration: 200ms;
}

@media (max-width: 748px) {
    .text-xs-right {
        text-align: right;
    }
}

.accueil-carousel {
    padding: 0 20px;
}

.accueil-carousel .accueil-carousel-slide {
    margin-top: 10px;
    padding: 0 10px;
}

.accueil-carousel .slick-slide {
    height: auto;
}

.accueil-carousel .accueil-carousel-slide .accueil-carousel-img img {
    /*width: 40px;*/
    height: 40px;
    margin-bottom: 5px;
}

.accueil-carousel .accueil-carousel-slide .accueil-carousel-titre {
    color: #006699;
    font-weight: bold;
    margin: 10px 0;
}

.accueil-carousel .slick-prev::before,
.accueil-carousel .slick-next::before {
    color: #006699;
}

.accueil-carousel .slick-prev::before {,
content: "<";
}

.accueil-carousel .slick-next::before {,
content: ">";
}

.accueil-carousel .slick-dots li.slick-active button::before,
.accueil-carousel .slick-dots li button::before {
    color: #006699;
    font-size: 15px;
}

.accueil-carousel .slick-dots {
    position: relative;
    margin-top: 25px;
    bottom: 0;
}

.accueil-carousel.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.accueil-title-hr {
    width: 35%;
    margin: 0;
}

#form-modal-response-infraction .nav-pills > li > a {
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .4) !important;
}

#form-modal-response-infraction .nav-pills > li.active > a {
    background-color: rgba(0, 102, 153, .6) !important;
    /*color: black!important;*/
}

.font-weight-normal,
.font-weight-normal label {
    font-weight: normal !important;
}

.box-grey {
    background-color: #eee;
    padding: 30px;
}

.box-dark-grey {
    background-color: #ccc;
    padding: 15px;
}


.width-35 {
    width: 35px !important;
}

.width-50 {
    width: 50px !important;
}


.width-90 {
    width: 90px !important;
}

.min-width-100 {
    min-width: 100px !important;
}

.width-100 {
    width: 100px !important;
}

.width-110 {
    width: 110px !important;
}

.width-200 {
    width: 200px !important;
}

.width-250 {
    width: 250px !important;
}

.width-260 {
    width: 260px !important;
}

.width-900 {
    width: 900px !important;
}

.color-lighter {
    opacity: 0.75 !important;
}

hr.vertical {
    width: 1px;
    height: 33px;
    margin: 0 20px;
    background-color: #006699;
}

div.vertical-row {
    width: 1px;
    height: 100%;
    background-color: #006699;
}

hr.hr-sm.vertical {
    height: 15px;
    margin-top: 2px;
}

hr.grey {
    background-color: #726d67;
}

.nav-tabs,
.tab-content > .active,
.nav-tabs li > a,
.nav-tabs li.active > a,
.nav-tabs li.active > a:hover {
    border-color: #eee;
    text-transform: none;
}

.nav-tabs li.active > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.nav-infractions {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    border-bottom: solid 1px #EEEEEE;
}

.nav-infractions a {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0 30px;
    height: 40px;
}

.nav-infractions a.active {
    border-top: solid 1px #EEEEEE;
    border-left: solid 1px #EEEEEE;
    border-right: solid 1px #EEEEEE;
    background: #fff;
    bottom: -1px;
    padding-bottom: 1px;
    border-radius: 3px 3px 0 0;
    font-weight: bold;
    position: relative;
    color: #fcc019 !important;
}

.nav-infractions a:hover:not(.active) {
    background: #eee;
}

/*-------- Flatpickr --------*/
.flatpickr-calendar {
    --flatpickr-width: 215px;
    --flatpickr-fontsize: 0.7rem;
    --flatpickr-day-height: 30.7px;
    --flatpickr-months-height: 24px;
    --flatpickr-prevnext-months-height: 11px;
    --flatpickr-day-line-height: 29px;
    --flatpickr-time-height: 30px;
    --flatpickr-weekdays-height: 22px;
}

.flatpickr-calendar {
    font-size: var(--flatpickr-fontsize);
    min-width: var(--flatpickr-width);
    width: var(--flatpickr-width);
}

.dayContainer {
    min-width: var(--flatpickr-width);
    width: var(--flatpickr-width);
    max-width: var(--flatpickr-width);
}

.flatpickr-days {
    width: var(--flatpickr-width);
}

.flatpickr-day {
    height: var(--flatpickr-day-height);
    line-height: var(--flatpickr-day-line-height);
}

.flatpickr-months .flatpickr-month, .flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    height: var(--flatpickr-months-height);
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
    width: var(--flatpickr-prevnext-months-height);
    height: var(--flatpickr-prevnext-months-height);
}

.flatpickr-time {
    line-height: var(--flatpickr-time-height);
    max-height: var(--flatpickr-time-height);
}

.flatpickr-time .numInputWrapper, .flatpickr-time .flatpickr-time-separator {
    height: var(--flatpickr-time-height);
}

.flatpickr-time input {
    font-size: var(--flatpickr-fontsize);
}

.flatpickr-weekdays {
    height: var(--flatpickr-weekdays-height);
}

.select2-search__field, .select2-search {
    width: 100% !important;
}

.content-designation-masse-infraction-count {
    font-size: 0.8rem;
}

.modal-header {
    border-bottom-color: #ddd;
}

.modal-footer {
    border-top-color: #ddd;
}

.badge-suggestion-conducteur {
    margin-right: 5px;
    cursor: pointer;
}

.badge-suggestion-conducteur svg {
    padding: 3px;
    width: 20px;
    height: 20px;
}

svg.pastille-designation {
    border-radius: 50%;
    width: 20px;
}

svg.pastille-designation-unique {
    background-color: #00a896;
}

svg.pastille-designation-multiple {
    background-color: #d6ab37;
}

.container-accueil {
    color: black;
    background-color: #fff;
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 400;
    /*padding: 0 10px;*/
}

.container-accueil .badge-success-alt {
    background-color: #FFF;
    color: #548235;
    border: 1px solid #548235;
}

.container-accueil-inner {
    /*margin: 0 25rem;*/
    padding: 0 10px 2rem;
    margin-left: auto;
    margin-right: auto;

}

.container-accueil h1, .container-accueil h2,
.container-accueil h3, .container-accueil h4 {
    font-family: 'Catamaran', sans-serif;
    color: black;
}

.container-accueil h1 {
    font-weight: 600;
}

.container-accueil h2 {
    font-weight: 400;
    font-size: 2rem;
    margin-top: 40px;
}

.container-accueil .accueil-curved {
    padding-bottom: 50px;
    position: relative;
    background: url('/../assets/img/app/accueil/curve.png') no-repeat bottom center;
    background-size: 100%;
}

.container-accueil .accueil-bg-blue {
    background-color: #5b9bd5;
}

.container-accueil .accueil-bg-light-blue {
    background-color: #deebf7;
}

.container-accueil .accueil-bg-grey {
    background-color: #f2f2f2;
}

.container-accueil .accueil-blue {
    color: #2f5597;
}

.container-accueil .btn-accueil {
    background-color: #5b9bd5;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
}

.container-accueil a.underlined-black {
    text-decoration: underline black;
    color: black;
}

.ul-tick {
    list-style: none;
}

.ul-tick li:before {
    content: '✓ '
}

.container-accueil-orange .titre {
    color: #ed7d31;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.container-accueil-orange p {
    margin-top: 10px;
    text-align: center;
}

.container-accueil-orange hr {
    border-bottom: 2px #ed7d31 solid;
}

.line-height-0 {
    line-height: 0;

}

.line-height-12 {
    line-height: 1.1rem;
}

.icon-validation-designation-warning {
    font-size: 1.2rem;
    display: inline-block;
    width: 1.6rem;
}

.line-height-13 {
    line-height: 1.2rem;
}

.infraction-pdf-justificatif {
    padding: 0;
    width: 35px;
    height: 23px;
    margin-top: -1px;
}

.container-progress-justificatif {
    height: 3px;
    width: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}


.container-progress-justificatif .progress-justificatif {
    /*background-color: #eb5e55;*/
    background-color: #006699;
    height: 3px;
    width: 0;
}

.container-progress-justificatif .progress-justificatif.full {
    background-color: #00a896;
    width: 100%;
}

.loader-inc:after {
    content: url('/../assets/img/app/loader.gif');
}

.border-radius-10 {
    border-radius: 10px !important;
}

.custom-alert-warning {
    background-color: rgba(251, 229, 214, 0.7);

}

.custom-alert-info {
    background-color: rgba(222, 235, 247, 0.7);
}

.box-bordered {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
}

.box-bordered-light-grey {
    border-color: #eee;
}

.tr-vehicule-sorti {
    color: #bbb;
}

.text-danger a {
    color: inherit;
}

@media (max-width: 748px) {
    br.desktop {
        display: none;
    }
}

.text-no-bold {
    font-weight: normal !important;
}

#notes-version-accordion .panel-title {
    font-size: 0.9rem;
}

.tile-partenaire {
    margin-bottom: 20px;
}

.tile-partenaire .tile-partenaire-titre {
    background-color: #f2f2f2;
    border: 1px solid #bfbfbf;
    width: 230px;
    text-align: center;
    margin-bottom: -1px;
}

.tile-partenaire.tile-partenaire-integration .tile-partenaire-titre {
    width: 140px;
}

.tile-partenaire .tile-partenaire-content {
    display: grid;
    grid-template-columns: 250px calc( 100% - 250px );
    border: 1px solid #bfbfbf;
}

@media (max-width: 900px) {
    .tile-partenaire .tile-partenaire-content {
        display: initial;
    }
}

.tile-partenaire .tile-partenaire-content .tile-partenaire-content-image-container {
    /*width: 300px;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-partenaire .tile-partenaire-content .tile-partenaire-content-image-container img {
    width: 180px;
}
.tile-partenaire.tile-partenaire-integration .tile-partenaire-content .tile-partenaire-content-image-container img {
    width: 140px;
}

.tile-partenaire .tile-partenaire-content .tile-partenaire-content-container {
    padding: 20px 40px 20px 0;
}

.tile-partenaire .tile-partenaire-content .tile-partenaire-content-container .tile-partenaire-content-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.tile-partenaire .tile-partenaire-content .tile-partenaire-content-container .tile-partenaire-content-text {
    margin-bottom: 10px;
}

.tile-partenaire .tile-partenaire-content .tile-partenaire-content-container .tile-partenaire-content-extra {
    color: #a1a1a1;
}