@charset "utf-8";
/* CSS Document */

label.selection {
    position: relative;
    border: 1px solid #f4e8ba;
    background: #000;
    display: inline-block;
    margin: auto;
    height: 40px;
    line-height: 38px;
}

label.selection:after {
    background: #000 url(../../img/layout/select.png) no-repeat right;
    content: "\2000";
    right: 0;
    top: 0;
    height: 38px;
    line-height: 38px;
    width: 18px;
    position: absolute;
    pointer-events: none;
    display: block;
}

.ie8 label.selection:after {
    background: none;
}

label.selection select {
    border: 0;
    background: #000;
    display: block;
    padding: 0 15px;
    text-transform: uppercase;
    color: #f4e8ba;
    height: 38px;
    line-height: 38px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.ie8 label.selection select {
    padding: 2px 2px 1px 15px;
}

.ie8 label.selection select {
    padding-right: 0;
}

.gris label.selection {
    background: #f0eee7;
    border: 1px solid #252525;
}

.gris label.selection:after {
    background: #f0eee7 url(../../img/layout/select2.png) no-repeat right;
}

.gris label.selection select {
    background: #f0eee7;
    color: #252525;
}

form {
    position: relative;
}

.form .head {
    font-size: 1.28em;
}

.form .head p {
    margin: 0 0 20px;
}

#main .form .head h2 {
    font-size: 2.22em;
}

.form .head .em {
    font-size: 0.88em;
}

.form .required {
    color: #f4e8ba;
    font-style: italic;
    font-size: 0.77em;
}

.form .container form.no_padding_right {
    padding: 0;
}

.form input, .form textarea {
    background: rgba(255,255,255,0.4);
    border: 1px solid #000;
    padding: 5px;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    color: #000;
    font-size: 1em;
}

.form .item input[type=text]:focus, .form .item textarea:focus {
    outline: 1px solid #f4e8ba;
}

.form .items .item .champ {
    width: 100%;
}

.form .items .item .champ.file {
    font-size: 12px;
}


.form .items .item .right {
    text-align: left;
}

.form .error {
    background: #b06d6d;
}

.form .error2 {
    color: #b06d6d;
}

.form .items .item textarea {
    height: 150px;
}

.form .foot {
    clear: both;
}

.form .foot .bouton {
    min-width: 250px;
    padding: 15px;
}

.form .head label.selection {
    margin-bottom: 25px;
}

.form .items label.select {
    background: #fff;
    position: relative;
    display: inline-block;
    margin: auto;
    height: 32px;
    line-height: 30px;
    width: 100%;
}

.form .items label.select:after {
    background: #fff url(../../img/layout/select2.png) no-repeat right;
    content: "\2000";
    right: 0;
    top: 0;
    height: 30px;
    line-height: 30px;
    width: 18px;
    position: absolute;
    pointer-events: none;
    display: block;
}

.form .items label.select select, .big_select {
    border: 0;
    background: #fff;
    display: block;
    padding: 0;
    color: #000;
    height: 30px;
    line-height: 30px;
    outline: none;
    cursor: pointer;
    width: inherit;
    font-style: italic;
}

.ie8 .form .items label.select select {
    padding: 2px 2px 1px 15px;
}

.ie8 .items label.select:after {
    background: none;
}

.form .import {
    background: #fff url(../../img/layout/download.png) no-repeat right;
    position: relative;
    display: block;
    margin: auto;
    height: 32px;
    line-height: 30px;
    width: 100%;
    font-style: italic;
    color: #000;
    font-size: 13px;
    padding: 0 15px;
}


/* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .selection select {
        padding-right: 18px;
    }
}

@media screen and (max-width:960px) {
    .form .items .item {
        text-align: left;
        font-size: 1.14em;
        padding-bottom: 10px;
        display: table;
        margin: auto;
        width: 90%;
    }

    .form .items .item.col label, .form .item.multi span, .form .item.large label {
        display: table-cell;
        width: 40%;
        text-align: right;
        padding-right: 20px;
        vertical-align: top;
    }

    .form .items .item .right label {
        white-space: nowrap;
    }
}

@media screen and (min-width:961px) {
    .form .container {
        max-width: 1150px;
    }

    .form .container form {
        padding-right: 220px;
    }

    .form .head {
        padding: 0 0 0 220px;
    }

    .form .foot {
        padding: 15px 0 0 220px;
    }

    .form .required {
        text-align: left;
    }

    .form .items .item {
        text-align: left;
        float: left;
        font-size: 1.14em;
        margin-bottom: 15px;
        vertical-align: top;
        width: 50%;
        display: table;
    }

    .form .items .item:nth-child(2n+1) {
        clear: left;
    }

    .form .items .item.col label, .form .item.multi span, .form .item.large label {
        text-align: right;
        width: 200px;
        display: table-cell;
        vertical-align: top;
    }

    .form .items .item .right {
        display: table-cell;
        padding-left: 22px;
    }

    .form .items .item.large {
        width: 100%;
        clear: both;
        float: none;
    }
}