.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }

.animated.alert-bounce {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-delay: 2s;
    animation-delay: 2s; }

@keyframes reveal {
    0% {
        visibility: visible;
        opacity: 0;
        transform: translateY(100px); }
    100% {
        visibility: visible;
        opacity: 1;
        transform: translateY(0); } }

@keyframes revealDown {
    0% {
        visibility: visible;
        opacity: 0;
        transform: translateY(-100px); }
    100% {
        visibility: visible;
        opacity: 1;
        transform: translateY(0); } }

@keyframes revealRightToLeft {
    0% {
        visibility: visible;
        opacity: 0;
        transform: translateX(-100px); }
    100% {
        visibility: visible;
        opacity: 1;
        transform: translateX(0); } }

.reveal {
    opacity: 0;
    animation-name: reveal;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; }
    .reveal.reveal-delay-05 {
        animation-delay: .5s; }
    .reveal.reveal-delay-1s {
        animation-delay: 1s; }
    .reveal.reveal-delay-1s5 {
        animation-delay: 1.5s; }

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0); }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0); }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0); }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0); }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0); } }

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom; }

/* Nav left */
.nav-left {
    opacity: 0;
    animation-name: revealRightToLeft;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; }
    .nav-left .container-menu {
        position: relative;
        overflow-y: auto;
        padding-bottom: 25px;
        box-sizing: border-box;
        height: 100%; }
        .nav-left .container-menu ul {
            display: block;
            overflow-y: auto; }
            .nav-left .container-menu ul li.logo img {
                max-width: 100%;
                max-height: 260px;
                width: auto;
                height: auto; }
            .nav-left .container-menu ul li {
                opacity: 0;
                animation-name: revealRightToLeft;
                animation-duration: .5s;
                animation-iteration-count: 1;
                animation-fill-mode: forwards; }
                .nav-left .container-menu ul li:nth-child(1) {
                    animation-delay: .2s; }
                .nav-left .container-menu ul li:nth-child(2) {
                    animation-delay: .3s; }
                .nav-left .container-menu ul li:nth-child(3) {
                    animation-delay: .4s; }
                .nav-left .container-menu ul li:nth-child(4) {
                    animation-delay: .5s; }
                .nav-left .container-menu ul li:nth-child(5) {
                    animation-delay: .6s; }
                .nav-left .container-menu ul li:nth-child(6) {
                    animation-delay: .7s; }
                .nav-left .container-menu ul li:nth-child(7) {
                    animation-delay: .8s; }
                .nav-left .container-menu ul li:nth-child(8) {
                    animation-delay: .9s; }
                .nav-left .container-menu ul li:nth-child(9) {
                    animation-delay: 1s; }
                .nav-left .container-menu ul li:nth-child(10) {
                    animation-delay: 1.1s; }
                .nav-left .container-menu ul li:nth-child(11) {
                    animation-delay: 1.2s; }
                .nav-left .container-menu ul li:nth-child(12) {
                    animation-delay: 1.3s; }
                .nav-left .container-menu ul li:nth-child(13) {
                    animation-delay: 1.4s; }
                .nav-left .container-menu ul li:nth-child(14) {
                    animation-delay: 1.5s; }
                .nav-left .container-menu ul li:nth-child(15) {
                    animation-delay: 1.6s; }
                .nav-left .container-menu ul li:nth-child(16) {
                    animation-delay: 1.7s; }
                .nav-left .container-menu ul li a.lienPage {
                    box-sizing: border-box;
                    padding: 20px 0 20px 45px;
                    position: relative;
                    line-height: 25px; }
                    .nav-left .container-menu ul li a.lienPage .material-icons {
                        position: absolute;
                        top: 50%;
                        left: 10px;
                        transform: translateY(-50%); }
        .nav-left .container-menu #coordonnees {
            padding: 25px;
            font-size: 14px;
            box-sizing: border-box; }
            .nav-left .container-menu #coordonnees a {
                font-size: 14px; }
            .nav-left .container-menu #coordonnees span {
                font-weight: bolder;
                display: block;
                margin: 5px 0;
                font-size: 14px; }
            .nav-left .container-menu #coordonnees .vendeurLie {
                margin-top: 15px; }
                .nav-left .container-menu #coordonnees .vendeurLie h5 {
                    font-weight: bold;
                    font-size: 14px; }
                .nav-left .container-menu #coordonnees .vendeurLie .contentCommercial {
                    padding-left: 10px;
                    border-left: 2px solid  transparent;
                    font-size: 14px; }
                    .nav-left .container-menu #coordonnees .vendeurLie .contentCommercial a {
                        font-weight: normal;
                        font-size: 14px; }

.nav-left-hidden .btn-open-nav {
    opacity: 0;
    animation-name: reveal;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; }

/* Header */
.nav-top {
    opacity: 0;
    animation-name: revealDown;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    padding: 20px 15px; }
    .nav-top .contact {
        box-sizing: border-box;
        padding-right: 0;
        text-align: right;
        position: relative; }
        .nav-top .contact.no-logo {
            padding-right: 0; }
        .nav-top .contact p {
            float: right;
            font-weight: bold;
            padding: 10px;
            position: relative;
            font-size: 18px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            max-width: 250px; }
            @media (min-width: 750px) {
                .nav-top .contact p {
                    font-size: 23px;
                    max-width: 350px; } }
        .nav-top .contact .btnPopupMessage {
            font-size: 15px;
            position: absolute;
            top: -10px;
            right: -15px;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            text-align: center;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); }
            @media (min-width: 480px) {
                .nav-top .contact .btnPopupMessage {
                    right: 235px; } }
            .nav-top .contact .btnPopupMessage .material-icons {
                font-size: 23px;
                margin-top: 1px; }
    @media (min-width: 480px) {
        .nav-top .contact {
            padding-right: 250px; } }
    .nav-top .logo_client {
        border: 3px solid transparent;
        -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
        border-top: none;
        box-sizing: border-box;
        display: block;
        position: absolute;
        right: 30px;
        padding: 5px;
        display: none;
        top: 5px;
        z-index: 999; }
        .nav-top .logo_client img {
            display: block;
            height: auto;
            max-height: 90px;
            max-width: 200px;
            width: auto; }
    @media (min-width: 480px) {
        .nav-top .logo_client {
            display: block; } }

/* Footer */
.footer-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none; }

.nav-left-hidden .footer-floating {
    display: block; }

.nav-left-visible .footer-floating {
    display: none; }

.primary-container {
    padding-bottom: 45px;
    transition: all .3s; }

.container h2 .material-icons {
    color: inherit;
    font-size: 90%;
    line-height: 1;
    opacity: .6; }

/*&:nth-child(1) { animation-delay: .2s }
&:nth-child(2) { animation-delay: .4s }
&:nth-child(3) { animation-delay: .6s }
&:nth-child(4) { animation-delay: .8s }
&:nth-child(5) { animation-delay: 1s }
&:nth-child(6) { animation-delay: 1.2s }
&:nth-child(7) { animation-delay: 1.4s }
&:nth-child(8) { animation-delay: 1.6s }
&:nth-child(9) { animation-delay: 1.8s }
&:nth-child(10) { animation-delay: 2s }
&:nth-child(11) { animation-delay: 2.2s }
&:nth-child(12) { animation-delay: 2.4s }
&:nth-child(13) { animation-delay: 2.6s }
&:nth-child(14) { animation-delay: 2.8s }
&:nth-child(15) { animation-delay: 3s }
&:nth-child(16) { animation-delay: 3.2s }*/
/* Connexion */
.page-connexion .login-container {
    max-width: 550px;
    margin-top: 20px; }

.page-connexion .header-login {
    position: relative;
    margin-top: 10px;
    border-radius: 10px 10px 0 0;
    padding: 15px 120px 15px 20px;
    display: block;
    opacity: 0;
    animation-name: reveal;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; }
    @media (min-width: 750px) {
        .page-connexion .header-login {
            margin-top: 30px; } }
    .page-connexion .header-login .logo {
        position: absolute;
        right: 10px;
        top: -30px;
        margin-top: 15px;
        text-align: center;
        opacity: 0;
        animation-name: reveal;
        animation-duration: .5s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
        animation-delay: .5s; }
        .page-connexion .header-login .logo a {
            display: inline-block;
            padding: 10px;
            background: #FFF;
            border-radius: 50%;
            overflow: hidden;
            width: 80px;
            height: 80px;
            position: relative;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }
            .page-connexion .header-login .logo a img {
                max-width: 70px;
                height: auto;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%); }

.page-connexion .lienAccueil {
    text-decoration: none; }

.page-connexion h2 {
    text-align: left;
    font-size: 25px;
    margin: 0;
    font-weight: 700; }
    @media (min-width: 750px) {
        .page-connexion h2 {
            font-size: 30px; } }
    .page-connexion h2 small {
        font-size: 75%;
        display: block;
        font-weight: 300; }

.page-connexion .input-field {
    padding: 0 10px; }
    .page-connexion .input-field.mode-co {
        margin-top: 30px; }
    .page-connexion .input-field input {
        margin-bottom: 5px; }

.page-connexion .login {
    -moz-box-shadow: 0px 8px 17px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 8px 17px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0px 8px 17px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 17px 0px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    padding: 15px;
    opacity: 0;
    animation-name: reveal;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: .2s; }
    .page-connexion .login:before, .page-connexion .login:after {
        content: " ";
        display: table;
        clear: both;
        zoom: 1; }
    @media (min-width: 750px) {
        .page-connexion .login {
            padding: 15px 30px; } }
    .page-connexion .login h4 {
        margin-top: 0; }

.page-connexion input[type=submit] {
    margin: 25px auto 0;
    display: block;
    cursor: pointer; }

.page-connexion .well {
    border-radius: 3px;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.3; }
    .page-connexion .well strong {
        font-weight: 700; }
    .page-connexion .well.center {
        text-align: center; }
        .page-connexion .well.center p {
            text-align: center; }

.liensConnexion {
    margin-top: 25px;
    padding-top: 2px;
    text-align: right;
    position: relative; }
    .liensConnexion:before, .liensConnexion:after {
        content: " ";
        display: table;
        clear: both;
        zoom: 1; }
    .liensConnexion .lienConnexion {
        margin: 10px 0;
        display: inline-block;
        text-decoration: none;
        font-size: 14px;
        line-height: 1.3; }
        .liensConnexion .lienConnexion:first-child {
            float: left; }

/* Tableau de bord */
.main-bord {
    margin-top: 40px;
    margin-bottom: 25px;
    transition: all .3s;
    display: flex;
    flex-flow: row wrap; }
    .main-bord .card-reveal {
        margin-bottom: 20px;
        opacity: 0;
        visibility: hidden;
        animation-name: reveal;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards; }
        .main-bord .card-reveal:nth-child(1) {
            animation-delay: .2s; }
        .main-bord .card-reveal:nth-child(2) {
            animation-delay: .4s; }
        .main-bord .card-reveal:nth-child(3) {
            animation-delay: .6s; }
        .main-bord .card-reveal:nth-child(4) {
            animation-delay: .8s; }
        .main-bord .card-reveal:nth-child(5) {
            animation-delay: 1s; }
        .main-bord .card-reveal:nth-child(6) {
            animation-delay: 1.2s; }
        .main-bord .card-reveal:nth-child(7) {
            animation-delay: 1.4s; }
        .main-bord .card-reveal:nth-child(8) {
            animation-delay: 1.6s; }
        .main-bord .card-reveal:nth-child(9) {
            animation-delay: 1.8s; }
        .main-bord .card-reveal:nth-child(10) {
            animation-delay: 2s; }
        .main-bord .card-reveal:nth-child(11) {
            animation-delay: 2.2s; }
        .main-bord .card-reveal:nth-child(12) {
            animation-delay: 2.4s; }
        .main-bord .card-reveal:nth-child(13) {
            animation-delay: 2.6s; }
        .main-bord .card-reveal:nth-child(14) {
            animation-delay: 2.8s; }
        .main-bord .card-reveal:nth-child(15) {
            animation-delay: 3s; }
        .main-bord .card-reveal:nth-child(16) {
            animation-delay: 3.2s; }
    .main-bord .card-bord {
        display: block;
        box-sizing: border-box;
        text-decoration: none;
        padding: 5px 25px;
        position: relative;
        height: 100%;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        transition: all .5s;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.5); }
        .main-bord .card-bord .nb_files {
            background: transparent none repeat scroll 0 0;
            border-radius: 50%;
            display: block;
            font-weight: bold;
            height: 32px;
            line-height: 32px;
            position: absolute;
            right: 5px;
            top: 5px;
            width: 32px; }
        .main-bord .card-bord .content i {
            font-size: 45px;
            display: block;
            text-align: center; }
        .main-bord .card-bord .content h4 {
            text-align: center;
            text-transform: uppercase;
            font-size: 19px;
            font-weight: 300;
            margin: 5px 0 5px; }
        .main-bord .card-bord .content p {
            text-align: center;
            margin-bottom: 20px; }
        .main-bord .card-bord:before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0);
            transition: all .2s;
            z-index: 1; }
        .main-bord .card-bord .pictoCircle {
            text-align: center;
            position: relative; }
            .main-bord .card-bord .pictoCircle .circle {
                height: 110px;
                width: 110px; }
                .main-bord .card-bord .pictoCircle .circle circle {
                    stroke-dasharray: 700;
                    stroke-dashoffset: 700;
                    stroke-linecap: butt;
                    -webkit-transition: all 12s ease-out;
                    -moz-transition: all 1s ease-out;
                    -ms-transition: all 1s ease-out;
                    -o-transition: all 1s ease-out;
                    transition: all 1s ease-out; }
            .main-bord .card-bord .pictoCircle i {
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
        @media (min-width: 1180px) {
            .main-bord .card-bord.card-dashboard {
                padding: 10px 25px; } }
        .main-bord .card-bord.card-dashboard .content h4 {
            margin-top: -10px; }
        .main-bord .card-bord:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transform: translateY(-10px); }
            .main-bord .card-bord:hover:before {
                width: calc(100% - 20px);
                height: calc(100% - 20px);
                left: 10px;
                top: 10px;
                border: 1px solid rgba(255, 255, 255, 0.6); }
            .main-bord .card-bord:hover .pictoCircle .circle circle {
                stroke-dashoffset: 0;
                stroke-dasharray: 700;
                stroke-width: 3; }
        @media (min-width: 1180px) {
            .main-bord .card-bord {
                padding: 25px 25px; } }

.menu_folder {
    padding: 0; }
    .menu_folder .folder {
        padding: 0 2px; }
        .menu_folder .folder .card-bord {
            padding: 5px;
            margin: 0;
            text-align: center;
            box-sizing: border-box; }
            .menu_folder .folder .card-bord i {
                font-size: 40px; }
            .menu_folder .folder .card-bord .content {
                bottom: 0;
                box-sizing: border-box;
                position: relative;
                top: auto;
                transform: none; }
                .menu_folder .folder .card-bord .content h4 {
                    margin: 20px 0 0 0;
                    min-height: 2em;
                    font-size: 12px; }

@media (min-width: 465px) {
    .menu_folder .folder .card-bord .content h4 {
        font-size: 14px; } }

@media (min-width: 970px) {
    .menu_folder .folder .card-bord .content h4 {
        font-size: 16px; } }

@media (min-width: 1180px) {
    .menu_folder .folder {
        padding: 0 10px; }
        .menu_folder .folder .card-bord {
            padding: 20px; }
            .menu_folder .folder .card-bord i {
                font-size: 70px; }
            .menu_folder .folder .card-bord .content h4 {
                font-size: 25px; } }

.onglet_folder .btn_download {
    background: transparent none repeat scroll 0 0;
    border-radius: 2px;
    display: inline-block;
    line-height: 26px;
    padding: 5px 10px;
    text-decoration: none; }
    .onglet_folder .btn_download .material-icons {
        display: inline-block;
        float: left;
        margin-top: 2px; }

select option {
    font-size: 20px; }

#modal-sites .modal-content {
    min-height: 160px; }

#modal-sites .dropdown-content {
    max-height: 150px; }

#modal-perso .modal-box {
    right: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 650px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }
    #modal-perso .modal-box .modal-content h2 {
        font-size: 35px;
        margin: 20px 0 15px 0; }
        #modal-perso .modal-box .modal-content h2 strong, #modal-perso .modal-box .modal-content h2 b {
            font-weight: 700;
            color: inherit; }
    #modal-perso .modal-box .modal-content h3 {
        font-size: 25px; }
        #modal-perso .modal-box .modal-content h3 strong, #modal-perso .modal-box .modal-content h3 b {
            font-weight: 700;
            color: inherit; }
    #modal-perso .modal-box .modal-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px; }
        #modal-perso .modal-box .modal-content p strong, #modal-perso .modal-box .modal-content p b {
            font-weight: 700; }
        #modal-perso .modal-box .modal-content p:last-child {
            margin-bottom: 0; }
    #modal-perso .modal-box .modal-content a {
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        font-weight: 700;
        transition: all .3s; }
        #modal-perso .modal-box .modal-content a:hover {
            background: rgba(0, 0, 0, 0.07); }

.errorMgs {
    margin-top: 15px; }

.btn_container_under_table {
    margin-top: 15px;
    text-align: right; }

.footer-bottom .coordonnees {
    box-sizing: border-box;
    padding: 15px; }
    .footer-bottom .coordonnees span {
        display: block;
        font-weight: bold;
        margin-bottom: 5px; }
        .footer-bottom .coordonnees span a {
            margin-top: 5px; }

@media (min-width: 970px) {
    .footer-bottom {
        display: none; } }

.fixed-action-btn.horizontal ul li {
    margin-right: 2px; }

@media (min-width: 970px) {
    .fixed-action-btn.horizontal ul li {
        margin-right: 15px; } }

table.datatableMaterial tr {
    opacity: 0;
    animation-name: revealRightToLeft;
    animation-duration: .3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; }
    table.datatableMaterial tr:nth-child(1) {
        animation-delay: .1s; }
    table.datatableMaterial tr:nth-child(2) {
        animation-delay: .2s; }
    table.datatableMaterial tr:nth-child(3) {
        animation-delay: .3s; }
    table.datatableMaterial tr:nth-child(4) {
        animation-delay: .4s; }
    table.datatableMaterial tr:nth-child(5) {
        animation-delay: .5s; }
    table.datatableMaterial tr:nth-child(6) {
        animation-delay: .6s; }
    table.datatableMaterial tr:nth-child(7) {
        animation-delay: .7s; }
    table.datatableMaterial tr:nth-child(8) {
        animation-delay: .8s; }
    table.datatableMaterial tr:nth-child(9) {
        animation-delay: .9s; }
    table.datatableMaterial tr:nth-child(10) {
        animation-delay: 1s; }
    table.datatableMaterial tr:nth-child(11) {
        animation-delay: 1.1s; }
    table.datatableMaterial tr:nth-child(12) {
        animation-delay: 1.2s; }
    table.datatableMaterial tr:nth-child(13) {
        animation-delay: 1.3s; }
    table.datatableMaterial tr:nth-child(14) {
        animation-delay: 1.4s; }
    table.datatableMaterial tr:nth-child(15) {
        animation-delay: 1.5s; }
    table.datatableMaterial tr:nth-child(16) {
        animation-delay: 1.6s; }
    table.datatableMaterial tr:nth-child(17) {
        animation-delay: 1.7s; }
    table.datatableMaterial tr:nth-child(18) {
        animation-delay: 1.8s; }
    table.datatableMaterial tr:nth-child(19) {
        animation-delay: 1.9s; }
    table.datatableMaterial tr:nth-child(20) {
        animation-delay: 2s; }

.datatableMaterial .hideOnCollapsed {
    display: block; }

.datatableMaterial .showOnCollapsed {
    display: none; }

.datatableMaterial.collapsed .hideOnCollapsed {
    display: none; }

.datatableMaterial.collapsed .showOnCollapsed {
    display: block; }

.dlAllZipped {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 5; }

#footerZoneTelechargement {
    -webkit-box-shadow: 0px 0px 5px 0px #333333;
    -moz-box-shadow: 0px 0px 5px 0px #333333;
    box-shadow: 0px 0px 5px 0px #333333;
    position: fixed;
    transition: bottom .6s;
    bottom: 0;
    right: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 360px;
    z-index: 998; }
    #footerZoneTelechargement .contentZone {
        max-height: 0;
        overflow: hidden;
        transition: max-height .7s; }
    #footerZoneTelechargement.active .contentZone {
        max-height: 450px; }
    #footerZoneTelechargement.active.small .contentZone {
        max-height: 69px; }
    #footerZoneTelechargement h3 {
        margin: 0 0 10px 0;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 17px;
        padding: 25px; }
        #footerZoneTelechargement h3 .buttonSmall {
            cursor: pointer;
            float: right; }
    #footerZoneTelechargement .spinner {
        display: none; }
        #footerZoneTelechargement .spinner.active {
            display: block; }
    #footerZoneTelechargement .contenuTelechargement p {
        padding: 10px 25px;
        font-size: 15px;
        margin-bottom: 10px; }
    #footerZoneTelechargement .contenuTelechargement a {
        display: block;
        padding: 25px;
        border-top: 1px solid transparent;
        font-weight: bold;
        font-size: 15px;
        text-decoration: none;
        text-align: center; }

.ms-choice {
    border-top: none;
    border-right: none;
    border-left: none;
    font-size: 18px;
    height: 46px; }
    .ms-choice:focus {
        background: none; }
    .ms-choice > span {
        padding-top: 10px;
        padding-bottom: 10px; }

.ms-drop {
    border-radius: 0; }
    .ms-drop .ms-search input {
        margin-bottom: 0;
        font-size: 16px;
        padding: 5px 0; }
    .ms-drop ul {
        max-height: 157px !important;
        padding-left: 0;
        padding-right: 0; }
        .ms-drop ul li {
            padding-left: 6px;
            padding-right: 6px; }
            .ms-drop ul li:hover {
                background: #e9e9ff; }
            .ms-drop ul li label {
                padding: 6px 0;
                border-bottom: 1px solid #ededed;
                font-size: 14px; }

.materialeTable {
    width: 100%; }
    .materialeTable tr {
        border-bottom: 1px dotted #ddd;
        background: #FFF; }
        .materialeTable tr td {
            padding: 10px 75px 10px 15px;
            font-size: 14px; }
        .materialeTable tr td:first-child {
            width: auto; }
    .materialeTable tr:nth-child(odd) {
        background: #F6F6F6; }
    .materialeTable tr:hover {
        background: #F0F0F0; }

.profile-logo {
    width: 130px;
    height: 130px;
    position: relative;
    background: #FFF;
    padding: 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #F6F6F6;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 15px; }
    @media (min-width: 780px) {
        .profile-logo {
            position: absolute;
            top: -15px;
            left: -15px;
            transform: translateX(0); } }
    .profile-logo img {
        max-width: 95%;
        height: auto;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); }

.profile-list {
    position: relative; }
    @media (min-width: 780px) {
        .profile-list {
            -webkit-column-count: 2;
            -moz-column-count: 2;
            column-count: 2;
            -webkit-column-gap: 30px;
            /* Chrome, Safari, Opera */
            -moz-column-gap: 30px;
            /* Firefox */
            column-gap: 30px;
            -moz-column-fill: balance;
            /* Firefox */
            column-fill: balance;
            padding-left: 160px; } }
    .profile-list li {
        display: table;
        vertical-align: baseline;
        border-bottom: 1px solid #F6F6F6;
        font-size: 14px;
        padding: 1px 15px 0 0;
        width: 100%;
        box-sizing: border-box; }
        .profile-list li .lib {
            display: block;
            margin-bottom: 5px;
            width: 100%;
            font-weight: 700;
            position: relative;
            padding: 15px 20px 15px 10px;
            background: #FCFCFC; }
            @media (min-width: 1200px) {
                .profile-list li .lib {
                    margin: 0;
                    display: inline-block;
                    width: 150px;
                    margin-right: 10px; }
                    .profile-list li .lib:after {
                        content: "\2192";
                        opacity: .3;
                        position: absolute;
                        right: 10px;
                        top: 50%;
                        margin-top: -5px;
                        font-size: 12px; } }
        .profile-list li .valeur {
            display: inline-block;
            margin-left: 10px; }

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 15px auto; }

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out; }

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s; }

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0); }
    50% {
        -webkit-transform: scale(1); } }

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0); }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1); } }

/*# sourceMappingURL=global.css.map */