/* Sabden header styling */

#Master_lblHeader {
  display: block;
  position: relative;
  z-index: 1;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.header__heading-svg {
  max-width: 100%;
}

.header__heading-svg--home {
  margin-left: auto;
  margin-right: auto;
}

.page:not(.page--default) .header__heading-svg--home,
.page:not(.page--default) .header__content {
  display: none;
}

.header__logo-link {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-cp {
  position: relative;
}

.header-cp__text {
  color: var(--header-cp-first-name-color);
  font-family: var(--font-family-light);
  font-size: 10px;
  left: 50%;
  line-height: 1em;
  position: absolute;
  text-align: center;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header-cp__text [data-logged-in='False'] {
  display: none;
}

.header__nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.header__nav-link {
  color: var(--header-anchor-color);
  font-family: var(--font-family-bold);
  text-transform: uppercase;
}

.header .social {
  display: none;
}

.header .svg--arrow-left-roundel .cls-1 {
  stroke: var(--header-back-button-color);
}

.header__switcher {
  bottom: 0.5em;
  color: var(--color-white);
  display: none;
  position: absolute;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .header__wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 15px 0;
  }

  .header__heading {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header__button {
    height: 30px;
    text-indent: -99999px;
    width: 30px;
  }

  .header__button svg {
    display: block;
  }

  .header__button .svg--arrow-left {
    stroke: var(--header-back-button-color);
  }

  .header__heading {
    width: var(--header-logo-width-small);
  }

  .header__nav {
    display: none;
  }

  .header__nav-link {
    font-size: 10px;
    letter-spacing: var(--letter-spacing);
  }

  .header__switcher {
    font-size: 10px;
  }
}

@media only screen and (min-width: 768px) {
  .header__wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--wrapper-width-desktop);
    padding: 0 2em;
    width: 100%;
  }

  .header__logo {
    margin: 20px 0;
  }

  .header__button:not(.basket__back) {
    display: none;
  }

  .header__nav-link {
    padding: 0 1em;
  }

  .header__switcher {
    font-size: 17px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__heading {
    width: var(--header-logo-width-medium);
  }

  .header__nav-link {
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) {
  .header__heading {
    width: var(--header-logo-width-large);
  }

  .header__nav-link {
    font-size: 24px;
  }
}

/* Control Panel */

.header-cp__icon {
  fill: var(--header-cp-icon-color);
  height: 30px;
  -webkit-transition: fill 150ms ease-in-out;
  -o-transition: fill 150ms ease-in-out;
  transition: fill 150ms ease-in-out;
  width: 30px;
}

.header-cp__icon:hover {
  fill: var(--header-cp-icon-color-hover);
}

@media only screen and (min-width: 768px) {
  .header-cp {
    justify-self: flex-start;
  }
}
