/*******************************************************************************/


/* --- GENERALITE DU SITE --- */


/*************************************/


/* --- Error Layout Page --- */

.errorTitre {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 60px;
    font-weight: 500;
}


/*******************************************************************************/


/*               --- INCLUSION DES ELEMENTS DE STYLE DU SITE ---               */


/*******************************************************************************/


/* --- INCLUSION PAGES --- */


/* --- INCLUSION ELEMENTS --- */

#infoBox {
    position: fixed;
    top: 10px;
    right: 30px;
    width: 450px;
    z-index: 2000;
}

section.loader {
    display: inline-block;
    margin-left: 20px;
}

section.loader .double-blank {
    position: relative;
    width: 35px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    border: solid 5px transparent;
    border-top-color: #fff;
    border-bottom-color: #fff;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
    -moz-animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

section.loader .double-blank::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    border: solid 4px transparent;
    border-top-color: #fff;
    border-bottom-color: #fff;
    opacity: 0.6;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
    -moz-animation: spin-reverse 2s linear infinite;
    -webkit-animation: spin-reverse 2s linear infinite;
    animation: spin-reverse 2s linear infinite;
}

section.loader .double-blue {
    position: relative;
    width: 35px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    border: solid 5px transparent;
    border-top-color: #137aab;
    border-bottom-color: #137aab;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
    -moz-animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

section.loader .double-blue::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    border: solid 4px transparent;
    border-top-color: #ff6600;
    border-bottom-color: #ff6600;
    opacity: 0.6;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
    -moz-animation: spin-reverse 2s linear infinite;
    -webkit-animation: spin-reverse 2s linear infinite;
    animation: spin-reverse 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.alert-center {
    text-align: center;
}

#coche_modal {
    display: none;
}

#modal_wait {
    text-align: center;
    display: none;
}

#modal_message {
    text-align: center;
    display: none;
}

#modal_error {
    text-align: center;
    display: none;
    color: red;
}

.modal-footer {
    display: none;
}

#ko_modal {
    display: none;
}

#ok_modal {
    display: none;
}


/* --- INCLUSION MODULES --- */


/*!
 * jQuery Cookie Plugin v1.2
 *
 * Copyright 2014 Florian TEISSIER - ATNIUM Teicorp - <projet@getapf.xyz>
 * Released under the MIT license
 */

.cookie {
    position: fixed;
    z-index: 10000;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 7px 20px;
    color: #666;
    font-size: 0.9em;
    border-top: solid 1px #e4e4e4;
    background-color: #f2f2f2;
}

.cookie a {
    text-decoration: underline;
}

.cookie a:hover {
    text-decoration: none;
}

.cookie .cookie_btn {
    display: inline;
    margin-left: 15px;
    padding: 4px 10px;
    color: #fff;
    cursor: pointer;
    background-color: #55acee;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.cookie .cookie_btn.cookie_btn_error {
    background-color: #e84e40;
}

label.checkswitch {
    position: relative;
    width: 70px;
    height: 20px;
    overflow: hidden;
    margin: 0;
    text-align: left;
}

label.checkswitch input {
    display: none;
}

label.checkswitch .state {
    position: absolute;
    top: 0;
    left: 0px;
    height: 18px;
    line-height: 18px;
    background: #fff;
    font-size: 12px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

label.checkswitch .state.off {
    color: #d9534f;
    z-index: 2;
    padding-left: 32px;
    width: 68px;
}

label.checkswitch .state.on {
    color: #5cb85c;
    z-index: 1;
    padding-left: 15px;
    width: 10px;
}

label.checkswitch .btn_switch {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border: solid 1px #ddd;
    z-index: 3;
    background-color: #d9534f;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

label.checkswitch input:checked+.off {
    z-index: 1;
    width: 10px;
}

label.checkswitch input:checked+.off+.on {
    z-index: 2;
    width: 68px;
}

label.checkswitch input:checked+.off+.on+.btn_switch {
    left: 42px;
    background-color: #5cb85c;
}


/* --- INCLUSION POUR LES PAGES --- */

#header_top .row {
    /*height: 90px;*/
    padding: 10px 0px;
}

#header_top .row #titre_1 {
    color: #137AAB;
    font-size: 54px;
    font-weight: bold;
    margin-left: 95px;
    line-height: 65px;
    font-family: Verdana, Arial, Helvetica, sans-serif !important;
}

#header_top .row #titre_2 {
    color: #F60;
    font-weight: bold;
    margin-left: 95px;
    line-height: 12px;
}

#header {
    border: none;
    min-height: 20px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0b80b6), color-stop(100%, #35a8de));
    background-image: -webkit-linear-gradient(top, #0b80b6, #35a8de);
    background-image: -moz-linear-gradient(top, #0b80b6, #35a8de);
    background-image: -o-linear-gradient(top, #0b80b6, #35a8de);
    background-image: linear-gradient(to bottom, #0b80b6, #35a8de);
}

#header #navtitle {
    color: #fff;
}

#header .icon-bar {
    background: #fff;
}

#header .dropdown.open .dropdown-toggle {
    color: #f60;
}

#header .dropdown-toggle {
    color: #fff;
}

#header .dropdown-toggle:hover {
    color: #f60;
}

#header .nav>li>a {
    color: #fff;
}

#header .nav>li>a:hover {
    color: #f60;
}

#header .simple a {
    color: #fff;
}

#header .simple a:hover {
    color: #f60;
}

#header .menu a {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #fff;
    font-weight: bold;
    border-right: solid 1px #77BCDD;
}

#header .menu a:hover {
    color: #f60;
}

#header .menu .active a {
    color: #f60;
    background-color: #E7E7E7;
}

#login .form_login {
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}

#login .form_login #user_login {
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -webkit-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

#login .form_login #user_passe {
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
    -moz-border-radius-topright: 0px;
    -webkit-border-top-right-radius: 0px;
    border-top-right-radius: 0px;
}

#login .form_login button {
    width: 100%;
    margin-top: 20px;
}

.page-header {
    margin-top: 20px;
}

.page-header h3,
.page-header h4 {
    color: #f60;
    font-weight: bold;
}

.page-header.header_center {
    text-align: center;
    margin-top: 10px;
}

.table th {
    color: #137AAB;
}

.table th.thcenter {
    text-align: center;
}

.table td.tdcenter {
    text-align: center;
}

.table tr.error_line td {
    padding: 30px;
}

.table .erreur {
    background-color: red;
}

.table .syswarn {
    background-color: #F0AD4E;
}

.table .usererr {
    background-color: #428BCA;
}

.table .open_error {
    cursor: pointer;
}

.control-label {
    color: #137AAB;
}