/* 
/////////////////////////////////
STYLE GENERAL 
////////////////////////////////
*/

.bgwave {
    background-image: url('http://portail.snef-rousset.esupport.fr/public/images/bgwave.jpg');
    margin: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.submenu {
    background: rgb(208, 222, 238);
    background: linear-gradient(90deg, rgba(208, 222, 238, 1) 0%, rgba(154, 172, 194, 1) 100%);
}

.submenu ul li {
    color: white;
    padding: 10px;
    margin: 0px 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.submenu ul li:hover {
    color: #6e7e91;
    background: white;
}

a {
    text-decoration: none;
    color: black !important;
}

ul li {
    text-decoration: none;
    list-style: none;
}

.menu-app li {
    font-size: 17px;
    font-weight: 400;
    padding: 8px;
    cursor: pointer;
    margin-top: 5px;
}

.menu-app li:hover {
    font-size: 17px;
    font-weight: 400;
    padding: 8px;
    background-color: #0d6efd;
    animation-name: submenu_hover;
    animation-duration: 1s;
    color: white;
    border-radius: 5px;
}

@keyframes submenu_hover {
    from {
        background-color: white;
    }

    to {
        background-color: #0d6efd;
    }
}

/* 
/////////////////////////////////
AJOUT CLIENT
////////////////////////////////
*/

.form-new-client input {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* 
/////////////////////////////////
FICHE CLIENT
////////////////////////////////
*/

.modal-header {
    background-color: #6e7e91 !important;
}


/* 
/////////////////////////////////
FOOTER
////////////////////////////////
*/

.footer {
    margin: 20px;
}

.card-animate {
    background-color: #fff !important;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    color: white;
    text-shadow: 0 0 0 #000, 0 3rem 0 #fff !important;
    transition: background-color 1s, text-shadow 200ms !important;
    border-radius: 20px;
    font-size: 1.1rem;
}

.card-animate:hover {
    background: linear-gradient(180deg, rgba(208, 222, 238, 1) 0%, rgb(249, 252, 255) 50%) !important;
    text-shadow: 0 -3rem 0 white, 0 0 0 white !important;
    border-radius: 20px;
    box-shadow: 1px 16px 20px -9px rgb(173, 173, 173);
    -webkit-box-shadow: 1px 16px 20px -9px rgb(173, 173, 173);
    -moz-box-shadow: 1px 16px 20px -9px rgb(173, 173, 173);
}

.navgradient {
    background: linear-gradient(90deg, rgba(208, 222, 238, 1) 0%, rgb(229, 240, 253) 50%) !important;
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}