/* Import Work Sans Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
  font-family: 'GT Ultra Standard Black';
  src: url('../fonts/GT-Ultra/GT-Ultra-Standard-Black.otf') format('opentype'),
    url('../fonts/GT-Ultra/GT-Ultra-Standard-Black.otf') format('truetype');
}

:root {
  --color-primary: #ec812d;
  --color-secondary: #fee5d4;
  --color-text-primary: #ec812d;
  --color-text-secondary: #fee5d4;
  --color-text-contrast: #ffffff;
  --color-text-grey: #363534;
  --color-text-error: #da4126;
  --color-text-hyperlink: #0e4cf4;
  --color-light: #ffcc00;
  --color-dark: #572021;
  --color-contrast: #d47428;
  --color-beige: #377e64;
  --color-content: #feefe5;
  --color-cyo-content: #feefe5;
  --color-background: #fffcf8;
  --color-modal-primary: #fffcf8;
  --color-modal-cart: #fffcf8;
  --color-panel-primary: #fff5ee;
  --color-panel-secondary: #fffcf8;
}

html,
body {
  height: 100%;
  overflow: auto;
}

body {
  background-color: var(--color-background);
  color: var(--color-text-grey);
}
.page {
  padding: 80px 0;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
ul {
  padding-left: 0;
}
ul li {
  list-style: none;
}
h4 {
  font-size: 2.5em;
  font-family: 'GT Ultra Standard Black';
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
}
p,
a,
button,
ul,
li {
  font-family: 'Work Sans', sans-serif;
  font-size: 1em;
}
a {
  color: var(--color-text-hyperlink);
  text-decoration: underline;
}
#top-bar a {
  text-decoration: none;
}
.btn-primary {
  background-color: var(--color-primary);
  padding: 15px 25px;
  color: var(--color-text-contrast);
  margin-top: 30px;
  border-radius: 60px;
  font-size: 1.3em;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
}
.btn-primary:hover {
  text-decoration: none;
  background-color: var(--color-contrast);
}
#top-bar {
  width: 100%;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-text-secondary);
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
#top-bar .btn-topleft {
  position: absolute;
  left: 28px;
}
#top-bar .btn-topleft img {
  margin-right: 10px;
}
#top-bar .logo-header img {
  height: 36px;
  width: auto;
}
#top-bar .nav-btn {
  color: var(--color-text-secondary);
  font-size: 1.4em;
}
#top-bar .nav-btn:hover,
#top-bar .nav-btn:focus {
  text-decoration: none;
  color: #f2ede9;
}
#top-bar .btn-topright {
  position: absolute;
  right: 28px;
}
#top-bar .btn-topright img {
  width: 32px;
}
#top-bar .btn-topright .loyalty-tab + .loyalty-tab {
  margin-left: 24px;
}
#top-bar .btn-topright .loyalty-tab img {
  margin-left: 4px;
  margin-right: 4px;
}
#top-bar .btn-topright .loyalty-tab.scan-tab {
  opacity: 0.5;
}
#top-bar .btn-topright .user-button {
  margin-left: 24px;
}
#top-bar .btn-topright .user-button img {
  width: 40px;
}
.content-title,
li.section {
  color: var(--color-text-primary);
}
.content-title h4 {
  margin-bottom: 24px;
}
.content-body {
  margin-bottom: 65px;
}
.content-body li {
  margin-bottom: 24px;
  line-height: 1.6em;
}
li.section {
  font-family: 'Work Sans', sans-serif;
  margin-top: 24px;
  margin-bottom: 4px;
  font-size: 1.2em;
  font-weight: 600;
}
.indent {
  padding-left: 20px;
}
.indent::before {
  content: '\2022';
  padding-right: 10px;
}
a {
  color: var(--color-text-hyperlink);
}
.container li a {
  text-decoration: underline;
}

/*--- Smaller Desktop ---*/
@media (max-width: 1000px) {
  .btn-topright .loyalty-tab span {
    display: none;
  }
}

/*--- Desktop only ---*/
@media (min-width: 993px) {
  body {
    background-image: url('../../images/Chickpeas.svg'),
      url('../../images/Pumpkins.svg');
    background-position: right 0px top 0px, left 0px bottom 0px;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .page {
    padding: 80px 20px;
  }
}
@media (max-width: 992px) {
  #top-bar {
    height: 56px;
    padding: 0 18px;
  }
  #top-bar .btn-topleft {
    left: 18px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .page {
    padding: 80px 40px;
  }
}
@media (max-width: 767px) {
  .nav-btn span.btn-text {
    display: none;
  }
  .page {
    padding: 80px 20px;
  }
  h4 {
    font-size: 1.5em;
  }
  #top-bar .btn-topleft .nav-btn {
    color: var(--color-text-primary);
  }
  #top-bar .btn-topright .loyalty-tab {
    display: none;
  }
}
