/************ BASE ************/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    font-weight: 400;
    background-color: #fcfcfc;
}
img {
    margin: 0;
    padding: 0;
    border: none;
}

/*  ***** Définition la hauteur de la ligne pour les titres  **/
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2em;
}
input:focus {
    outline-offset: 0px;
}
:focus {
    outline: none;
}

/************ COULEURS UTILISATEUR *************/
.user-color-1 {
    background-color: #FFFFFF;
}
.user-color-2 {
    background-color: #FFFFFF;
}
.user-color-3 {
    background-color: #FFFFFF;
}


.container {
    max-width: 1000px;
    margin: 0 auto;
}
.container-small {
    max-width: 640px;
    margin: 0 auto;
}

.pull-right {
    float: right !important;
}

.box {
    border-top: none;
    padding: 10px;
    box-shadow: none;
    position: relative;
    background: #fff;
    margin-bottom: 20px;
    width: 100%;
}
.main-box {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.checkbox label, .radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 400;
}

button, input, optgroup, select, textarea {
    margin: 0;
    margin-bottom: 0px;
    font: inherit;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    color: inherit;
}
input {
    line-height: normal;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    padding-left: 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.inline-block {
    display: inline-block;
    width: initial;
}
.form-control:not(select) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-control:focus {
    border-color: #03a9f4;
    box-shadow: none;
}
.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}
.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell;
}
.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}
.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
}
.form-control ~ .input-group-addon {
    border-left: none;
    border-right: 1px solid #ccc;
}
.input-group .input-group-addon:last-child {
    border-right: 1px solid #ccc;
}





.checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"], .radio input[type="radio"], .radio-inline input[type="radio"] {
    position: absolute;
    margin-top: 4px\9;
    margin-left: -20px;
}
input[type="checkbox"], input[type="radio"] {
    margin: 4px 0 0;
    margin-left: 0px;
    margin-top: 1px\9;
    line-height: normal;
}
input[type="checkbox"], input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
.input-group {
    display: table;
}
.form-group {
    margin-bottom: 15px;
}

button {
    overflow: visible;
}
button, select {
    text-transform: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
.button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: none;
    border-width: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.button.active {
    background-color: #f39c12;
    color: #FFFFFF;
}
.button-icon {
    padding-bottom: 0;
}
a.button {
    text-decoration: none;
}

.form-response {
    display: none;
    position: relative;
    border-radius: 3px;
    margin: 0 0 20px 0;
    padding: 15px 30px 15px 15px;
    color: #000;
}
.form-response.form-error {
    border-left: 5px solid rgb(234, 28, 13);
}
.has-error {
    border-color: #a94442;
}
.hide {
    display: none;
}
.show-xs {
    display: block;
}
.indent-xs {
    margin-left: 20px;
}
@media (min-width: 768px) {
    .show-xs {
        display: none;
    }
    .indent-xs {
        margin-left: 0px;
    }
}
.show-block {
    display: block !important;
}
.indent {
    margin-left: 20px;
}

.modal-body {
    position: relative;
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
    padding: 5px;
    background-color: white;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
    border: 0;
}
.close {
    margin: 0;
    padding: 0;
    font-size: 24px;
    -webkit-appearance: none;
    cursor: pointer;
    background: 0 0;
    border: 0;
    font-weight: 700;
    line-height: 0.7;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

/* Insertion d'une icône à gauche et à l'intérieur d'un champ type input/select... */
.input--with-icon-before {
    position: absolute;
    line-height: 1;
    color:#555;
    top: 10px;
    left: 10px;
    z-index:1000;
}
/* Insertion d'une icône à droite et à l'intérieur d'un champ type input/select... */
.input--with-icon-after {
    position: absolute;
    line-height: 1;
    color:#555;
    top: 10px;
    right: 10px;
    z-index:1000;
}
