#menuacross {
    position:               absolute;
    display:                inline-flex;
    top:                    40px;
    left:                   1%;
    width:                  98%;
    height:                 40px;
    /*background:             linear-gradient(0deg, rgb(36, 64, 95), rgb(243, 247, 243) 95%);*/
    background:             linear-gradient(0deg, rgb(97, 100, 103), rgb(39, 40, 39) 95%);
    border-radius:          8px 8px 0px 0px;
    border-width:           .1px .2px .2px .2px;
    border-color:           #4d4d4d;
    border-style:           solid;
    /*box-shadow:             5px 5px 5px 0px #413d3d7b;*/
    padding:                8px 0px 0px 0px;
}
.crossmenuitem {
    position:               relative;
    width:                  140px;
    height:                 32px;
    background-color:       transparent;
    border-radius:          8px 8px 0px 0px;
    border-width:           0px 0px 0px 0px;
    border-color:           #242424;
    border-style:           inset;
    left:                   20px;
    text-align:             center;
    padding:                5px 0px 5px 0px;
    font-family:            Arial;
    font-size:              12pt;
    color:                  #dedede;
    font-weight:            400;
}
.crossmenuitem:hover {
    background-color:       #242424;
    border-radius:          8px 8px 0px 0px;
    border-width:           .2px .2px 0px .2px;
    color:                  #abbccd;
    font-weight:            400;
    cursor:                 pointer;
}
