﻿/* ADMIN LTE override */
/* _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- */
/*                                                          NAVBAR LEFT                                                               */
/* _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- */
.navbarLeft {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 50px;
    min-height: 100%;
    width: 230px;
    border-right: 1px solid #d2d6de;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out;
    transition: transform .3s ease-in-out,width .3s ease-in-out;
}

.fixed .navbarLeft {
    position: fixed;
}

@media (max-width: 767px) {
    .sidebar-open .navbarLeft {
        padding-top: 100px;
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        -o-transform: translate(0,0);
        transform: translate(0,0);
    }
    .navbarLeft {
        -webkit-transform: translate(-230px,0);
        -ms-transform: translate(-230px,0);
        -o-transform: translate(-230px,0);
        transform: translate(-230px,0);
    }   
}
/* UserInfo Panel */
.navbarLeft .userInfo {
    width: 100%;
    padding: 10px;
    text-align: center;
    overflow: hidden;
}
.navbarLeft .userInfo::before, .navbarLeft .userInfo::after {
    content: " ";
    display: table;
}
.navbarLeft .userInfo .image {
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    float: left;
}
.navbarLeft .userInfo .info {
    color: #fff;
    margin: 0;
    margin-top: 13px;
}
.light .navbarLeft .userInfo .info {
    color: #444;
}

/* Menu */
#menuLeft,
#menuLeft ul,
#menuLeft li {
    list-style: none;
    margin: 0;
    padding: 0;  
}
#menuLeft .thematique a,
#menuLeft .thematique ul,
#menuLeft .thematique li {
    color: #777;    
}
#menuLeft .thematique:last-of-type {
    border-color: #b8c7ce;
    border-width: 1px;
    border-bottom-style: solid;
}
#menuLeft .thematique>a {
    border-width: 1px;
    border-top-style: solid;
    border-color: #b8c7ce;    
    padding: 12px 5px 12px 20px;
    position: relative;
    display: block;
    cursor: pointer;
}
#menuLeft .thematique>a>i {
    display: none;
}
#menuLeft .thematique.open>a {
    border-bottom-style: solid;
}
#menuLeft .thematique .categorie {
    font-style: italic;
    color: #b8c7ce;
}
#menuLeft .thematique li {
    padding: 5px 5px 5px 20px;    
    font-weight: 400;
}
#menuLeft .thematique li .fa {
    width: 20px;
}
#menuLeft .thematique .categorie-container {
    -webkit-transition: height .5s ease-in-out;
    transition: height .5s ease-in-out;
    overflow: hidden;
}
#menuLeft .thematique:last-of-type>a>i {
    display: none;
}
#menuLeft .thematique>a .pull-right-container {
    position: absolute;
    right: 10px;
    top: unset;
    margin: 0;
}
#menuLeft .thematique>a .pull-right-container>i {
    transition: transform 0.5s ease;
    transform: rotate(0);
    width: auto;
    height: auto;
    padding: 0;
    margin-right: 10px;
}
#menuLeft .thematique.open>a .pull-right-container>i {
    transform: rotate(-90deg);
}

/* Menu collapsed */
.sidebar-collapse .navbarLeft {
    width: 50px!important;
    z-index: 850;
}
.sidebar-collapse .userInfo>.image {
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    margin-left: 2px;
}
.sidebar-collapse .userInfo>.info {
    display: none;
}
.sidebar-collapse #menuLeft .thematique>a span,
.sidebar-collapse.fixed #menuLeft .thematique>a span,
.sidebar-collapse #menuLeft .thematique .categorie-container,
.sidebar-collapse.fixed #menuLeft .thematique .categorie-container {
    display: none;
}
.sidebar-collapse #menuLeft .thematique>a>i,
.sidebar-collapse.fixed #menuLeft .thematique>a>i {
    display: inline-block;
    font: normal normal normal 14px/1 armadofont;
}
.sidebar-collapse #menuLeft .thematique.open>a {
    border-bottom: none;
}
.sidebar-collapse #menuLeft li>a>.pull-right-container,
.sidebar-collapse.fixed #menuLeft li>a>.pull-right-container {
    top: 50%;
    margin-top: -10px;
}
.sidebar-collapse #menuLeft .thematique>a {
    padding-left: 15px;
}

/* Dark */
.navbarLeft {
    background: #222d32;
}
#menuLeft .thematique {
    background: #1e282c
}
#menuLeft .thematique a {
    color: #b8c7ce;
}
#menuLeft .thematique a:hover,
#menuLeft .thematique.current>a {
    color: #fff
}
#menuLeft .categorie-container {
    background: #2c3b41;
}

/* Light */
.light .navbarLeft {
    background: #f9fafc;
}
.light #menuLeft .thematique {
    background: #ecf0f5;
}
.light #menuLeft .thematique a {
    color: #777;
}
.light #menuLeft .thematique a:hover,
.light #menuLeft .thematique.current>a {
    color: #000;
}
.light #menuLeft .categorie-container {
    background: #f4f4f5;
}
#menuLeft .thematique.current>a {
    border-left: 4px solid transparent;
}
/* Menu skins */
.skin-blue #menuLeft li.active,
.skin-blue-light #menuLeft li.active,
.skin-blue #menuLeft li.active>a,
.skin-blue-light #menuLeft li.active>a,
.skin-blue #menuLeft li.active>a:hover,
.skin-blue-light #menuLeft li.active>a:hover {
    background-color: #3c8dbc;
    border-color: #3c8dbc;
    color: #fff;
}
.skin-blue #menuLeft .thematique.current>a,
.skin-blue-light #menuLeft .thematique.current>a {
    border-left-color: #3c8dbc;
}

.skin-black #menuLeft li.active,
.skin-black-light #menuLeft li.active,
.skin-black #menuLeft li.active>a,
.skin-black-light #menuLeft li.active>a,
.skin-black #menuLeft li.active>a:hover,
.skin-black-light #menuLeft li.active>a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #222d32;
}
.skin-black #menuLeft .thematique.current>a,
.skin-black-light #menuLeft .thematique.current>a {
    border-left-color: #fff;
}

.skin-purple #menuLeft li.active,
.skin-purple-light #menuLeft li.active,
.skin-purple #menuLeft li.active>a,
.skin-purple-light #menuLeft li.active>a,
.skin-purple #menuLeft li.active>a:hover,
.skin-purple-light #menuLeft li.active>a:hover {
    background-color: #605ca8;
    border-color: #605ca8;
    color: #fff;
}
.skin-purple #menuLeft .thematique.current>a,
.skin-purple-light #menuLeft .thematique.current>a {
    border-left-color: #605ca8;
}

.skin-green #menuLeft li.active,
.skin-green-light #menuLeft li.active,
.skin-green #menuLeft li.active>a,
.skin-green-light #menuLeft li.active>a,
.skin-green #menuLeft li.active>a:hover,
.skin-green-light #menuLeft li.active>a:hover {
    background-color: #00a65a;
    border-color: #00a65a;
    color: #fff;
}
.skin-green #menuLeft .thematique.current>a,
.skin-green-light #menuLeft .thematique.current>a {
    border-left-color: #00a65a;
}

.skin-red #menuLeft li.active,
.skin-red-light #menuLeft li.active,
.skin-red #menuLeft li.active>a,
.skin-red-light #menuLeft li.active>a,
.skin-red #menuLeft li.active>a:hover,
.skin-red-light #menuLeft li.active>a:hover {
    background-color: #dd4b39;
    border-color: #dd4b39;
    color: #fff;
}
.skin-red #menuLeft .thematique.current>a,
.skin-red-light #menuLeft .thematique.current>a {
    border-left-color: #dd4b39;
}

.skin-yellow #menuLeft li.active,
.skin-yellow-light #menuLeft li.active,
.skin-yellow #menuLeft li.active>a,
.skin-yellow-light #menuLeft li.active>a,
.skin-yellow #menuLeft li.active>a:hover,
.skin-yellow-light #menuLeft li.active>a:hover {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #fff;
}
.skin-yellow #menuLeft .thematique.current>a,
.skin-yellow-light #menuLeft .thematique.current>a {
    border-left-color: #f39c12;
}

/* _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- */
/*                                                       !! NAVBAR LEFT !!                                                            */
/* _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- */

/* Box Primary */
.skin-blue .box.box-primary,
.skin-blue-light .box.box-primary {
    border-top-color: #3c8dbc;
}
.skin-black .box.box-primary,
.skin-black-light .box.box-primary {
    border-top-color: #fff;
}
.skin-purple .box.box-primary,
.skin-purple-light .box.box-primary {
    border-top-color: #605ca8;
}
.skin-green .box.box-primary,
.skin-green-light .box.box-primary  {
    border-top-color: #00a65a;
}
.skin-red .box.box-primary,

.skin-red-light .box.box-primary  {
    border-top-color: #dd4b39;
}
.skin-yellow .box.box-primary,
.skin-yellow-light .box.box-primary {
    border-top-color: #f39c12;
}

/* Paginations */
.skin-blue .pagination>.active>a,
.skin-blue .pagination>.active>a:focus,
.skin-blue .pagination>.active>a:hover,
.skin-blue .pagination>.active>span,
.skin-blue .pagination>.active>span:focus,
.skin-blue .pagination>.active>span:hover,
.skin-blue-light .pagination>.active>a,
.skin-blue-light .pagination>.active>a:focus,
.skin-blue-light .pagination>.active>a:hover,
.skin-blue-light .pagination>.active>span,
.skin-blue-light .pagination>.active>span:focus,
.skin-blue-light .pagination>.active>span:hover {
    background-color: #3c8dbc;
    border-color: #3c8dbc;
}

.skin-black .pagination>.active>a,
.skin-black .pagination>.active>a:focus,
.skin-black .pagination>.active>a:hover,
.skin-black .pagination>.active>span,
.skin-black .pagination>.active>span:focus,
.skin-black .pagination>.active>span:hover,
.skin-black-light .pagination>.active>a,
.skin-black-light .pagination>.active>a:focus,
.skin-black-light .pagination>.active>a:hover,
.skin-black-light .pagination>.active>span,
.skin-black-light .pagination>.active>span:focus,
.skin-black-light .pagination>.active>span:hover {
    background-color: #fff;
    border-color: #fff;
}

.skin-purple .pagination>.active>a,
.skin-purple .pagination>.active>a:focus,
.skin-purple .pagination>.active>a:hover,
.skin-purple .pagination>.active>span,
.skin-purple .pagination>.active>span:focus,
.skin-purple .pagination>.active>span:hover,
.skin-purple-light .pagination>.active>a,
.skin-purple-light .pagination>.active>a:focus,
.skin-purple-light .pagination>.active>a:hover,
.skin-purple-light .pagination>.active>span,
.skin-purple-light .pagination>.active>span:focus,
.skin-purple-light .pagination>.active>span:hover {
    background-color: #605ca8;
    border-color: #605ca8;
}

.skin-green .pagination>.active>a,
.skin-green .pagination>.active>a:focus,
.skin-green .pagination>.active>a:hover,
.skin-green .pagination>.active>span,
.skin-green .pagination>.active>span:focus,
.skin-green .pagination>.active>span:hover,
.skin-green-light .pagination>.active>a,
.skin-green-light .pagination>.active>a:focus,
.skin-green-light .pagination>.active>a:hover,
.skin-green-light .pagination>.active>span,
.skin-green-light .pagination>.active>span:focus,
.skin-green-light .pagination>.active>span:hover {
    background-color: #00a65a;
    border-color: #00a65a;
}

.skin-red .pagination>.active>a,
.skin-red .pagination>.active>a:focus,
.skin-red .pagination>.active>a:hover,
.skin-red .pagination>.active>span,
.skin-red .pagination>.active>span:focus,
.skin-red .pagination>.active>span:hover,
.skin-red-light .pagination>.active>a,
.skin-red-light .pagination>.active>a:focus,
.skin-red-light .pagination>.active>a:hover,
.skin-red-light .pagination>.active>span,
.skin-red-light .pagination>.active>span:focus,
.skin-red-light .pagination>.active>span:hover {
    background-color: #dd4b39;
    border-color: #dd4b39;
}

.skin-yellow .pagination>.active>a,
.skin-yellow .pagination>.active>a:focus,
.skin-yellow .pagination>.active>a:hover,
.skin-yellow .pagination>.active>span,
.skin-yellow .pagination>.active>span:focus,
.skin-yellow .pagination>.active>span:hover,
.skin-yellow-light .pagination>.active>a,
.skin-yellow-light .pagination>.active>a:focus,
.skin-yellow-light .pagination>.active>a:hover,
.skin-yellow-light .pagination>.active>span,
.skin-yellow-light .pagination>.active>span:focus,
.skin-yellow-light .pagination>.active>span:hover {
    background-color: #f39c12;
    border-color: #f39c12;
}

/* bootstrap override */
ol, ul {
    margin-bottom: 0;
}

caption {
    padding: 0px;
}

.pagination {
    margin: 0;
}

.content-header>h1 {
    line-height: inherit;
}

.table {
    margin-bottom: 0px;
}

.list-inline label {
    margin-bottom: 0;
}

.list-inline>li>input[type="radio"] {
    margin-right: 5px;
}

.label {
    padding: .2em .6em;
}

/*.badge {
    padding: .2em .6em;
}*/

/* end bootstrap override */

textarea {
    resize: none;
}

/* bootstrap select override */

.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
    background-color: #F5F5F5;
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
    color: #777;
}

/* end bootstrap select override */

/* adminlte override */

body {
    overflow-y: scroll;
    font-size: 15px;
}

.wrapper {
    overflow-y: hidden;
}

.main-footer {
    background-color: #ecf0f5;
}

.direct-chat-img.img-bordered-sm>span {
    line-height: 34px
}

.direct-chat-text {
    background: #3c8dbc;
    border-color: #3c8dbc;
    color: #fff;
}

.direct-chat-text::after, .direct-chat-text::before {
    border-right-color: #3c8dbc;
}

.direct-chat-primary .right>.direct-chat-text {
    background: #d2d6de;
    border: 1px solid #d2d6de;
    color: #444;
}

.direct-chat-primary .right>.direct-chat-text::after, .direct-chat-primary .right>.direct-chat-text::before {
    border-left-color: #d2d6de;
}

.progress.xxs, .progress-xxs {
    height: 5px;
}

.content {
    min-height: 0px;
}

.nav-tabs-fit {
    background: none;
}

.nav-tabs-fit>.nav-tabs {
    margin-right: -1px;
    background-color: #ecf0f5;
}

.nav-tabs-fit>.nav-tabs>li {
    background-color: #fff;
    margin-right: 0px;
    margin-bottom: -1px;
}

.nav-tabs-fit>.nav-tabs>li:first-child {
    border-top-left-radius: 3px;
}

.nav-tabs-fit>.nav-tabs>li>a {
    padding: 9px 20px 9px 10px;
}

.nav-tabs-fit>.nav-tabs>li.header {
    font-size: 18px;
    padding-right: 0px;
}

/* end adminlte override */

/* login */

.login-logo img {
    max-width: 100%;
}

/* end login */

/* password */

.password-valid {
    color: #00a65a;
}

.password-valid:before {
    font-family: armadofont;
    content: "\e90e";
    padding-right: 10px;
}

.password-invalid {
    color: #f39c12;
}

.password-invalid:before {
    font-family: armadofont;
    content: "\e941";
    padding-right: 10px;
}

/* end password */

/* navbar */

.navbar, .sidebar {
    font-size: 14px;
}

.navbar-nav>.user-menu .user-image {
    text-align: center;
}

.navbar-nav>.user-menu .user-image>span {
    vertical-align: middle;
    font-weight: 600;
}

.navbar-nav>.user-menu>.dropdown-menu>li.user-header>div {
    height: 90px;
    width: 90px;
    line-height: 90px;
    text-align: center;
    margin: auto;
}

.fixed .main-sidebar {
    height: 100%;
    overflow-y: auto;
}

.sidebar-menu>li .label {
    font-size: 11px;
    padding: 3px 5px;
    border-radius: 3px;
    /*margin-top:2px;*/
}

.sidebar .user-panel>.image>div {
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
}

.sidebar .user-panel>.image>img {
    max-height: 45px;
}

.sidebar-mini.sidebar-collapse .user-panel>.image>div {
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    margin-left: 2px;
}

/* end navbar */

/* navbar-sub */

.navbar-sub {
    margin-bottom: 0;
}

.navbar-sub .navbar-toggle {
    color: #333;
    float: left;
    padding: 10px;
}

.navbar-sub .navbar-collapse {
    border-bottom: 1px solid #e0e0e0;
    padding-left: 0;
}

.navbar-sub .navbar-nav>li>a {
    color: #444;
    padding: 15px 0;
    margin: 0 15px;
}

@media (min-width:768px) {
    .navbar-sub .navbar-nav>li:first-child>a {
        margin-left: 0;
    }
    .navbar-sub .navbar-nav>li.active>a {
        border-bottom: 2px solid #54bbd6;
    }
}

@media (max-width:767px) {
    .navbar-sub .navbar-nav>li.active>a>i {
        color: #54bbd6;
    }
    .navbar-sub .navbar-nav>li>a {
        padding: 10px 0;
    }
}

.navbar-sub .navbar-nav>li>a:hover, .navbar-sub .navbar-nav>li>a:active, .navbar-sub .navbar-nav>li>a:focus {
    color: #999;
    background: none;
}

.navbar-sub .navbar-nav>li>a>i {
    margin-right: 5px;
}

/* end navbar-sub */

/* nabar-right */

.control-sidebar ul>li {
    float: left;
    width: 33.33333%;
    padding: 5px;
}

.control-sidebar ul>li>a>div>span {
    display: block;
    width: 20%;
    float: left;
}

.control-sidebar ul>li>a>.skin-top>.header-logo {
    height: 7px;
}

.control-sidebar ul>li>a>.skin-top>.header-logo-blue {
    background: #367fa9;
}

.control-sidebar ul>li>a>.skin-top>.header-logo-white {
    background: #fefefe;
}

.control-sidebar ul>li>a>.skin-top>.bg {
    display: block;
    width: 80%;
    float: left;
    height: 7px;
}

.control-sidebar ul>li>a>.skin-top>.bg-white {
    background: #fefefe;
}

.control-sidebar ul>li>a>.skin-bottom>.bg-left-dark {
    height: 20px;
    background: #222d32;
}

.control-sidebar ul>li>a>.skin-bottom>.bg-left-light {
    height: 20px;
    background: #f9fafc;
}

.control-sidebar ul>li>a>.skin-bottom>.bg-content {
    display: block;
    width: 80%;
    float: left;
    height: 20px;
    background: #f4f5f7
}

/* navbar-right */

/* homepage*/

.callout .icon {
    margin-right: 10px;
}

.box-message .box-header {
    display: flex;
    align-items: center;
}

.box-message img {
    max-width: 100%;
    max-height: 80px;
}

#mission-detail .list-group {
    margin-bottom: 10px;
}

#mission-detail>div>ul>li {
    display: inline-block;
    width: 100%;
}

#mission-detail>div>ul>li>i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.hompepage-pad-middle .box-body {
    height: 265px;
}

.hompepage-pad-middle .nav-stacked>li {
    height: 65px;
}

.hompepage-pad-middle .nav-stacked > li img {
    max-width: 112px;
    max-height: 40px;
}

.hompepage-pad-middle .box-footer {
    height: 55px;
}

/* end homepage */

/* filter */

.action-filter {
    display: flex;
}

.action-filter .input-group {
    max-width: 250px;
    min-width: 130px;
}

.action-filter #filters {
    margin-left: 10px;
}

.action-filter #toogleFilters {
    min-width: 150px;
}

.box-filter {
    margin-bottom: 0px;
}

.box-filter .filter>span {
    font-weight: 600;
}

.box-filter .filter>label {
    padding-bottom: 10px;
    width: 100%;
    margin-bottom: 0px;
}

.box-filter .filter>ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.box-filter .filter>ul>li:not(:first-child) {
    padding-top: 10px;
}

.box-filter .filter>ul>li>a {
    color: #111111;
    opacity: 0.6;
}

.box-filter .filter>ul>li>a.selected {
    color: #333333;
    opacity: 1;
    font-weight: 600;
}

.box-filter .filter>ul>li>a.selected::after {
    font-family: armadofont;
    content: "\e90e";
    padding-left: 10px;
}

.box-filter .filter .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}

.box-filter .select-week>span {
    color: #111111;
    opacity: 0.6;
}

.box-filter .select-week .dropdown-menu>li>a {
    color: #333333;
}

/* end filter */

/* list */

.table {
    table-layout: fixed;
}

.table>thead>tr {
    height: 40px;
}

.table>thead .sorting {
    cursor: pointer;
    color: #333;
    width: 100%;
    display: inline-block;
}

.table>thead .sorting::after {
    display: block;
    float: right;
    font-family: 'Glyphicons Halflings';
    opacity: 0.2;
    content: "\e150";
}

.table>thead .sorting_asc {
    cursor: pointer;
    color: #333;
    width: 100%;
    display: inline-block;
}

.table>thead .sorting_asc::after {
    display: block;
    float: right;
    font-family: 'Glyphicons Halflings';
    opacity: 0.5;
    content: "\e156";
}

.table>thead .sorting_desc {
    cursor: pointer;
    color: #333;
    width: 100%;
    display: inline-block;
}

.table>thead .sorting_desc::after {
    display: block;
    float: right;
    font-family: 'Glyphicons Halflings';
    opacity: 0.5;
    content: "\e155";
}

.table>tbody>tr>.logo {
    text-align: center;
}

.table > tbody > tr > .logo > img {
    width: 100%;
    max-width: 112px;
    max-height: 40px;
}

.table>tbody>tr>.logo>div {
    margin-top: 8px;
    line-height: 1em;
    word-wrap: break-word;
    /*max-width: 133px;*/
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table>tbody>tr>td {
    vertical-align: middle;
}

.table>tbody>tr>td a {
    font-weight: 600;
}

.table>tbody>tr>td .fa {
    opacity: 0.2;
}

.table>tbody>tr>td .fa-check {
    opacity: 1;
}

.table>tbody>tr>td .fa:hover {
    opacity: 1;
}

    .table > tbody > tr > td > .list-status .label {
        font-size: 12px;
        word-wrap: break-word;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

.table>tbody>tr>td>.list-status .label.bg-yellow {
    display: none;
}

.table>tbody>tr>td>.status-Validate .label, 
.table>tbody>tr>td>.status-Recorded .label {
    background-color: #00c0ef;
}

.table>tbody>tr>td>.status-Validate .label.bg-yellow, 
.table>tbody>tr>td>.status-Recorded .label.bg-yellow {
    display: inline;
}

.table>tbody>tr>td>.status-Proceed .label, 
.table>tbody>tr>td>.status-Accepted .label {
    background-color: #00a65a;
}

.table > tbody > tr > td > .status-Cancel .badge,
.table > tbody > tr > td > .status-Proceed .badge,
.table > tbody > tr > td > .status-Stored .badge {
    display: none;
}

.table > tbody > tr > td > .status-Cancel .progress,
.table > tbody > tr > td > .status-Proceed .progress,
.table > tbody > tr > td > .status-Stored .progress {
    display: none;
}

.table>tbody>tr>td>.status-ToProceed .label, 
.table>tbody>tr>td>.status-InProcess .label {
    background-color: #f39c12;
}

.table > tbody > tr > td > .status-Stored .label {
    background-color: #3c8dbc;
}

.table > tbody > tr > td > .status-Cancel .label,
.table > tbody > tr > td > .status-Refused .label,
.table > tbody > tr > td > .status-Delete .label {
    background-color: #dd4b39;
}

.table>tbody>tr>td>.status-None .label {
    background-color: #f39c12;
    opacity: 0.6;
}

.table>tbody>tr>td>.status-WaitingEttToValidate .label {
    background: repeating-linear-gradient( 45deg, #00a65a, #00a65a 5px, #5cb85c 5px, #5cb85c 10px);
}

.table>tbody>tr>td>.in-process {
    color: #f39c12;
}

.table>tbody>tr>td>.status-NonLu .label {
    background-color: #f39c12;
}

.table>tbody>tr>td>.status-Lu .label {
    background-color: #00a65a;
}

.table > tbody > tr > td > .status-Send .label {
    background-color: #00a65a;
}

.table>tbody>tr>td:after {
    display: table;
    content: " ";
    clear: both;
}

/* end list */

/* fix list header */

.panel-fixed-header {
    padding: 0px 10px;
}

#fixed-header {
    position: fixed;
    top: 0px;
    display: none;
    background-color: white;
    width: calc(100% - 280px);
    z-index: 5;
}

body.fixed #fixed-header {
    top: 50px;
}

#fixed-filter.fixed #fixed-header {
    top: 50px;
}

.sidebar-collapse #fixed-header {
    width: calc(100% - 100px);
}

/* end fix list header */

/*.items-per-page .bootstrap-select {
    width:70px !important;
}
.items-per-page .bootstrap-select .btn-default {
    background-color:#fff;
}*/

/* end list */

/* detail */

.detail .box-body .box-body-top {
    display: flex;
    margin-bottom: 10px;
    margin-top: 5px
}

.detail .box-body .box-body-top div {
    align-self: center;
}

.detail .box-body .box-body-top img {
    max-width: 100%;
}

.detail .box-body .box-body-top ul>li {
    padding: 5px 0;
}

.detail .box-body>.row, .detail .tab-content .row:not(:first-child) {
    padding: 5px 0;
}

.detail .box-body hr {
    border-top: 1px solid #f4f4f4;
    margin: 5px 0px;
}

.detail .box-body .box-body-top .user-avatar {
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    text-transform: uppercase;
    margin: auto;
    display: block;
}

/* box status */

.detail .box-status {
    display: flex;
    color: #ffffff;
}

.detail .box-status .info-box-icon {
    display: flex;
    justify-content: center;
    height: auto;
}

.detail .box-status .info-box-icon .fa {
    align-self: center;
}

.detail .box-status .info-box-content {
    flex: 1;
    margin-left: 0;
}

.detail .status-Validate .box-status {
    background-color: #00c0ef;
}

.detail .status-Validate .info-box-icon .fa::before {
    content: "\e93a";
}

.detail .status-ToProceed .box-status {
    background-color: #f39c12;
}

.detail .status-ToProceed .info-box-icon .fa::before {
    content: "\e93a";
}

.detail .status-InProcess .box-status,
.detail .status-Recorded .box-status {
    background-color: #f39c12;
}

.detail .status-InProcess .info-box-icon .fa::before,
.detail .status-Recorded .info-box-icon .fa::before {
    content: "\e93a";
}

.detail .status-Proceed .box-status, 
.detail .status-Accepted .box-status {
    background-color: #00a65a;
}

.detail .status-Proceed .info-box-icon .fa::before, 
.detail .status-Accepted .info-box-icon .fa::before {
    content: "\e93b";
}

.detail .status-Stored .box-status {
    background-color: #3c8dbc;
}
.detail .status-Stored .info-box-icon .fa::before {
    content: "\e934";
}

.detail .status-Cancel .box-status, 
.detail .status-Refused .box-status {
    background-color: #dd4b39;
}

.detail .status-Cancel .info-box-icon .fa::before, 
.detail .status-Refused .info-box-icon .fa::before {
    content: "\e93a";
}

.detail .status-WaitingEttToValidate .box-status {
    background: repeating-linear-gradient( 45deg, #00a65a, #00a65a 5px, #5cb85c 5px, #5cb85c 10px);
}

.detail .status-WaitingEttToValidate .info-box-icon .fa::before {
    content: "\e93a";
}

.detail .status-Validate .info-box-icon .fa::before {
    content: "\e93a";
}

.detail .box-status .info-box-content {
    align-self: center;
    margin-left: 0;
}

/* end box status */

/* box historic */

.nav-historic>li {
    padding: 10px 15px;
    color: #444;
}

.nav-historic>li {
    border-left: 3px solid transparent;
}

.nav-historic>li:hover {
    border-left-color: #3c8dbc;
}

.nav-historic>li>.modal-open {
    margin-left: 30px;
}

/* end box historic */

/* box interimaire */

.user-block {
    margin-bottom: 15px;
}

.user-block .direct-chat-img {
    float: none;
    display: inline-block;
}

.user-block .username {
    display: inline;
    margin-left: 10px;
    color: #3c8dbc;
}

/* end box interimaire */

/* box annotation */

.collapsed-box #annotation-edit {
    display: none;
}

.collapsed-box #annotation-add {
    display: block !important;
}

.expanded-box #annotation-body .form-control {
    display: none;
}

.expanded-box #annotation-footer {
    display: none;
}

.expanded-box.editable #annotation-body .form-control {
    display: block;
}

.expanded-box.editable #annotation-body #annotation-text {
    display: none;
}

.expanded-box.editable #annotation-footer {
    display: block;
}

.editable #annotation-edit {
    display: none;
}

.editable #annotation-cancel {
    display: block !important;
}

/* end box annotation */

/* box message */

.direct-chat-messages {
    height: auto;
    max-height: 250px;
}

.direct-chat-img {
    text-align: center;
}

.direct-chat-img>span {
    line-height: 40px;
    font-size: 16px;
    font-weight: 600;
}

/* en box message */

/* table rh */

#table-rh {
    border: 1px solid #444;
}

#table-rh th {
    border: 1px solid #444;
    background-color: #3c8dbc;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

#table-rh td {
    border: 1px solid #444;
    padding: 10px;
    text-align: center;
}

#table-rh #total-hour td {
    background-color: #3c8dbc;
    color: #ffffff;
}

#table-rh .holiday {
    background-color: #f39c12;
}

#table-rh .souplesse {
    background-color: #76afd0;
}

#table-rh .no-recordable {
    background: repeating-linear-gradient( -45deg, #3c8dbc, #3c8dbc 1px, #ffffff 1px, #ffffff 4px);
}

#table-rh th[data-isholiday="True"] {
    background-color: #dd4b39;
}

#table-rh .bootstrap-select {
    width: auto;
}

#table-rh td .form-control {
    padding: 6px;
}

/* end table rh */

/* end detail */

/* list member */

.list-member .user-avatar {
    height: 48px;
    width: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    text-transform: uppercase;
}

/* end list member */

/* detail account */

.box-profile .avatar {
    display: flex;
    justify-content: center;
}

.box-profile .avatar>div {
    position: relative;
    display: inline-block;
}

.box-profile .avatar>div>.icon-camera {
    padding: 3px;
    border: 3px solid #d2d6de;
    background-color: white;
    position: absolute;
    top: 33px;
    right: -18px;
}

.box-profile .avatar>div>.icon-camera>a>i {
    font-size: 24px;
}

.box-profile .avatar>div>.icon-camera:hover {
    transform: scale(1.2);
}

.box-profile .user-avatar {
    height: 100px;
    width: 100px;
    line-height: 100px;
    font-size: 32px;
    text-align: center;
    border-radius: 50%;
    margin: auto;
    text-transform: uppercase;
}

/* end detail account */

/* popup */
.popup {
    position: relative;
    background: #FFF;
    width: auto;
    margin: 20px auto;
}

.popup-450 {
    max-width: 450px;
}

.popup-650 {
    max-width: 650px;
}

.popup-900 {
    max-width: 900px;
}

.mfp-iframe-holder .mfp-content {
    height: 538px;
}

.mfp-iframe-scaler iframe {
    background: #FFF;
    /*height:950px;*/
}
/* end popup */

/* send email */
#email-popup label {
    margin-bottom: 0;
}

#email-popup .content .fa-close {
    color: #dd4b39;
}

#email-popup .content hr:first-child {
    margin-top: 0;
}

#email-popup .content hr {
    margin: 10px 0;
}
/* end send email */

/* rh modified */
#save-rh-popup {
    background-color:#fff;
}
/*end rh modified */
/* popup */
.box-header-empty-success {
    border-top: #008d4c 3px solid;
    border-radius: 0;
}

.box-header-empty-success>.box-header {
    background-color: #00a65a;
    color: white;
}

.box-header-empty-primary {
    border-top: #367fa9 3px solid;
    border-radius: 0;
}

.box-header-empty-primary>.box-header {
    background-color: #3c8dbc;
    color: white;
}

.box-header-empty-warning {
    border-top: #db8b0b 3px solid;
    border-radius: 0;
}

.box-header-empty-warning>.box-header {
    background-color: #f39c12;
    color: white;
}

/* end popup */

/* boutons actions */

.list-actions .list-inline>li {
    padding-left: 5px;
    padding-right: 0px;
}

.list-actions .list-inline .separator {
    padding-right: 10px;
}

/* end boutons actions*/

/* radio button list */

.radio-button-list {
    list-style: none;
    padding: 0;
}

.radio-button-list>li>label {
    margin-left: 8px;
    font-weight: 400;
    vertical-align: top;
}

/* end radio button list */

/* override radeditor */

.RadEditor_Bootstrap {
    font-size: 12px !important;
}

.RadEditor_Bootstrap .reDropdown {
    height: 2.28571em !important;
}

/* end override radeitor */

/* override radupload */
.RadUpload,
.ruFileWrap .ruStyled {
    width: 100% !important;
    text-align: center !important;
}

.RadUpload .ruFileInput,
.RadUpload .ruFakeInput,
.RadUpload .ruBrowse
{
    cursor: pointer !important;
    width: 100% !important;
}

/* end override radupload */

/* override radgrid */

.RadGrid_Bootstrap .rgRow [type="text"], .RadGrid_Bootstrap .rgAltRow [type="text"], .RadGrid_Bootstrap .rgEditForm [type="text"] {
    height: 34px !important;
    border-radius: 0px !important;
}

/* end override radgrid */

/* checkbox */

.cb-custom {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 18px;
    height: 18px;
    margin-bottom: 0px;
}

.cb-custom input {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.cb-custom-checkmark {
    background-image: url('/Images/checkbox_blue.png');
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
}

.cb-custom:hover input~.cb-custom-checkmark {
    background-position: -20px 0;
}

.cb-custom input:checked~.cb-custom-checkmark {
    background-position: -40px 0;
}

.cb-custom input[type="checkbox"][disabled]~.cb-custom-checkmark {
    cursor: not-allowed;
}

/* end checkbox */

.phone-number-entry>div {
    width: 100px !important;
}

.phone-number-entry>input {
    position: absolute;
    margin-left: 10px;
    min-width: 100px;
}

/* horizontral scroll table */

.form-group>table {
    overflow-x: auto;
    display: block;
}

/* end horizontral scroll table */

.list-inline {
    display: inline-block;
}

.align-middle {
    vertical-align: middle !important;
}

.first-letter-upper::first-letter {
    text-transform: uppercase;
}

.left5 {
    margin-left: 5px;
}

.right5 {
    margin-right: 5px !important;
}

.bottom5 {
    margin-bottom: 5px;
}

.bottom15 {
    margin-bottom: 15px;
}

.bottom20 {
    margin-bottom: 20px;
}

.left10 {
    margin-left: 10px;
}

.top5 {
    margin-top: 5px;
}

.top10 {
    margin-top: 10px;
}

.top15 {
    margin-top: 15px;
}

.top50 {
    margin-top: 50px;
}

.padding-bottom0 {
    padding-bottom: 0px;
}

.padding-bottom5 {
    padding-bottom: 5px;
}

.nopadding-left {
    padding-left: 0;
}

.display-block {
    display: block;
}

.display-flex {
    display: flex;
}

.width100 {
    width: 100% !important;
}

/* RWD */

@media (max-width:768px) {
    .content-header.row h1 {
        margin-bottom: 15px;
    }
    .box-filter .filter {
        margin-bottom: 15px;
    }
    .table-bordered {
        border: none;
    }
    .table {
        font-size: 1em;
        line-height: 24px;
    }
    .table thead {
        display: none;
    }
    .table colgroup {
        display: none;
    }
    .table>tbody>tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-top: 0px;
        background: #fff;
        height: auto;
    }
    .table>tbody>tr:last-child {
        margin-bottom: 0px;
    }
    .table>tbody>tr .logo {
        position: absolute;
        right: 15px;
    }
    .table>tbody>tr:hover {
        background: none;
    }
    .table>tbody>tr>td {
        display: block;
        text-align: right;
        border-width: 1px 0 0 0;
        border-style: solid;
        border-color: #ddd;
    }
    .table>tbody>tr>td>a, .table>tbody>tr>td>div {
        padding-left: 90px;
        display: block;
    }
    .table>tbody>tr>.link {
        text-align: left;
        background-color: #3c8dbc;
    }
    .table>tbody>tr>.link>a {
        padding-left: 0;
        padding-right: 60px;
        color: #ffffff;
    }
    .table>tbody>tr>td:before {
        font-size: 1em;
        color: #737373;
    }
    .table>tbody>tr>.hidden-xs {
        border: 0 none;
    }
    .table>tbody>tr td:before {
        content: attr(data-title);
        float: left;
        line-height: 1.6em;
    }
}

@media (min-width:1200px) {
    .nopadding-left-lg {
        padding-left: 0;
    }
    .height320-lg {
        height: 320px;
    }
}

/* End RWD  */

/*-------------------------------------------   CHARTS   -------------------------------------------*/

/*_________________   CONTAINERS   _________________*/

.chart-container {
    height: 300px;
}

/*-------------------------------------------   CHARTS   -------------------------------------------*/

/*-------------------------------------------   FILTERS | NAVBAR-LOWER   -------------------------------------------*/

/*_________________   NAVBAR   _________________*/

.navbar-filter {
    font-size: 14px;
    z-index: 9;
}

/*_________________   BUTTON CONTAINER   _________________*/

.navbar-filter .btn-filter {
    position: relative;
    z-index: 10;
    float: left;
    padding:0 15px 10px 0;
}

.navbar-filter .btn-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .navbar-filter .btn-filter.open {
        z-index: 11;
    }

.navbar-filter .btn-filter-search {
    min-width: 200px;
    max-width:250px;
}

/*_________________   DELETE FILTER   _________________*/

.navbar-filter .btn-filter .delete:not(:empty) {
    cursor: pointer;
    position: absolute;
    top: -5px;
    right: 7px;
    font-size: 10px;
    border-radius: 10px;
    padding: 0px 6px 2px 6px;
    z-index: 12;
}

.navbar-filter .btn-filter .delete:empty {
    display: none;
}

.navbar-filter .btn-filter .delete:hover {
    background-color: #dd4b39 !important;
    top: -7px;
    right: 3px;
    padding: 2px 8px 3px 8px;
}

/*_________________   NO DOUBLE TAP   _________________*/

.navbar-filter .btn-filter .dropdown-backdrop {
    display: none;
}

/*_________________   BUTTON   _________________*/

.navbar-filter .btn-filter .btn-app-filter {
    background-color: #f4f4f4;
    border: 1px solid transparent;
    border-color: #ddd;
    border-radius: 4px;
    cursor: pointer;
    padding: 6px 12px;
    outline: none;
}

    .navbar-filter .btn-filter .btn-app-filter:hover {
        border-color: #aaa;
    }

/*_________________   BUTTON LABEL  _________________*/

    .navbar-filter .btn-filter .btn-app-filter .filter-name {
        padding-right: 8px;
    }

/*_________________   CARET   _________________*/

    .navbar-filter .btn-filter .btn-app-filter .caret {
        margin-bottom: 2px;
    }

/*_________________   BUTTON OPEN   _________________*/

.navbar-filter .btn-filter.open .btn-app-filter {
    padding-bottom: 15px;
    margin-bottom: -8px;
    border-bottom: none;
}

.navbar-filter .btn-filter.open .btn-app-filter:hover {
    border-color: #ddd;
}

/*_________________   CARET OPEN  _________________*/

.navbar-filter .btn-filter.open .btn-app-filter .caret {
    border-top-width: 0;
    border-bottom: 4px solid #444;
    margin-bottom: 2px;
}

/*_________________   FILTER CONTAINER   _________________*/

.navbar-filter .btn-filter .filters-dropdown {
    position: absolute;
    margin-top: 6px;
    padding: 0;
    box-shadow: none;
    background-color: #f4f4f4;
    display: none;
    min-width: 160px;
    white-space: nowrap;
    border: 1px solid #ddd;
    z-index: -1;
}

.navbar-filter .btn-filter.open .filters-dropdown {
    display: block;
    overflow-y: auto;
    overflow-x:hidden;
    max-height: 350px;
}

.navbar-filter .btn-filter .filters-dropdown ul {
    padding: 5px;
}

.navbar-filter .btn-filter .filters-dropdown li {
    cursor: pointer;
}

/*_________________   MONO FILTER   _________________*/

.navbar-filter .btn-filter .filters-dropdown.mono li {
    line-height: 25px;
    border: 1px solid transparent;
    text-align: center;
}

.navbar-filter .btn-filter .filters-dropdown.mono li.selected {
    border-color: #3c8dbc;
}

.navbar-filter .btn-filter .filters-dropdown.mono li a {
    color: #333;
    font-weight: unset;
    display: inline-block;
    width: 100%;
}

.navbar-filter .btn-filter .filters-dropdown.mono li a:hover {
    color: #3c8dbc;
}

.navbar-filter .btn-filter .filters-dropdown.mono li.selected a {
    color: #3c8dbc;
}

/*_________________   MULTI FILTER   _________________*/

.navbar-filter .btn-filter .filters-dropdown.multi li {
    position: relative;
    padding-left: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.navbar-filter .btn-filter .filters-dropdown.multi label {
    padding-left: 5px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    display: inline-block;
    width: 100%;
}

/*_________________   CHECKBOX   _________________*/

.navbar-filter .btn-filter .filters-dropdown.multi input[type="checkbox"] {
    position: absolute;
    margin: 4px 0 0 -22px;
    line-height: normal;
    cursor: pointer;
}

.navbar-filter .btn-filter .filters-dropdown.multi input[type="checkbox"]:checked+label {
    background-image: none;
    color: #3c8dbc;
}

.navbar-filter .btn-filter .filters-dropdown.multi input[type="checkbox"]:checked+label::before {
    border-color: #3c8dbc;
    background-color: #3c8dbc;
}

.navbar-filter .btn-filter .filters-dropdown.multi input[type="checkbox"]:checked+label::after {
    font-family: armadofont;
    content: "\e90e";
    color: #fff;
}

.navbar-filter .btn-filter .filters-dropdown.multi label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: 5px;
    margin-top: 1px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -moz-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.navbar-filter .btn-filter .filters-dropdown.multi label::after {
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: 5px;
    padding-left: 3px;
    padding-top: 2px;
    font-size: 11px;
}

/*_________________   APPLY BUTTON   _________________*/

.navbar-filter .btn-filter .filters-dropdown.multi .btn-appliquer {
    width: 90%;
    margin-bottom: 5%;
    margin-left: 5%;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 3px;
    background-color: #dddddd;
}

.navbar-filter .btn-filter .filters-dropdown.multi .btn-appliquer.btn-primary {
    background-color: #3c8dbc;
    border-color: #3c8dbc;
}

/*_________________   DATEPICKER FILTER   _________________*/

.navbar-filter .btn-filter.open .filters-dropdown.filters-dropdown-date {
    display: block;
}

/*_________________   SELECTED FILTERS CONTAINER   _________________*/

.selected-filters-container ul {
    list-style: none;
    padding: 0;
    margin-bottom:10px;
}

.selected-filters-container>ul>li {
    padding: 0.2em 0.6em 0.3em;
    background-color: #f4f4f4;
    border-radius: .25em;
    float: left;
    cursor: pointer;
    margin-right: 4px;
}

/*_________________   SELECTED FILTER BUTTON   _________________*/

.selected-filters-container>ul>li>label {
    margin: 0;
    font-weight: 400;
    pointer-events: none;
}

.selected-filters-container>ul>li:hover>label {
    color: #3c8dbc;
}

.selected-filters-container>ul>li>span {
    color: #999;
    padding-left: 3px;
    font-size: 13px;
    line-height: 1;
}

/*_________________   CLEAR ALL BUTTON   _________________*/

.selected-filters-container #filter-clear-all label {
    font-weight: 700;
    color: #dd4b39;
}

.selected-filters-container #filter-clear-all:hover label {
    outline: none;
    text-decoration: none;
    color: #c23321;
}

/*_________________   FIXED FILTER   _________________*/

@media (max-width:768px) {
    #list-table {
        margin-top:0px !important;
    }
}

@media (min-width:769px) {
    #fixed-filter.fixed {
        position: fixed;
        top: 0;
        width: calc(100% - 260px);
        z-index: 20;
        background-color: white;
    }

    .sidebar-collapse #fixed-filter.fixed {
        width: calc(100% - 100px);
    }

    #fixed-filter.fixed #fixed-header {
        position: relative;
        display: table !important;
        top: auto;
        width: 100%;
        margin-top: 10px;
    }

    body.fixed #fixed-filter.fixed {
        top: 50px;
    }
}

/*-------------------------------------------   FILTERS | NAVBAR-FILTER   -------------------------------------------*/

/*-------------------------------------------   TABLE RIGHTS   -------------------------------------------*/

/*_________________   CONTAINERS   _________________*/

.tablerights-container {
    margin-bottom: 10px;
    min-height: 250px;
    overflow-x: auto;
    position: relative;
}

/*_________________   BUTTONS   _________________*/

.tablerights-footers .btn-default, .tablerights-footers .btn-success, .tablerights-footers .btn-primary, .tablerights-footers .btn-danger {
    display: none;
}

.tablerights-footers .btn-success.show {
    margin-right: -8px;
}

/*_________________   ERRORS   _________________*/

#userRightsError {
    display: none;
}

#userRightsError .show {
    display: block;
}

/*_________________   TABLE   _________________*/

.tablerights-container .tablerights {
    border: 1px solid #f4f4f4;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

/*_________________   ROWS   _________________*/

.tablerights-container .tablerights thead tr {
    height: 40px;
}

/*_________________   HEADERS   _________________*/

.tablerights-container .tablerights th:first-child {
    width: 20%;
}

.tablerights-container .tablerights th {
    border-bottom-width: 2px;
    border: 1px solid #f4f4f4;
    border-top: 0;
    min-width: 160px;
    text-align: center;
}

/*_________________   CONTENT   _________________*/

.tablerights-container .tablerights td {
    border: 1px solid #f4f4f4;
    padding: 5px 10px;
    text-align: center;
}

.tablerights-container .tablerights td .cb-container {
    text-align: left;
    width: 150px;
    margin: auto;
}

/*_________________   CHECKBOX   _________________*/

.tablerights-container .tablerights td input[type="checkbox"] {
    opacity: 0;
}

.tablerights-container .tablerights td input+label {
    cursor: pointer;
    margin: 0;
}

.tablerights-container .tablerights td input[type="checkbox"][disabled="disabled"]+label {
    cursor: not-allowed;
}

.tablerights-container .tablerights td input[type="checkbox"]+label::before {
    content: "";
    position: relative;
    margin-top: 6px;
    margin-left: -14px;
    margin-right: 20px;
    z-index: 1;
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -moz-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

/* DISABLE Buttons ideas */

/* .tablerights-container .tablerights td input[type="checkbox"][disabled="disabled"]:checked+label::before {
    border-color: #6e93a9;
    background-color: #6e93a9;
} */

/* .tablerights-container .tablerights td input[type="checkbox"][disabled="disabled"]+label::after {
    background-color: #f3f7fa;
    color: #6e93a9;
}

.tablerights-container .tablerights td input[type="checkbox"][disabled="disabled"]+label::before {
    background-color: #f3f7fa;
} */

/* .tablerights-container .tablerights td input[type="checkbox"][disabled="disabled"]:checked+label::after {
    background-color: #6e93a9;
} */

.tablerights-container .tablerights td input[type="checkbox"]:checked+label::before {
    border-color: #3c8dbc;
    background-color: #3c8dbc;
}

.tablerights-container .tablerights td input[type="checkbox"]+label::after {
    position: absolute;
    z-index: 2;
    font-size: smaller;
    font-weight: normal;
    font-family: armadofont;
    background-color: #fff;
    color: #3c8dbc;
    margin-top: 10px;
}

.tablerights-container .tablerights td input[type="checkbox"][cbtype="0"]+label::after {
    content: "\e93d";
    margin-left: -37px;
}

.tablerights-container .tablerights td input[type="checkbox"][cbtype="1"]+label::after {
    content: "\e943";
    margin-left: -39px;
}

.tablerights-container .tablerights td input[type="checkbox"][cbtype="2"]+label::after {
    content: "\e942";
    margin-left: -38px;
}

.tablerights-container .tablerights td input[type="checkbox"][cbtype="3"]+label::after {
    content: "\e92f";
    margin-left: -38px;
}

.tablerights-container .tablerights td input[type="checkbox"][cbtype="4"]+label::after {
    content: "\e91a";
    margin-left: -38px;
}

.tablerights-container .tablerights td input[type="checkbox"][cbtype="5"]+label::after {
    content: "\e91b";
    margin-left: -39px;
}

.tablerights-container .tablerights td input[type="checkbox"]:checked+label::after {
    background-color: #3c8dbc;
    color: #fff;
}

/*-------------------------------------------   TABLE RIGHTS   -------------------------------------------*/

/*-- Badge design (messages management) --*/
.messages-box .badge {
    margin-left: 4px;
    margin-bottom: 4px;
}

.messages-editor .alert, .message-view .alert {
    margin-bottom: 10px;
}

.messagePLD-view .alert {
    margin-bottom: 0;
}

.message-view .badge {
    margin-bottom: -15px;
}

.message-recipients {
    display: inline;
}

.message-recipients label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    margin-top: 2px;
}

.message-recipients input[type="checkbox"]:checked+label::after {
    font-family: armadofont;
    content: "\e90e";
    color: #367fa9;
}

.message-recipients label::after {
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 1px;
    font-size: 15px;
}

.message-recipients label {
    color: #676767;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
    min-height: 20px;
    font-weight: normal;
    cursor: pointer;
    padding-right: 28px;
    margin-bottom: 2px;
}

.message-recipients>label {
    padding-top: 5px;
    padding-bottom: 5px;
}

.message-recipients input[type="checkbox"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    position: absolute;
    margin: 5px 0 0 -18px;
    -ms-transform: scale(1.5);
    /* IE */
    -moz-transform: scale(1.5);
    /* FF */
    -webkit-transform: scale(1.5);
    /* Safari and Chrome */
    -o-transform: scale(1.5);
    /* Opera */
    transform: scale(1.5);
}

.message-recipients ul {
    padding-left: 20px;
    display: inline;
}

.message-recipients li {
    display: inline;
}

.box-body>.divider {
    border-bottom: 1px solid #f4f4f4;
    margin-left: -10px;
    margin-right: -10px;
}

.box-body>.divider:after {
    content: " ";
    display: table;
    clear: both;
    margin-bottom: 10px;
}

.box-body>.additionnal-content-box {
    margin-top: 10px;
}

.list-inline>li:first-of-type {
    padding-left: 0px;
}

/* BIG BUTTON SKIN (START) */
.big-btn {
    width: 110%;
}

@media (max-width:439px) {
    .big-btn {
        padding-bottom: 3%;
        padding-top: 3%;
        margin-top: -15%;
        margin-left: 5px;
    }
}

@media (min-width:440px) and (max-width: 768px) {
    .big-btn {
        padding-bottom: 2%;
        padding-top: 2%;
        margin-top: -5%;
    }
}

@media (min-width:769px) and (max-width: 1109px) {
    .big-btn {
        padding-bottom: 2%;
        padding-top: 2%;
        margin-left: 5px;
    }
}

@media (min-width:1110px) {
    .big-btn {
        padding-bottom: 1%;
        padding-top: 1%;
        width: 40%;
    }
}
/* BIG BUTTON SKILL (END) */

.btn-callout-tool .btn {
    padding: 5px;
    font-size: 12px;
    background: transparent;
}

.btn-callout-tool {
    float: right;
}

/* Callout Footer (START) */
.callout-footer {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top: 0;
    padding: 10px;
    background-color: #fff;
    margin-top: -20px;
}

.callout-footer.callout-info {
    border-bottom: 1px solid #00c0ef;
    border-left: 1px solid #00c0ef;
    border-right: 1px solid #00c0ef;
}

.callout-footer.callout-warning {
    border-bottom: 1px solid #f39c12;
    border-left: 1px solid #f39c12;
    border-right: 1px solid #f39c12;
}

.callout-footer.callout-danger {
    border-bottom: 1px solid #dd4b39;
    border-left: 1px solid #dd4b39;
    border-right: 1px solid #dd4b39;
}
/* Callout Footer (END) */

/* Edit & Delete Button hover (START) */
.btn-hover-blue:hover {
    color: #367fa9;
}

.btn-hover-red:hover {
    color: red;
}
/* Edit & Delete Button hover (END) */

/* HELPS MANAGER (START) */
/* ROW WITH BOX'S WITH EQUAL SIZE (FLEXBOX) (START) */
@media (min-width:1200px) {
    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.publish {
    font-weight: bold;
}

.unpublish {
    font-style: italic;
}

.hand-pointer label {
    cursor: pointer;
    color: #676767;
    font-weight: normal;
}

.hand-pointer input[type=radio] {
    cursor: pointer;
}
/* ROW WITH BOX'S WITH EQUAL SIZE (FLEXBOX) (END) */

/* ACCORDION IN POPUP (START) */
.helps-container {
    padding: 20px 35px 0px 35px;
    background-color: #ecf0f5;
}

.accordion-popup, .link-list-popup {
    margin: 10px 10px;
}

.panel-title {
    padding: 11px;
}

.accordion-popup .panel {
    margin-top: unset !important;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-radius: unset;
    border-top: unset;
}

.accordion-popup .panel:first-child {
    border-top: 1px solid #ddd;
    border-radius: 3px 3px 0 0;
}

.accordion-popup .panel:last-child {
    border-radius: 0 0 3px 3px;
}

.accordion-popup .panel:only-of-type {
    border-radius: 3px 3px 3px 3px;
}

.accordion-popup .panel-body {
    border-top: 1px dashed #ddd;
    margin-left: 10px;
    margin-right: 10px;
}

.accordion-popup .panel-body {
    padding: 15px 5px 15px 5px;
}

.panel .accordion-toggle h4:after {
    /* symbol for "opening" panels */
    font-family: 'Glyphicons Halflings';
    content: "\e260";
    float: right;
    padding: 2px;
    border: 1px solid #3c8dbc;
    border-radius: 3px;
    position: relative;
    top: -3px;
    color: white;
    background-color: #3c8dbc;
}

.panel .accordion-toggle.collapsed h4:after {
    /* symbol for "collapsed" panels */
    content: "\e259";
    color: #3c8dbc;
    background-color: white;
}

.panel .accordion-toggle {
    color: #3c8dbc;
}

.panel .accordion-toggle.collapsed {
    color: black;
}

.panel .accordion-toggle:hover {
    color: #3c8dbc;
}

.panel .accordion-toggle:hover h4:after {
    color: white;
    background-color: #3c8dbc;
}

.popup-scrollable {
    max-height: 80vh;
    overflow-y: scroll;
}
/* ACCORDION IN POPUP (END) */

/* LINKS LIST (START) */
.link-list-popup ul {
    padding-left: 0;
    list-style: none;
}

.link-list-popup li {
    margin-bottom: 10px;
}

.link-list-popup p {
    margin: 0;
}

.link-list-popup a {
    color: black;
}

.link-list-popup a:hover {
    color: #3c8dbc;
    text-decoration: underline;
}

.bullet-link {
    color: #3c8dbc;
    float: left;
    margin-top: 3px;
}

.link-list-popup div {
    margin-left: 10px;
}

.help-subtitle {
    font-size: 14px;
    font-style: italic;
    color: gray;
}

.blue {
    color: #428bca;
}

.rlbItem.rlbSelected .blue {
    color: #fff;
}

#LI_Tab_Textes, #LI_Tab_Assistance {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    background-color: #ececec;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

#LI_Tab_Textes {
    margin-left: 2px;
}

#LI_Tab_Textes.active, #LI_Tab_Assistance.active {
    border-top: 3px solid #3c8dbc;
    border-left: unset;
    border-right: unset;
    background-color: #fff;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

/* LINKS LIST (END) */

/* SEARCH BAR (START) */
.help-search {
    padding-left: 20px;
}

.help-search div {
    margin-right: 10px;
}

#help-search-box, .help-search .input-group-btn {
    display: inline;
}

#help-search-box {
    width: unset;
    position: relative;
    z-index: 3;
}

.help-search .input-group-btn, .help-search .input-group-btn > a {
    vertical-align: unset;
}

.help-search .input-group-btn {
    margin-left: -3px;
}
/* SEARCH BAR (END) */

/* SEARCH BUTTON (START)*/
.open-help-button, .open-help-button:focus {
    color: gray;
}

.open-help-button:hover {
    color: black;
}

.tree-help {
    text-align: center;
    border-bottom: solid 1px #b8c7ce;
}

.tree-help a {
    padding-left: 5px !important;
    border-left: none !important;
}
/* SEARCH BUTTON (END)*/
/* HELPS MANAGER (END) */

/* COOKIES BANNER (START) */
.cookies-banner {
    background-color: white;
    color: black;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 9999;
    padding-bottom: 15px;
    padding-top: 15px;
    box-shadow: 0px 0px 5px 2px gray;
}

.light .cookies-banner {
    color: white;
    background-color: black;
}
/* COOKIES BANNER (END) */

/* SITES MANAGER (START) */
.no-floating {
    float: unset !important;
    padding: unset !important;
}
.no-bottom {
    margin-bottom: unset;
}
/* SITES MANAGER (END) */

/* Vue Global */
[v-cloak] {
    display: none;
}

/* prefact */
.prefact .client > .montant {
    font-weight: bold;
}
.prefact .chantier > .designation {
    font-weight:bold;
}
.prefact .rh > .designation {
    font-style: italic;
}
.prefact .detail > .designation {
    font-size: 85%;
}