

#submenu-wrap {
  height: 40px;
  width: 100%;
  background-color: #999;
  display: flex;
  flex-direction: row;
}

.submenu-logo {
  position: relative;
  width: 40px;
  height: 40px;
}

.submenu-logo-img {
  width: 80%;
  height: auto;
}

.submenu-item-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  list-style: none;
}

.submenu-item {
  line-height: 40px;
  padding: 0 10px;
  font-size: .7rem;
  cursor: pointer;
  transition: all 300ms ease;
}

.submenu-item:hover {
  background-color: rgba(255,255,255,.1);
}

/* END */
