.sticky-button-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
}

.sticky-button {
    padding: 15px;
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    border-radius: 15px;
    border: none;
    background-color: #263779;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    margin-bottom: 10px;
}

.sticky-whatsapp {
    background-color: #25d366;
}
.sticky-instagram {
    background-color: #feda77;
    color: black;
}
.sticky-email {
    background-color: #1ebeb6;
}

.sticky-button i {
    font-size: 2rem;
    padding-right: 10px;
}

/* Custom Width Layout: 600px. */
@media only screen and (max-width: 480px) {
    .sticky-button-container {
        position: fixed;
        bottom: 0;
        right: 0;
        display: flex;
        width: 100%;
    }
    .sticky-button {
        width: 100% !important;
        position: relative;
        bottom: 0;
        font-size: 12px;
        right: 0;
        left: 0;
        border-radius: 0;
        margin: 0;
    }

    .sticky-email {
        background-color: #1ebeb6;
        display: none;
    }
}

/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}
