_header.scss 1.12 KB
header {
  padding: 9px 0;
  &.header-border {
    border-bottom: 1px solid #cccccc;
  }
}
.logo-wrapp {
  padding-right: 0 !important;
}
.btns_header {
  a {
    margin-left: 10px;
    &:first-child {
      margin-left: 0;
    }
  }
}

.header-menu {
  ul {
    li {
      float: left;
      line-height: 42px;
      margin-left: 47px;
      &:first-child {
        margin-left: 0;
      }
      a {
        color: $main-color;
        text-transform: uppercase;
        font-weight: 700;
      }
    }
  }
}

.login, .auth {
  position: relative;
  padding-right: 38px;
  line-height: 42px;
  text-transform: uppercase;
  font-weight: 700;
  color: $main-color;
  float: right;
  &:before {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    background: url("../images/ico/icon_cab_01.svg");
    background-size: 24px 24px;
    background-repeat: no-repeat;
    content: '';
  }
  &:hover {
    color: inherit;
  }
}

.auth {
  padding-right: 0;
  font-size: 11px;
  &:before {
    display: none;
  }
}

.logo {
 img {
   margin-top: 1px;
   width: 139px;
   max-width: 100%;
 }
}