@charset "utf-8";

.floating-contacts {

    position: fixed;
    display: block;
    right: 25px;
    bottom: 25px;
    width: 50px;

    z-index: 999999;

}

.floating-contacts a.contact {

    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;

    width: 50px;
    height: 50px;

    margin-top: 15px;

    background-color: #333;
    color: #fff;

    border-radius: 50%;

}

.floating-contacts a.contact:before {

    position: absolute;
    display: block;

    width: 50px;
    height: 50px;
    line-height: 50px;

    text-align: center;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    font-family: 'FontAwesome', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;

}

.floating-contacts a.contact:link,
.floating-contacts a.contact:visited,
.floating-contacts a.contact:hover,
.floating-contacts a.contact:focus {

    color: #fff;
    text-decoration: none;

}

.floating-contacts a.contact.contact-phone {

    background-color: dodgerblue;

}

.floating-contacts a.contact.contact-phone:before {

    content: "\f095";

}

.floating-contacts a.contact.contact-whatsapp {

    background-color: #25D366;

}

.floating-contacts a.contact.contact-whatsapp:before {

    content: "\f232";

}

.floating-contacts a.contact.contact-mail {

    background-color: #666;

}

.floating-contacts a.contact.contact-mail:before {

    content: "\f003";

}

