#custom_toolbar{
    display: none;
    position: absolute;
    z-index: 10000;
    right: 0px;
    top: 0px;
    padding: 0.3em 0.8em;
    font-family: "system-ui";
    border-radius: 0em 0em 0.3em 0.3em;
    width: 200px;
    height: 100%;
    text-align: center;
    font-size: 12px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

.menu {
    position: relative;
    width: 100%;
    height: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    text-indent: 10px;
}

.menu > li {
    float: left;
    width: 50%;
    height: 30px;
    line-height: 30px;
    background: rgb(34, 45, 43);
}

.menu > li a {
    display: block;
    color: #fff;
}

.menu > li a:hover {
    color: #999;
}

ul.menu__second-level {
    text-align: left;
    text-indent:5px;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}

ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}

.menu > li:hover {
    background: #106136;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
    border-top: 1px solid #111;
}

.menu__third-level li {
    border-top: 1px solid #111;
}

.menu__second-level li a:hover {
    background: #111;
}

.menu__third-level li a:hover {
    background: #2a1f1f;
}

.menu__fourth-level li a:hover {
    background: #1d0f0f;
}

/* Arrow */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Float clear*/
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}


/* Single */
.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 30px;
    width: 100%;
    background: #106136;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
    top: 30px;
    visibility: visible;
    opacity: 1;
}

#custom_react_components{
    position: absolute;
    z-index: 1000;
    right: 0;
    top: 0;
    padding: 0.3em 0.8em;
    font-family: "system-ui";
    border-radius: 0em 0em 0.3em 0.3em;
    height: 100%;
    font-size: 12px;
}