﻿.btn-floating {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    color: #333333;
    border-radius: 50px;
    letter-spacing: 2px;
    background-color: #e49341;
    padding: 18px 30px;
    position: fixed;
    bottom: 15px;
    right: 20px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

    .btn-floating:hover {
        background-color: #e49341;
        box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-7px);
    }

@media only screen and (max-width: 600px) {
    .btn-floating {
        font-size: 14px;
        padding: 12px 20px;
        bottom: 15px;
        right: 20px;
    }
}
