/* VistaPrint Tower builder base styles - restored for local hosting */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Sans Pro', 'Oxygen', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  background: #ffffff;
}

article.document {
  display: block;
  width: 100%;
}

.flex { display: flex; }
.flex-column { flex-direction: column; }
.h-100 { height: 100%; }
.w-100 { width: 100%; }
.tc { text-align: center; }
.tl { text-align: left; }
.tr { text-align: right; }
.mt4 { margin-top: 1rem; }
.mb2 { margin-bottom: 0.5rem; }

.block {
  position: relative;
  width: 100%;
}

.block-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.block-background--cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.block-background-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.block-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.grid-col {
  flex: 1 1 auto;
  min-width: 0;
}

.grid-col__content {
  width: 100%;
}

.pip {
  position: relative;
  width: 100%;
}

.title.rich-text-content,
.rich-text-content {
  word-wrap: break-word;
}

.rich-text-content a {
  color: #56640c;
}

.rich-text-content a:hover {
  color: #000000;
}

.navigation-pip .desktopLinks {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation-pip .desktopLinks .link {
  display: inline-block;
}

.navigation-pip .desktopLinks a {
  text-decoration: none;
  color: inherit;
}

.navigation-pip .desktopLinks a:hover {
  opacity: 0.85;
}

.mobile-menu-trigger {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 60em) {
  .navigation-pip .desktopLinks {
    display: none;
  }
  .navigation-pip .mobile-menu-trigger {
    display: block;
  }
}

.shoppingCart {
  display: none;
}

.lightbox {
  display: none;
}

.donate-button {
  cursor: pointer;
  border: none;
  background: #9c0000;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 4px;
}

.donate-button:hover {
  background: #9e0300;
}

footer {
  display: block;
}

.background-is-dark {
  color: #ffffff;
}

.font-size1 { font-size: 0.75rem; }
.font-size2 { font-size: 0.875rem; }
.font-size3 { font-size: 1rem; }
.font-size4 { font-size: 1.125rem; }
.font-size6 { font-size: 1.5rem; }

.lineHeight-1-4 { line-height: 1.4; }
