.sidemenu-hamburger {
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #595959;
    padding: 15px;
    display: flex;
}

.hamburger {
    cursor: pointer;

    position: relative;
    display: inline-block;
    width: 31px;
    height: 20px;
    border-top: 5px solid #ba9a4b;
    border-bottom: 5px solid #ba9a4b;
    box-sizing: initial;
}

.hamburger:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0px;
    width: 100%;
    border-top: 5px solid #ba9a4b;
}

.sidemenu-wrapper {
  text-align: center;
  position: relative;
  height: 100%;
}

.sidemenu-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.sidemenu-content ul {
  margin-top: 20px;
  list-style: none;
  padding: 0px;
}

.sidemenu-content ul li {
  border-style: none;
  border-width: 1px;
  border-bottom-style: solid;
  padding: 10px 0px;
  border-color: rgb(255 255 255 / 50%);
  cursor: pointer;
  color: white;
}

.sidemenu-content ul li:hover, .sidemenu-content ul li.active {
  background-color: rgb(89 89 89 / 60%);
}

.sidemenu-content ul li:last-child {
  border-bottom-style: none;
}

.sidemenu-logo {
  height: 140px;
}

.moby, .moby .moby-close {
  background-color: rgb(89 89 89 / 80%);
}

.moby-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.moby-menu {
    flex-grow: 1;
  align-items: center;
  justify-content: center;
}

body>.sidemenu-wrapper {
    display: none;
}

.moby .sidemenu-logo {
  display: inline;
}

.moby.bottom-full {
  bottom: inherit;
}