@charset "UTF-8";
table.dataTable thead th:last-child.sorting,
table.dataTable thead th:last-child.sorting_asc,
table.dataTable thead th:last-child.sorting_desc,
table.dataTable thead th:last-child.sorting:after,
table.dataTable thead th:last-child.sorting_asc:after,
table.dataTable thead th:last-child.sorting_desc:after {
    background: #fff !important;
    pointer-events: none;
    text-align: center;
}

span.custom-tag {
    float: left;
    background: #ff8633;
    opacity: 0.85;
    width: 179px;
    height: 50px;
    font-weight: 700;
    font-size: 30px;
    line-height: 25px;
    padding: 6px 10px 6px 10px;
    margin-right: 12px;
    color: white;
}

.wrapper-logos-padded {
    padding-left: 10px !important;
}

span.custom-tag:after {
    padding: 10px 6px;
    content: ‘Acceptation’;
    color: #fff;
    width: 40px;
    display: inline-block;
    writing-mode: vertical-lr
}

.capitalization-text {
    text-transform: capitalize;
}

.text-uppercase {
    text-transform: uppercase;
}

.panel-headAccordeon {
    padding: 0px 30px 10px 0px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #4d4d4d;
}

.panel a .panel-headAccordeon:after {
    font-family: "FontAwesome";
    content: "\f078";
    float: right;
    color: #4d4d4d;
    margin-top: -25px;
    font-size: 1.4em;
}

.panel a.collapsed .panel-headAccordeon:after {
    /* symbol for "collapsed" panels */
    content: "\f077";
}

.no-text-decoration {
    text-decoration: none !important;
}

.text-dark {
    color: #333;
}

a:hover {
    cursor: pointer;
}

div.transboxcycle {
    margin: 0 30px;
    background-color: #ffffff;
    opacity: 0.6;
    filter: alpha(opacity=60); /* For IE8 and earlier */
}

div.bordercycle {
    border: 1px solid #0073b7;
}

.border-color-red {
    border-color: red;
}

.btnmonespace-yellow {
    background-color: #FFFF00; /* yellow */
}

.btnmonespace-rose {
    background-color: #E79AF0; /* Rose */
}

.btnmonespace-goldenrod {
    background-color: #DAA520 /* jaune doré */
}

.btnmonespace-aurore {
    background-color: #FFCB60 /* aurore */
}

.btnmonespace-saumon {
    background-color: #FFA07A; /* saumon */
}

/*
   BOOTSTRAP : ajouts divers
 */


.row-same-height {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}


.force-override.alert-attention, .alert.alert-attention {
    background-color: #d0d2cf !important;
    border-color: #d6e9c6 !important;
    color: #ed0b0b !important;
}

/*
        A FAIRE INTEGRER PAR SANDRA DANS DESIGN-MONESPACE
        
        A RETIRER DES PAGES PUBLIQUES

*/
.force-override.alert-success, .alert.alert-success {
    background-color: #dff0d8 !important;
    border-color: #d6e9c6 !important;
    color: #486A48 !important;

}

.head-one .force-override.alert p {
    color: inherit !important;
}

.force-override.alert-success hr {
    border-top-color: #c9e2b3 !important;
}

.force-override.alert-link {
    color: #2b542c !important;
}

.force-override.alert-info, .alert.alert-info {
    background-color: #d9edf7 !important;
    border-color: #bce8f1 !important;
    color: #31708f !important;
}

.force-override.alert-info hr {
    border-top-color: #a6e1ec !important;
}

.force-override.alert-info .alert-link {
    color: #245269 !important;
}

.force-override.alert-warning, .alert.alert-warning {
    background-color: #fcf8e3 !important;
    border-color: #faebcc !important;
    color: #8a6d3b !important;
}

.force-override.alert-warning hr {
    border-top-color: #f7e1b5 !important;
}

.force-override.alert-warning .alert-link {
    color: #66512c !important;
}

.force-override.alert-danger, .alert.alert-danger {
    background-color: #f2dede !important;
    border-color: #ebccd1 !important;
    color: #9A3E3C !important;
}

.force-override.alert-danger hr {
    border-top-color: #e4b9c0 !important;
}

.force-override.alert-danger .alert-link {
    color: #843534 !important;
}


@media (max-width: 415px) {
    .modal-dialog {
        width: 280px;
        margin: 20px auto;
    }

    .modalHeightScroll {
        max-height: 560px;
        overflow-y: auto;
    }
}

.list-group-item-danger-notbg {
    color: #a94442;
    /*  background-color: #f2dede;*/
}

/* WAIT PAGE SPINNER
 Le minifieur yuicompressor a un bug avec les animations et retire le % pour 0%
 ce qui casse l'animation. D'où le workaround d'utiliser 0.00%
 Idem pour les propriétés d'animations on utilise la version plus verbeuse.
 https://github.com/yui/yuicompressor/issues/80 
*/

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {
    0.00%, 100% {
        -webkit-transform: scale(0.0);
    }
    50% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes sk-bounce {
    0.00%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.spinner {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation-name: sk-rotate;
    animation-name: sk-rotate;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation-name: sk-bounce;
    animation-name: sk-bounce;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

/* FIN PAGE ATTENTE SPINNERS */

body .wrapper.logos {
    height: auto
}

.breadcrumb {
    display: inline-block;
    padding-top: 15px;
}

#faq ul {
    list-style-type: none;
    text-align: left;
    padding: 0;
}

.panel .panel-header {
    font-size: 18px;
    padding: 10px 40px 0px 5px;
    margin: 0 10px;
    /* border-bottom: 1px solid #DDD; */
    position: relative;
}

.panel .panel-header .panel-header-right {
    position: absolute;
    right: 10px;
    top: 13px;
    font-size: 14px
}

.panel .panel-header i {
    margin-right: 7px
}

.panel .panel-body {
    position: relative;
}

.table-responsive a.btn {
    text-decoration: none;
}

/*
 Panels du dashboard
*/
.dashboardPanel .panel-header h3, h2 {
    border-bottom: none;
    margin-bottom: 0;
}

.dashboardPanel .panel-header h2 {
    border-bottom: none;
    margin-bottom: 0;
}

.dashboardPanel .panel-body {
    height: 230px;
    padding-top: 0px;
}

.dashboardPanel .panel-body .table {
    table-layout: auto;
    margin: 0;
    padding: 0;
    border-width: 0;
}

.dashboardPanel .panel-body .table-responsive {
    max-height: 100%;
}

.dashboardPanel .panel-body table tr {
    width: 100%;
}

.dashboardPanel .panel-body .panel-empty {
    color: #757575;
}

.dashboardPanel .panel-body .panel-empty .panel-empty-icon {
    font-size: 4em;
}


.panel .panel-body .table-responsive {
    max-height: 100%
}

.panel .panel-body .table {
    margin-bottom: 0
}

.panel .panel-footer {
    text-align: right;
    font-size: 15px;
    margin: 0 10px;
}

.panel.panel-default .panel-footer {
    background: #FFF
}

.panel-checkbox {
    background: #FFF;
    padding: 10px 10px 10px 20px
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #F3F3F3
}

.panel .row {
    margin-left: -15px;
    margin-right: -15px;
}

.panel .panel-form .form-group {
    padding-top: 5px;
    padding-bottom: 5px;
}

.alert i {
    margin-right: 8px;
}

.content .head-one h2, h1 {
    margin: 10px;
}

.content .head-one {
    padding: 25px 0 30px 0;
}

.content .head-one span {
    margin: 20px 0 0 0;
}

.user-menu > .dropdown-menu {
    max-height: 130px;
    height: auto !important;
}

.user-menu .dropdown-menu > li a {
    padding: 8px 10px;
    border-bottom: 1px solid #F3F3F3
}

.main-header .navbar-nav > .user-menu > .dropdown-menu-user-monespace {
    width: auto;
}

.main-header nav .topbar-menu i {
    margin-right: 8px
}

.main-header nav .topbar-menu small i {
    margin-right: 2px
}

.nav.navbar-nav a {
    font-weight: 400;
    font-size: 14px
}

.navbar-nav > .notifications-menu > .dropdown-menu, .navbar-nav > .messages-menu > .dropdown-menu {
    width: 400px;
}

.dropdown-menu-user-monespace {
    width: 180px;
}

.panel-body .table tr {
    border-width: 3px;
}

.panel-body .table {
    width: 98%
}

.nothing {
    color: #757575;
    text-align: center;
    padding: 50px 0;
}

.nothing i {
    font-size: 72px;
}

.nothing span {
    display: block;
    text-align: center
}

.nowrap {
    white-space: nowrap;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cell-communication {
    width: 65%;
}

.help-block i {
    margin-right: 8px;
}

.sidebar .user-panel {
    height: auto;
    padding: 20px 0
}

.sidebar .user-panel span.fa {
    font-size: 50px
}

.dataTables_wrapper > .dataTables_info {
    color: #4f4f4f;
    position: absolute;
    bottom: 0px;
    margin: -15px;
}

.main-header .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
    margin: 0;
    font-size: 15px;
    color: #000
}

.filtres_competences .badge:hover, .filtres_competences .badge.active {
    border-bottom: 3px solid transparent;
}

.dropdown .menu-list {
    color: #000;
    padding: 0;
    max-width: 350px;
    border: 1px solid #DDD;
}

.dropdown-action-table {
    position: absolute;
    right: 20%;
    left: auto;
}

.menu-list div {
    font-size: 16px;
    border-bottom: 1px solid #DFDFDF;
}

.table-action-a {
    text-align: center;
    text-decoration: none !important;
}

.menu-list div a {
    padding: 7px 10px;
    text-transform: none;
    color: #000;
    display: block;
    position: relative
}

.menu-list div i {
    margin-right: 8px;
}

.menu-list div a small i {
    margin-right: 2px;
}

.menu-list div a:hover {
    background: #e1e3e9
}

.menu-list div a strong {
    font-weight: normal;
}

.menu-list div a small {
    position: absolute;
    right: 10px;
    top: 7px;
    font-size: 12px;
}

.menu-list div a span {
    display: block;
    font-size: 14px;
}

.menu-list div.menu-header {
    font-size: 14px;
    padding: 7px 10px;
}

.menu-list div.menu-footer a {
    text-align: center;
}

.user-menu .menu-list {
    width: auto !important;
}

#frmTag .dataTables_wrapper {
    padding-bottom: 60px
}

.table-action {
    width: 200px !important;
    text-align: center
}

.table-responsive.loading {
    height: 350px;
    overflow: hidden;
    -webkit-transition: .7s all;
    transition: .7s all;
}

.table-responsive.loading:before {
    background: #FFF;
}

.goTop {
    display: block;
    position: fixed;
    bottom: -60px;
    right: 20px;
    background: rgba(44, 44, 44, 0.9);
    color: #FFF;
    z-index: 100;
    padding: 0px 10px 5px 10px;
    border-radius: 7px;
    font-size: 40px;
    line-height: 40px;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    text-decoration: none;
}

.goTop:focus,
.goTop:active {
    color: #0073b7;

    background: rgba(66, 66, 66, 0.9);
    outline: none;
}

.goTop:hover {
    background: rgba(66, 66, 66, 0.9);
}

.goTop.-is-visible {
    bottom: 20px;
}

.goTop.-zoom-out {
    background: rgba(44, 44, 44, 0.7);
}

.truncateJSWrapper {
    overflow: hidden;
}

.truncateJSParent {
    white-space: nowrap;
}

a.btn-home {
    background-color: #357DA7;
    border-color: #367fa9;
    color: #FFF;
    text-decoration: none;
    max-width: 100%;
    white-space: normal;
    margin-left: 0;
}

a.btn-home:hover, a.btn-home:visited, a.btn-home:active {
    background-color: #367fa9;
    border-color: #204d74;
    color: #FFF;
    text-decoration: none;
}

footer {
    text-align: center
}

footer .footer-menu, footer .footer-menu ul {
    list-style-type: none;
    padding: 0
}

footer .footer-bottom {
    background-color: #fff;
}

footer .footer-bottom .row {
    padding-top: 10px;
    padding-bottom: 2px;
}

footer .footer-bottom .nav-competences {
    display: inline-block;
    padding: 14px 0 14px 20px;
    margin: 0;
    vertical-align: top;
}

footer .footer-bottom .navportail {
    display: inline-block;
    padding: 10px 0
}

footer .footer-bottom .nav-competences ul li {
    display: inline-block;
    padding: 10px 0
}

footer .footer-bottom .nav-competences .nav-comp a:hover {
    text-decoration: none
}

footer .footer-bottom .nav-competences .nav-comp.enseignement a:hover {
    color: #027abd;
}

footer .footer-bottom .nav-competences .nav-comp.culture a:hover {
    color: #e73146;
}

footer .footer-bottom .nav-competences .nav-comp.sport a:hover {
    color: #ee7d12;
}

footer .footer-bottom .nav-competences .nav-comp.jeunesse a:hover {
    color: #16a344;
}

footer .footer-bottom .nav-competences .nav-comp.recherche a:hover {
    color: #35b5b2;
}

footer .footer-bottom .nav-competences .nav-comp.justice a:hover {
    color: #ab3a8d;
}

.head-one .homePageContent p {
    margin: 10px 0;
    width: 100%
}

/* Bouton identification page d'accueil */
.btnIdentification {
    padding: 20px 0;
    text-align: center;
}

.btnIdentification a {
    text-decoration: none;
    position: relative;
    padding: 15px 20px;
    margin-left: -100px;
}

.btnIdentification img.eidConnexion {
    position: absolute;
    right: -97px;
    top: -24px;
    transform: rotate(90deg);
}

.beID {
    position: relative;
    color: #666;
    padding: 15px 0;
    padding-left: 80px;
}

.beID img {
    width: 60px;
    position: absolute;
    left: 0;
    top: 25px
}

.beID strong {
    font-size: 24px;
    color: #333;
}

.table-preference td:first-child,
.table-preference th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: white;
}

.table-preference td:nth-child(2),
.table-preference th:nth-child(2) {
    position: relative;
}

@media (max-width: 360px) {

    input#frmEmail\:email\:editableText {
        width: 100%;
    }

    input#frmEmail\:email\:confirm {
        width: 100%;
    }

    .responsive-btn {
        padding-left: 30%;
        padding-top: 12px !important;
        display: flex;
    }

}

/* LG */
@media ( min-width: 1200px) {
    footer .footer-bottom .navportail {
        text-align: right;
    }

    .col1 {
        width: 5%;
    }

    .col2 {
        width: 40%;
    }

    .col3 {
        width: 15%;
    }

    .col4 {
        width: 25%;
    }

    .col5 {
        width: 15%;
    }
}

/* MD */
@media ( min-width: 992px) and (max-width: 1199px) {
    footer .footer-bottom .nav-competences .nav-comp a {
        font-size: 10px;
    }

    .btn {
        white-space: normal;
    }


}

/* SM */
@media ( min-width: 768px) and (max-width: 991px) {
    footer .footer-bottom .navportail {
        padding: 20px 0 0 0;
        width: 50%;
    }

    .footer-menu .navportail a img:first-of-type {
        margin: 0;
    }

    footer .footer-bottom .footer-menu .navportail img {
        margin: 0 auto
    }

    footer .footer-bottom .nav-competences {
        padding-left: 20px;
        text-align: left;
        width: 49%;
    }

    footer .footer-bottom .nav-competences .nav-comp {
        display: block;
        text-align: left;
    }

    footer .footer-bottom .nav-competences ul li {
        display: block;
        padding: 5px 0
    }

    footer .footer-bottom .nav-competences ul li a {
        border-right: 0 !important
    }

    .table-responsive > .table > thead > tr > th, .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > tfoot > tr > td {
        white-space: normal;
        display: block;
        border: 0
    }

    .table-responsive > .table-preference.table > thead > tr > th, .table-responsive > .table-preference.table > thead > tr > td,
    .table-responsive > .table-preference.table > tbody > tr > th, .table-responsive > .table-preference.table > tbody > tr > td,
    .table-responsive > .table-preference.table > tfoot > tr > th, .table-responsive > .table-preference.table > tfoot > tr > td {
        display: table-cell;
    }

    #frmDashboard .panel .panel-body {
        height: auto;
    }

    a.btn-home i.fa, a.btn-home span.fa {
        display: block;
        font-size: 30px !important;
        margin-bottom: 4px;
    }

    .btn {
        white-space: normal;
    }
}

/* XS */
@media ( max-width: 767px) {
    .panel .panel-body {
        height: auto;
    }

    .wrapper {
        height: 100%;
        position: relative;
        overflow-x: initial;
        overflow-y: initial;
    }

    footer .footer-bottom .navportail {
        width: 100%;
    }

    footer .footer-bottom .nav-competences {
        width: 100%;
    }

    .footer-menu .navportail a img:first-of-type {
        margin: 0;
    }

    footer .footer-bottom .footer-menu .navportail img {
        margin: 0 auto
    }

    footer .footer-bottom .nav-competences {
        padding-left: 20px;
        text-align: left;
    }

    footer .footer-bottom .nav-competences .nav-comp {
        display: block;
        text-align: left;
    }

    footer .footer-bottom .nav-competences ul li {
        display: block;
        text-align: left;
        width: 210px;
        margin: 0 auto;
        padding: 0 0 5px 9px;
    }

    footer .footer-bottom .nav-competences ul li a {
        border-right: 0 !important
    }

    .table-responsive > .table > thead > tr > th, .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > tfoot > tr > td {
        white-space: normal;
        display: block;
        border: 0
    }

    .table-responsive > .table-preference.table > thead > tr > th, .table-responsive > .table-preference.table > thead > tr > td,
    .table-responsive > .table-preference.table > tbody > tr > th, .table-responsive > .table-preference.table > tbody > tr > td,
    .table-responsive > .table-preference.table > tfoot > tr > th, .table-responsive > .table-preference.table > tfoot > tr > td {
        display: table-cell;
    }

    #frmDashboard .panel .panel-body {
        height: auto;
    }

    a.btn-home i.fa, a.btn-home span.fa {
        display: block;
        font-size: 30px !important;
        margin-bottom: 4px;
    }

    .btn {
        white-space: normal;
    }

}

/* XXS */
@media ( max-width: 375px) {
    footer .footer-bottom .navportail {
        padding: 0 0 20px 10%
    }

    footer .footer-bottom .footer-menu .navportail img {
        margin: 0
    }

    footer .footer-bottom .nav-competences {
        padding-left: 10%
    }

    footer .footer-bottom .nav-competences ul li {
        width: auto
    }

    .btn {
        white-space: normal;
    }
}

table.dataTable thead .sorting {
    background: url("../resources/images/sort_both.png") no-repeat center right;
}

table.dataTable thead .sorting_asc {
    background: url("../resources/images/sort_asc.png") no-repeat center right;
}

table.dataTable thead .sorting_desc {
    background: url("../resources/images/sort_desc.png") no-repeat center right;
}

table.dataTable thead .sorting_asc_disabled {
    background: url("../resources/images/sort_asc_disabled.png") no-repeat center right;
}

table.dataTable thead .sorting_desc_disabled {
    background: url("../resources/images/sort_desc_disabled.png") no-repeat center right;
}

/* liste sous forme de blocs */
.datatable_pagination {
    background-color: #027ABD;
    border-color: red !important;
}

@media ( max-width: 768px) {

    .download {
        width: 100%;
        display: block;
        margin: 0 !important;
    }

    .dataTables_wrapper table, .dataTables_wrapper thead,
    .dataTables_wrapper tbody, .dataTables_wrapper th,
    .dataTables_wrapper td, .dataTables_wrapper tr {
        display: block;
    }

    .dataTables_wrapper thead tr, .dataTables_wrapper tfoot tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .dataTables_wrapper tr {
        border: 1px solid #ccc;
        margin-bottom: 2em;
    }

    .dataTables_wrapper td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    .table-responsive .dataTables_wrapper {
        border: none;
    }

    .group {
        box-shadow: none;
        overflow: auto;
    }

    .table-responsive .visible-xs {
        display: inline-block !important;
    }

    #frmDossierDashboard .panel-body, #frmDocumentDashboard .panel-body,
    #frmNotificationDashboard .panel-body, #frmCommunicationDashboard .panel-body,
    #frmDemarcheDashboard .panel-body {
        height: auto;
    }

    .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
        right: 0;
        left: 0;
        min-width: auto;
        margin: 0;
        max-width: none;
        width: auto;
    }
}

/* liste sous forme de blocs */


/* 
    accessibility : a11y 
    ajout de l'outline pour l'élément ayant le focus.
*/

/* NAVIGATION PAR TABULATION */

/* Les liens dans les pavés de textes articles doivent être soulignés */
article a {
    text-decoration: underline;
}


/* ajouter de l'outline sur les liens et les titres principaux */
.no-focus-outline:focus {
    outline-color: none;
    outline-offset: 0;
    outline-style: none;

}

.head-one h1:focus,
.head-one h2:focus,
a:focus {
    outline-width: 3px;
    outline-color: #377BAE;
    outline-style: solid;
    outline-offset: 3px;
}

/*     */
a:hover, a:active, a:focus {
    color: #0079bc;
}

/* pour le menu de gauche même effet qu'au hover mais en bleu'*/
.sidebar-menu li a:focus {
    color: #0496D0 !important;
    background: #1e282c !important;
    border-left-color: #0496D0 !important;
    outline: none !important;

}

/* les boutons de paginations ont la même apparence que le hove */
.dataTables_paginate .paginate_button:focus,
.dataTables_paginate .paginate_button.focus {
    /*
        background-color: #4f4f4f;
        border-color: #4f4f4f;
    */

    background-color: #e1e3e9;
    border-color: #e1e3e9;
    color: white;

    outline: none;
    outline-offset: 0;
    outline-style: none;
}

/* les éléments du menu */
.skin-black .main-header .navbar .nav > li > a:hover,
.skin-black .main-header .navbar .nav > li > a:active,
.skin-black .main-header .navbar .nav > li > a:focus,
.skin-black .main-header .navbar .nav .open > a,
.skin-black .main-header .navbar .nav .open > a:hover,
.skin-black .main-header .navbar .nav .open > a:focus,
.skin-black .main-header .navbar .nav > .active > a {
    background-color: #e1e3e9;
    border-color: #e1e3e9;
    color: #333 !important;


    outline-color: none;
    outline-offset: 0;
    outline-style: none;

}

.menu-list div a:focus {
    background-color: #e1e3e9;
    border-color: #e1e3e9;
    color: #333 !important;

    outline: none;
}


/* pour les liens en bas de pages réduction de l'offset pour raison esthétiques '*/
footer .nav-competences a:focus {
    outline-offset: 0px;
}

/* FIN ACCESSIBILITE */

/*Pour la page accueil*/
.contentB, .content {
    padding: 0;
}

.communication {
    height: 370px;
}

@media (min-width: 768px) and (max-width: 991px) {


    .choix {
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .communication {
        height: auto;
    }

    .divcenter {
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1199px) and (max-width: 1399px) {

    .col1 {
        width: 5%;
    }

    .col2 {
        width: 40%;
    }

    .col3 {
        width: 15%;
    }

    .col4 {
        width: 25%;
    }

    .col5 {
        width: 15%;
    }

    .communication {
        height: 320px;
    }

    .divcenter {
        display: flex;
        align-items: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .col1 {
        width: 5%;
    }

    .col2 {
        width: 40%;
    }

    .col3 {
        width: 15%;
    }

    .col4 {
        width: 25%;
    }

    .col5 {
        width: 15%;
    }

    .choix {
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .communication {
        height: 370px;
    }

    .divcenter {
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1400px) {

    .col1 {
        width: 5%;
    }

    .col2 {
        width: 40%;
    }

    .col3 {
        width: 15%;
    }

    .col4 {
        width: 25%;
    }

    .col5 {
        width: 15%;
    }

    .communication {
        height: auto;
    }

    .divcenter {
        display: flex;
        align-items: center;
    }
}

.block {
    display: block;
}


.group {
    border-right: 1px solid #eeefff;
    border-bottom: 1px solid #eeefff;
}

@media (max-width: 767px) {
    a.btn-block-xs {
        display: block;
        width: 100%;
        margin-left: 0px;
    }

    .choix {
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .communication {
        height: auto;
    }


}

@media ( min-width: 416px) and (max-width: 766px) {

    .modalHeightScroll {
        max-height: 100%;
        overflow-y: auto;
    }

}

.section-content-com {
    overflow: hidden;
    height: 88px;
    text-overflow: ellipsis;
    display: block;
}

.date {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.b {
    white-space: nowrap;
    width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #000000;
}

.rounded-list {
    counter-reset: item;
    margin: 0;
    padding-left: 0;
}

.rounded-list > li {
    counter-increment: item;
    list-style: none inside;
    margin: 40px 0;
    overflow: hidden;
    font-size: 16px !important;
    line-height: 1.3;
}

.rounded-list > li:before {
    content: counter(item);
    margin-right: 20px;
    padding: 0px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 65px;
    background: #ffffff;
    color: black;
    text-align: center;
    font-size: 56px;
    float: left;
    border-style: solid;
    border-width: thin;
}

.rounded-list > li > div {
    margin-left: 85px;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.sprite {
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    vertical-align: middle !important;
    text-align: center !important;
    display: inline-block;
}

.sprite20x20 {
    width: 20px;
    height: 20px;
}

.sprite16x16 {
    width: 16px;
    height: 16px;
}

.sprite24x24 {
    width: 24px;
    height: 24px;
}

.sprite32x32 {
    width: 32px;
    height: 32px;
}

.sprite50x50 {
    width: 50px;
    height: 50px;
}

.sprite64x64 {
    width: 64px;
    height: 64px;
}

.sprite128x128 {
    width: 128px;
    height: 128px;
}

.br1 {
    border-right: 1px solid #000;
}

.text-breakword {
    word-wrap: break-word;
}

.user-panel {
    background-color: #0079BC;
}

a.badgeLink {
    outline: none;
}

.badge-enseignement {
    background-color: transparent;
    border-bottom: 3px solid #0079BC;
    color: black;
    padding: 10px;
}

.badge-enseignement.active, .badge-enseignement:hover {
    background-color: #0079BC;
    border: none;
    color: white;
    border-radius: 5px;
}

.dashboardPanel .panel-header h2 {

    border-bottom: 1px solid #e5e5e5;
    border-image: none;
    color: #333333;
    display: block;
    font-size: 21px;
    line-height: inherit;
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 0;
    width: 100%;

}

.timeline-div h2 {
    position: relative;
    margin: 0 0 30px 0;
    padding: 5px;
    list-style: none;
    border-radius: 4px;
    font-weight: 600;
    background-color: #0073b7;
    color: #fff;
    font-size: 18px;
}

.timeline-div {
    margin: 10px;
}

.p-h4 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
    line-height: 1.1;
    font-family: 'Source Sans Pro', sans-serif;
}

.list-responsive > ul > li:nth-of-type(odd) {
    background-color: #F3F3F3
}

.list-responsive > ul > li {
    white-space: nowrap;
    display: block;
    border: 0;
    border-top: 1px solid #f4f4f4;
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
}

.list-responsive > ul {
    margin: 0;
    padding: 0;

}

.title-h1-logo {
    all: unset;
}

.title-h1 {
    color: #303030;
    font-weight: normal;
    font-size: 1.8em;
    text-transform: uppercase;
    margin: 0.3em 0 !important;

}

.modal-overlay {
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #000;
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 0;
}

/*  */

.form-group.has-error label {
    color: #D63924;
}

.form-group.has-error .form-control, .form-group.has-error .input-group-addon {
    border-color: #D63924;
    box-shadow: none;
}

.form-group.has-error .help-block {
    color: #D63924;
}

.alert-danger, .alert-warning, .alert-success {
    opacity: 1;
    background-image: unset;
}

/*
 PAGE MES APPLICATIONS
*/
.mes-applications .thumbnail {
    height: 100%;
}

.col-mt-10 {
    margin-top: 10px;
}

.col-mb-10 {
    margin-bottom: 10px;
}

/*
 LOGO
*/
.logo h1 {
    font-family: "Roboto Condensed", sans-serif;
}

.logo a {
    text-decoration: none;
    font-size: 30px;
    color: black;
}

.logo a:hover, a:active, a:focus {
    color: black;
}

.separator {
    display: inline-block;
    width: 2px;
    background-color: #2E7CA3;
    margin: 0 10px -6px 10px;
    height: 40px;
}

footer .footer-menu, footer .footer-menu ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
}

.footer {
    background: #fff;
    padding-top: 0;
    padding-bottom: 1em;
}

.footer p {
    color: #333
}

.footer .navbar-right li a {
    color: #333 !important;
    padding-left: 2px;
    padding-right: 2px;
}

.footer .navbar-right li a:hover {
    color: #6995a9 !important;
    background-color: #fff;
}

.footer .etnic {
    color: #333;
}

.btn-demarche {
    background-color: #357DA7;
    border-color: #367fa9;
    color: #FFF;
    text-decoration: none;
    max-width: 100%;
    white-space: normal;
}

.btn-retourdemarche {
    background-color: #FFF;
    border-color: #357DA7;
    color: #357DA7;
    text-decoration: none;
    max-width: 100%;
    white-space: normal;
}

.p-lifecycle {
    font-size: 80%;
    margin-left: 7px;
}

.text-action-red {
    color: #ff0000;
}

.text-action-green {
    color: #2fdf2f;
}

.my-header-class {
    background-color: #154360;
    color: #FFFFFF;
}

.row-detail-width {
    width: 40% !important;
}

.head-one-left span {
    width: 100%;
}

.row-action-left {
    width: 200px !important;
    text-align: left !important;
    padding-left: 3% !important;
}

.timeline > li:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #ECF0F5;
    left: 30px;
    margin: 0;
    border-radius: 2px;
    display: block !important;
}

.timelinenotifcible {
    position: relative;
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
}

.timelinenotifcible:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ddd;
    left: 0px;
    margin: 0;
    border-radius: 2px;
}

.blocPdfDownload {
    background-color: #ecf0f5;
    border: 1px solid #dadada;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

/* STYLE PAGE CHOIX ESPACE */

.row-choix-espace {
    align-items: start;
}

@media ( max-width: 992px) {
    .cadre-espace.space-width {
        width: 100%;
    }
}

@media ( min-width: 993px) {
    .cadre-espace.space-width {
        width: 102%;
    }
}

.cadre-espace {
    border: 1px solid #ddd;
    background-color: #fff;
    margin-top: 10px;
    padding: 0px;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.thumb-box {
    display: flex;
    position: relative;
}

.thumb-box img {
    width: 100%;
    height: 280px;
    float: left;
}

.overlay-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 9998;
    left: 0;
    padding: 2%;
    background-image: linear-gradient(to bottom, #00000087, rgba(0, 0, 0, 0.75));
}

.fa-stack[data-count]:after {
    position: absolute;
    left: 70%;
    top: 20%;
    content: attr(data-count);
    font-size: 55%;
    padding: .6em;
    border-radius: 999px;
    line-height: .75em;
    color: white;
    background: rgba(255, 0, 0, .85);
    text-align: center;
    min-width: 2em;
    font-weight: bold;
}

.btn-choixEspace {
    border-color: #556D7238 !important;
    color: #4D9AE6 !important;
    text-decoration: none !important;
    background-color: #FFF !important;
    font-size: 12px !important;
    font-weight: bold;
}

.btn .fa-3x {
    font-size: 3em;
}

.p-name-espace {
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    margin: 8px;
}

.p-description-espace {
    color: black;
    font-size: 12px;
    font-weight: bold;
}

.span-notification-espace {
    padding: 0px;
    display: inline-block;
    line-height: 2;
}

.row-Etab {
    width: 95% !important;
    border-bottom: 0px solid #e5e5e5 !important;
}

.row-Hidden {
    width: 1% !important;
    border-bottom: 0px solid #e5e5e5 !important;
}

.row-button {
    width: 25% !important;
    border-bottom: 0px solid #e5e5e5 !important;
}

.row-icon {
    width: 5% !important;
}

.col-Etab-color {
    background-color: white !important;
    font-size: 12px !important;
}

.my-header-etab {
    border-bottom: 0px solid #e5e5e5 !important;
}

.footer-etab {
    border-bottom: 1px solid #e5e5e5 !important;
}

a.dropDown-demarche {
    text-decoration: none;
    font-size: 14px;
}

@media ( min-width: 768px) {
    .footer-content {
        padding-right: 0;
    }

    .footer-left {
        width: 100%;
    }

    .navbar-nav > li {
        padding-top: 10px;
    }
}

@media ( min-width: 992px) {
    .footer-content {
        padding-right: 4.78rem;
        padding-left: 3.6rem;
        margin-right: 0;
        margin-left: 0;
    }

    .footer-left {
        width: auto;
    }

    .navbar-nav > li {
        padding-top: 0;
    }
}

@media ( min-width: 1200px) {
    .footer-content {
        padding-right: 14.2rem;
        padding-left: 13rem;
    }
}

@media (min-width: 1400px) {
    .footer-content {
        padding-right: 10rem;
        padding-left: 8.16rem;
    }
}

@media (min-width: 1500px) {
    .footer-content {
        padding-right: 12.4rem;
        padding-left: 10.16rem;
    }
}

@media ( min-width: 1600px) {
    .footer-content {
        padding-right: 28.06rem;
        padding-left: 25.88rem;
    }
}

@media ( min-width: 2000px) {
    .footer-content {
        padding-right: 28.06rem;
        padding-left: 26.88rem;
    }
}

@media ( min-width: 2500px) {
    .footer-content {
        padding-right: 45.06rem;
        padding-left: 42.88rem;
    }
}

/* FIN STYLE PAGE CHOIX ESPACE */

.dropDown-demarche {
    text-decoration: none;
    font-size: 14px;
}

.menu-list .dropDown-demarche {
    font-size: 16px;
    border-bottom: 1px solid #DFDFDF;
}

/* Apply alternating row background color in Datatable */
.row-even {
    background-color: #f2f2f2 !important;
}

.row-odd {
    background-color: #ffffff !important;
}

@font-face {
    font-family: "Roboto-Light-etnic";
    src: url('/monespace/javax.faces.resource/fonts/Roboto-Light.ttf.xhtml');
}

@font-face {
    font-family: "Roboto-Regular-etnic";
    src: url('/monespace/javax.faces.resource/fonts/Roboto-Regular.ttf.xhtml');
}

footer .footer-bottom .nav-competences .nav-comp a {
    display: inline-block;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    padding: 5px 10px 5px 10px;
    margin-right: 10px;
}

.col-width {
    max-width: 150px;
    word-wrap: break-word;
}

.btn-communication {
    padding: 8px 8px;
    font-size: 18px;
    border-radius: 8px;
    margin-bottom: 50px !important;
    margin-top: 30px;
    cursor: pointer;
    background-color: #357DA7;
    border-color: #367fa9;
    color: #FFF;
}

.btn-dossier {
    background-color: #357DA7;
    border-color: #367fa9;
    color: #FFF !important;
    text-decoration: none !important;
    max-width: 100%;
    white-space: normal;
}

.entry-container {
    display: block ruby;
    gap: 10px;
    font-size: 16px;
    margin-top: 30px;
    text-transform: none;
}

.entry {
    text-transform: none;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag {
    background-color: #0079BC;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 15px;
    margin-left: 1em;
    padding: 10px;
    display: inline-block;
    min-width: 10px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}
.info-container {
    left: -7px;
    top: -3px;
}
.info-preamble {
    height: auto;
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
    color: #31708f;
    width: max-content;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.info-container:hover .info-preamble {
    opacity: 1;
    visibility: visible;
    white-space: normal;
}

table[id*="idDataTable"]:not(#frmDemande\:demandeTable\:idDataTable):not(#frmDocument\:documentTable\:idDataTable):not(#frmPaiement\:paiementTable\:idDataTable):not(#frmHisto\:listTracecomposite\:idDataTable)
	{
	border: 1px solid #ddd;
	border-collapse: collapse;
}

table[id*="idDataTable"]:not(#frmDemande\:demandeTable\:idDataTable):not(#frmDocument\:documentTable\:idDataTable):not(#frmPaiement\:paiementTable\:idDataTable):not(#frmHisto\:listTracecomposite\:idDataTable):has(>thead>tr>th.sorting_disabled:first-child) td:first-child,
	table[id*="idDataTable"]:not(#frmDemande\:demandeTable\:idDataTable):not(#frmDocument\:documentTable\:idDataTable):not(#frmPaiement\:paiementTable\:idDataTable):not(#frmHisto\:listTracecomposite\:idDataTable) th.sorting_disabled
	{
	border-right: none !important;
}

table[id*="idDataTable"]:not(#frmDemande\:demandeTable\:idDataTable):not(#frmDocument\:documentTable\:idDataTable):not(#frmPaiement\:paiementTable\:idDataTable):not(#frmHisto\:listTracecomposite\:idDataTable) td:not(:empty),
	table[id*="idDataTable"]:not(#frmDemande\:demandeTable\:idDataTable):not(#frmDocument\:documentTable\:idDataTable):not(#frmPaiement\:paiementTable\:idDataTable):not(#frmHisto\:listTracecomposite\:idDataTable) th:not(:empty)
	{
	border-right: 1px solid #ddd !important;
}

table[id*="idDataTable"] :not(#frmDemande\:demandeTable\:idDataTable) :not(#frmDocument\:documentTable\:idDataTable) :not(#frmPaiement\:paiementTable\:idDataTable) :not(#frmHisto\:listTracecomposite\:idDataTable) th,
	table[id*="idDataTable"] :not(#frmDemande\:demandeTable\:idDataTable) :not(#frmDocument\:documentTable\:idDataTable) :not(#frmPaiement\:paiementTable\:idDataTable) :not(#frmHisto\:listTracecomposite\:idDataTable) td
	{
	border-bottom: 1px solid #ddd !important;
}