﻿@media screen and (min-width: 600px) {
    .helpMenuButton {
        float: left;
        height: 44px;
        padding: 0 1em 0 1em;
        margin-left: 0em;
        border-radius: 12px;
        border: 1px solid rgba(0, 40, 100, 0.12);
        /*color: blueviolet;*/
        text-decoration: none;
        transition: all .15s linear;
        position: fixed;
        z-index: 5000;
        line-height: 40px;
        bottom: 15px;
        transform: rotate(90deg);
        background-color: white;
    }

    .helpMenuButton:hover {
        text-decoration:none;
    }

    #helpLabel {
            display: none;
    }
}

@media screen and (max-width: 600px) {
    .helpMenuButton {
       display:none;
    }
}
