/* src/css/_variables.css */
:root {
  --colour__white--100: #FFFFFF;
  --colour__white--off-white: #FEFEFE;
  --colour__black--100: #000000;
  --colour__black--80: #333333;
  --colour__black--70: #4D4D4D;
  --colour__black--60: #666666;
  --colour__black--30: #B3B3B3;
  --colour__cool-grey--100: #CCCCCC;
  --colour__cool-grey--80: #D6D6D6;
  --colour__cool-grey--20: #F5F5F5;
  --colour__red--100: #E30613;
  --colour__red--80: #FB535D;
  --border-radius--small: 2px;
  --font-bold: "AvenirNextLTW02-Bold", sans-serif;
  --font-demi: "AvenirNextLTW02-Demi", sans-serif;
  --font-regular: "AvenirNextLTW02-Regular", sans-serif;
  --font-size__button: 1rem;
  --font-size__button--small: 0.75rem;
  --settings__shadow--1: 0 0.25rem 0.5rem 0 rgba(0,0,0,0.16);
}

/* src/css/_fonts.css */
@font-face {
  font-family: "AvenirNextLTW02-Regular";
  font-display: swap;
  src: local("AvenirNext-Regular"), url(../media/fonts/Avenir-Next/bb590848-4012-46d6-a8d5-48c9893a176b.woff2) format("woff2");
}
@font-face {
  font-family: "AvenirNextLTW02-Demi";
  font-display: swap;
  src: local("AvenirNext-DemiBold"), url(../media/fonts/Avenir-Next/b86524f7-009e-4c08-a266-c43f1fb68e5e.woff2) format("woff2");
}
@font-face {
  font-family: "AvenirNextLTW02-Bold";
  font-display: swap;
  src: local("AvenirNext-Bold"), url(../media/fonts/Avenir-Next/b729a5ee-0221-40db-9a76-7b9e9b747f65.woff2) format("woff2");
}

/* src/css/_header.css */
.img-logo {
  height: 7rem;
  min-width: 7.25rem;
  padding: 1rem 2rem;
}
.header {
  background-color: var(--colour__white--100);
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1080px) {
  .header :is(.logo, .header-actions) {
    flex: 1;
  }
}
.header .menu {
  background-color: var(--colour__white--100);
  display: flex;
}
.header .menu :is(.btn-menu-toggle, .btn-search-toggle) {
  display: flex;
  border-color: var(--colour__black--100);
  background-color: var(--colour__white--100);
  margin: auto;
  height: max-content;
  background-image: url(../media/images/menu.svg);
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: 50%;
}
.header .menu :is(.btn-menu-toggle, .btn-search-toggle).active {
  background-image: url(../media/images/x.svg);
}
.header .menu :is(.btn-menu-toggle, .btn-search-toggle) .icon-menu {
  fill: transparent;
}
.header .menu :is(.btn-menu-toggle, .btn-toggle-search) {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .menu {
    flex: 1 1 100%;
  }
  .header .menu .menu-wrapper.menu-mobile {
    width: 100%;
  }
  .header .menu .menu-wrapper.menu-mobile > ul {
    display: block !important;
    max-height: 0vh;
    overflow: hidden;
    transition: max-height linear 0.5s;
    background-color: var(--colour__white--100);
    box-shadow: var(--settings__shadow--1);
  }
  .header .menu .menu-wrapper.menu-mobile > ul.active {
    max-height: 80vh;
    transition: max-height ease-in 1s;
  }
  .header .menu .menu-wrapper.menu-mobile > ul .menu-item a {
    padding: 1rem;
    justify-content: flex-start;
  }
  .header .menu .menu-wrapper.menu-mobile > ul .menu-item a:hover {
    text-decoration: underline;
    background-color: var(--colour__cool-grey--20);
  }
  .header .menu :is(.btn-menu-toggle, .btn-toggle-search) {
    display: flex;
    align-self: center;
    margin: auto 0;
    height: max-content;
  }
}
.header .menu .menu-wrapper {
  display: flex;
}
.header .menu .menu-wrapper ul li a {
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .header .menu .menu-wrapper > ul {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  @media screen and (min-width: 960px) {
    .header .menu .menu-wrapper > ul {
      gap: 2rem;
    }
  }
  .header .menu .menu-item {
    line-height: 1.2;
    height: 100%;
    border-bottom: 4px solid transparent;
    padding: 0;
  }
  .header .menu .menu-item:hover {
    border-bottom-color: var(--colour__black--100);
  }
  .header .menu .menu-item .menu-item-text {
    text-align: center;
  }
  .header .menu ul li a:hover {
    background-color: transparent;
  }
  .header .menu ul li a:hover .menu-item-text {
    text-decoration: underline;
  }
}
@media screen and (min-width: 769px) and (max-width: 959px) {
  .header .menu .menu-wrapper > ul {
    gap: 1.5rem;
  }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .header .menu .menu-wrapper > ul {
    gap: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .header .menu .menu-wrapper > ul {
    gap: 3rem;
  }
}
.header .header-actions {
  margin-left: 1rem;
}
.header .header-actions .account-buttons {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.header .header-actions .account-buttons .button {
  margin: 0;
}
.pre-header {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--colour__cool-grey--100);
  padding: 0;
}
.pre-header .pre-header__home {
  display: flex;
}
.pre-header .pre-header__home-link {
  display: flex;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  align-items: center;
  text-decoration: underline;
}
.pre-header .pre-header__home-link:hover {
  text-decoration: none;
}

/* src/css/_page.css */
body {
  font-family: var(--font-regular);
}
a {
  font-family: var(--font-demi);
}
a:hover {
  text-decoration: underline;
}
.body {
  background-color: var(--colour__cool-grey--20);
}
@media print, screen and (min-width: 39.5625em) {
  .grid-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}
.grid-x {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
}

/* src/css/_typography.css */
html,
body {
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-bold) !important;
  line-height: 1.2;
  color: var(--colour__black--100) !important;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
@media screen and (min-width: 641px) and (max-width: 959px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
}
h6 {
  font-family: var(--font-demi) !important;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--colour__black--100);
}

/* src/css/_buttons.css */
.button.button {
  min-height: 2rem;
  height: auto;
  padding: 0.5rem 1rem;
  font-family: var(--font-demi);
  font-size: var(--font-size__button);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--colour__black--100);
  color: var(--colour__black--100);
  background-color: var(--colour__white--100);
  box-shadow: none;
}
.button.button.small {
  font-size: var(--font-size__button--small);
  padding: 0 1rem;
}
.button.button .round {
  border-radius: var(--border-radius--small) !important;
}
.button.button .badge {
  width: 1rem;
  height: 1rem;
  top: -0.5rem;
  right: -0.5rem;
  border-radius: 50%;
  background-color: var(--colour__red--100);
  color: var(--colour__white--100);
  line-height: 1;
}
.header .header-actions .account-buttons .button.secondary {
  border-color: var(--colour__red--100);
  background-color: var(--colour__red--100);
  color: var(--colour__white--100);
}
.header .header-actions .account-buttons .button.secondary:hover {
  background-color: var(--colour__red--80);
}
.header .header-actions .account-buttons .button.btn-toggle-cart {
  border-color: var(--colour__black--100);
  background-color: var(--colour__white--100);
  color: var(--colour__black--100);
}
.header .header-actions .account-buttons .button.btn-toggle-cart:hover {
  background-color: var(--colour__black--100);
  color: var(--colour__white--100);
}

/* src/css/_icons.css */
.icon-inline {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon--globe {
  background-image: url(../media/images/globe.svg);
}

/* src/css/_footer.css */
.c-site-footer__baseline {
  border-top: 1px solid var(--colour__black--30);
  padding: calc((16/13) * 2rem) calc((16/13) * 1rem);
}
.c-site-footer__baseline .c-site-footer-text {
  margin-bottom: calc((16/13) * 0.5rem);
}
.c-site-footer__baseline .c-site-footer-text:last-child {
  margin-bottom: 0;
}
.c-site-footer-text {
  font-family: var(--font-demi);
  font-size: calc((16/13) * 0.75rem);
  color: #4d4d4d;
  line-height: 1.35;
}
.c-site-footer-text.c-site-footer-text--bold {
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: normal;
  text-transform: none;
}

/* src/css/_configio-overrides.css */
#pnlProductImages {
  display: inline-block;
}
.grid .col {
  font-size: 1rem;
}

/* src/css/main.css */
/*# sourceMappingURL=main.css.map */
