| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | #header {  width: 100%;  height: $header-height-large;  border-bottom: 1px solid rgba($gray-color, 0.2);  @extend .default-animation;  font-size: 0.7rem;  font-weight: 700;  background: $light-color;  color: $dark-color;  a {    color: $dark-color;  }  .logo svg path {    fill: $header-color-dark;  }  .header-dark &:not(.scrolled) {    background: $header-color-dark;    color: $light-color;    a {      color: rgba($light-color, 0.7) !important;    }    a.active {      color: $light-color !important;    }    .dropmenu ul ul a {        color: $dark-color !important;    }    .logo svg path {      fill: $light-color;    }  }  .header-dark.header-transparent &:not(.scrolled) {    background: rgba(#000, 0.05);  }  .header-transparent &:not(.scrolled) {    background: rgba(#fff, 0.05);    //border-bottom: 0 !important;  }  .navbar-section {    height: $header-height-large;    @extend .default-animation;    @include breakpoint(md) {      margin-right: 2rem;    }  }  .logo {    svg, img {      height: 42px;      display: inherit;      @extend .default-animation;    }  }  // Fixed Header solution  .header-fixed & {    position: fixed;    top: 0;    z-index: 2;  }}// Animate Fixed Headerbody.header-fixed.header-animated {  #header.scrolled {    height: $header-height-small;    .navbar-section {      height: $header-height-small;    }    .logo {      svg, img {        height: 28px;      }    }    ~ .mobile-menu .button_container {      top: 0.5rem;    }  }}.login-status-wrapper {  white-space: nowrap;}
 |