@charset "utf-8";
/* CSS Document */

.stickyfoo {
    display: none;
}

@media handheld, only screen and (max-width: 600px) {
    .stickyfoo {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: #444;
        color: white;
        text-align: center;
        padding: 3% 2% 5% 2%; 
        display: block;
        z-index:10;
    }
    .hide {
        opacity: 0;
    }

    .stickybot {
        float: right;
        padding: 8px 5px;
        cursor: pointer;
        height: 37px;
        width: 40%;
        color: #fff;
        background: #A51E23;
        border: 0;
        margin-right: 2%;
        font-size: 1em;
    }

        .stickybot:hover {
            background: #771e1f;
        }

    .stickytxt {
        padding: 1px 8px 1px 8px;
        border: solid thin white;
        border-radius: 50px;
        margin-right: 10px;
        display: inline;
        font-weight: 400;
        font-size: 1.4em;
    }

    .stickyinf {
        float: left;
        padding-top: 2%;
        margin-left: 2%;
    }
}
