body {
    margin-bottom: 4rem;
}

#sys_type {
    background: #ff0000;
    box-sizing: border-box;
    border: solid 3px #A00;
    color: #FFF;
    font-family: Courier new;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto;
    opacity: 0.7;
    padding: 0 0.5rem;
    position: fixed;
    bottom: 0px;
    left: 0;
    text-align: center;
    border-radius: 10px;
    animation:myfirst 1s;
    z-index: 9999;
}

#sys_type:hover {
    font-size: 4rem;
    padding: 0.5rem;
}

#sys_type.sys_type_dev {
    background: #00FF00;
    border-color: #003300;
    color: #003300;
}

#sys_type.sys_type_prod {
    display: none;
}

#sys_type.sys_type_test:hover:after {
    color: #330000;
    content: 'Teszt oldal! Itt lehet rongálni!';
    display: block;
    font-size: 0.2em;
    margin-top: 2em;
}

#sys_type.sys_type_dev:hover:after {
    color: #00AA00;
    content: 'Fejlesztek, tehát vagyok?!';
    display: block;
    font-size: 0.2em;
    margin-top: 0.5em;
}

#sys_type .sys-git {
    font-size: 0.5em;
    display: inline;
}

#sys_type:hover .sys-git {
    display: block;
    margin-top: 0.3em;
}

#sys_type .sys_info {
    display:none;
    font-size: 0.2em;
    margin-top: 2em;
    text-align: left;
}

#sys_type:hover .sys_info {
    display: block;
}

@media (max-width: 480px) {
    .nevogateFooter {
        height: 100%;
    }

    #sys_type {
        border-radius: 5px;
        bottom: -1.5rem;
        font-size: 0.7rem;
        font-weight: bold;
        height: 3rem;
        left: -2.5rem;
        opacity: 0.3;
        padding: 3px;
        position: fixed;
        right :auto;
        top: auto;
        width: 5rem;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
    }
    
    #sys_type:hover {
        bottom: 0;
        font-size: 4rem;
        height: auto;
        left: 0;
        opacity: 1;
        padding-top: 1rem;
        right: 0;
        width: auto;
    }
}