#global-site-header {
  height: 60px;
  background-color: #fff;
  display: grid;
  grid-template-areas: 'products logo menu';
  grid-template-columns: auto 1fr;
  padding: 0 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1;
  transition: all 0.2s;
}
#global-site-header__logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  padding-left: 0;
}
.resort-logo {
  max-height: 44px;
  max-width: 120px;
}
.powered-by {
  font-size: 0.6rem;
}
@media screen and (max-width: 767.98px) {
  #global-site-header {
    height: 50px;
    padding: 0 10px;
  }
  .resort-logo {
    max-height: 38px;
    max-width: 85px;
  }
}