
/* --- Form Editor --- */

.editorForm input, .editorForm textarea, .editorForm button, .loginForm input, .loginForm textarea, .loginForm button{
    border:0;
    outline:none;
}

.editorForm{

}

.editorForm label, .loginForm label{
    padding: 10px;
    padding-left: 20px;
    width: 135px;
}

.editorForm label:first-letter, .loginForm label:first-letter{
    text-transform: capitalize;
}

.editorForm input, .editorForm textarea, .editorForm label, .loginForm input, .loginForm textarea, .loginForm label{
    display: inline-block;
    color: #545454;
    font-size: 15px;
    vertical-align: top;
}

.editorForm input, .editorForm textarea, .loginForm input, .loginForm textarea{
    padding: 10px;
    margin-bottom: 18px;
    width: 320px;
    border: 1px solid rgb(233,233,233);

    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.editorForm input:focus, .editorForm textarea:focus, .loginForm input:focus, .loginForm textarea:focus{
    border: 1px solid #94C5C0;

    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;

    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;

}

.editorForm textarea, .loginForm textarea{
    resize: none;
    height: 105px;
    line-height: 150%;
}

.feedbackBlock{
    display: none;
    color: #b71a08;
    border: 1px dashed #b71a08;
    width: 100%;
    text-align: center;
    position: relative;
    top: 17px;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    margin-bottom: -15px;
}

#recoveryForm .feedbackBlock {
    margin-bottom: 34px;
}

.feedbackBlockSuccess, .feedbackBlockError{
    position: relative;
    top: -4px;
}

.feedbackBlock p{
    padding: 0;
    margin-bottom: 0;
    position: relative;
    top: -1px;
    font-size: 14px;
    line-height: 130%;
    text-shadow: none;
    text-align: center;
}

.feedbackBlock h3 {
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 2px;
}

.editorInputBulle, .genericInputBulle{
    position: relative;
}

.infobulle{
    position: absolute;
    right: -219px;
    top: -8px;
    width: 183px;
    font-size: 15px;
    line-height: 150%;
    min-height: 45px;
    opacity: 0;

    color: #ffffff !important;
    background-color: #ca3e1b;

    padding: 12px;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.infobulle *{
    color: #ffffff !important;
}


.editorInputBulleError input:focus+.infobulle, .editorInputBulleError textarea:focus+.infobulle{
    opacity: 1;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;

    top: 8px;

    z-index: 300;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.editorInputBulleError textarea, .editorInputBulleError input, .editorInputBulleError .ui-selectmenu-button{
    border: 1px dashed #ca3e1b !important;
}

.editorInputBulleError .requiredField{
    color: #ca3e1b;
}

.editorContent{
    display: inline-block;
    min-width: 55px;
    min-height: 20px;
}

/* Corrections infobulle */

input{
    position: relative;
    z-index: 200;
}

.infobulle{
    right: 8px;
    width: auto;
    max-width: 318px;
    top: 20px;
    min-height: 25px;
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0);
}

.requiredField{
    z-index: 20;
}


.editorInputBulleError input:focus+.infobulle, .editorInputBulleError textarea:focus+.infobulle{
    top: 49px;
    z-index: 300;
}

.editorInputBulleError textarea:focus+.infobulle{
    display: none;
}

.ui-front {
    z-index: 400;
}

.ui-selectmenu-open{
    overflow-x: hidden;
    overflow-y: auto;
}

/* Fin corrections infobulle */

.loginFeedbackBlock {
    top:7px;
}