/* pc topbar */
#topbar{
  z-index: 500;
  position: absolute;
  bottom: 0px;
  left: 160px;
  padding: 0 0 15px;
  transition: 0.2s;
}

#topbar .topbar-item{
  position: relative;
  text-align: center;
  font-size: 24px;
  padding: 0 40px 0 0;
  font-weight: bold;
  transition: 0.2s;
}

#topbar .topbar-item :after{
  font-size: 22px;
  margin: 0 5px 10px 5px;
  position: absolute;
  transition: 0.2s;
}

#topbar .topbar-item a{
  color: #5E3819;
}

.topbar-left {
  display: none;
  position: absolute;
  z-index: 500;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  cursor: pointer;
}

.topbar-dropdown {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  width: 200px;
  z-index: 600;
  top:130px;
  left: 0;
  right: 0;
  padding: 5px 5px 5px 50px;
  background-color: #A27A51;
}

.topbar-dropdown-item {
  width: 100%;
  margin: 5px;
  font-size: 1.2rem;
}

.topbar-dropdown-item a {
  color: #FFF;
}

header.short #topbar{
  padding: 16px 0;
  left: 100px !important;
  transition: 0.2s;
}

header.short #topbar .topbar-item{
  font-size: 20px !important;
  font-weight: initial;
  transition: 0.2s;
}

header.short  #topbar .topbar-item :after{
  font-size: 18px;
  margin: 0 5px 3px 10px;
  transition: 0.2s;
}

header.short #topbar .topbar-item a{
  color: white;
}

header.short .topbar-icon {
  font-size: 1.5rem;
  color: #FFF;
}

@media (max-width: 980px) {
  .topbar-left {
    display: block;
  }
  #topbar {
    display: none;
  }
}