/**
 * Surcouche css propre aux partenaires
 */
.jumbo-short-header {
    margin-bottom: 55px;
}
.jumbo-short-header .jumbo-title {
    font-weight: 500;
}
.section-bg-dark.force.univ-immo .inverse {
    color:#ffffff;
}
.short-container {
    padding: 0 25px 25px;
}
.section.section-bg-dark a.short-more-link {
    text-decoration: none;
    font-size: 18px;
}

.nav-tabs {
    border-bottom: 1px solid transparent;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #555;
    background-color: #fff;
    border: 1px transparent;
    border-bottom-color: transparent;
    border-top: 4px solid #008ed6;
}

.fullscreen-height {
    height: 100vh;
}

.jumbo.section-login {
    padding-top: 100px;
}

.jumbo-short-header small {
    color: #999;
}

.pager li>a, .pager li>span {
    border-radius: 0;
}

.loading-container {
    padding: 35px 0;
}


/* MATERIAL DESIGN FORM */

.login-container * { box-sizing:border-box; }

.login-container {
    font-family: Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.login-container hgroup {
    text-align:center;
    margin-top: 4em;
}

.login-container h1, .login-container h3 { font-weight: 300; }

.login-container h1 { color: #636363; }

.login-container h3 { color: #4a89dc; }

.login-container form {
    width: 380px;
    margin: 4em auto;
    padding: 3em 2em 2em 2em;
    background: #fafafa;
    border: 1px solid #ebebeb;
    box-shadow: rgba(0,0,0,0.14902) 0px 1px 1px 0px,rgba(0,0,0,0.09804) 0px 1px 2px 0px;
}

.login-container .group {
    position: relative;
    margin-bottom: 45px;
}

.login-container input:not([type="checkbox"]) {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    -webkit-appearance: none;
    display: block;
    background: #fafafa;
    color: #636363;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
}

.login-container input:focus { outline: none; }


/* Label */

.login-container .label, .login-container .label-checkbox {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    left: 5px;
    top: 10px;
    transition: all 0.2s ease;
    background-color: transparent !important;
}
.login-container .label {
    position: absolute;
    pointer-events: none;
}
.login-container .label-checkbox {
    cursor: pointer;
}

/* active */

.login-container input:not([type="checkbox"]):focus ~ label, .login-container input.used ~ label {
    top: -20px;
    transform: scale(.75); left: -2px;
    /* font-size: 14px; */
    color: #4a89dc;
}


/* Underline */

.login-container .bar {
    position: relative;
    display: block;
    width: 100%;
}

.login-container .bar:before, .login-container .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #4a89dc;
    transition: all 0.2s ease;
}

.login-container .bar:before { left: 50%; }

.login-container .bar:after { right: 50%; }


/* active */

.login-container input:focus ~ .bar:before, .login-container input:focus ~ .bar:after { width: 50%; }


/* Highlight */

.login-container .highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active */

.login-container input:focus ~ .login-container .highlight {
    animation: inputHighlighter 0.3s ease;
}


/* Animations */

@keyframes inputHighlighter {
    from { background: #4a89dc; }
    to 	{ width: 0; background: transparent; }
}


/* Button */

.login-container .button {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: .3em 0 1em 0;
    width: 100%;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    letter-spacing: 1px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #3160B6;
    cursor: pointer;
    transition: all 0.15s ease;
}
.login-container .button:focus { outline: 0; }


/* Button modifiers */

.login-container .buttonBlue {
    background: #4a89dc;
    text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);
}

.login-container .buttonBlue:hover { background: #357bd8; }


/* Ripples container */

.login-container .ripples {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}


/* Ripples circle */

.login-container .ripplesCircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.login-container .ripples.is-active .login-container .ripplesCircle {
    animation: ripples .4s ease-in;
}


/* Ripples animation */

@keyframes ripples {
    0% { opacity: 0; }

    25% { opacity: 1; }

    100% {
        width: 200%;
        padding-bottom: 200%;
        opacity: 0;
    }
}

.login-container footer { text-align: center; }

.login-container footer p {
    color: #888;
    font-size: 13px;
    letter-spacing: .4px;
}

.login-container footer a {
    color: #4a89dc;
    text-decoration: none;
    transition: all .2s ease;
}

.login-container footer a:hover {
    color: #666;
    text-decoration: underline;
}

.login-container footer img {
    width: 80px;
    transition: all .2s ease;
}

.login-container footer img:hover { opacity: .83; }

.login-container footer img:focus , footer a:focus { outline: none; }

/*Tableau avec en-tête fixe et contenu avec scroll de 200px de haut*/
.table-fixed { width: 100%; }
.table-fixed > tbody { height:300px; overflow-y:auto; width: 100%; }
.table-fixed > thead, .table-fixed > thead > tr, .table-fixed > thead > tr > th { display:block; }
.table-fixed > tbody, .table-fixed > tbody > tr, .table-fixed > body > tr > td { display:block; }
.table-fixed > tbody > tr { clear:both; }
.table-fixed > tbody > tr > td, .table-fixed > thead > tr > th { float:left; }

.vcenter {
    display: flex;
    align-items: center;
    align: center;
}

/* Styles pour les erreurs dans les formulaires */
.icon-required {
    color: #008ed6;
    font-size: .6em;
    opacity: .65;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #b94a48;
}
.has-error .form-control {
    border-color: #b94a48;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
    border-color: #953b39;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
.has-error .input-group-addon {
    color: #b94a48;
    border-color: #b94a48;
    background-color: #f2dede;
}
.has-error .form-control-feedback {
    color: #b94a48;
}
.has-error .errorForm {
    line-height: .7;
    font-size: 13px;
}

