.menu {
    right: 0px;
    position: fixed;

    bottom: 10px;
    z-index: 10;
    /* background-color: #001c31; */
    /* width: 100%; */
    text-align: right;
}

.menu a {
    text-decoration: none;
    color: #9ba4c1;
    margin-right: 10px;
    /* height: 50px; */
    line-height: 50px;
    display: block;
    transition: all 300ms;
    /* width: 50px; */
    text-align: center;
    font-size: 24px;
    font-family: 'Michroma', sans-serif;
    text-align: right;
}

.menu a img {
    max-height: 30px;
    margin-top: 9px;
    max-width: 30px;
    transform: rotate(-45deg);
    display: inline-block;
    transition: all 300ms;
    opacity: 0.7;

}

.menu a:hover {
    color: #518abc;
}

.menu a:hover img {
    opacity: 1;
    -webkit-filter: invert(52%) sepia(27%) saturate(884%) hue-rotate(166deg) brightness(93%) contrast(84%);
    filter: invert(52%) sepia(27%) saturate(884%) hue-rotate(166deg) brightness(93%) contrast(84%);
}

.octagonWrap {
    width: 50px;
    height: 50px;
    /* float: right; */
    position: relative;
    overflow: hidden;
    margin-right: 10px;
    transition: all 300ms;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.octagon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transform: rotate(45deg);
    background: transparent;
    border: 1px solid #9ba4c1;
    transition: all 300ms;
}

.menu a:hover .octagon {
    border-color: #518abc;
}

.menu a:hover .octagon:before {
    border-color: #518abc;
}

.octagon:before {
    position: absolute;
    /* There needs to be a negative value here to cancel
     * out the width of the border. It's currently -3px,
     * but if the border were 5px, then it'd be -5px.
     */
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    transform: rotate(45deg);
    content: '';
    border: 1px solid #9ba4c1;
}

span.menu_desc {
    width: 0px;
    overflow: hidden;
    display: inline-block;
    transition: all 300ms;
    font-size: 16px;
    word-break: keep-all;
    white-space: nowrap;
    text-align: left;
    line-height: 25px;
    vertical-align: middle;
}

.menu a:hover>span.menu_desc {
    /* width: auto; */
    width: 120px;
}

.home_icon {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 300;
    opacity: 0.7;
    transition: all 300ms;
}

.home_icon:hover {
    opacity: 1;
}

.status {

    display: inline-block;

    width: 40px;

    height: 40px;

    background-size: contain;

    background-position: center center;

    background-repeat: no-repeat;
}

.status-0 {
    background-image: url('/img/no_check.png');

}

.status-1 {
    background-image: url('/img/check.png');

}

.status-2 {
    background-image: url('/img/perhaps.png');

}