@import '../helpers/helpers';

.header-wrapper {
  &--bicester {
    background: $gray-dark;

    .header-logo__link {
      background-image: url('../../img/wickes-dc-logo.svg');
      width: 100px;
      margin-right: 15px;
    }
  }
}

@include media-breakpoint-down(md) {
  .header-wrapper {
    &--bicester {
      .header-logo__link {
        width: 82px;
        height: 60px;
      }
    }
  }
}

@media screen and (max-width: 360px) {
  .header-wrapper {
    &--bicester {
      .header-logo__link {
        margin-right: 0;
        width: 72px;
        height: 60px;
      }
    }
  }
}

