/* ====================================
   FLOATING ACTION BUTTON
==================================== */

.fab-wrapper{

    position:fixed;

    right:30px;

    bottom:30px;

    display:flex;

    gap:15px;

    z-index:9999;

}

.fab{

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    color:#fff;

    font-size:24px;

    font-weight:bold;

    box-shadow:
        0 4px 12px rgba(0,0,0,.25);

}

.fab-red{

    background:#c00000;

}

.fab-blue{

    background:#4094f7;

}

.fab-orange{

    background:#ff6b2c;

}