/* top admin menu */
.top-admin-toolbar {
  display: block;
  margin: 0;
  width: 100%;
  background: #3d3d3d;
  color: #fff;
  text-align: left;
  z-index: 1000000;
}
.top-admin-toolbar:before,
.top-admin-toolbar:after {
  display: table;
  content: " ";
}
.top-admin-toolbar:after {
  clear: both;
}
.top-admin-toolbar a,
.top-admin-toolbar a:visited {
  color: #fff;
  text-decoration: none;
  border: none;
}
.top-admin-toolbar .link {
  cursor: pointer;
}
.top-admin-toolbar .dotted {
  border-bottom: 1px dotted;
  border-color: rgba(255, 255, 255, 0.5);
}
.top-admin-toolbar .solid {
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.top-admin-toolbar__bar {
  width: 100%;
  position: relative;
  padding: 0;
  clear: both;
}
.top-admin-toolbar__block {
  float: left;
  margin: 0;
  padding: 4px 8px;
  line-height: 32px;
  white-space: nowrap;
}
.top-admin-toolbar__block.delimiter {
  content: '';
}
.top-admin-toolbar__toggle {
  float: right;
  width: 30px;
  height: 30px;
  margin: 5px;
  font-size: 25px;
  font-weight: 100;
  line-height: 28px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.chevron::before {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: '';
  display: inline-block;
  height: 20px;
  left: 5px;
  position: relative;
  top: 5px;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 20px;
}
.chevron.right:before {
  left: 0;
  transform: rotate(45deg);
}
.chevron.left:before {
  left: 0;
  transform: rotate(-135deg);
}
.top-admin-toolbar__user-menu {
  width: 100%;
  display: none;
  clear: both;
  padding: 4px 8px;
}
