/* floaters */

.floaters--section {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 11;
}

.btn--floaters {
    background-color: transparent;
    border: none;
    padding: 0px;
    margin-right: 30px;
    margin-bottom: 30px;
    transform: scale(1);
    animation: pulse 2s infinite;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
}

.btn--floaters img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@media (max-width: 575px) {
    .btn--floaters {
        margin-right: 20px;
        margin-bottom: 25px;
    }

    .btn--floaters img {
        width: 55px;
        height: 55px;
        object-fit: contain;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(76 175 80);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
