/**
 *
 * You can write your CSS code here, DO NOT touch the default style file
 * because it will make it harder for you to update.
 * 
 */
/*# sourceMappingURL=developers.css.map */
.floating-link {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    -webkit-box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    z-index: 800;
}
.floating-link:hover {
    color: #25d366;
    background-color: #222932;
    text-decoration: none;
}