﻿.rowyboy {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    padding: 15px;
    z-index: 12;
    right: 0px;
    top: 0px;
}

    .rowyboy .row {
        position: relative;
        background-color: white;
        color: white;
        height: 3px;
        width: 30px;
        margin: 3px;
    }

    .rowyboy .last {
        margin-top: 0px;
    }

    .rowyboy .cross {
        left: 3px;
        top: -6px;
        margin: 0px;
    }

.headertext {
    position: fixed;
    display: block;
    height: 42px;
    top: 7.5px;
    left: 18px;
    z-index: 12;
    cursor: pointer;
}
    .headertext a {
        color: white !important;
        font-weight: bold;
    }

    .headertext a:hover {
        color: white !important;
        text-decoration: none !important;
    }

.menumaster {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 11;
    display: none;
    background-color: var(--c-orange-color);
}

.menucontainer {
    margin: auto;
    display: flex;
    flex-flow: column;
    flex-wrap: nowrap;
    text-align: center;
}

    .menucontainer a {
        font-size: xx-large;
        font-weight: bold;
        color: white !important;
        cursor: pointer;
        margin: 10px;
    }

        .menucontainer a:hover {
            text-decoration: underline;
            text-decoration-color: var(--c-orangedarker-color);
        }

@keyframes spin_c_45 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(45deg);
    }
}

@keyframes spin_r_45 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-45deg);
    }
}

@keyframes spin_c_0 {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes spin_r_0 {
    from {
        transform: rotate(-45deg);
    }

    to {
        transform: rotate(0deg);
    }
}