/* Social login */

.customer_login .social ul li
{
    padding: 11px 0;
    display: inline-block;
    width: 49%;
    text-align: center;
}
.customer_login .social ul li a
{
    display: block;
    width: 75%;
    padding: 5px 10px;
    color: white;
    margin: 0 auto;
}
.customer_login .social ul li a i
{
    font-size: 8pt;
}
.customer_login .social ul li .bg-face
{
    background-color: #3b5998;
}
.customer_login .social ul li .bg-face:hover
{
    background-color: #3b5998;
    background-color: #000;
}
.customer_login .social ul li .bg-gplus
{
    background-color: #dd4b39;
}
.customer_login .social ul li .bg-gplus:hover
{
    background-color: #000;
}

/* Notifications colors */
.notifications.container nav {
    display: inline-block !important;
    margin-top: 10px;
}
.notifications.container .card_accor {
    border-radius: 6px;
}
.notifications.container .bg-warning {
    background-color: #f8f0ca !important;
}
.notifications.container .bg-success {
    background-color: #bbedda !important;
}
.notifications.container .bg-info {
    background-color: #f7d5b7 !important;
}
.notifications.container .bg-danger {
    background-color: #f7d1d1 !important;
}

/* Footer */
.footer_heart {
    display: inline-block;
    animation: heartbeatx 1s infinite;
}

@keyframes heartbeatx
{
    0%
    {
        transform: scale( .75 );
    }
    20%
    {
        transform: scale( 1 );
    }
    40%
    {
        transform: scale( .75 );
    }
    60%
    {
        transform: scale( 1 );
    }
    80%
    {
        transform: scale( .75 );
    }
    100%
    {
        transform: scale( .75 );
    }
}
