.logo-width{
  width: 200px;
}
#navbar .nav-text {
  color: #666666;
  font-weight:bold
}
#navbar .nav-text:hover {
  color: #FF0000;
}
.icon-size {
  width: 32px;
}
.header-dropdown {
  background-color: #fff;
  white-space: nowrap;
  position: absolute;
  top: 100% ;
  left: 0;
  z-index: 1;
  transform: scaley(0);
  transform-origin: top;
  transition: all .3s;
}
.dropdown-hover:hover .header-dropdown {
  transform: scale(1);
}
.header-dropdown-border {
  border-top: 1px dashed #aaa;
}
.header-dropdown-border:first-of-type {
  border-top: 0
}
@media (min-width:992px) {
  .nav-line {
    position: relative;
  }
  .nav-line::before {
      content: "";
      margin-top:10px;
      height: 20px;
      border-left: 2px solid #666;
      position: absolute;
      top: 0;
      left: 0;
      display: block;
  }
  .header-dropdown {
    left: 8px;
  }
}