/* CSS MANAGEMENT */
/* 1 = Reset
/* 2 = Login / logout
/* 3 = Header
/* 4 = Formulaire
/* 5 = Contenu page
/* 6 = Calendrier
/* 7 = Rendez-vous
/* 8 = Modale
*******************/

:root {/* À mettre en premier dans les CSS ! */

    --green: #00ad87;
        --palegreen: #e5f7f3;
    --blue: #0d62a0;
    --bluepale: #acddff;
    --box-shadow: 0 0 5px rgb(118 131 143 / 20%);/* Reprise VLB RH */

    --red-form: #D22747;

    /* ==================================== COULEURS ÉTATS =================================== */

    /* - Candidatures - */
    --send: #f4854e;                /* Envoi au service (validated2) ORANGE */
    --refusedbyservice: #cd6de8;    /* Refusé par le service VIOLET */
    --interview: #536dfe;           /* Entretien BLEU PROFOND */
    --contacted: #fd79ef;           /* À contacter ROSE */
    --refused: #f56b62;             /* Refusé ROUGE */
    --recruited: #74cb80;           /* Recruté VERT */
    --closed: #aaa;                 /* Clôturé (closed) GRIS */    

    /* - Demandes de stages - */
    --wait: #08aeea;                /* À traiter (wait / to process / default) BLEU CLAIR */
    --progress: #a593ff;            /* En cours (in-progress / current) MAUVE */
    --validated: #2cc8ba;           /* Validé TURQUOISE */
    --tank: #fbc11e;                /* Vivier JAUNE */
    /* Refusé  = idem Refusé des candidatures */
    --online: var(--validated);

    /* - Gestion des offres - */
    /* En ligne = validated */
    --disabled: var(--refused);     /* Désactivé ROUGE */
    --archived: #aaa;               /* Archivé GRIS */

    --main: #00ad87;

    /* ==================================== COULEURS ÉTATS =================================== */

}

/* 1 = Reset */
.extbase-debugger-floating {
    display: none;
}
/* Fonts */
.header,
.content,
.header-title .badge-secondary {font-family:Roboto,Arial,Helvetica,sans-serif;}

.dashboard .col-lg-6 .search-submit::before,
.offer-list li::before,
.modal .modal-body .modal-body-text li::before,
.user_connected .name_user::before {
    font-family: 'Font Awesome 5 Pro';
}

a {color:#0b6ba8;}


/* 2 = Login / logout */
.header .tx-felogin-pi1 form fieldset {color:#fff;}
    .header .tx-felogin-pi1 form fieldset div {font-size:.875em;}
        .header .tx-felogin-pi1 form fieldset div:nth-child(2)::before {background-color:#fff;}

.content .frame-type-login .form-horizontal .form-control {
    border: 1px solid #ddd;
    color: #999999;
}
.content .frame-type-login .form-horizontal .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #999999;
}
.content .frame-type-login .form-horizontal .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #999999;
}
.content .frame-type-login .form-horizontal .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #999999;
}
.content .frame-type-login .form-horizontal .form-control:-moz-placeholder { /* Firefox 18- */
    color: #999999;
}
.content .frame-type-login .form-horizontal .form-control:is(:focus,:hover,:active) {
    border-color: #737373;
}
.content .frame-type-login h3 {
    display: none;
}

/* 3 = Header */
.header {
    background-color: var(--green);
}
.header-not-home {
    background-color: var(--green);
}

    /* Profil (copie Villiers-RH) */
    .header .user_connected {
        display: flex;
        align-items: center;
        margin: 0 60px 0 auto;
        color: #fff;
    }
        .user_connected .name_user {
            display: flex;
            align-items: center;
            text-align: center;
            cursor: pointer;
        }
            .user_connected .name_user::before {
                display: block;
                content: '\f007';
                border-radius: 50%;
                height: 40px;
                width: 40px;
                background: #fff;
                color: var(--green);
                font-size: 24px;
                font-weight: 500;
            }
            .user_connected .name_user::after {/* Flèche dropdown profil deconnexion */
                display: none;
            }
            .user_connected .user-firstname {
                margin-left: 10px;
            }
        .header .dropdown-menu {
            left: auto!important;
            right: 0;
            top: 70px!important;
            border: 0;
            border-radius: 5px;
            margin: 0;
            width: 350px;
            box-shadow: 0 0 7px rgb(0 0 0 / 25%);
            transform: none!important;         
        }
            .dropdown-menu .dropdown-menu-top,
            .dropdown-menu .dropdown-menu-bottom {
                padding: 20px;
            }
                .dropdown-menu-top .dropdown-user {
                    color: #333;
                }
                    .dropdown-user .user-firstname,
                    .dropdown-user .user-lastname {
                        font-size: 1.125em;
                        font-weight: 500;
                    }
                    .dropdown-user .user-firstname {
                        margin-left: 0;
                    }
                    .dropdown-user .user-lastname {
                        /*margin-left: 10px;*/
                    }
                    .dropdown-user .user-email {
                        display: block;
                        font-size: .875em;
                    }
                    .dropdown-menu .btn-primary {
                        display: flex;
                        align-items: center;
                        border: 1px solid #ddd;
                        border-radius: 20px;
                        height: 40px;
                        margin: 0 auto;
                        padding: 0 25px;
                        background-color: transparent;
                        color: #333;
                        font-size: .938em;
                        font-weight: bold;
                        text-decoration: none;
                        white-space: nowrap;/* FF ! */
                    }
                    .dropdown-menu .btn-primary:is(:focus,:hover,:active) {
                        border: 1px solid #ddd;
                        background-color: var(--green);
                        color: #fff;
                        outline: none;
                        box-shadow: none;
                    }
                    .dropdown-menu-top .btn-primary {
                        margin-top: 20px;
                        width: 196px;
                    }
            .dropdown-menu .dropdown-menu-bottom {
                border-top: 1px solid #ddd;
            }

    /* Menu latéral */
    body.fixed-body {
        overflow: hidden;
    }
        .header .menuButton {
            position: static;
            min-width: 80px;
            color: #fff;
            outline: none;
        }
            .header .menuButton .fa-bars {
                color: inherit;
            }
                .header .opened .fa-bars:before {
                    content: '\f00d';
                }
        .menuContainer {
            top: 80px;
            background-color: #fff;
            box-shadow: var(--box-shadow);
        }
            /*.menuContainer::before {
                position: absolute;
                left: 0;
                right: 0;
                top: -10px;
                content: '';
                height: 10px;
                background-color: #fff;
            }  */      
            .menuContainer .navPrincipal {
                position: relative;
                z-index: 1;
            }
            .menuContainer .frame {
                margin-bottom: 30px;
            }    
                .menuContainer .frame a {
                    border: 0;
                    padding: 22px 0 22px 80px;
                    color: #737373;
                    font-size: .938em;
                    text-decoration: none;
                }
                .menuContainer .frame a:hover,
                .header .siteLink:hover,
                .menuContainer .frame a:focus,
                .header .siteLink:focus,
                .menuContainer .frame a:active,
                .header .siteLink:active {
                    background-color: var(--bluepale);
                    color: var(--blue);
                    font-weight: 600;
                }
                    .menuContainer .frame-type-menu li a::before,
                    .menuContainer .frame-type-menu_subpages li a::before {
                        left: 0;
                        top: 0;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        height: 60px;
                        width: 80px;
                        background: none;
                        color: var(--green);
                        font-size: 24px;
                        font-weight: 400;
                    }
                    .menuContainer .frame a:is(:focus,:hover,:active)::before,
                    .frame-type-menu_subpages li a:is(:focus,:hover,:active)::before {
                        color: var(--link);
                        font-weight: 400;
                    }                

                    /* Partie RH */
                    .menuContainer .frame-type-menu a[title="Candidatures"]::before {
                        content: '\f0ce';
                    }
                    .menuContainer .frame-type-menu a[title="Demande d'apprentissage"]::before {
                        content: '\f0ce';
                    }            
                    .menuContainer .frame-type-menu a[title="Demandes de stages"]::before {
                        content: '\f0ce';
                    }
                    .menuContainer .frame-type-menu .list-2164 a::before {
                        content: '\f044';
                    }
                    .menuContainer .frame-type-menu a[title="Statistiques"]::before {
                        content: '\f080';
                    }
                    .menuContainer .frame-type-menu a[title="Utilisateurs"]::before {
                        content: '\f007';
                    }
                    .menuContainer .frame-type-menu a[title="Messages"]::before {
                        content: '\f27a';
                    }

            .header .siteLink {
                display: flex;
                align-items: center;
                border: 0;
                height: 50px;
                margin: 0;
                padding: 0 0 0 30px;
                color: var(--link);
                font-weight: 500;
                text-decoration: none;
            }
            .header .footerMenu a {
                display: flex;
                padding: 40px 30px;
                color: #737373;
                font-size: .813em;
                text-decoration: none;
            }
                .header .footerMenu a::before {
                    display: none;
                }
                .header .footerMenu .footerMenu-logo {
                    height: 12px;
                    margin-left: 6px;
                    width: 65px;
                }

    /* Menu */
    /*.menuContainer {
        background-color:var(--blue);
    }
        Connexion
        .connexion .dropdown-menu .link {
            display: none;
        }

        Liste menu     
        .menuContainer .frame a:is(:focus,:hover,:active) {
            border-color: var(--green);
            background-color: #144587;
        }

            .menuContainer .frame-type-menu .list-2106 a::before {AGENDA
                content: '\f073';
            }
            .menuContainer .frame-type-menu .list-2104 a::before {PARAMETRE
                content: '\f1de';
            }
            .menuContainer .frame-type-menu .list-2109 a::before {FICHE
                content: '\f044';
            }

            Partie RH
            .menuContainer .frame-type-menu a[title="Candidatures"]::before {
                content: '\f0ce';
            }
            .menuContainer .frame-type-menu a[title="Demande d'apprentissage"]::before {
                content: '\f0ce';
            }            
            .menuContainer .frame-type-menu a[title="Demandes de stages"]::before {
                content: '\f0ce';
            }
            .menuContainer .frame-type-menu a[title="Gestion des offres"]::before {
                content: '\f044';
            }
            .menuContainer .frame-type-menu a[title="Statistiques"]::before {
                content: '\f080';
            }

    .header-bottom-page {
        background-color: var(--green);        
    }
        .header-title {
            
        }
            .header-title .badge-secondary {
                background-color: var(--green);
            }*/


/* 4 = Formulaire */
    .content .form-horizontal .submit,
    .content .btn-primary,
    .form-horizontal input[type="submit"],
    .content .button-red {
        border: 1px solid var(--green);
        border-radius: 20px;
        min-height: 40px;
        background-color: var(--green);
        box-shadow: none;
    }   
    .content .form-horizontal .submit:focus,
    .form-horizontal input[type="submit"]:focus,
    .content .button-red:focus {
        outline: none;
    }
    .content .form-horizontal .submit:hover,
    .form-horizontal input[type="submit"]:hover,
    .content .button-red:hover,
    /* Surcharge Bootstrap */
    .btn-primary:active:hover, .btn-primary.active:hover, 
    .open > .dropdown-toggle.btn-primary:hover, 
    .btn-primary:active:focus, .btn-primary.active:focus, 
    .open > .dropdown-toggle.btn-primary:focus, 
    .btn-primary:active.focus, 
    .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus,
    .content .btn-primary:is(:focus-visible,:focus,:hover,:active) {
        border-color: var(--green);
        background-color: var(--green);
    }
    .content .form-horizontal .flex-row a {
        border: 1px solid var(--green);
        color: var(--green);
    }

    .content .form-horizontal .btn-secondary {
        border: 1px solid #e3e3e3;
        border-radius: 20px;
        background-color: #fff;
        color: var(--green);
        font-size: 1em;
    }

    /*.content .tx-felogin-pi1 form input {color:#999; font-size:1em;}
    form #user {background:url(../Img/mail-envelope.svg) no-repeat right 10px center; background-size:20px 18px;}
    form #pass {background:url(../Img/locked-padlock.svg) no-repeat right 10px center; background-size:18px 20px;}
    .content .tx-felogin-pi1 form input:focus,
    .content .form-horizontal input:focus {border-color:#9f8f68; outline:none;}
    .content .tx-felogin-pi1 form input[type="submit"],
    .content .form-horizontal .submit {background-color:var(--green); color:#fff; font-weight:600;} 
        .content .tx-felogin-pi1 a {font-size:.875em; font-weight:300;}*/
    /* Connexion */
    /*.col-lg-6  .frame-type-login {
        text-align: center;
    }*/
    /* Modifier */
    .content .frame-type-menu a::before  {background-color:#9f8f68;}
    /* Formulaire modifier données */
        .content .form-horizontal label em {color:var(--green); font-size:.875em; font-weight:400;}
        .content .form-horizontal .help-block {font-size:.875em;}  
        .content .form-horizontal .file-infos {font-size:.875em;}
        .content .form-horizontal .obligatoires {
            color: var(--red-form); 
            font-size: .875em;
        }
    .form-horizontal .control-label span[aria-hidden="true"] {
        margin: 0 0 0 5px;
        color: var(--red-form);
        font-size: .875em;
    }

.artifica-form.form-table {
    margin-bottom: 2rem;
    text-align: left;
}
    .artifica-form .label {
        color: #333;
        display: block;
        font-size: 1.6rem;
        padding: .2em 1em .2em 0;
        text-align: left;
    }
    .artifica-form select {
        border: 1px solid #ccc;
        padding: 5px 10px;
    }

/* Validation rendez-vous */
.page-1879 .alert-success {
    background-color: transparent;
    border: 0;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}
    .page-1879 .alert-success .fa-check {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        height: 70px;
        margin: 0 auto 30px;
        width: 70px;
        background: var(--green);
        color: #fff;
        font-size: 24px;
    }
    .page-1879 .alert-success h2 {
        border: 0;
        margin: 0 0 20px;
        padding: 0;
        /*font-size: 1.25rem;*/
    }

.artifica-form.form-services {
    margin-bottom: 5rem;
}

.artifica-form.form-services .artifica-form-item {
    margin-left: 0px;
}

.frame-service-hidden {

}

.frame-service-hidden table {
     width : 100%;
     border-collapse: unset;
}

.frame-service-hidden table tr {
     border-top: none;
}

.frame table td p {
    margin: 0px;
}

.frame table td p.closed {
    color: red;
}

.frame table td p.opened {
    color: green;
}


.frame-schedule {
    padding-top: 0px;
}

.comment {
    text-align: left;
}

/* Dates exceptionnelles */
.list-flex .btn-date .fa-calendar-alt {
    color: var(--green);
}
#modalAddException .modal-header {
    background-color: var(--green);
}
#modalAddException .radio .fa-check {
    color: var(--green);
}
/* RH - candidature */
.content .form-horizontal .form-reference {
    background-color: var(--blue);
    color: #fff;
}


/* 5 = Contenu page */
.backendlayout-structure > .content {
    overflow-x: hidden;/* Attention page accueil */
}
.backendlayout-structure.page-2163 > .content {
    overflow: visible;
}
*:focus {
    outline: 2px solid var(--green);
}
.header *:focus {
    /*outline: 2px solid #fff;*/
    outline: none;
}
/* Connexion partie RH */
.page-rh {
    background-color: #f3f3f3;
}
/* Tableau de bord RH */
.dashboard .row {
    display: flex;
    flex-wrap: wrap; /* SINON PAS COLONNES A LA LIGNE EN RESPONSIVE !!! */
}
.dashboard .row.form-horizontal {
    flex-wrap: wrap;
    margin: 0;
}    
    .dashboard .col-lg-6 {
        display: flex;
        padding: 0;
    }
    .dashboard .dashboard-form:is(:focus,:hover,:active) {
        /*box-shadow: 0 2px 5px rgba(0,0,0,.2); BORDS CARRÉS ! */
        filter: drop-shadow(0 0 5px rgba(0,0,0,.2));/* BORDS RONDS ! */
    }
        .dashboard .col-lg-6 .search-input {
            border: 1px solid #e3e3e3;
            border-radius: 10px;
            border-bottom-right-radius: 0;
            border-top-right-radius: 0;
            border-right: 0;
            height: 50px;
            padding: 0 20px;
            width: calc(100% - 50px);
            background-color: #f8f8f8;
            color: #737373;
            cursor: pointer;
            outline: none;
            transition: all .3s ease;
        }
        .dashboard .dashboard-form:is(:focus,:hover,:active) .search-input {
            background-color: #fff;
        }

        .dashboard .col-lg-6 .search-submit,
        .dashboard .col-lg-6 .search-submit:is(:focus,:hover,:active) {
            border: 1px solid #e3e3e3;
            border-radius: 10px;
            border-bottom-left-radius: 0;
            border-top-left-radius: 0;
            border-left: 0;
            width: 50px;
            background-color: #f8f8f8;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: auto 18px;
            outline: none;
        }
        .dashboard .col-lg-6 .search-submit {
            background-image: url("../Img/magnifie-grey.svg");
        }
        .dashboard .col-lg-6 .search-submit:is(:focus,:hover,:active),
        .dashboard .dashboard-form:is(:focus,:hover,:active) .search-submit {
            background-color: #fff;
            background-image: url("../Img/magnifie.svg");
        }

    .dashboard .filters {
        justify-content: flex-end;
        font-size: .875em;
    }
        .dashboard .filters .btn {
            border-radius: 25px;
            border-width: 1px;
            height: 50px;
            margin-left: 20px;
            padding: 0 20px;
            font-size: 1em;
        }
        .dashboard .filters .btn,
        .dashboard .filters .btn:is(:focus,:hover,:active) {
            box-shadow: none;
            outline: none;
        }
        .dashboard .filters .btn-secondary {
            border-color: #e3e3e3;
            background-color: transparent;
            color: #737373;
        }
        .dashboard .filters .btn-secondary.open {
            background-color: #ececec;
        }
        .dashboard .filters .btn-secondary:hover {
            color: var(--green);
        }
            .dashboard .filters .btn-secondary .far,
            .dashboard .filters .btn-secondary .fal {
                position: relative;
                top: 2px;
                margin-right: 10px;
                color: var(--green);
                font-size: 18px;
            }
        .dashboard .filters .btn-primary,
        .dashboard .filters .btn-primary:is(:focus,:hover,:active) {
            border-color: var(--green);
            background-color: var(--green);
        }
        .filters .btn-filters .fa-caret-down {
            margin-left: 10px;
        }
        .filters .open .fa-caret-down {
            transform: rotate(180deg);
        }
        /* Sous-menu des filtres */
        .content .dashboard .form-horizontal .filters-dropdown {
            position: relative;
            display: none;
            justify-content: space-between;
            border-top: 1px solid #ececec;
            margin-bottom: 0;
            padding: 25px 0;
            min-width: 100%;
            background-color: #f8f8f8;
            transition: all .3s ease-in-out;
        }
            .content .dashboard .form-horizontal .filters-dropdown::before,
            .dashboard-table-item .accordion-header::before,
            .accordion-collapse .dashboard-table-application::before,
            .dashboard-table .dashboard-table-header::before {
                position: absolute;
                bottom: -1px;
                left: -100%;
                right: -100%;
                top: -1px;
                content: '';
                border-top: 1px solid #ececec;
                border-bottom: 1px solid #ececec;
                background: #f8f8f8;
            }
            .dashboard-table-item .accordion-header::before {
                border-top: 0;
            }
            .dashboard-table-item .accordion-item:first-child .accordion-header::before {
                border-top: 1px solid #ececec;
            }
            .content .dashboard .form-horizontal .filters-dropdown::before {
                border-bottom: 0;
            }
        .content .dashboard .form-horizontal .filters-dropdown.open {
            display: flex;
            /*margin-bottom: 20px;*/
        }
            .dashboard .filters-dropdown .form-group {
                position: relative;
                top: 1px;
                margin: 0;
            }
            .dashboard .filters-dropdown.open .form-group {
                top: 0;
                margin: 0;
                width: calc(25% - 31px); /* bouton de 124px / 4 */
            }
            /* Tailles filtres stage */
            .dashboard-stages .filters-dropdown.open .form-group {
                /*width: calc(20% - 24.8px); email enlevé */ /* bouton de 124px / 5 */
            }
            .dashboard .filters-dropdown.open .filters-apply {
                width: 124px;
            }
                .filters-dropdown .dashboard-select {
                    border: 1px solid #e3e3e3;
                    border-radius: 10px;
                    height: 50px;
                    margin-right: 20px;
                    padding: 0 20px;
                    width: calc(100% - 20px);
                    background-color: #fff;
                    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Calque_1' focusable='false' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 286.1 167.1' style='enable-background:new 0 0 286.1 167.1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23737373;%7D%0A%3C/style%3E%3Cpath class='st0' d='M279,41L160,160c-9.3,9.4-24.5,9.4-33.9,0L7.1,41C-8,25.9,2.7,0,24.1,0l238,0C283.5,0,294.2,25.9,279,41z'/%3E%3C/svg%3E");
                    background-repeat: no-repeat, repeat;
                    background-position: right .7em top 50%, 0 0;
                    background-size: .65em auto, 100%;
                    color: #737373;
                    font-size: .875em;
                    appearance: none;
                    outline: none;
                }
                .dashboard-stages .filters-dropdown .dashboard-select {
                    /*width: 186px; email enlevé */
                }
                .dashboard .form-horizontal .filters-dropdown .filters-calendar {                    
                    white-space: nowrap;
                }
                    .dashboard .filters-dropdown .filters-calendar .calendar {
                        margin: 0 30px 0 0;
                    }
                .filters-dropdown .filters-calendar .form-control {
                    border: 1px solid #e3e3e3;
                    border-radius: 10px;
                    height: 50px;
                    padding: 0 38px 0 12px;
                    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='calendar-alt' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-calendar-alt fa-w-14 fa-3x'%3E%3Cpath fill='%23737373' d='M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z' class=''%3E%3C/path%3E%3C/svg%3E");
                    background-repeat: no-repeat, repeat;
                    background-position: right .7em top 50%, 0 0;
                    background-size: auto 18px;
                    color: #737373;
                    font-size: .875em;
                    text-align: left;
                    box-shadow: none;
                    outline: none;
                }                    
                .filters-dropdown .filters-apply .filters-submit {
                    display: flex;
                    font-size: .875em;
                    font-weight: normal;
                    outline: none;
                }
#dashboard-listing-container {
    min-height: 225px;
}

.dashboard .dashboard-table {
    flex-direction: column;
}
    .dashboard-table .dashboard-table-header {
        position: relative;
        display: flex;
        align-items: center;
        /*border-top: 1px solid #ececec;*//* Correction 25/01/2021 liste Offres */
        height: 70px;
        font-size: .75em;
        font-weight: bold;
        text-transform: uppercase;
    }
        .dashboard-table .dashboard-table-header::before {
            border-top: 1px solid #ececec;
            background-color: transparent;
        }
        .dashboard-table-application .unvisited,
        .dashboard-table-application .refused {
            position: absolute;
            left: -5px;
            top: 30px;
            z-index: 1;
            border-radius: 4px;
            height: 8px;
            width: 8px;
            background-color: var(--green);
        }
        .dashboard-table-application .refused {
            background-color: red;
        }
        .dashboard-table .d-flex {
            position: relative;
            padding: 0 20px;
        }
        .dashboard-table .header-reference {
            width: 37.5%; /* 25 % ? */
        }
        .dashboard-table .header-email {
            width: 25%;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .dashboard-table .header-phone {
            width: 12.5%;
        }
        .dashboard-table .header-sendto {
            width: 12.5%;
        }
        .dashboard-table .header-type {
            width: 12.5%;
        }
        .dashboard-table .header-state {
            width: 12.5%;
        }

        /* Partie offres - début */
        .dashboard-table .header-ref-offer {
            display: flex;
            width: 57.5%;
        }
        .dashboard-table .header-provenance {
            width: 15%;
        }
        .dashboard-table .header-publication {
            width: 15%;
        }
        /* Partie offres - fin */

        /* Partie candidature - liste filtrée candidats - début */
        .dashboard-table-status .header-reference {
            width: 31%;
        }
        .dashboard-table .header-offer {
            width: 31.5%;
        }
        /* Partie candidature - liste filtrée candidats - fin */

        /* Partie stages - début */
        .dashboard-stages .dashboard-table .dashboard-table-header .d-flex {
            white-space: nowrap;
        }
        .dashboard-stages .dashboard-table .header-ref-offer {
            width: 38%;/*28%*/
        }
        /*.dashboard-stages .dashboard-table .header-email {
            width: 18%;
        }*/
        .dashboard-stages .dashboard-table .header-service {
            padding: 10px;
            width: 15%;/*12%*/
        }
        .dashboard-stages .dashboard-table .header-type {
            width: 10%;
            word-break: break-word;
        }
        .dashboard-stages .dashboard-table .header-from {
            width: 15%;/*10%*/
        }
        .dashboard-stages .dashboard-table .header-duration {
            width: 9.5%;
        }
        .dashboard-stages .dashboard-table .header-state {
            
        }
        /* Partie stages - fin */

            .dashboard-table .tags {
                display: inline-flex;
                align-items: center;
                border-radius: 11px;
                height: 22px;
                padding: 0 10px;
                background-color: #999;
                color: #fff;
                font-size: .875em;
                white-space: nowrap;
            }
            .dashboard-table .tag-inprogress {
                background-color: var(--progress);
            }
            .dashboard-table .tag-hidden {
                background-color: var(--disabled);
            }
            .dashboard-table .tag-wait {
                background-color: var(--wait);
            }
            .dashboard-table .tag-current {
                background-color: var(--progress);
            }
            .dashboard-table .tag-validated {
                background-color: var(--online);
            }
            .dashboard-table .tag-validated2 {
                background-color: var(--send);
            }
            .dashboard-table .tag-refused {
                background-color: var(--refused);
            }
            .dashboard-table .tag-refusedbyservice {
                background-color: var(--refusedbyservice);
            }
            .dashboard-table .tag-tank {
                background-color: var(--tank);
            }
            .dashboard-table .tag-interview {
                background-color: var(--interview);
            }
            .dashboard-table .tag-recruited {
                background-color: var(--recruited);
            }
            .dashboard-table .tag-contacted {
                background-color: var(--contacted);
            }          
            /* Partie Offre */
            .dashboard-table .tag-tobepublished {
                background-color: #c5a070;
            }
            .dashboard-table .tag-archived {
                background-color: var(--archived);
            }
            .dashboard-table .tag-disabled {
                background-color: var(--disabled);
            }

    .dashboard-table-content .dashboard-table-item {
        margin-bottom: 10px;
    }
        .dashboard-table-item .accordion-item {
            margin-bottom: 10px;
        }
            .dashboard-table-item .accordion-header {
                position: relative;
                background-color: #f8f8f8;
            }
                .dashboard-table-item .accordion-header::before {
                    background-color: #f8f8f8;
                    border-bottom: 0;
                }
                .accordion-header .accordion-title {
                    margin: 0;
                    font-size: .938em;
                    font-weight: bold;
                }
                    .accordion-header .accordion-title-link {
                        position: relative;
                        display: flex;
                        align-items: center;
                        height: 50px;
                        padding: 0 20px;
                        color: #333;
                        text-decoration: none;
                        outline: none; /* Firefox */
                    }
                        .accordion-header .fa-chevron-circle-up,
                        .accordion-header .collapsed .fa-chevron-circle-up {
                            position: absolute;
                            left: -10px;
                            color: var(--green);
                            font-size: 18px;
                            transition: transform .3s; 
                            transform: rotate(180deg);
                        }
                        .accordion-title-link:not(.collapsed) .fa-chevron-circle-up {
                            transform: rotate(0deg);
                        }
                        .accordion-header .accordion-title-link-text {

                        }
                        .accordion-header .dashboard-number,
                        .accordion-header .dashboard-service-refused {
                            display: inline-flex;
                            align-items: center;
                            justify-content: center;
                            border-radius: 9px;
                            height: 18px;
                            margin-left: 10px;
                            padding: 0 5px;
                            min-width: 18px;
                            background-color: var(--green);
                            color: #fff;
                            font-size: .8em;
                        }
                        .accordion-header .dashboard-service-refused {
                            background-color: red;
                        }
            .accordion-collapse .dashboard-table-application,
            .accordion-collapse .dashboard-table-application:is(:focus-visible,:focus,:hover,:active) {
                position: relative;
                display: flex;
                align-items: center;
                border-color: transparent;
                /*border-bottom: 1px solid #ececec;*//* Redondance liste Offres */
                min-height: 70px;
                color: #333;
                font-size: .875em;
                text-decoration: none;
                outline: none;
                transition: background-color .3s;
            }
            /*.accordion-collapse .dashboard-table-application:first-child {
                border-top: 1px solid #ececec;
            }*/
            /* Liste après filtre - 25/01/2021 mais effet de bord avec liste offres !!! Donc enlevé... */
            /*.dashboard-table-item > .accordion-collapse .dashboard-table-application:first-child,
            .dashboard-table-item > .accordion-collapse:first-child .dashboard-table-application:first-child { 
                border-top: 0;
            }
            .accordion-item .accordion-collapse .dashboard-table-application:first-child {
                border-top: 0 solid transparent;
            }*/
                /*.accordion-collapse .dashboard-table-application:first-child::after { CORRECTION STAGES 25/01/2021
                    position: absolute;
                    left: -100%;
                    right: -100%;
                    top: -1px;
                    content: '';
                    height: 1px;
                    background-color: #ececec;
                }*/
                .accordion-item .accordion-collapse .dashboard-table-application:first-child::after {
                    display: none;
                }
                .accordion-collapse .dashboard-table-application::before {
                    border-bottom: 1px solid #ececec;
                    /*border-top: 1px solid #ececec;*//* Correction 25/01/2021 liste Offres */
                    border-top: 0;
                    background-color: transparent;
                    transition: background-color .3s;
                }
                /* Liste après filtre - 25/01/2021 mais effet de bord avec liste offres !!! Donc enlevé... */
                /*.dashboard-table-item > .accordion-collapse:first-child .dashboard-table-application:first-child::before {
                    border-bottom: 0;
                }*/
                .accordion-collapse .dashboard-table-application:hover::before {
                    background-color: var(--palegreen);
                }
                .dashboard-table-application .header-reference .ref,
                .dashboard-table-application .header-ref-offer .ref {
                    display: inline-block;
                    margin-right: 20px;
                    color: #737373;
                }
                .dashboard-table-application .header-reference .ref {
                    min-width: 145px;
                }
                .dashboard-table-application .header-ref-offer .ref {
                    min-width: 50px;
                }

                .dashboard-table-application .header-state .state {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 11px;
                    height: 22px;
                    padding: 0 10px;
                    background-color: #000;
                    color: #fff;
                }
                .dashboard-table-application .header-state .to-process {
                    background-color: var(--wait);
                }
                .dashboard-table-application .header-state .closed {
                    background-color: var(--closed);
                }
                .dashboard-table-application .header-state .accepted {
                    background-color: var(--recruited);
                }
                .dashboard-table-application .header-state .to-tank {
                    background-color: var(--tank);
                }
    /* Statistiques */
    .stats .dashboard-table-content .dashboard-table-item {
        margin: 0;
    }
        .stats .application-list {
            position: relative;
            display: flex;
            border-bottom: 1px solid #ececec;
            height: 60px;
        }
            .stats .application-list::before {
                position: absolute;
                left: -100%;
                right: -100%;
                top: 100%;
                content: '';
                height: 1px;
                background: #ececec;
            }
            .stats .dashboard-table .d-flex {
                display: inline-flex;
                align-items: center;
                height: 60px;
            }
            .stats .dashboard-table .header-doc {
                width: 75%;
            }
                .stats .application-list .header-doc .fa-file-excel {
                    display: flex;
                    align-items: center;
                    height: 60px;
                    width: 60px;
                    color: var(--green);
                    font-size: 24px;
                }
            .stats .dashboard-table .header-date {
                width: 12.5%;
            }
            .stats .dashboard-table .header-open {
                width: 12.5%;
            }
            .stats .dashboard-table .header-download {
                width: 12.5%;
            }
                .stats .dashboard-table a {
                    color: #333;
                    font-size: .875em;
                }
                    .stats .dashboard-table a::after {
                        display: none;
                    }

/* Admin-list - tableau utilisateurs */
.admin-list-row {
    margin: 0 -20px;
}
    .admin-list .frame-header {
        display: flex;
        border: 1px solid #ececec;
        border-bottom: 0;
    }
        .admin-list .element-header {
            display: flex;
            align-items: center;
            height: 70px;
            margin: 0;
            padding: 0 30px;
            color: #737373;
            font-size: 1em;
            text-transform: uppercase;
        }
        /* Liste subpage */
        .list-subpages {
            display: flex;
            flex-wrap: wrap;
            border: 1px solid #ececec;
            margin: 2em -15px;
        }
        .admin-list .list-subpages {
            flex-direction: column;
            margin: 0 0 50px;
        }
            .list-subpages .item {
                width: calc(25% - 30px);
            }
            .admin-list .list-subpages .item {
                border-bottom: 1px solid #ececec;
                width: 100%;
            }
                .list-subpages .link {
                    font-size: 1.125em;
                    text-decoration: none;
                }
                .admin-list .list-subpages .item .link {
                    display: flex;
                    align-items: center;
                    border-radius: 0;
                    min-height: 70px;
                    margin: 0;
                    padding: 0;
                    width: 100%;
                    background-color: transparent;
                    color: #333;
                    transition: background-color .3s;
                }
                .admin-list .list-subpages .item .link:is(:focus,:hover,:active) {
                    background-color: var(--palegreen);
                    text-decoration: none;
                }
                    /*.link .link-title {
                        display: block;
                        color: var(--bluedark);
                    }
                    .link .link-date {
                        color: #737373;
                    }
                    .admin-list .list-subpages .item .link .far {
                        width: 50px;
                        color: var(--gris);
                        font-size: 18px;
                    }*/
                /* Annuaires */
                /*.admin-list .list-subpages .item .link-view {
                    position: relative;
                    padding: 0 70px 0 30px;
                }
                    .list-subpages .item .link-view::before {
                        position: absolute;
                        right: 24px;
                        top: 20px;
                        content: '\f06e';
                        color: var(--gris);
                        font-size: 18px;
                    }
                .dashboard-table.admin-list .list-subpages .item .link-view {
                    padding: 0;
                }*/
                    .admin-list .item .link-view .col-md-5,
                    .admin-list .item .link-view .col-md-6,
                    .admin-list .item .link-view .col-md-3,
                    .admin-list .item .link-view .col-md-2,
                    .admin-list .item .link-view .col-md-1 {
                        padding: 0 30px;
                    }
                    .admin-list .item .link-view .col-md-2 {
                        /*text-align: right;*/
                        word-break: break-word;
                    }
                        /*.dashboard-table .tags,
                        .section-list .tags,
                        .dashboard-table .sponsor,
                        .candidate-title .sponsor {
                            display: inline-flex;
                            align-items: center;
                            border-radius: 11px;
                            height: 22px;
                            padding: 0 10px;
                            background-color: #999;
                            color: #fff;
                            font-size: .875em;
                            white-space: nowrap;
                        }
                        .dashboard-table .sponsor,
                        .candidate-title .sponsor {
                            margin-left: 5px;
                            padding: 0 10px 0 26px;
                            background: #ffd500 url("../Img/coq_small.svg") no-repeat 6px 4px / auto 14px;
                            color: #002b4e;
                            font-size: 1em;
                            font-weight: 400;
                        }
                        .candidate-title .sponsor {
                            font-size: 14px;
                        }
                        .dashboard-table .tag-inprogress,
                        .section-list .tag-inprogress {
                            background-color: #a593ff;
                        }
                        .dashboard-table .tag-hidden,
                        .section-list .tag-hidden {
                            background-color: #f0a750;
                        }
                        .dashboard-table .tag-wait,
                        .section-list .tag-wait {
                            max-width: 100%;
                            background-color: #08aeea;
                            overflow: hidden;
                        }
                        .dashboard-table .tag-current,
                        .section-list .tag-current {
                            background-color: #a593ff;
                        }
                        .dashboard-table .tag-validated,
                        .section-list .tag-validated {
                            background-color: #2cc8ba;
                        }
                        .dashboard-table .tag-refused,
                        .section-list .tag-refused {
                            background-color: #f56b62;
                        }
                        .dashboard-table .tag-tank,
                        .section-list .tag-tank {
                            background-color: #fbc11e;
                        }*/
                        /* Partie Offre */
                        /*.dashboard-table .tag-tobepublished {
                            background-color: #08aeea;
                        }
                        .dashboard-table .tag-archived {
                            background-color: #f56b62;
                        }
                        .dashboard-table .tag-disabled {
                            background-color: #f0a750;
                        }*/
                        /* Demande de suppression */ 
                        /*.dashboard-table .tag-waitdeleted,
                        .section-list .tag-waitdeleted {
                            background-color: #f56b62;
                        }*/
                        /* Action */
                        /*.dashboard-table .btn-sponsor {
                            position: relative;
                            z-index: 9;
                            display: inline-flex;
                            align-items: center;
                            justify-content: center;
                            border: 1px solid #e3e3e3;
                            border-radius: 20px;
                            height: 40px;
                            width: 100px;
                            color: var(--grey-dark);
                            font-size: 1em;
                            font-weight: 500;
                        }*/


/* 6 = Calendrier */

/* Gérer les rendez-vous */
#myFullcalendar .fc-button-primary:not(:disabled):active,
#myFullcalendar .fc-button-primary:not(:disabled).fc-button-active {
    background-color: transparent; /*var(--green)*/
    border-color: var(--green);
}
#myFullcalendar .fc-left .fc-button-primary:not(:disabled):active,
#myFullcalendar .fc-left .fc-button-primary:not(:disabled).fc-button-active {
    background-color: var(--green);
    color: #fff;
}
#myFullcalendar .fc-button-primary:not(:disabled):active:focus,
#myFullcalendar .fc-button-primary:not(:disabled).fc-button-active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.fc-body .fc-axis {
    color: #737373;
    font-size: 1.3rem;
    text-align: left;
    vertical-align: top;
}

/* Tableau Paramètres */
.form-table {
    overflow-x: auto;
    overflow-y: hidden;
}
    .parametres tr {
        border-bottom: 1px solid #e3e3e3;
    }
    .parametres tr:last-child,
    .frame-motifs tr:last-child {
        border-bottom: 0;
    }        
        .parametres td {
            padding: 30px 10px;
            white-space: nowrap;
        }
            .parametres tr:last-child td .button-red {
                margin-left: 0;
            }
            .parametres select {
                padding: 10px;
                border-color: #e3e3e3;
            }
            .parametres select + select {
                margin-left: 10px;
            }
            .parametres .no-break {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                height: 40px;
                width: 45px;
                color: #737373;
                font-size: 16px;
                cursor: pointer; 
            }
        .td-overflow {
            position: relative;
            overflow: hidden;
        }
            .td-overflow input {
                position: absolute;
                top: -50px;
            }
            .td-overflow label {
                display: flex;
                margin: 0;
                position: relative;
                font-weight: 500;
            }
                .td-overflow label::before {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    content: '';
                    border: 1px solid #e3e3e3;
                    height: 24px;
                    margin-right: 15px;
                    width: 24px;
                    font-size: 16px;
                }
                .td-overflow input:checked + label::before {
                    content: '\f00c';
                    border-color: ;
                    background-color: var(--green);
                    color: #fff;
                    font-weight: 600;
                }
            .add-button {
                display: inline-flex;
                border: 1px solid #ccc;
                border-radius: 25px;
                height: 50px;
                padding: 0 25px;
                background-color: transparent;
                color: #737373;
                font-size: 1.4rem;
                font-weight: 600;
                text-transform: uppercase;
            }
.motif-title {
    padding-right: 50px;
}
/* Page paramètres */
/* Horaires exceptionnels */
.backendlayout-structure .horaire-title {
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 2.4rem;
    font-weight: 400;
    text-align: left;
}

.horaire-table .horaire-date,
.horaire-table .motif-text,
.horaire-table select {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #e3e3e3;
    height: 50px;
    padding-left: 20px;
    width: 200px;
}

.horaire-table {
    width: 100%;
}

.horaire-table .button {
    margin: 0 0 10px 10px;
}

.horaire-date .fa-calendar-alt {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--green);
}

.horaire-table .flex {
    display: flex;
    justify-content: space-between;
}

.horaire-table tr {
    border-bottom: 1px solid #e3e3e3;
}

.horaire-table input[type="checkbox"] {
    border: 1px solid #e3e3e3;
    border-radius: 0;
    height: 24px;
    margin: 0;
    width: 24px;
    background-color: transparent;
    -webkit-appearance: button;
}
.horaire-table label {
    margin: 0;
}

.backendlayout-structure .button {
    border: 1px solid #e3e3e3;
    border-radius: 25px;
    height: 50px;
    padding: 0 25px;
    background-color: transparent;
    color: #737373;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}
    .backendlayout-structure .button .fas {
        color: var(--green);
        font-size: 16px;
        margin-right: 10px;
    }
.backendlayout-structure .button + button {
    margin-left: 20px;
}
.backendlayout-structure .button-red {
    border-color: var(--green);
    background-color: var(--green);
    color: #fff;
}
.backendlayout-structure span.close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    color: #737373;
    font-size: 16px;
    float: none;
    text-shadow: none;
    opacity: 1;
}
/*.backendlayout-structure .frame-motifs .alert-info {
    border-color:#d6d8db;
    background-color:#e2e3e5;
    color:#383d41;
    text-align: left;
}
    .frame-motifs .alert-info .input-group {
        width: 50%;
    }
    .frame-motifs .btnCancel {
        background-color: #fff;
    }
    .frame-motifs .jHtmlArea {
        display: flex;
        flex-direction: column;
    }
        .frame-motifs .ToolBar ul {
            display: flex;
        }*/

.frame-motifs {
    padding-top:0px;
}

.frame-motifs tr {
}

.frame-motifs tr td {
    padding: 10px 0px 10px 8px;
    vertical-align: middle;
}

.frame-motifs .button-add-motif {
    margin: 15px 0px 0px 0px;
}

.frame-motifs .button-edit-motif {
    margin: 0px;
}

#modalAddMotif {
    text-align: left;
}
    #modalAddMotif .input-group {
        width: 100%;
    }
    #modalAddMotif .btn {
        border-radius: 25px;
        height: 50px;
        padding: 0 25px;
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
    }

/* Motifs de rendez-vous */
.horaire-table .motif-text {
    margin-right: 20px;
    width: 570px;
}
.horaire-table label {
    display: block;
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 1.6rem;
    text-align: left;
}
.horaire-table select {
    margin-right: 20px;
    width: 175px;
    color: #737373;
}

.horaire-table tr.motif-hidden {
    color:#aeaeae;
}

.frame-load {
    min-height: 200px;
}

/* Encart du service */
.frame-type-html .frame textarea {
    height: 100px;
    width: 100%;
    max-width: 100%;
}

.jHtmlArea iframe {
    height: 250px!important;
}

/* Événements */
.fc-time-grid .fc-event, 
.fc-time-grid .fc-bgevent {
    height: 0;
}
.fc-time-grid-event.fc-short .fc-content {
    line-height: 1.8;
}

/* Infobulle du calendrier */
#infobulle {background-color:#fff; border-radius:4px; box-shadow:0 0 7px rgba(0,0,0,0.15); display:none; left:50%; max-width:370px; padding:20px; position:absolute; top:-9px; transform:translateX(-50%); width:250px; max-width:100%; z-index:9999999999999999;}
#infobulle.open {display:block;}
    #infobulle::before {background-color:#fff; box-shadow:0 0 7px rgba(0,0,0,0.15); content:''; display:block; height:17px; left:50%; margin:-9px auto 0; padding:1px; position:absolute; top:7px; -webkit-transform:rotate(45deg) translateX(-50%); -ms-transform:rotate(45deg) translateX(-50%); transform:rotate(45deg) translateX(-50%); width:17px;}
    #infobulle::after {background-color:#fff; content:''; display:block; height:15px; left:50%; position:absolute; top:0; transform:translateX(-50%); width:30px;}
    #infobulle .btn-default {
        background: url("../Img/cancel-grey.svg") no-repeat center center;
        background-size: 14px 14px;
        border: 0;
        box-shadow:none;
        height: 24px;
        left: auto;
        opacity:1;
        overflow: hidden;
        position: absolute;
        right: -1px;
        text-indent: 200%;
        top: -1px;
        width: 24px;
    }
    #infobulle .statut {border-radius:4px; color:#fff; font-size:12px; left:auto; padding:2px 5px; position:absolute; right:35px; text-transform:uppercase; top:20px;}
    #infobulle .fc-event-canceled {background-color:#f3a59d;}
    #infobulle .fc-event-to-complete {background-color:#99dcf7;}

    #infobulle .category {color:#337ab7; display:block; font-size:1em; font-weight:600; margin-bottom:0; padding-right:90px;}
    #infobulle .title {font-size:1em; font-weight:600; margin-bottom:0; text-transform:uppercase;}
        #infobulle .title a {color:#666;}
    #infobulle .lead {color:#666; font-size:1em; font-weight:500; margin-bottom:0;}
    #infobulle .text {margin:10px 0;}
    #infobulle .date {margin-bottom:0;}
    #infobulle .edit {float:right; margin:20px 0 0; position:static;}

    #infobulle .text, 
    #infobulle .infos {
        color: #333;
        font-size: 13px;
        line-height: 1.5;
    }
        #infobulle a {
            color: #0b6ba8;
            display: block;
        }    
    #infobulle .text {
        margin-bottom: 10px;
    }
        #infobulle .time,
        #infobulle .hour {
            display: block;
        }
    #infobulle .motif {        
        font-size: 13px;
        font-weight: bold;
        line-height: 1;
    }
    #infobulle .feuser {
        margin: 0;
        color: var(--green);
        font-size: 1.2rem;
        font-weight: 900;
    }

/* didacticiel */
.didacticiel {
    display: inline-block;
    margin-top:20px;
    width: 80%;
}
    .didacticiel div.didacticiel-step {
        width: 28%;
        height: 200px;
        border: 1px solid #5b9ac8;
        background: #5b9ac8;
        color: #fff;
        font-size: 29px;
        padding: 15px;
        display: table-cell;
        border-radius: 25px;
        text-align: center;
        margin: 0px 10px 0px 0px;
    }
    .didacticiel div.didacticiel-icon {
        width: 1%;
        height: 200px;
        font-size: 43px;
        padding: 5px;
        margin: 0px;
        vertical-align: middle;
        display: table-cell;
        color: #5b9ac8;
    }  

/* addition of the 26/11/2020  */
a.action-actived button.button-red {
    display: inline-block;
}

/* Fiche Candidat */
.candidate > .container {
    padding: 0;
    /*overflow: hidden;*//* enlevé le 27/01 pour les ombres des fiches */
}
    .candidate > .container > .row {
        margin: 0 -15px;
    }
        /* Header */
        .candidate .candidate-header {
            margin-bottom: 35px;
        }
            .candidate-header .candidate-title {
                position: relative;
                padding-right: 80px;
                font-size: 1.5em;
                font-weight: 500;
            }
                .candidate-header .candidate-title .link {
                    color: #333;
                    font-size: 1em;
                    text-decoration: none;
                }
                    .candidate-title .link .fa-chevron-circle-left {
                        margin-right: 10px;
                        color: var(--green);
                    }
                .candidate-title > .fa-chevron-circle-left,
                .candidate-title > .fa-chevron-circle-right {display: none; /* Le temps de la réunion du 11/02/2021 15h00 */
                    position: absolute;
                    right: 0;
                    top: calc(50% - 18px);
                    color: var(--green);
                    font-size: 30px;
                    text-decoration: none;
                }
                .candidate-title > .fa-chevron-circle-left {
                    right: 40px;
                }
            .candidate-header .candidate-link,
            .candidate-header .candidate-link:is(:focus,:hover,:active) {
                display: block;
                color: var(--green);
                font-size: .875em;
                text-decoration: none;
                outline: none;
            }
            /* MODALE */
            .modal .modal-body .modal-body-title {
                margin-bottom: 20px;
                font-size: 1.5em;
                font-weight: 600;
            }
        /* Sections */
        .candidate-section {
            position: relative;
            border: 1px solid #ececec;
            margin: 0 0 30px;
            padding: 29px;
            background-color: #fff;
            box-shadow: 0 0 5px rgba(0,0,0,.2);
        }
        .col-lg-8,
        .col-lg-4 {
            padding: 0 15px;
        }
            .candidate-section .section-title {
                margin-bottom: 30px;
                font-size: 1.125em;
                font-weight: 500;
            }
            .candidate-section .section-list,
            .coordinates .candidate-coordinates-list {
                margin: 0;
                padding: 0;
                font-size: .875em;
                list-style: none;
            }
                .candidate-section .section-list li {
                    border-bottom: 1px solid #ececec;
                }
                .candidate-section .section-list li:last-child {
                    border-bottom: 0;
                }
                    .candidate-section .section-list .title,
                    .candidate-section .section-list .content {
                        display: inline-flex;
                        align-items: center;
                        min-height: 50px;
                        padding: 14px 0;
                    }
                    .candidate-section .section-list .title {
                        padding-right: 20px;
                        width: 170px;
                        color: #737373;
                    }
                    .candidate-section .section-list .content {
                        flex-wrap: wrap;
                        width: calc(100% - 175px);
                        text-align: start;
                        overflow: visible;
                    }
                        /* Sélecteur status */
                        .candidate-section .dropdown-status {

                        }
                            .candidate-section .dropdown-status .btn-primary,
                            .candidate-section .dropdown-status .btn-primary:is(:focus,:hover,:active) {
                                position: relative;
                                border: 0;
                                padding: 0 0 0 20px;
                                background-color: transparent;
                                color: #333;
                                font-size: 1em;
                                box-shadow: none;
                                outline: none;
                            }
                                .candidate-section .dropdown-status .btn-primary::after {
                                    display: none;
                                }
                                .candidate-section .dropdown-status .dropdown-menu .btn-primary::before,
                                .candidate-section .dropdown-status .dropdown-toggle > .tags::before {
                                    position: absolute;
                                    left: 0;
                                    top: 4px;
                                    content: '';
                                    border-radius: 6px;
                                    height: 12px;
                                    width: 12px;
                                }
                                .candidate-section .dropdown-status .btn-primary::before,
                                .candidate-section .dropdown-status .tags::before {
                                    background-color: var(--wait);
                                }
                                .candidate-section .dropdown-status .btn-current::before {/* En cours */
                                    background-color: var(--progress);
                                }
                                .candidate-section .dropdown-status .dropdown-toggle .fa-chevron-down {
                                    position: relative;
                                    left: 8px;
                                    top: 1px;
                                    font-size: 14px;
                                }
                                .candidate-section .open .dropdown-toggle .fa-chevron-down {
                                    transform: rotate(180deg);
                                }
                            .candidate-section .dropdown-status .dropdown-menu {
                                left: -15px;
                                top: 24px;
                                border: 0;
                                border-radius: 5px;
                                padding: 10px 0;
                                box-shadow: none;
                                filter: drop-shadow(0 0 5px rgba(0,0,0,.2));
                                min-width: 220px;
                            }
                                .candidate-section .dropdown-status .dropdown-menu::before {
                                    position: absolute;
                                    left: 15px;
                                    top: -6px;
                                    display: block!important;
                                    content: '';
                                    height: 12px;
                                    width: 12px;
                                    background-color: #fff;
                                    transform: rotate(45deg);
                                }
                                .candidate-section .dropdown-status .dropdown-menu .btn-primary {
                                    display: flex;
                                    align-items: center;
                                    height: 40px;
                                    padding-left: 35px;
                                    width: 100%;
                                    font-size: .875em;
                                }
                                .candidate-section .dropdown-status .dropdown-menu .btn-primary:hover {
                                    background-color: #f8f8f8;
                                }
                                .candidate-section .dropdown-status .dropdown-menu .btn-primary:last-child {
                                    margin-bottom: 0;
                                }
                                    .candidate-section .dropdown-status .dropdown-menu .btn-primary::before {
                                        left: 15px;
                                        top: 12px;
                                    }
                                    .candidate-section .dropdown-status .btn-inprogress::before {
                                        background-color: var(--progress);
                                    }
                                    .candidate-section .dropdown-status .btn-validated::before {
                                        background-color: var(--online);
                                    }
                                    .candidate-section .dropdown-status .btn-validated2::before {
                                        background-color: var(--send);
                                    }
                                    .candidate-section .dropdown-status .btn-refused::before {
                                        background-color: var(--refused);
                                    }                                    
                                    .candidate-section .dropdown-status .btn-refusedbyservice::before {
                                        background-color: var(--refusedbyservice);
                                    }
                                    .candidate-section .dropdown-status .btn-tank::before {
                                        background-color: var(--tank);
                                    }
                                    .candidate-section .dropdown-status .btn-disabled::before {
                                        background-color: var(--disabled);
                                    }
                                    .candidate-section .dropdown-status .btn-archived::before {
                                        background-color: var(--archived);
                                    }
                                    .candidate-section .dropdown-status .btn-tobepublished::before {
                                        background-color: #c5a070;
                                    }
                                    .candidate-section .dropdown-status .btn-interview::before {
                                        background-color: var(--interview);
                                    }
                                    .candidate-section .dropdown-status .btn-closed::before {
                                        background-color: var(--closed);
                                    }
                                    .candidate-section .dropdown-status .btn-recruited::before {
                                        background-color: var(--recruited);
                                    }
                                    .candidate-section .dropdown-status .btn-contacted::before {
                                        background-color: var(--contacted);
                                    }  


            /* Bloc candidat */
            .candidate-section .candidate-header {
                position: relative;
            }
                .candidate-section .links {
                    position: absolute;
                    right: 0;
                    top: 0;
                    display: flex;                    
                }
                    .candidate-section .btn-default {
                        display: inline-flex;
                        align-items: center;
                        border-radius: 20px;
                        height: 40px;
                        margin-right: 20px;
                        padding: 0 20px;
                        font-size: .875em;
                    }
                    .section-infos .btn-default {
                        margin-top: 30px;
                    }
                    .candidate-section .btn-candidate {
                        display: flex;
                        align-items: center;
                        border-color: #e3e3e3;
                        background-color: #fff;
                        color: #000000;
                        margin: 0;
                        padding: 0 20px;
                        font-size: 1em;
                        text-decoration: none;
                    }
                    .candidate-section .btn-candidate:is(:focus,:hover,:active) {
                        border-color: #e3e3e3;
                        background-color: #e3e3e3;
                        color: #000000;
                    }
                    .candidate-section .btn-candidate:first-child {
                        margin-right: 20px;
                    }
                        .candidate-section .btn-candidate::after {
                            display: none;
                        }
                        .candidate-section .btn-candidate .fal {
                            color: var(--green);
                            font-size: 18px;
                        }
            .candidate-section .candidate-coordinates-list {
                
            }
                .candidate-coordinates-list li {
                    display: block;
                    /*padding: 11px 0;*/
                }
                    .candidate-section .section-list .content-coordinate {
                        flex-direction: column;
                        align-items: flex-start;
                    }
                        .candidate-section .section-list .content-coordinate .coordinates {
                            margin-top: 10px;
                        }
                        .candidate-section .section-list .content-coordinate .coordinates:first-child {
                            margin-top: 0;
                        }
                            .candidate-coordinates-list .content-coordinate .fal {
                                position: relative;
                                top: 2px;
                            }
                    .candidate-coordinates-list li .fal {
                        justify-content: center;
                        margin: 0;
                        padding: 0;
                        width: 30px;
                        color: var(--green);
                        font-size: 18px;
                    }
                    .candidate-coordinates-list li .btn-default .fal {
                        margin-right: 10px;
                        width: auto;
                    }
                    .candidate-coordinates-list li .candidate-content {
                        color: #333;
                        text-decoration: none;
                        word-break: break-all;
                    }
                        .candidate-coordinates-list li .candidate-content::after {
                            display: none;
                        }

            .candidate-section .message .title {
                display: block;
                margin-bottom: 20px;
                font-size: .938em;
                font-weight: bold;
            }
            .candidate-section .message .content {
                font-size: .875em;
            }

            /* Journal d'activité */
            .candidate-section .section-list-activities {
                list-style: none;
                margin: 0;
                padding: 0;
                /*font-size: .875em;*/
            }
                .section-list-activities li {
                    display: flex;
                    border-bottom: 1px solid #ececec;
                    padding: 20px 0;
                }
                .section-list-actions li {
                    display: block;
                    border-bottom: 0;
                    border-top: 1px solid #ececec;
                }
                .section-list-activities li:last-child {
                    border-bottom: 0;
                    padding: 20px 0 0;
                }
                    .section-list-activities li .fas,
                    .section-list-activities li .far {
                        display: block;
                        margin-right: 16px;
                        width: 24px;
                        color: var(--green);
                        font-size: 24px;
                    }
                    .section-list-activities li .fa-user-friends {
                        /*color: var(--interview);*/ /* Entretien */
                    }
                    .section-list-activities li .activities-content {
                        width: calc(100% - 40px);
                    }
                        .section-list-activities li .activities-content strong {
                            display: block;
                        }
                    .section-list-actions li .btn-default {
                        margin-top: 10px;
                    }

            /* Commentaires */
            .candidate-activities .section-title {
                margin-bottom: 10px;
            }
            .comments-list .comments-item {
                display: flex;
                border-bottom: 1px solid #ececec;
                padding: 25px 0;
            }
            .comments-list .comments-item:first-child {
                padding-top: 0;
            }
                .comments-item .comments-icon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    height: 30px;
                    margin-right: 20px;
                    min-width: 30px;
                    background: var(--green);
                    color: #fff;
                    font-size: 18px;
                    text-transform: uppercase;
                }
                .comments-item .comments-body {
                    font-size: .875em;
                }
                    .comments-body .comments-name {
                        margin-right: .5em;
                        font-weight: bold;
                    }
                    .comments-body .comments-date {
                        color: #737373;
                        font-size: .929em;
                    }
                    .comments-body .comments-text {
                        margin: 0;
                    }

            .candidate-section .form-comments {
                margin: 0;
            }
                .candidate-section .form-comments textarea {
                    border: 1px solid #ececec;
                    margin-bottom: 20px;
                    padding: 8px 12px;
                    width: 100%;
                    background-color: #f8f8f8;
                    font-size: .938em;
                    resize: none;
                }
                .candidate-section input[type="submit"],
                .candidate-section input[type="submit"]:is(:focus,:hover,:active),
                .candidate-section button.btn-submit,
                .candidate-section button.btn-submit:is(:focus,:hover,:active),
                .modal input[type="submit"],
                .modal input[type="submit"]:is(:focus,:hover,:active) {
                    border-color: #e3e3e3;
                    height: 40px;
                    background-color: transparent;
                    color: var(--green);
                    font-size: .875em;
                    font-weight: 400;
                    outline: none;
                }
                .candidate-section .btn-reset,
                .candidate-section .btn-reset:is(:focus,:hover,:active) {
                    border-color: #e3e3e3;
                    background-color: transparent;
                    color: #999;
                    outline: none;
                }

/* Fiche Offre */
.candidate-section .btn-modify,
.candidate-section .btn-modify:is(:focus,:hover,:active) {
    position: absolute;
    right: 29px;
    top: 29px;
    color: var(--green);
    font-size: .875em;
}
    .candidate-section .btn-modify .fa-pencil-alt {
        margin-right: 10px;
        font-size: 16px;
    }

.candidate-section .offer-coordinates-list .offer-list {
    padding: 25px 0;
}
.candidate-section .offer-coordinates-list .offer-list:last-child {
    padding: 25px 0 0;
}
    .offer-list h5,
    .modal .modal-body .modal-body-text h5 {
        margin-bottom: 25px;
        color: #737373;
        font-size: 1em;
    }
    .offer-list p,
    .offer-list li,
    .modal .modal-body .modal-body-text p,
    .modal .modal-body .modal-body-text li {
        line-height: 1.714;
    }
    .offer-list p {
        /*margin-bottom: 30px; PAS AVEC LES DONNEES ACTUELLES DU CLIENT ...*/
    }
    .candidate-section .offer-coordinates-list .offer-list:last-child p:last-child {
        margin-bottom: 0;
    }
    .offer-list ul,
    .modal .modal-body .modal-body-text ul {
        padding-left: 25px;
        list-style: none;
    }
        .candidate-section .offer-list li,
        .modal .modal-body .modal-body-tex li {
            position: relative;
            border: 0;
        }
            .offer-list li::before,
            .modal .modal-body .modal-body-text li::before {
                position: absolute;
                left: -25px;
                content: '\f00c';
                color: var(--green);
                font-weight: 900;
            }
            .modal .modal-body .modal-body-text li::before {
                left: 20px;
            }


/* 8 = Modale */
.modal .modal-header .modal-title {
    font-size: 1.5em;
    font-weight: 500;
}
.modal-body .modal-h2 {
    margin-bottom: 0;
    font-size: 1.125em;
    font-weight: 600;
}
.modal-body p {
    margin-bottom: 30px;
    /*font-size: .875em;*/
}
.modal-body .text-left {
    margin-bottom: 0;
}
.rh .modal-body form p.text-left {/* Boutons dans l'ordre pour RH */
    flex-direction: row;
    justify-content: flex-start;
}
    .modal-body .text-left .btn {
        margin-right: 20px;
        width: 160px;
    }
.modal-body .close {
    border: 1px solid #e5e5e5;
    border-radius: 25px;
    height: 50px;
    margin-right: 20px;
    padding: 0 20px;
    color: #999;
    font-size: 1.2em;
    opacity: 1;
}
.modal-body .close:focus {
    outline: none;
}
.modal .form-horizontal .modal-status-actions {
    /*border-bottom: 1px solid #ececec;*/
    margin-bottom: 20px;
    padding-bottom: 3px;
}
    .modal .form-horizontal .modal-status-actions p {
        margin-bottom: 20px;
        font-size: 1.125em;
        /*font-weight: 600;*/
    }
    .modal .form-horizontal .modal-status-actions .btn-default {
        border-color: #e3e3e3;
        height: 50px;
        margin: 0;
        width: 50%;
        font-size: .813em;
    }
    .modal .form-horizontal .modal-status-actions .btn-default:is(:focus,:hover,:active) {
        border-color: var(--green);
        background-color: #fff;
        color: var(--green);
        box-shadow: none;
        outline: none;
    }
    .modal .form-horizontal .modal-status-actions .btn-default.active {
        border-color: var(--green);
        background-color: var(--green);
        color: #fff;
        font-weight: 600;
    }
    .content .modal .form-horizontal div {
        margin: 0;
    }
    .content .form-horizontal .alert {
        padding: 10px;
    }
    .content .form-horizontal .error {
        color: var(--red-form);
    }
    .content .modal .form-horizontal .form-group,
    .content .modal .form-horizontal .tabs {
        margin-bottom: 20px;
    }
        .content .modal select {
            border: 1px solid #eee;
            height: 38px;
            padding: 6px 12px
        }
.content .modal .form-horizontal-action div {
    padding:0px;
}
.content .modal .form-horizontal-action .alert {
    padding:15px;
}
.content .modal .form-horizontal-action .alert {
    margin-bottom:20px;
}
/* Liste des partages */ 
.content .modal .form-sharethisfolder .form-sharethisfolder-content {
    margin: 45px 0 0;
    padding: 10px 5px 5px;
}


/* 9 = Calendar */
.content .ui-datepicker .ui-datepicker-header {

}
    .content .form-horizontal .ui-datepicker-title {
        color: var(--green);
    }
    .ui-state-hover, 
    .ui-widget-content .ui-state-hover, 
    .ui-widget-header .ui-state-hover, 
    .ui-state-focus, 
    .ui-widget-content .ui-state-focus, 
    .ui-widget-header .ui-state-focus {
        border: 2px solid var(--green);
        color: var(--green); 
    }
    .ui-state-active, 
    .ui-widget-content .ui-state-active, 
    .ui-widget-header .ui-state-active {
        background: var(--green);
        color: #fff;
    }


/* 06 = LOGIN */

.authentification .site-main .frame-inner::before {
    display: block;
    content: '';
    height: 70px;
    margin: 0 auto 25px;
    width: 200px;
    background: url('../Img/courbevoie_sprite.svg#logo');
}


/*
.authentification .site-main .frame-inner::before {
    display: block;
    content: '';
    height: 60px;
    margin: 0 auto 25px;
    width: 155px;
    background: url('../Img/SVG/logo.svg') no-repeat center center / 155px auto;
}
*/
.authentification legend {
    position: absolute;
    border: 0;
    height: 1px;
    margin: -1px;
    padding: 0;
    width: 1px;
    clip: rect(0,0,0,0);
    overflow: hidden;
}
.authentification input {
    border-radius: 4px;
    height: 50px;
    margin: 10px 0;
}
.authentification input[type=submit] {
    justify-content: center;
    border: 1px solid var(--main);
    border-radius: 2px;
    height: 50px;
    margin: 0 0 20px;
    width: 100%;
    background-color: var(--main);
    color: #fff;
    font-weight: 400;
    text-align: center;
    box-shadow: none;
    text-transform: uppercase;
}
.authentification input[type=submit]:is(:focus-visible,:focus,:hover,:active),
.frame-type-felogin_login input[type="submit"]:first-child:active {
    border: 1px solid var(--main);
    background-color: #fff;
    color: var(--main);
}

.authentification .site-main .frame-default {
    max-width: 600px;
}

.authentification .site-main .frame-inner {
    padding: 60px;
}

.authentification .frame-header {
    text-align: center;

}

.authentification .element-header {
    font-size: 30px;
    color: var(--main);
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 15px;
}


/* Add code 25/05/2023 */
.admin-list .element-header {

}

.admin-list .frame-header {
    margin-bottom: 0px;
}

.card-header {
    padding: 0px;
    margin-bottom: 0px;
    background-color: none;
    border-bottom: 1px solid rgba(0,0,0,0.125);
}


/* ===================================================== MEDIA QUERIES ===================================================== */

@media (max-width:1200px) {

    /* Liens portails */
    .header .linkHeader {background:none;}
    /* Bouton tableau de bord */
    .dashboard .filters .btn {
        margin-left: 10px;
        padding: 0 15px;
    }
    .dashboard .form-horizontal .filters-dropdown .filters-calendar,
    .filters-dropdown .dashboard-select {
        /*margin-right: 20px;*/
    }
    .dashboard-stages .filters-dropdown .dashboard-select,
    .dashboard-stages .filters-dropdown .filters-calendar .form-control {
        /*width: 147px; email enlevé */
    }
    /* Fiche candidat */
    .candidate-section {
        padding: 14px;
    }

}

@media (max-width:991px) {

/* 5 = Contenu page */
/* Tableau de bord RH */
    .dashboard .col-lg-6 {
        width: 100%;
    }
    .dashboard .filters {
        justify-content: inherit;
    }
        .dashboard .filters .btn {
            margin: 0 20px 0 0;
        }
    .dashboard .filters-dropdown {
        flex-direction: column;
    }
    .content .dashboard .form-horizontal .filters-dropdown.open {
        
    }
        .dashboard .form-horizontal .filters-dropdown .form-group {
            margin-bottom: 10px;
            width: 100%;
        }
        .dashboard .form-horizontal .filters-dropdown .filters-apply {
            margin-bottom: 0;
        }
            .filters-dropdown .dashboard-select,
            .dashboard .filters-dropdown .filters-calendar .calendar {
                margin-right: 0;
                width: 100%;
            }
        .dashboard .form-horizontal .filters-dropdown .filters-calendar {
            margin-right: 0;
        }
            .dashboard .filters-calendar .form-control
        .dashboard .filters-dropdown .filters-apply {
            display: flex;
        }
        .dashboard .filters-dropdown .fa-chevron-up,
        .filters-dropdown .filters-apply .filters-submit {
            margin: 0 auto;
        }
    .dashboard-table .d-flex {
        padding: 0 10px;
    }
    .dashboard-table .header-reference {
        display: flex;
        flex-direction: column;
    }
        .dashboard-table-application .header-reference .ref {
            margin-right: 0;
        }
    .dashboard-table .header-email {
        width: 20%;
        /*overflow: hidden; TABLEAU DES STAGES TROP LONG... JE REDUIS AVANT !
        text-overflow: ellipsis;*/
    }
    .dashboard-table .header-phone {
        width: 17.5%;
    }
/* Stages */
    .dashboard-stages .filters-dropdown .dashboard-select, 
    .dashboard-stages .filters-dropdown .filters-calendar .form-control {
        width: 100%;
    }

/* RH */
    /* Fiche candidat */
    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

}

@media (max-width:768px) {

/* 2 = Login / logout */
    .container-fluid {
        padding: 0 10px;
    }
        .row {
            margin: 0 -10px;
        }
    .container-fluid .submenu {
        margin: 0 -10px;
    }

/* 5 = Contenu page */
/* Tableau de bord RH */
    .dashboard-table .dashboard-table-header {
        display: none;
    }
        .dashboard .filters {
            flex-wrap: wrap;
            justify-content: center;
        }
    .accordion-collapse .dashboard-table-application {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
        .dashboard-table .d-flex,
        .dashboard-stages .dashboard-table .d-flex {
            padding: 0;
            width: 100%;
        }
            .dashboard-table-application .header-reference .ref, 
            .dashboard-table-application .header-ref-offer .ref {
                min-width: inherit;
            }
/* Offre d'emploi */
    .candidate-section .section-list .title {
        width: 90px;
    }
    .candidate-section .candidate-header {
        display: flex;
    }
        .candidate-section .links {
            position: static;
            margin-left: auto;
        }
            .candidate-section .btn-candidate:first-child {
                margin-right: 10px;
            }
                .candidate-section .btn-candidate .fal {
                    /*height: 40px;
                    width: 40px;*/
                }
/* Stages */

/* Fiche candidat */
    .content .form-horizontal .submit, 
    .form-horizontal input[type="submit"], 
    .content .form-horizontal .flex-row a, 
    .content .button-red {
        padding: 0 10px;
    }
    .content .form-horizontal .submit:focus, 
    .form-horizontal input[type="submit"]:focus, 
    .content .form-horizontal .flex-row a:focus, 
    .content .button-red :focus {
        outline: none;
    }
    .candidate-section .btn-default {
        padding: 0 10px;
    }
    /* points vert et rouge */
    .dashboard-table-application .unvisited,
    .dashboard-table-application .refused {
        position: static;
        margin-bottom: 5px;
        margin-right: auto;
    }

    /* Statistiques */
    .stats .application-list {
        flex-wrap: wrap;
        height: auto;
    }
        .stats .dashboard-table .d-flex {
            padding: 0 20px;
            width: auto;
        }
            .stats .application-list .header-doc .fa-file-excel {
                /*width: 30px;*/
            }

    /* Admin-list - tableau utilisateurs */
    .admin-list .list-subpages .item .link {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;  
    }

/* 6 = Calendrier */
    #myFullcalendar {
        margin-top: 50px;
    }
    .fc-header-toolbar .fc-right .fc-headerAddRdv-button {
        right: 0;
        top: -50px;
        border-color: var(--green);
        background-color: var(--green);
        font-size: 1.2rem;
    }
    .fc-day-header span .number {
        height: 24px;
        width: 24px;
        font-size: 1.2rem;
    }

}