body{
    background: url(../images/bg-body.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/* Loader */
#loader {
    bottom: 0;
    height: 200px;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 0;
    width: 200px;
    z-index: 1051;
}

#loader .bg-loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

#loader .dot {
    bottom: 0;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 87.5px;
    z-index: 2;
}

#loader .dot::before {
    border-radius: 100%;
    content: "";
    height: 87.5px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(0);
    width: 87.5px;
}

#loader .dot:nth-child(7n+1) {
    transform: rotate(45deg);
}

#loader .dot:nth-child(7n+1)::before {
    animation: 0.8s linear 0.1s normal none infinite running load;
    background: #fff none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+2) {
    transform: rotate(90deg);
}

#loader .dot:nth-child(7n+2)::before {
    animation: 0.8s linear 0.2s normal none infinite running load;
    background: #abdf18 none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+3) {
    transform: rotate(135deg);
}

#loader .dot:nth-child(7n+3)::before {
    animation: 0.8s linear 0.3s normal none infinite running load;
    background: #fff none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+4) {
    transform: rotate(180deg);
}

#loader .dot:nth-child(7n+4)::before {
    animation: 0.8s linear 0.4s normal none infinite running load;
    background: #abdf18 none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+5) {
    transform: rotate(225deg);
}

#loader .dot:nth-child(7n+5)::before {
    animation: 0.8s linear 0.5s normal none infinite running load;
    background: #fff none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+6) {
    transform: rotate(270deg);
}

#loader .dot:nth-child(7n+6)::before {
    animation: 0.8s linear 0.6s normal none infinite running load;
    background: #abdf18 none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+7) {
    transform: rotate(315deg);
}

#loader .dot:nth-child(7n+7)::before {
    animation: 0.8s linear 0.7s normal none infinite running load;
    background: #fff none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+8) {
    transform: rotate(360deg);
}

#loader .dot:nth-child(7n+8)::before {
    animation: 0.8s linear 0.8s normal none infinite running load;
    background: #abdf18 none repeat scroll 0 0;
}

#loader .loading {
    bottom: -40px;
    height: 20px;
    left: 0;
    position: absolute;
    right: 0;
    width: 200px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    z-index: 2;
}

@keyframes load {
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes load {
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
/*wps-checkbox */
.wps-checkbox [type="checkbox"]:not(:checked),
.wps-checkbox [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
    /*left: inherit !important; debug mode*/
    /*right: 0;debug mode*/
}
.wps-checkbox [type="checkbox"]:not(:checked) + label,
.wps-checkbox [type="checkbox"]:checked + label {
    position: relative;
    padding: 6px 10px 6px 58px;
    cursor: pointer;
    display: block;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;

}
.wps-checkbox [type="checkbox"]:checked + label {
    background:#343a40;
    color: #abdf18;
}
.wps-checkbox .thems.mea [type="checkbox"]:checked + label,
.wps-checkbox .plugs.mea [type="checkbox"]:checked + label {
    background:url(https://www.wpserveur.net/muwps/recommanded-plugin.png) no-repeat right bottom #343a40;
}
/*styling checkbox*/

.wps-checkbox [type="checkbox"]:not(:checked) + label:before,
.wps-checkbox [type="checkbox"]:checked + label:before,
.wps-checkbox [type="checkbox"]:not(:checked) + label:after,
.wps-checkbox [type="checkbox"]:checked + label:after {
    content: '';
    position: absolute;
}
.wps-checkbox [type="checkbox"]:not(:checked) + label:before, .wps-checkbox [type="checkbox"]:checked + label:before {
    left: 5px;
    top: 10px;
    width: 40px;
    height: 15px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
.wps-checkbox [type="checkbox"]:not(:checked) + label:after, .wps-checkbox [type="checkbox"]:checked + label:after {
    width: 20px;
    height: 20px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    border-radius: 50%;
    background: #ababab;
    top: 7px;
    left: 3px;
    border: 2px solid #fff;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
}
/* on checked */
.wps-checkbox [type="checkbox"]:not(:checked) + label .wps-name-ext,
.wps-checkbox [type="checkbox"]:not(:checked) + label a {
    color: #ababab !important;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
.wps-checkbox [type="checkbox"]:not(:checked) + label a:hover {
    color: #343a40 !important;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.wps-checkbox [type="checkbox"]:checked + label:before {
    background: rgba(255, 255, 255, 0.3);
}
.wps-checkbox [type="checkbox"]:checked + label:after {
    border: 2px solid #fff;
    top: 7px;
    left: 27px;
    color: #fff;
    background: #abdf18;
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
}
.wps-checkbox [type="checkbox"]:focus + label:before {
    border: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0px;
}
.wps-checkbox input[type=checkbox],
.wps-checkbox input[type=checkbox]:active,
.wps-checkbox input[type=checkbox]:hover,
.wps-checkbox input[type=checkbox]:focus {
    margin-top: 0px;
}
/* Fix Bootstrap */
.input-group > .input-group-btn:last-child > button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
table[id*="wps_"],
#txtHint > .table-responsive > table {
    background: #fff;
    border: 1px solid #dee2e6;
}
table[id*="wps_"] > thead > tr[role="row"]{
    background: #343a40;
    color: #fff;
}
#txtHint span.title-table {
    background: #343a40;
    padding: 5px;
    display: block;
    color: #fff;
}
/* Widget dasboard */
.wpswidget .card {
    background:#343a40;
    color:#fff;
}

.wpswidget .widget-item-left {
    font-size: 30px;
    width: 60px;
    float: left;
    text-align: center;
    color: #abdf18;
    line-height: 60px;
    background:rgba(0, 0, 0, .2);
    border-right:1px solid rgba(255, 255, 255, .2);
}
.wpswidget .widget-data {
    width: -webkit-calc(100% - 61px);
    width: expression(100% - 61px);
    width: -moz-calc(100% - 61px);
    width: -o-calc(100% - 61px);
    width: calc(100% - 61px);
    float:left;
    text-align:center;
    font-size:16px;
    margin-top:5px;
}
.wpswidget .widget-int.num-count,
.wpswidget .widget-title{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    display:block;
    box-sizing:border-box;
}
.wpswidget a .widget-data {
    color:#fff;
}
.wpswidget a:hover .widget-data {
    color: #abdf18;
}
/* page message */
table#wps_messages .msg span {
    display: block;
}
/*profile utilisateur */
.infouser .row.no-gutters:nth-child(odd) {
    background: #f2f2f2;
}
/* page outils */
.card.stats {
    color: #ffffff;
    background: #343a40;
}
.card.stats .panel-body {
    color: #abdf18;
}
/*wps navigation */
.sidebar-sticky a {
    color: rgba(255, 255, 255, 0.35);
    -webkit-transition: all 250ms ease-out 50ms;
    -moz-transition: all 250ms ease-out 50ms;
    -ms-transition: all 250ms ease-out 50ms;
    -o-transition: all 250ms ease-out 50ms;
    transition: all 250ms ease-out 50ms;
}
.sidebar-sticky a:hover, .sidebar-sticky .nav-item.active a {
    color: #b0e618;
    -webkit-transition: all 250ms ease-in 50ms;
    -moz-transition: all 250ms ease-in 50ms;
    -ms-transition: all 250ms ease-in 50ms;
    -o-transition: all 250ms ease-in 50ms;
    transition: all 250ms ease-in 50ms;
}
.row.no-gutters.p-2:before {
    content: "";
    height: 100%;
    width: 1px;
    background: #dfdfdf;
    position: absolute;
    top: 0;
    left: -webkit-calc(50% - .5rem);
    left: expression(50% - .5rem);
    left: -moz-calc(50% - .5rem);
    left: -o-calc(50% - .5rem);
    left: calc(50% - .5rem);
}

nav.bg-dark.sidebar.wps_nav {
    position: fixed;
    height: 100%;
    z-index: 9;
}

.wps_nav li:last-child {
    background: #be2222;
}
.wps_nav li:last-child a {
    color: #fff;
}

.wps_nav > .sidebar-sticky > ul > li {
    position: relative;
}
.wps_nav > .sidebar-sticky > ul > li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    left: 0;
    bottom: 0;
}
.wps_nav > .sidebar-sticky > ul > li:after {
    background: rgba(0, 0, 0, 0.3);
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    box-shadow: 4px 0px 0px 0px #abdf18;
    -webkit-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    -ms-transition: all 250ms ease-in;
    -o-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}
.wps_nav > .sidebar-sticky > ul > li.active:after,
.wps_nav > .sidebar-sticky > ul > li:hover:after {
    background: rgba(0, 0, 0, 0.3);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    box-shadow: 4px 0px 0px 0px #abdf18;
    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    -ms-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}
.wps_nav > .sidebar-sticky > ul > li > a.nav-link {
    padding: .7rem;
}
.wps_nav li:last-child:hover:after {
    box-shadow: 4px 0px 0px 0px #be2222 !important;
}
.wps_nav li:last-child:hover {
    background: #731010;
}
.wps_nav li:first-child:hover:after {
    box-shadow: none !important;
    background:transparent !important;
}
/*fix responsive nav*/
.wps_nav > .sidebar-sticky > ul > li:first-child > img {
    padding: 8px 0px;
}
@media (max-height: 870px) {
    .wps_nav > .sidebar-sticky > ul > li > a.nav-link {
        padding: .4rem;
        font-size: 75%;
    }
    .wps_nav > .sidebar-sticky > ul > li > img {
        width: 25px;
    }
}
@media (max-height: 590px) {
    .wps_nav > .sidebar-sticky > ul > li > a.nav-link {
        padding: .4rem;
        font-size: 50%;
    }
    .wps_nav > .sidebar-sticky > ul > li > img {
        width: 16px;
    }
}
/* fix nav padding in main */
#main {
    padding-left: 84px !important;
    position:relative;
    z-index:1;
}
/* fix recherche et affichage dans les table-responsive*/
div.dataTables_filter, div.dataTables_length {
    width: 50%;
    float: left;
}
@media (max-width: 768px) {
    div.dataTables_filter, div.dataTables_length {
        width: 100%;
        float: none;
    }
}
/* breadcrumb */
.breadcrumb {
    background-color: #343a40;
}
.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item:before {
    color: #ffffff;
}
.breadcrumb-item a {
    color: #abdf18;
}

/* footer */
.footer {
    position: fixed;
    bottom: 0;
    padding: 5px 40px;
    text-align: right;
    width: 100%;
    background: #343a40;
    color: #fff;
    z-index: 999;
    font-size: 12px;
}
#app {
    padding-bottom:40px;
}
/* override color Bootstrap */
a {
    color: #95be22;
}
a:hover {
    color: #7b9b25;
}
.table-responsive a,
.dataTable a {
    color: #343a40;
}
.table-responsive a.btn-primary,
.dataTable a.btn-primary {
    color:#fff;
}
a.icon-link:before {
    content: "\f360";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    margin-right:5px;
}
/*button */
.btn-primary {
    color:#fff;
    background-color: #343a40;
    border-color: rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
    background-color: #20252a;
    border-color: rgba(0, 0, 0, 0.3);
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color:#fff;
    background-color: #20252a;
    border-color:  rgba(0, 0, 0, 0.3);
}
.btn-primary.focus, .btn-primary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(171, 223, 24, 0.5);
    box-shadow: 0 0 0 0.2rem rgb(171, 223, 24, .5);
}
.btn.focus, .btn:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.25);
}
.btn-secondary {
    color:#fff;
    background-color: #95be22;
    border-color: rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover {
    background-color: #7b9b25;
    border-color: rgba(0, 0, 0, 0.3);
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color:#fff;
    background-color: #7b9b25;
    border-color: rgba(0, 0, 0, 0.3);
}
.btn-primary.focus, .btn-primary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(149, 190, 34, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(149, 190, 34, 0.5);
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #343a40;
}
#nav-tab.nav-pills a.nav-link {
    color: #343a40;
}
#nav-tab.nav-pills .nav-link.active, #nav-tab.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #343a40;
}
/*.page-item*/
.page-item.active .page-link {
    background-color: #343a40;
    border-color: rgba(0, 0, 0, 0.2);
}
.page-link {
    color: #343a40;
}
/*changelog*/
.changelog .versionning .card {
    opacity: 0.5;
}
.changelog .versionning .card:hover {
    opacity: 1;
}
.changelog .versionning:first-child .card {
    background: #343a40;
    color: #abdf18;
    padding-right: 70px !important;
    opacity:1;
}
.changelog .versionning:first-child .card:before {
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 50px;
    position: absolute;
    right: 10px;
    color: #abdf18;
    top: -webkit-calc(50% - 40px);
    top: expression(50% - 40px);
    top: -moz-calc(50% - 40px);
    top: -o-calc(50% - 40px);
    top: calc(50% - 40px);
}
/*icon status actif-inactif*/
svg.svg-inline--fa.fa-check-circle {
    color: #1bab1e;
}
svg.svg-inline--fa.fa-exclamation-circle {
    color: #ab1b1b;
}
/* page login */
body.login-page {
    background:url(../images/bg-adminwps.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.login-page .card {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.51), 0px 0px 0px 2px rgba(255, 255, 255, 0.15);
    background-color: rgba(0, 0, 0, 0.4);
}
.login-page .card-header {
    background-color:transparent;
    border-bottom: none;
}
.login-page .input-group-text {
    background: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width:52px;
}
.login-page .form-control {
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.login-page .checkbox > label {
    color: rgba(255, 255, 255, 0.7);
}
.login-page .phpdebugbar,
.login-page .footer {
    display:none;
}
.login-page #main {
    padding-left: 1.5rem !important;
}
.login-page .delocked-admin {
    position: relative;
    padding-left: 50px;
}
.login-page .delocked-admin span.icon-login {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 12px;
    color: #abdf18;
}
/* btn-wps-icon */
.btn-wps-icon {
    position: relative;
    padding-left: 45px;
    overflow: hidden;
}

.btn-wps-icon svg.svg-inline--fa {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 35px;
    bottom: 0px;
    padding: 7px;
    background: rgba(0, 0, 0, .15);
    border-right: 1px solid rgba(255, 255, 255, .35);
    opacity: .5;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.btn-wps-icon:hover svg.svg-inline--fa {
    opacity: 1;
    background: rgba(0, 0, 0, .35);
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}
.btn-sm.btn-wps-icon svg.svg-inline--fa {
    width: 28px;
}
.btn-sm.btn-wps-icon {
    padding-left:38px;
}
.btn-wps-icon.btn-lg svg.svg-inline--fa {
    height: 45px;
    width: 45px;
    top: -1px;
}
/* modal */
.modal-header .close {
    padding: 3px 15px 9px 18px;
    margin: -15px -15px -15px auto;
    font-size: 50px;
    line-height: 1;
}
/*génerateur PDF */
span#addMorePlugin,
span#addMoreTheme,
span#removeMorePlugin,
span#removeMoreTheme {
    width: 37px;
    border: 1px solid #ced4da;
    display: block;
    height: 100%;
    border-radius: .25rem;
    font-size: 28px;
    cursor:pointer;
    float:right;
    line-height:35px;
    color: #a0a0a0;
    padding-left:1px;
}
span#addMorePlugin:hover,
span#addMoreTheme:hover {
    background:#eaeaea;
}
.other-plugins #addMorePlugin,
.other-themes #addMoreTheme{ display: none; }

.other-plugins #removeMorePlugin,
.other-themes #removeMoreTheme{ display: block !important; }

.other-plugins #pluginsclone {
    display: flex !important;
}