body {
    float:left;
    display:block;
    clear:both;
    width:100%;
    color:#555555;
    font-family: 'Roboto', sans-serif;
    line-height:25px;
    background:#f5f6fa;
    /*position:relative;*/
    height:100%;
    max-width:100%;
    overflow-x:hidden;
}
html {
    position:relative;
}
:root{
    --main-color: #3F8ACD;
    --main-light-color: #4ca7f8;
    --main-dark-color: #306a9d;
    --main-rgba-color: 63, 138, 205;

    --gris-clair:#e8f0f8;
    --text-gris:#b8c5d3;

    /* Colors */
    --red:#DB524A;
    --blue:#3F8ACD;
    --orange:#F2AE43;
    --green:#03B19A;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#content{
    display:block;
    float:left;
    width:100%;
    position:relative;
    clear:both;
    overflow: hidden;
}

/***** HEADER *****/
#header {
    float:left;
    display:block;
    width:100%;
    clear:both;
    position:fixed;
    top:0;
    left:0;
    background:#fff;
    padding:0 15px;
    z-index:100;
    height:80px;
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05);
}
#header .logo {
    float:left;
    display:block;
    clear:both;
    height:100%;
    padding:15px 0;
}
#header .logo a {
    float:left;
    width:auto;
    display:block;
    clear:both;
    height:100%;
}
#header .logo img {
    max-height:100%;
    width:auto;
}
#header #menu {
    float:left;
    display:block;
    height:100%;
    text-align:center;
}
#header #menu .menu-principal-container,
#header #menu .menu-principal-container ul,
#header .header-config .lst-config,
#header .header-config .lst-config ul
{
    display:inline-block;
    width:auto;
    list-style: none;
    margin:0;
    padding:0;
    height:100%;
}
#header #menu .menu-principal-container li,
#header .header-config .lst-config li {
    display:inline-block;
    width:auto;
    list-style: none;
    position:relative;
    height:100%;
}
#header #menu .menu-principal-container li::after,
#header .header-config .lst-config li::after {
    position:absolute;
    right:0;
    top:0;
    margin:30px 0;
    height:20px;
    width:1px;
    background:var(--gris-clair);
    content:" ";
}
#header #menu .menu-principal-container li.current::after,
#header .header-config .lst-config li.current::after,
#header #menu .menu-principal-container li:last-child::after,
#header .header-config .lst-config li:last-child::after {
    display:none;
}
#header #menu .menu-principal-container li a,
#header .header-config .lst-config li a {
    display: inline-block;
    width: auto;
    list-style: none;
    padding: 0 30px;
    position: relative;
    height: 100%;
    color: var(--text-gris);
    cursor: pointer;
    text-decoration: none;
    line-height:100%;
    text-align:center;
}
#header #menu .menu-principal-container li a span,
#header .header-config .lst-config li a span {
    width: 100%;
    list-style: none;
    padding-bottom: 15px;
    height: 40%;
    color: var(--text-gris);
    cursor: pointer;
    text-decoration: none;
    font-size:12px;
    display:none;
}
#header #menu .menu-principal-container li a i,
#header .header-config .lst-config li a i {
    height: 100%;
    width:100%;
    line-height:80px;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--text-gris);
    font-size:30px;
}
#header #menu .menu-principal-container li.current a i,
#header .header-config .lst-config li.current a i,
#header #menu .menu-principal-container li a:hover i,
#header .header-config .lst-config li a:hover i {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--main-color);
}

#header #menu .menu-principal-container li a:hover span,
#header .header-config .lst-config li a:hover span {
    color: var(--main-color);
}
#header #menu .menu-principal-container li a::after,
#header .header-config .lst-config li a ::after {
    display: block;
    -ms-transition: -webkit-transform .3s ease-out,border-color .3s ease-out;
    -webkit-transition: -webkit-transform .3s ease-out,border-color .3s ease-out;
    transition: transform .3s ease-out,border-color .3s ease-out;
    position: absolute;
    bottom: 0;
    left:calc(50% - 25px);
    width: 50px;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    content: "";
    border-bottom: solid 2px #0096ff;
    border-bottom: solid 2px var(--main-color);
}
#header #menu .menu-principal-container li a:hover::after,
#header .header-config .lst-config li a:hover::after {
    -ms-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
#header #menu .menu-principal-container li.current a,
#header .header-config .lst-config li.current a {
    background:var(--main-color);
}
#header #menu .menu-principal-container li.current a i,
#header .header-config .lst-config li.current a i {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}

#header .header-config {
    text-align:right;
}

#container {

}
#sidebar {
    position:fixed;
    display:block;
    max-width:0;
    top:0;
    right:0;
    bottom:0;
    width:400px;
    height:100%;
    z-index:1000;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background:#fff;
    overflow:hidden;
}
#sidebar.open {
    max-width:400px;
}
#sidebar .bloc-sidebar {
    float:left;
    display:block;
    clear:both;
    width:100%;
    padding:15px;
}
.overlay-menu {
    display: block;
    visibility: hidden;
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    -ms-transition: all 1s;
    transition: all 1s;
    -webkit-transition: all 1s;
    z-index:200;
}
.overlay-menu.overlay-menu-active {
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
}

/****** BLOCS *****/
.content {
    float:left;
    display:block;
    clear:both;
    width:100%;
    padding:40px;
    margin-top:80px;
}
h1,h2 {
    float:left;
    display:block;
    clear:both;
    width:100%;
    font-family: Roboto,sans-serif;
    font-weight:normal;
    color:#31394d;
    font-size:36px;
    text-align:left;
    padding:0;
}
.bloc {
    float:left;
    display:block;
    clear:both;
    width:100%;
    background:#fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05);
    margin-top:30px;
}
.bloc .title-bloc {
    display: block;
    float: left;
    width: 100%;
    clear: both;
    padding:10px;
    font-weight: 700;
    font-family: 'Roboto Condensed', 'Roboto', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 40px;
    border-bottom: 1px solid #dedede;
}
.bloc .content-bloc{
    float:left;
    display:block;
    clear:both;
    width:100%;
    padding:30px;
    font-family: Roboto,sans-serif;
    font-weight:normal;
    font-size:18px;
}
.bloc .content-bloc, .form-control{
    font-size:14px;
}
/***** Variables *****/
.red-bg {
    background:var(--red);
}
.blue-bg {
    background:var(--blue);
}
.green-bg {
    background:var(--green);
}
.orange-bg {
    background:var(--orange);
}
.red-border {
    border-left:5px solid var(--red);
}
.blue-border {
    border-left:5px solid var(--blue);
}
.green-border {
    border-left:5px solid var(--green);
}
.orange-border {
    border-left:5px solid var(--orange);
}
.bloc-bg {
    color:#fff;
    padding:15px;
}
.bloc-border {
    padding:15px;
    padding-left:17px;
}
.bloc-border .content-bloc,
.bloc-bg .content-bloc {
    padding:0;
}
.bloc .col-left-bloc {
    float:left;
    display:block;
    clear:both;
    width:120px;
    text-align:center;
}
.bloc .col-right-bloc {
    float:left;
    display:block;
    width:calc(100% - 120px);
}
.content-bloc i {
    font-weight:bold;
    font-size:50px;
    line-height:85px;
}
.bloc .label-stat {
    float:left;
    display:block;
    width:100%;
    clear:both;
    text-transform:uppercase;
    font-size:20px;
    padding-bottom:10px;
}
.bloc .value-stat {
    float:left;
    display:block;
    width:100%;
    clear:both;
    text-transform:uppercase;
    font-weight:bold;
    font-size:50px;
    line-height:50px;
}

/* DataTables */
table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
    font-family: 'Font Awesome 5 Free';
    line-height: 10px;
}
table.dataTable thead .sorting_desc:after {
    content : "\f161";
}
table.dataTable thead .sorting_asc:after {
    content : "\f160";
}
table.dataTable thead .sorting:after {
    content : "\f0dc";
}
.row {
    float:left;
    display:block;
    clear:both;
    width:100%;
    margin:0;
}
.form-inline label {
    justify-content: left;
}
.form-inline label .form-control {
    margin:0 10px;
}
div.dataTables_wrapper div.dataTables_filter label {
    text-align:right;
    justify-content: right;
}
div.dataTables_wrapper div.dataTables_filter label .form-control{
    margin-right:0;
}
input.searchInput {
    width: 100% !important;
    padding-right: 25px;
    font-weight: normal !important;
    background: #fff url(../img/search.jpg) no-repeat right 5px center;
    outline: 0;
}
table.dataTable {
    float:left;
    width:100%;
    clear:both;
}
table.dataTable th {
    /*background-color: #212121 !important;*/
    /*color: #ccc;*/
    /*border-bottom-width: 1px !important;*/
    line-height: 25px;
    padding: 0 5px;
    border-bottom: 1px dotted #e6e6e6;
    font-weight:bold;
}
.dataTables_length, .c2s-dataTable_filter {
    padding-bottom:30px;
}

.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color:#fff;
}
div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}

tbody tr td {
    padding: 12px 0;
    padding-left: 6px;
    line-height: 20px;
    border-bottom: 1px dotted #e6e6e6;
}
tbody tr:hover td {
    background:#F5F6FA;
}

.table-minify tbody tr td {
     padding: 12px 0;
     padding-left: 6px;
     line-height: 20px;
     border-bottom: 1px dotted #e6e6e6;
 }
/*tbody tr:hover td {
    padding: 12px 0;
    padding-left: 6px;
    line-height: 30px;
    border-bottom: 1px dotted #e6e6e6;
}*/
.pagination>li {
    display: inline;
}
.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}
.pagination>li>a, .pagination>li>span {
    line-height:20px;
    padding: 6px 12px;
    display: inline-block;
    border: 1px solid #ccc;
    margin-left: -1px;
}
.pagination>li>a:hover, .pagination>li>span:hover {
    background:#f0f0f0;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination>li>a.active {
    line-height:20px;
    padding: 6px 12px;
    display: inline-block;
}
.pagination {
    float:right;
}
div.dataTables_wrapper div.dataTables_info {
    padding-top:50px;
}

/***** CALENDAR *****/
.calendarinline {
    float:left;
    display:block;
    width: 100%;
    clear:both;
    margin-top:15px;
}

#datepicker {
    float:left;
    display:block;
    clear:both;
    width:100%;
    margin-bottom:15px;
    text-align:center;
}
.datepicker-inline {
    float:left;
    display:block;
    width:100%;
    clear:both;
}
.datepicker {
    width:100% !important;
}
.datepicker--day-name {
    color:var(--red);
}
.datepicker--cell.-selected-.-focus- {
    background-color:var(--main-dark-color);
}
.datepicker--cell.-in-range-.-focus- {
    background-color:rgba(var(--main-rgba-color),0.2);
}
.datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- {
    background-color:var(--main-color);
}
.datepicker--cell.-current- {
    color:var(--red);
}
.container-btn {
    float:left;
    display:block;
    clear:both;
    width:100%;
    text-align:right;
    margin-top:15px;
}
.btn {
    display:inline-block;
    line-height:36px;
    background:var(--main-color);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color:#fff;
    padding:0 10px;
    text-align:center;
    cursor:pointer;
}
.btn:hover {
    background:var(--main-dark-color);
}