/* 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: 'Sharp Grotesk SmBold25';
  src: url('../fonts/SharpGrotesk/SharpGroteskSmBold25.ttf') format('truetype');
}

:root {
  --color-primary: #0d4520;
  --color-secondary: #f4eedc;
  --color-text-primary: #0d4520;
  --color-text-secondary: #f4eedc;
  --color-text-contrast: #fdfdfd;
  --color-text-grey: #2f2f2f;
  --color-text-error: #ff4045;
  --color-text-hyperlink: #ef6700;
  --color-light: #ccdb74;
  --color-dark: #c49876;
  --color-contrast: #1f423c;
  --color-beige: #a5b59c;
  --color-content: #fffaf1;
  --color-cyo-content: #f4eedc;
  --color-background: #fffaf1;
  --color-modal-primary: #fdfdfd;
  --color-modal-cart: #f5f5f5;
  --color-panel-primary: #fffdf8;
  --color-panel-secondary: #f3f6f4;
}

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: 'Sharp Grotesk SmBold25';
  font-weight: 600;
  color: #1f423c;
  text-align: center;
}
p,
a,
button,
ul,
li {
  font-family: 'Work Sans';
  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';
  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-content);
  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-content);
  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';
  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: none;
  }
}
@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;
  }
}
