/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */



.rme-button{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 40px;

    background: #fc9e00;
    font-family: "oswald.regular";
    font-size: 16px;
    color: white;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}
.rme-button,
.rme-button:hover,
.rme-button:visited,
.rme-button:focus{
    text-decoration: none;
    color: white;
}

@media (max-width: 575px){
    .rme-button{
        bottom: 50px;
    }
}