#cb-floating-wrapper {
    position: fixed;
    right: -78px;
    top: 30em;
    transform: rotate(90deg);
    z-index: 99999;
}

#cb-floating-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #7a8f3c;
    color: #fff;
    border-radius: 0 0 5px 5px;
    text-decoration: none;
    font: 500 16px / 20px "Open Sans", sans-serif;
    transition: all .3s ease;
    white-space: nowrap;
    font-size: 16px;
    font-family: 'Merriweather';
}

#cb-floating-btn:hover {
    background: #657730;
    color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
    #cb-floating-wrapper {
        top: auto;
        bottom: 120px;
        right: -66px;
        font-family: 'Merriweather';
    }

    #cb-floating-btn {
        font-size: 15px;
        padding: 10px 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #cb-floating-wrapper {
        top: auto;
        bottom: 120px;
        right: -65px;
    }

    #cb-floating-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}